/* === Reset & Base === */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --primary: #6c5ce7;
    --primary-dark: #5a4bd1;
    --accent: #fd79a8;
    --bg-dark: #0a0a0f;
    --bg-card: #16161f;
    --bg-card-hover: #1e1e2e;
    --text: #e8e8f0;
    --text-muted: #8888a0;
    --border: #2a2a3a;
    --success: #00b894;
    --warning: #fdcb6e;
    --danger: #e17055;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.4);
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

/* === Navigation === */
.navbar {
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 1rem;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-brand {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar-brand a {
    text-decoration: none;
}
.navbar-nav {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(108,92,231,0.4); color: #fff; }
.btn-accent {
    background: linear-gradient(135deg, var(--accent), #e84393);
    color: #fff;
}
.btn-accent:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(253,121,168,0.4); color: #fff; }
.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-success { background: var(--success); color: #fff; }

/* === Cards === */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s;
}
.card:hover { background: var(--bg-card-hover); border-color: var(--primary); }

/* === Video Grid === */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}
.video-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--primary); }
.video-thumb {
    position: relative;
    width: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.video-thumb .play-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}
.video-card:hover .play-icon { background: rgba(108,92,231,0.6); transform: scale(1.1); }
.video-thumb .duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.75rem;
}
.video-info { padding: 1rem; }
.video-info h3 { font-size: 0.95rem; margin-bottom: 0.5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.video-info .meta { display: flex; gap: 1rem; color: var(--text-muted); font-size: 0.8rem; }
.video-info .category {
    display: inline-block;
    background: rgba(108,92,231,0.15);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

/* === Blur Overlay === */
.blur-overlay {
    position: relative;
}
.blur-overlay .blurred {
    filter: blur(8px) brightness(0.6);
    pointer-events: none;
    user-select: none;
}
.blur-overlay .upgrade-prompt {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10;
    text-align: center;
    padding: 2rem;
}
.upgrade-prompt h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.upgrade-prompt p { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 400px; }
.upgrade-prompt .invite-count { font-size: 2rem; font-weight: 700; color: var(--accent); }

/* === Auth Forms === */
.auth-container {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.auth-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow);
}
.auth-card h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; margin-bottom: 0.4rem; color: var(--text-muted); font-size: 0.85rem; }
.form-control {
    width: 100%;
    padding: 0.7rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.9rem;
    transition: border-color 0.2s;
}
.form-control:focus { outline: none; border-color: var(--primary); }
.form-control::placeholder { color: var(--text-muted); }
.auth-footer { text-align: center; margin-top: 1.5rem; color: var(--text-muted); font-size: 0.85rem; }

/* === Dashboard === */
.dashboard { padding: 2rem; max-width: 1200px; margin: 0 auto; }
.dashboard h1 { font-size: 1.8rem; margin-bottom: 2rem; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}
.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-card .stat-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.3rem; }

/* === Invite Section === */
.invite-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
}
.invite-link-box {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}
.invite-link-box input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 0.85rem;
}
.invite-progress { margin-top: 1.5rem; }
.progress-bar {
    height: 8px;
    background: var(--bg-dark);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.5rem;
}
.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    transition: width 0.5s ease;
}

/* === Leaderboard === */
.leaderboard { margin-top: 2rem; }
.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
}
.leaderboard-item:last-child { border-bottom: none; }
.leaderboard-rank {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}
.rank-1 { background: linear-gradient(135deg, #f39c12, #e67e22); color: #fff; }
.rank-2 { background: linear-gradient(135deg, #bdc3c7, #95a5a6); color: #fff; }
.rank-3 { background: linear-gradient(135deg, #e67e22, #d35400); color: #fff; }

/* === Admin === */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 240px;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    padding: 1.5rem 0;
    flex-shrink: 0;
}
.admin-sidebar h3 { padding: 0 1.5rem; margin-bottom: 1.5rem; font-size: 1.1rem; color: var(--primary); }
.admin-sidebar a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
    color: var(--text);
    background: rgba(108,92,231,0.1);
    border-left-color: var(--primary);
}
.admin-content { flex: 1; padding: 2rem; overflow-x: auto; }
.admin-content h1 { font-size: 1.5rem; margin-bottom: 1.5rem; }

/* === Table === */
.table-container { overflow-x: auto; }
table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
}
th, td {
    padding: 0.8rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}
th { background: rgba(108,92,231,0.1); color: var(--primary); font-weight: 600; }
tr:hover { background: var(--bg-card-hover); }
.badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
}
.badge-premium { background: rgba(253,121,168,0.15); color: var(--accent); }
.badge-normal { background: rgba(136,136,160,0.15); color: var(--text-muted); }

/* === Alerts === */
.alert {
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}
.alert-success { background: rgba(0,184,148,0.15); color: var(--success); border: 1px solid rgba(0,184,148,0.3); }
.alert-danger { background: rgba(225,112,85,0.15); color: var(--danger); border: 1px solid rgba(225,112,85,0.3); }
.alert-warning { background: rgba(253,203,110,0.15); color: var(--warning); border: 1px solid rgba(253,203,110,0.3); }
.alert-info { background: rgba(108,92,231,0.15); color: var(--primary); border: 1px solid rgba(108,92,231,0.3); }

/* === Toast === */
.toast {
    position: fixed;
    top: 80px;
    right: 20px;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--success);
    border-radius: 8px;
    color: var(--success);
    z-index: 9999;
    animation: slideIn 0.3s ease;
    box-shadow: var(--shadow);
}
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* === Responsive === */
@media (max-width: 768px) {
    .navbar { padding: 0 1rem; }
    .video-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); padding: 1rem; gap: 1rem; }
    .admin-layout { flex-direction: column; }
    .admin-sidebar { width: 100%; border-right: none; border-bottom: 1px solid var(--border); padding: 1rem 0; }
    .admin-sidebar a { display: inline-block; padding: 0.5rem 1rem; border-left: none; border-bottom: 2px solid transparent; }
    .admin-sidebar a:hover, .admin-sidebar a.active { border-left: none; border-bottom-color: var(--primary); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* === Hero Section === */
.hero {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(108,92,231,0.08) 0%, transparent 100%);
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* === Category Tabs === */
.category-tabs {
    display: flex;
    gap: 0.5rem;
    padding: 0 2rem;
    overflow-x: auto;
    margin-bottom: 1rem;
}
.category-tab {
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}
.category-tab:hover, .category-tab.active {
    color: var(--text);
    background: var(--primary);
    border-color: var(--primary);
}

/* === Share Buttons === */
.share-buttons { display: flex; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.share-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}
.share-btn:hover { border-color: var(--primary); color: var(--primary); }

/* === Pagination === */
.pagination {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 2rem;
}
.pagination a, .pagination span {
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid var(--border);
    color: var(--text-muted);
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* DPlayer 播放器样式 */
#dplayer {
    width: 100%;
    max-height: 80vh;
    
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

#dplayer .dplayer-video-wrap {
    width: 100%;
    height: 100%;
}

/* 分类内容区域 */
.category-content iframe,
.category-content video {
    width: 100%;
    height: 70vh;
    max-height: 800px;
    border: none;
    border-radius: 8px;
    background: #000;
}

/* === 响应式设计 === */
@media (max-width: 768px) {
    .navbar {
        padding: 0 1rem;
        height: 56px;
    }
    .navbar-brand {
        font-size: 1.2rem;
    }
    .navbar-nav {
        gap: 0.5rem;
    }
    .btn-sm {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    .category-bar {
        padding: 0.5rem 1rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .category-bar::-webkit-scrollbar {
        display: none;
    }
    .category-btn {
        padding: 0.4rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    .category-content {
        padding: 0.5rem;
    }
    .video-controls {
        padding: 0.5rem;
    }
    .control-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 0.5rem;
    }
    .category-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    .control-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* === 9:16 视频播放器 === */
.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-container iframe,
.video-container video,
.video-container #dplayer {
    width: 100%;
    
    object-fit: cover;
    display: block;
}

/* 视频控制按钮 - 在视频下方 */
.video-controls {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
    padding: 0.75rem;
    background: #16161f;
    border-top: 1px solid #2a2a3a;
}

.control-btn {
    flex: 1;
    max-width: 150px;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.control-btn.btn-outline {
    background: transparent;
    border: 1px solid #6c5ce7;
    color: #6c5ce7;
}

.control-btn.btn-outline:hover {
    background: #6c5ce7;
    color: #fff;
}

.control-btn.btn-primary {
    background: #6c5ce7;
    color: #fff;
}

.control-btn.btn-primary:hover {
    background: #5a4bd1;
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 桌面端限制最大宽度 */
@media (min-width: 769px) {
    .video-container {
        max-width: 500px;
    }
}

/* 二维码宣传图 */
.qrcode-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 2rem;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.qrcode-header {
    margin-bottom: 1.5rem;
}

.qrcode-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
}

.qrcode-body {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#qrcode {
    margin-bottom: 1rem;
}

#qrcode img,
#qrcode canvas {
    border-radius: 8px;
}

.qrcode-text {
    text-align: center;
}

.qrcode-main-text {
    color: #667eea;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
}

.qrcode-sub-text {
    color: #666;
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
    line-height: 1.4;
}

.qrcode-footer {
    margin-top: 1.5rem;
    color: #ffffff;
    font-size: 0.9rem;
}

/* 升级提示 */
.upgrade-notice {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.upgrade-notice-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.upgrade-icon {
    font-size: 2.5rem;
}

.upgrade-notice-header h2 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 0;
}

.upgrade-notice-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.upgrade-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .upgrade-options {
        grid-template-columns: 1fr;
    }
}

.upgrade-option {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.upgrade-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.upgrade-option h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.upgrade-option p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0 0 1rem;
    line-height: 1.4;
}

.upgrade-notice-close {
    display: block;
    text-align: center;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.8rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.upgrade-notice-close:hover {
    background: var(--bg-primary);
    color: var(--text-primary);
}

/* 视频容器移动端优化 */
@media (max-width: 768px) {
    .video-container {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    
    .video-container iframe,
    .video-container video,
    .video-container #dplayer {
        width: 100%;
        height: auto;
        
    }
    
    .video-controls {
        padding: 0.5rem;
    }
    
    .control-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* 桌面端保持9:16比例 */
@media (min-width: 769px) {
    .video-container {
        max-width: 400px;
    }
}

/* 视频容器优化 - 确保按钮可见 */
.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #000;
    border-radius: 0;
    overflow: visible;
}

.video-container iframe,
.video-container video,
.video-container #dplayer {
    width: 100%;
    height: auto;
    min-height: 100%;
    display: block;
}

/* 视频控制按钮 - 确保在视频下方清晰可见 */
.video-controls {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 0 0 18px 18px;
    margin-top: 0;
    z-index: 10;
}

.control-btn {
    position: relative;
    z-index: 10;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .video-container {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }
    
    .video-controls {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .control-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* 广告容器 */
.promo-section {
    width: 100%;
    max-width: 760px;
    margin: 1rem auto;
    padding: 0;
    text-align: center;
}

.promo-link {
    display: block;
    margin: 0;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.promo-link:hover {
    transform: scale(1.02);
}

.promo-link img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .promo-section {
        padding: 0 0.5rem;
        margin: 0.5rem auto;
    }
    
    .promo-link img {
        max-width: 100%;
    }
}

/* 全局容器宽度统一为760px - 仅前台页面 */
body:not(:has(.admin-layout)) {
    max-width: 760px;
    margin: 0 auto;
}

body:has(.admin-layout) {
    max-width: 100%;
    margin: 0;
}

.navbar {
    max-width: 760px;
}

body:has(.admin-layout) .navbar,
.admin-layout ~ .navbar,
.admin-layout .navbar {
    max-width: 100%;
}

.category-bar {
    max-width: 760px;
}

.category-content {
    max-width: 760px;
}

.dashboard {
    max-width: 760px;
}

.auth-container {
    max-width: 760px;
}

/* 后台管理页面 - 100%宽度 */
.admin-layout {
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.admin-layout * {
    max-width: 100%;
}

@media (max-width: 768px) {
    body {
        max-width: 100%;
    }
}
