:root {
    --color-primary: #41b883;
    --color-secondary: #35495e;
}

/* 修改sweetalert2样式 */
.swal2-popup {
    width: 280px !important;
    padding: 10px !important;
}

.swal2-title {
    font-size: 16px !important;
}

.swal2-html-container {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
}

.swal2-actions button {
    padding: 5px 15px !important;
    font-size: 14px !important;
}

.hidden {
    display: none;
}


     .live-room {
           height: 600px;
           /* background-color: #c8e2ec; */
     }

     .live-room-title {
           font-size: 16px;
           text-align: center;
           font-weight: bold;
     }

     .live-room-video-container {
           margin-top: 20px;
           /* background-color: yellow; */
           display: flex;
           flex-direction: column;
           width: 200px;
           align-items: center;
     }

     .live-room-video {
           width: 200px;
     }

     .live-room-forbid-button {
           margin-top: 20px;
           width: 100px;
           padding: 5px 10px;
           border: none;
           : 5px;
           color: #fff;
           font-size: 14px;
           cursor: pointer;
           background-color: var(--color-primary);
     }

/* 全局样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
    font-weight: 300;
}

/* 页眉样式 */
.top-bar {
    background: linear-gradient(135deg, #41b883 0%, #ff6b6b 100%);
    color: white;
    padding: 8px 0;
}

.top-bar-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-company {
    font-size: 14px;
    font-weight: 300;
}

.top-bar-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: opacity 0.3s;
}

.top-bar-links a:hover {
    opacity: 0.8;
}

/* 导航栏样式 */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-content {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-nav {
    display: flex;
    gap: 30px;
}

.navbar-nav a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
    position: relative;
}

.navbar-nav a:hover,
.navbar-nav a.active {
    color: #41b883;
}

.navbar-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #41b883;
    : 1px;
}

/* Banner样式 */
.banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.banner-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.banner-subtitle {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner-btn {
    display: inline-block;
    padding: 12px 40px;
    background: #41b883;
    color: white;
    text-decoration: none;
    : 25px;
    font-size: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(226, 84, 84, 0.4);
}

/* 页面容器 */
.page-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 网络表演区域 */
.section-title {
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    margin: 50px 0 30px;
    color: #333;
}

/* 视频列表 */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.video-card {
    background: #fff;
    : 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.video-card video {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: #000;
}

.video-card-info {
    padding: 15px;
}

.video-card-title {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.video-card-title span {
    color: #41b883;
    font-weight: 500;
}

/* 二维码区域 */
.qrcode-section {
    background: #f8f9fa;
    padding: 50px 0;
    margin-top: 50px;
}

.qrcode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qrcode-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 10px;
    color: #333;
}

.qrcode-img {
    width: 180px;
    height: 180px;
    : 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
    display: block;
}

.qrcode-tip {
    font-size: 14px;
    color: #999;
}

/* 页脚 */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 0 30px;
    margin-top: 0;
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 2;
    text-decoration: none;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1300px;
    margin: 30px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.8;
}

.footer-bottom a {
    color: #95a5a6;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

.wenhua-image {
    margin-top: 15px;
}

/* 面包屑导航 */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumb-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 14px;
}

.breadcrumb-content a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-content a:hover {
    color: #41b883;
}

.breadcrumb-content span {
    color: #999;
    margin: 0 8px;
}

.breadcrumb-content .current {
    color: #333;
}

/* 文档页面 */
.doc-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #fff;
    : 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-height: 500px;
}

.doc-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.doc-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.doc-content p {
    margin-bottom: 15px;
}

/* 视频播放页面 */
.video-player-container {
    display: flex;
    gap: 30px;
    padding: 30px 0;
}

.video-player-left {
    flex: 0 0 700px;
}

.video-player {
    width: 700px;
    height: 900px;
    background: #000;
    : 12px;
    overflow: hidden;
}

.video-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-player-right {
    flex: 1;
    background: #fff;
    : 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    height: 900px;
}

.chat-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.chat-header h3 {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.chat-notice {
    padding: 15px 20px;
    background: #fff3cd;
    border-left: 3px solid #ffc107;
    font-size: 13px;
    color: #856404;
    line-height: 1.6;
}

.chat-body {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.chat-login-tip {
    text-align: center;
}

.chat-login-tip i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 20px;
}

.chat-login-tip p {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.chat-login-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #41b883;
    color: white;
    text-decoration: none;
    : 20px;
    font-size: 14px;
    transition: background 0.3s;
}

.chat-login-btn:hover {
    background: #d44444;
}

/* 表单样式 */
.form-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    : 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 24px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    : 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #41b883;
}

.form-input-group {
    display: flex;
    gap: 10px;
}

.form-input-group .form-input {
    flex: 1;
}

.btn-primary {
    width: 100%;
    padding: 14px;
    background: #41b883;
    color: white;
    border: none;
    : 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d44444;
}

.btn-secondary {
    padding: 12px 20px;
    background: #f0f0f0;
    color: #666;
    border: none;
    : 8px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-secondary:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.form-checkbox input {
    width: 16px;
    height: 16px;
    accent-color: #41b883;
}

.form-checkbox a {
    color: #41b883;
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.form-links {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.form-links a {
    color: #41b883;
    text-decoration: none;
}

.form-links a:hover {
    text-decoration: underline;
}

.captcha-img {
    height: 44px;
    : 8px;
    cursor: pointer;
}

/* 协议弹窗 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    : 16px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 20px;
    max-height: calc(80vh - 140px);
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

.modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    text-align: right;
}

.modal-btn {
    padding: 8px 25px;
    background: #41b883;
    color: white;
    border: none;
    : 6px;
    font-size: 14px;
    cursor: pointer;
}

.modal-btn:hover {
    background: #d44444;
}

/* 加载状态 */
.loading {
    text-align: center;
    padding: 50px;
    color: #999;
}

.loading i {
    font-size: 32px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 漫画列表样式 */
.manhua-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.manhua-card {
    background: #fff;
    : 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.manhua-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.manhua-card-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #f0f0f0;
}

.manhua-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.manhua-card:hover .manhua-card-img img {
    transform: scale(1.05);
}

.manhua-card-info {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.manhua-card-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
}

.manhua-card-intro {
    font-size: 14px;
    color: #999;
    line-height: 1.5;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* 漫画详情样式 */
.manhua-info {
    display: flex;
    gap: 30px;
    background: #fff;
    : 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 40px;
}

.manhua-info-left {
    flex: 0 0 200px;
}

.manhua-cover {
    width: 200px;
    height: 280px;
    : 8px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.manhua-info-right {
    flex: 1;
}

.manhua-title {
    font-size: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
}

.manhua-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.manhua-tag {
    padding: 6px 15px;
    background: #f8f9fa;
    : 20px;
    font-size: 13px;
    color: #666;
}

.manhua-intro {
    margin-bottom: 20px;
}

.manhua-intro h3 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

.manhua-intro p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.manhua-chapters {
    background: #fff;
    : 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 30px;
}

.chapter-list {
    margin-top: 20px;
}

.chapter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: #333;
    transition: background 0.3s;
}

.chapter-item:hover {
    background: #f8f9fa;
}

.chapter-item:last-child {
    border-bottom: none;
}

.chapter-title {
    font-size: 14px;
}

.chapter-status {
    font-size: 12px;
    padding: 2px 10px;
    : 10px;
}

.chapter-item.free .chapter-status {
    background: #f6ffed;
    color: #52c41a;
}

.chapter-item.paid .chapter-status {
    background: #fff2f0;
    color: #ff4d4f;
}

/* 漫画章节样式 */
.chapter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.chapter-header h1 {
    font-size: 24px;
    font-weight: 400;
    color: #333;
}

.chapter-image {
    text-align: center;
    margin-bottom: 40px;
}

.chapter-image img {
    max-width: 100%;
    height: auto;
}

.recharge-container {
    background: #fff;
    : 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.recharge-info {
    text-align: center;
    margin-bottom: 40px;
}

.recharge-tip {
    font-size: 16px;
    color: #ff4d4f;
    margin-bottom: 20px;
    font-weight: 500;
}

.balance-info,
.chapter-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.currency-icon {
    width: 20px;
    height: 20px;
}

.exchange-rate {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.recharge-options h3 {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.recharge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.recharge-option {
    background: #f8f9fa;
    : 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.recharge-option:hover {
    border-color: #41b883;
    background: #fff5f5;
}

.recharge-amount {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.recharge-price {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.recharge-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #41b883;
    color: white;
    text-decoration: none;
    : 20px;
    font-size: 14px;
    transition: background 0.3s;
}

.recharge-btn:hover {
    background: #d44444;
}

/* 错误状态 */
.error-message {
    text-align: center;
    padding: 50px;
    color: #41b883;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.pagination button {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #fff;
    : 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination button:hover:not(:disabled) {
    border-color: #41b883;
    color: #41b883;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination button.active {
    background: #41b883;
    border-color: #41b883;
    color: white;
}

/* ==================== 后台管理系统样式 ==================== */

/* 后台登录页面 */
.admin-login-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.admin-login-box {
    background: #fff;
    padding: 50px;
    : 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.admin-login-title {
    text-align: center;
    margin-bottom: 30px;
}

.admin-login-title h1 {
    font-size: 24px;
    font-weight: 300;
    color: #333;
}

.admin-login-title p {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

/* 后台布局 */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #f5f7fa;
}

/* 后台页眉 */
.admin-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 100;
}

.admin-header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-logo {
    width: 36px;
    height: 36px;
}

.admin-title {
    font-size: 18px;
    font-weight: 400;
    color: #333;
}

.admin-header-right {
    position: relative;
}

.admin-user-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    cursor: pointer;
    : 6px;
    transition: background 0.3s;
}

.admin-user-menu:hover {
    background: #f5f7fa;
}

.admin-username {
    font-size: 14px;
    color: #666;
}

.admin-user-menu i {
    font-size: 12px;
    color: #999;
}

.admin-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 5px;
    background: #fff;
    : 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.admin-user-menu:hover .admin-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.admin-dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: background 0.3s;
}

.admin-dropdown a:hover {
    background: #f5f7fa;
    color: #41b883;
}

.admin-dropdown a:first-child {
    : 8px 8px 0 0;
}

.admin-dropdown a:last-child {
    : 0 0 8px 8px;
}

/* 后台左侧导航 */
.admin-sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 220px;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.05);
    z-index: 99;
    overflow-y: auto;
}

.admin-nav {
    padding: 20px 0;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.admin-nav-item:hover {
    background: #fff5f5;
    color: #41b883;
}

.admin-nav-item.active {
    background: #fff5f5;
    color: #41b883;
    border-left-color: #41b883;
}

.admin-nav-item i {
    width: 20px;
    text-align: center;
}

/* 后台主内容区 */
.admin-main {
    flex: 1;
    margin-left: 220px;
    margin-top: 60px;
    padding: 30px;
    min-height: calc(100vh - 60px);
}

.admin-page-title {
    font-size: 22px;
    font-weight: 400;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* 后台表格 */
.admin-table-container {
    background: #fff;
    : 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px 20px;
    text-align: left;
    font-size: 14px;
}

.admin-table th {
    background: #f8f9fa;
    font-weight: 500;
    color: #666;
    border-bottom: 1px solid #eee;
}

.admin-table td {
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background: #fafafa;
}

/* 操作按钮 */
.admin-btn {
    padding: 6px 15px;
    border: none;
    : 6px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    margin-right: 8px;
}

.admin-btn-primary {
    background: #41b883;
    color: white;
}

.admin-btn-primary:hover {
    background: #d44444;
}

.admin-btn-secondary {
    background: #f0f0f0;
    color: #666;
}

.admin-btn-secondary:hover {
    background: #e0e0e0;
}

.admin-btn-danger {
    background: #ff4d4f;
    color: white;
}

.admin-btn-danger:hover {
    background: #ff7875;
}

.admin-btn-success {
    background: #52c41a;
    color: white;
}

.admin-btn-success:hover {
    background: #73d13d;
}

/* 添加按钮 */
.admin-add-btn {
    margin-bottom: 20px;
}

/* 弹窗表单 */
.modal-form-group {
    margin-bottom: 20px;
}

.modal-form-label {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.modal-form-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    : 8px;
    font-size: 14px;
}

.modal-form-input:focus {
    outline: none;
    border-color: #41b883;
}

/* 复选框 */
.modal-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
}

.modal-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: #41b883;
}

/* 状态标签 */
.status-tag {
    display: inline-block;
    padding: 4px 12px;
    : 4px;
    font-size: 12px;
}

.status-success {
    background: #f6ffed;
    color: #52c41a;
    border: 1px solid #b7eb8f;
}

.status-warning {
    background: #fffbe6;
    color: #faad14;
    border: 1px solid #ffe58f;
}

.status-error {
    background: #fff2f0;
    color: #ff4d4f;
    border: 1px solid #ffccc7;
}

/* 空数据提示 */
.admin-empty {
    text-align: center;
    padding: 80px 20px;
    color: #999;
}

.admin-empty i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #ddd;
}

.admin-empty p {
    font-size: 14px;
}
