
/* ========== 绿色主题 CSS 变量（根据设计规范）========== */
:root {
    --primary-color: #2DC566;
    --primary-dark: #1FA64E;
    --primary-light: #4ADE80;
    --primary-bg: #ECFDF5;
    --secondary-color: #1FA64E;
    --accent-color: #0D9B3E;
    --bg-white: #ffffff;
    --bg-light: #FAFAFA;
    --bg-gray: #F5F5F5;
    --text-primary: #1A1A1A;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #E8E8E8;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.12);
    --gradient-primary: linear-gradient(135deg, #2DC566 0%, #1FA64E 100%);
    --gradient-primary-hover: linear-gradient(135deg, #34D399 0%, #2DC566 100%);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ========== 全局样式重置 ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Han Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 86px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* ========== 导航栏（白色背景）========== */
.green-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.green-navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

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

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

.navbar-brand-text {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
}

.navbar-brand-subtitle {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.navbar-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login-outline {
    padding: 10px 22px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-login-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-register-green {
    padding: 10px 22px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(45, 197, 102, 0.3);
}

.btn-register-green:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 197, 102, 0.4);
    background: var(--gradient-primary-hover);
}

/* ========== Hero 区域 ========== */
.hero-section-green {
    padding: 60px 0 20px;
    background: linear-gradient(180deg, #ffffff 0%, #FAFAFA 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: center;
}

.hero-content-left {
    padding-right: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight-text {
    color: var(--primary-color);
    position: relative;
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 500px;
}

/* ========== 标签页切换 ========== */
.tab-switcher {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    background: var(--bg-gray);
    padding: 4px;
    border-radius: var(--radius-md);
    width: fit-content;
}

.tab-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn.active {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.tab-btn.active::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.tab-btn:hover:not(.active) {
    color: var(--text-primary);
}

/* ========== 搜索框区域 ========== */
.search-box-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.search-input-row {
    display: flex;
    gap: 12px;
}

.search-input-field {
    flex: 1;
    padding: 16px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    background: white;
}

.search-input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 197, 102, 0.08);
}

.search-input-field::placeholder {
    color: var(--text-muted);
}

.btn-search-action {
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(45, 197, 102, 0.3);
}

.btn-search-action:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 197, 102, 0.4);
    background: var(--gradient-primary-hover);
}

/* ========== 简洁版搜索框 ========== */
.search-box-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-input-field-simple {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-primary);
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

.search-input-field-simple:focus {
    outline: none;
    border-color: #2DC566;
    box-shadow: 0 0 0 3px rgba(45, 197, 102, 0.08);
}

.search-input-field-simple::placeholder {
    color: #9CA3AF;
}

.btn-search-full {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, #2DC566 0%, #1FA64E 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(45, 197, 102, 0.3);
}

.btn-search-full:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 197, 102, 0.4);
    background: linear-gradient(135deg, #34D399 0%, #2DC566 100%);
}

/* ========== 支持游戏标签 ========== */
.supported-games-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.games-label-text {
    color: var(--text-muted);
    font-size: 14px;
}

.game-tag-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.game-tag-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

/* ========== 右侧盾牌图标区域 ========== */
.hero-visual-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.shield-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-main-image {
    width: 280px;
    height: auto;
    position: relative;
    z-index: 3;
    animation: float-gentle 6s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.shield-glow-ring {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 3px solid rgba(45, 197, 102, 0.15);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
}

.shield-glow-ring-inner {
    position: absolute;
    width: 260px;
    height: 260px;
    border: 2px solid rgba(45, 197, 102, 0.1);
    border-radius: 50%;
    animation: rotate-slow-reverse 15s linear infinite;
}

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

@keyframes rotate-slow-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.shield-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(45, 197, 102, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.floating-particle-green {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(45, 197, 102, 0.4);
    border-radius: 50%;
    animation: float-up 5s ease-in-out infinite;
}

.particle-1 { top: 15%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 25%; right: 25%; animation-delay: 1.5s; }
.particle-3 { bottom: 35%; left: 25%; animation-delay: 3s; }
.particle-4 { top: 55%; right: 15%; animation-delay: 1s; }
.particle-5 { bottom: 20%; right: 30%; animation-delay: 2.5s; }
.particle-6 { top: 35%; left: 15%; animation-delay: 4s; }

@keyframes float-up {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.3); opacity: 0.6; }
}

/* ========== 特性卡片网格 ========== */
.features-section {
    padding: 20px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    background: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
    position: relative;
}

.feature-icon-box::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-icon-box::after {
    opacity: 0.1;
}

.feature-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========== 核心功能区域 ========== */
.core-features-section {
    padding: 50px 0;
    background: white;
}

.section-title-group {
    text-align: center;
    margin-bottom: 35px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

.core-features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.core-feature-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.core-feature-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.core-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary-color);
}

.core-feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.core-feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========== 支持游戏区域 ========== */
.supported-games-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #FAFAFA 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.game-card {
    background: #1A1A1A;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    position: relative;
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.game-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-image {
    opacity: 1;
}

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.game-card-name {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.view-more-games {
    text-align: center;
    margin-top: 32px;
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: transparent;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ========== 数据展示区域 ========== */
.data-showcase-section {
    padding: 50px 0;
    background: white;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.data-card {
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.data-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.data-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== 页脚 ========== */
.footer-section {
    background: #1A1A1A;
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.footer-brand-text {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--primary-light);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

/* ========== 客服悬浮按钮 ========== */
.cs-widget-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.cs-toggle-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(45, 197, 102, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-toggle-button:hover {
    transform: scale(1.05);
}

.cs-popup-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: none;
}

.cs-popup-panel.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cs-popup-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.cs-popup-header-bar h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.cs-close-popup {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: var(--bg-gray);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.cs-close-popup:hover {
    background: var(--border-color);
    color: var(--text-primary);
}

.cs-popup-body-area {
    padding: 16px;
}

.cs-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.cs-contact-item:last-child {
    margin-bottom: 0;
}

.cs-contact-item:hover {
    background: var(--bg-gray);
}

.cs-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cs-icon-qq { background: #ecfdf5; color: #2DC566; }
.cs-icon-contact { background: #fef3c7; color: #f59e0b; }
.cs-icon-email { background: #dbeafe; color: #3b82f6; }

.cs-info-block {
    flex: 1;
}

.cs-info-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.cs-info-value {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.cs-popup-footer-note {
    padding: 12px 20px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
}

/* 客服按钮 */
.cs-button-wrapper {
    padding: 12px 20px;
    background: #f8fafc;
    border-top: 1px solid var(--border-color);
}

.cs-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    color: #1e293b;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.cs-button:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.cs-button i {
    font-size: 18px;
    color: #07c160;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual-right {
        order: -1;
    }
    
    .shield-container {
        max-width: 320px;
        height: 360px;
    }
    
    .shield-main-image {
        width: 220px;
    }
    
    .core-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar-center {
        display: none;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .tab-switcher {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .tab-btn {
        flex: 1;
        text-align: center;
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .search-input-row {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .core-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .core-features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== 文章列表页面样式 ========== */

/* 页面头部 */
.page-header-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    padding: 50px 0 40px;
    margin-bottom: 30px;
}

.page-header-content {
    text-align: center;
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    border: 1px solid rgba(45, 197, 102, 0.2);
    border-radius: 50px;
    color: #059669;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.page-header-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.page-header-subtitle {
    color: #64748b;
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto;
}

/* 搜索筛选栏 */
.search-filter-bar {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.search-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.category-filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 1;
    min-width: 300px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f1f5f9;
    border: 1px solid transparent;
    border-radius: 50px;
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-chip:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.filter-chip.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.search-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.search-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.form-input-green {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    min-width: 220px;
    transition: all 0.3s ease;
}

.form-input-green:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 197, 102, 0.1);
}

.btn-search-green {
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-search-green:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 197, 102, 0.4);
}

.btn-reset-green {
    padding: 10px 16px;
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.btn-reset-green:hover {
    background: #e2e8f0;
    color: #475569;
}

/* 工具栏 */
.articles-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 0 8px;
}

.per-page-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.selector-label {
    color: #64748b;
    font-size: 14px;
}

.form-select-sm {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f0fdf4;
    border: 1px solid rgba(45, 197, 102, 0.2);
    border-radius: 50px;
    color: #059669;
    font-size: 14px;
    font-weight: 500;
}

/* 文章网格 */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.article-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.article-card-header {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.article-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-card-image {
    transform: scale(1.05);
}

.article-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: var(--primary-color);
    font-size: 48px;
}

.top-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.article-card-content {
    padding: 20px;
}

.article-card-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(45, 197, 102, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 12px;
}

.article-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-card-title a:hover {
    color: var(--primary-color);
}

.article-card-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card-meta {
    display: flex;
    gap: 16px;
    color: #94a3b8;
    font-size: 13px;
}

.article-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* 分页 */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination-modern {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-modern a,
.pagination-modern span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: #475569;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-modern a:hover {
    background: #f1f5f9;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-modern a.current,
.pagination-modern span.current {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination-modern span.disabled {
    color: #94a3b8;
    cursor: not-allowed;
}

.pagination-modern .page-prev,
.pagination-modern .page-next {
    padding: 0;
    width: 40px;
}

/* 空状态 */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 32px;
}

.empty-state-title {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.empty-state-description {
    color: #64748b;
    font-size: 14px;
}

/* 合作伙伴网格 */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.partner-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.partner-card-header {
    height: 160px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.partner-card-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-card-logo-placeholder {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 36px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.partner-card-content {
    padding: 20px;
}

.partner-card-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.partner-card-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partner-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.partner-card-link:hover {
    color: #22ad56;
}

/* ========== 订单查询页面样式 ========== */

.order-query-page {
    background: #f8fafc;
    min-height: calc(100vh - 86px);
    padding-bottom: 60px;
}

.query-container {
    max-width: 900px;
    margin: 0 auto;
}

/* 页面头部 */
.page-header-green {
    text-align: center;
    padding: 50px 0 40px;
}

.page-title-green {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
}

.page-subtitle-green {
    color: #64748b;
    font-size: 16px;
}

/* 查询表单卡片 */
.query-form-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.query-form-row {
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.query-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.query-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.query-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.query-input-wrap i {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 16px;
}

.query-input-field {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 48px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

.query-input-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 197, 102, 0.1);
}

.query-submit-btn {
    height: 50px;
    padding: 0 28px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.query-submit-btn:hover {
    background: #22ad56;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 197, 102, 0.4);
}

/* 警告卡片 */
.alert-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
}

.alert-warning {
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #c2410c;
}

.alert-warning i {
    font-size: 18px;
}

/* 结果卡片 */
.result-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    margin-bottom: 24px;
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.result-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.result-title i {
    color: var(--primary-color);
}

/* 状态标签 */
.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.status-pending {
    background: #fef3c7;
    color: #d97706;
}

.status-paid {
    background: #dbeafe;
    color: #2563eb;
}

.status-booked {
    background: #e0e7ff;
    color: #4f46e5;
}

.status-completed {
    background: #d1fae5;
    color: #059669;
}

.status-refunded {
    background: #fee2e2;
    color: #dc2626;
}

/* 结果网格 */
.result-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.result-item {
    padding: 20px 24px;
    border-bottom: 1px solid #f5f5f5;
    border-right: 1px solid #f5f5f5;
}

.result-item:nth-child(2n) {
    border-right: none;
}

.result-item:nth-last-child(-n+2) {
    border-bottom: none;
}

.result-item-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.result-item-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
}

.result-item-value.info {
    color: #3b82f6;
}

.result-item-value.success {
    color: #10b981;
}

.result-item-value.warning {
    color: #f59e0b;
}

.result-item-value.highlight {
    color: var(--primary-color);
    font-size: 16px;
}

/* 徽章标签 */
.badge-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d1fae5;
    color: #059669;
}

.badge-warning {
    background: #fef3c7;
    color: #d97706;
}

.badge-danger {
    background: #fee2e2;
    color: #dc2626;
}

.badge-secondary {
    background: #f1f5f9;
    color: #64748b;
}

/* 帮助提示卡片 */
.help-tips-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.help-tips-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.help-tips-title i {
    color: #f59e0b;
}

.help-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-tips-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.help-tips-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.help-tips-list li:last-child {
    margin-bottom: 0;
}

/* 响应式 */
@media (max-width: 768px) {
    .query-form-row {
        flex-direction: column;
    }
    
    .query-submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .result-grid {
        grid-template-columns: 1fr;
    }
    
    .result-item {
        border-right: none;
    }
    
    .result-item:nth-last-child(2) {
        border-bottom: 1px solid #f5f5f5;
    }
    
    .result-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* 统计栏样式 */
.stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
    margin-top: 40px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    border: 1px solid rgba(45, 197, 102, 0.1);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .search-filter-row {
        flex-direction: column;
    }
    
    .category-filter-group {
        min-width: 100%;
    }
    
    .search-form {
        width: 100%;
    }
    
    .search-input-group {
        flex-wrap: wrap;
        width: 100%;
    }
    
    .form-input-green {
        flex: 1;
        min-width: 200px;
    }
    
    .articles-toolbar {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
    
    .page-header-title {
        font-size: 28px;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 24px;
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* ========== 腾讯云控制台风格预约页面 ========== */

.booking-console-page {
    background: #f5f7fa;
    min-height: calc(100vh - 86px);
    padding: 40px 0 60px;
}

.console-header {
    text-align: center;
    margin-bottom: 40px;
}

.console-title {
    font-size: 32px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.console-subtitle {
    color: #64748b;
    font-size: 14px;
}

/* 左右布局 */
.console-layout {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 左侧主内容区 */
.console-main {
    flex: 1;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    padding: 32px;
}

/* 右侧侧边栏 */
.console-sidebar {
    width: 360px;
    flex-shrink: 0;
}

/* 分区样式 */
.console-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f0f0f0;
}

.console-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.section-num {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.section-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.section-name small {
    color: #94a3b8;
    font-weight: 400;
    font-size: 13px;
}

/* 类型选择卡片 */
.type-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.type-card {
    cursor: pointer;
    position: relative;
}

.type-card input {
    position: absolute;
    opacity: 0;
}

.type-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
}

.type-card:hover .type-content {
    border-color: var(--primary-color);
}

.type-card input:checked + .type-content {
    border-color: var(--primary-color);
    background: rgba(45, 197, 102, 0.02);
}

.type-icon {
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.type-info {
    flex: 1;
}

.type-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.type-desc {
    font-size: 13px;
    color: #64748b;
}

.type-check {
    color: #e2e8f0;
    font-size: 20px;
}

.type-card input:checked + .type-content .type-check {
    color: var(--primary-color);
}

/* 服务类型选择 */
.service-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.service-card {
    cursor: pointer;
    position: relative;
}

.service-card input {
    position: absolute;
    opacity: 0;
}

.service-content {
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
}

.service-card:hover .service-content {
    border-color: var(--primary-color);
}

.service-card input:checked + .service-content {
    border-color: var(--primary-color);
    background: rgba(45, 197, 102, 0.02);
}

.service-main {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.service-icon {
    width: 48px;
    height: 48px;
    background: #f0fdf4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.service-icon.urgent {
    background: #fff7ed;
    color: #ea580c;
}

.service-info {
    flex: 1;
}

.service-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.service-desc {
    font-size: 13px;
    color: #64748b;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.service-price span {
    font-size: 13px;
    font-weight: 400;
    color: #94a3b8;
}

.service-price.urgent {
    color: #ea580c;
}

.service-check {
    position: absolute;
    top: 16px;
    right: 16px;
    color: #e2e8f0;
    font-size: 18px;
}

.service-card input:checked + .service-content .service-check {
    color: var(--primary-color);
}

/* 信息横幅 */
.info-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 6px;
    margin-bottom: 20px;
    color: #059669;
    font-size: 13px;
}

.info-banner.urgent {
    background: #fff7ed;
    border-color: #ffedd5;
    color: #c2410c;
}

.info-banner i {
    font-size: 16px;
}

.info-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.info-text .divider {
    color: #cbd5e1;
}

/* 表单样式 */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 2px;
}

.form-input,
.form-select {
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(45, 197, 102, 0.1);
}

.form-input.input-error,
.form-select.input-error {
    border-color: #ef4444;
}

/* 确保club-selection正确显示 */
.form-item.club-selection {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 优惠码 */
.coupon-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.coupon-input-group {
    display: flex;
    gap: 12px;
}

.coupon-input {
    flex: 1;
    height: 40px;
    padding: 0 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 14px;
    text-transform: uppercase;
}

.coupon-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-coupon {
    height: 40px;
    padding: 0 20px;
    background: white;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-coupon:hover {
    background: var(--primary-color);
    color: white;
}

.coupon-tip {
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 4px;
    display: none;
}

.coupon-tip.success {
    display: block;
    background: #f0fdf4;
    color: #059669;
}

.coupon-tip.error {
    display: block;
    background: #fef2f2;
    color: #dc2626;
}

/* 支付方式列表 */
.payment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-item {
    cursor: pointer;
    position: relative;
}

.payment-item input {
    position: absolute;
    opacity: 0;
}

.payment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
}

.payment-item:hover .payment-content {
    border-color: var(--primary-color);
}

.payment-item input:checked + .payment-content {
    border-color: var(--primary-color);
    background: rgba(45, 197, 102, 0.02);
}

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

.pay-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.pay-icon.alipay {
    background: #e6f4ff;
    color: #1677ff;
}

.pay-icon.wechat {
    background: #f6ffed;
    color: #52c41a;
}

.pay-icon.qq {
    background: #e6f7ff;
    color: #12b7f5;
}

.pay-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pay-name {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.pay-desc {
    font-size: 12px;
    color: #94a3b8;
}

.payment-check {
    color: #e2e8f0;
    font-size: 20px;
}

.payment-item input:checked + .payment-content .payment-check {
    color: var(--primary-color);
}

/* 订单摘要卡片 */
.order-summary {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.summary-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.summary-header i {
    color: var(--primary-color);
}

.summary-content {
    padding: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-label {
    color: #64748b;
}

.summary-value {
    color: #1e293b;
    font-weight: 500;
}

.summary-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 16px 0;
}

.summary-row.price-row {
    font-size: 13px;
}

.summary-price {
    color: #1e293b;
    font-weight: 500;
}

.summary-price.discount {
    color: #ef4444;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    margin-top: 16px;
}

.total-label {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.total-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.total-price .currency {
    font-size: 16px;
    font-weight: 600;
    color: #ef4444;
}

.total-price .amount {
    font-size: 28px;
    font-weight: 700;
    color: #ef4444;
}

.btn-submit-order {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    height: 44px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit-order:hover {
    background: #22ad56;
}

.summary-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 12px;
    color: #94a3b8;
}

/* 响应式 */
@media (max-width: 1024px) {
    .console-layout {
        flex-direction: column;
    }
    
    .console-sidebar {
        width: 100%;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .console-main {
        padding: 20px;
    }
    
    .type-selector,
    .service-selector {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-item {
        width: 100%;
    }
    
    .info-text {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    
    .info-text .divider {
        display: none;
    }
}

/* 表单分区 */
.form-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #f1f5f9;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

.section-number {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

/* 预约类型选择 */
.appointment-type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.appointment-option {
    cursor: pointer;
}

.appointment-option input {
    display: none;
}

.appointment-card {
    padding: 28px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
}

.appointment-option input:checked + .appointment-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(45, 197, 102, 0.05) 0%, rgba(45, 197, 102, 0.02) 100%);
    box-shadow: 0 4px 20px rgba(45, 197, 102, 0.15);
}

.appointment-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.appointment-icon-box {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.appointment-option input:checked + .appointment-card .appointment-icon-box {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.appointment-name {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.appointment-hint {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

/* 预约类型选择器 */
.booking-type-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.booking-type-option {
    cursor: pointer;
}

.booking-type-option input {
    display: none;
}

.booking-type-card {
    padding: 28px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    overflow: hidden;
}

.booking-type-option input:checked + .booking-type-card {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(45, 197, 102, 0.05) 0%, rgba(45, 197, 102, 0.02) 100%);
    box-shadow: 0 4px 20px rgba(45, 197, 102, 0.15);
}

.booking-type-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.booking-type-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.booking-type-icon.urgent {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #d97706;
}

.booking-type-option input:checked + .booking-type-card .booking-type-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.booking-type-option input:checked + .booking-type-card .booking-type-icon.urgent {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.booking-type-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.booking-type-desc {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.5;
}

.booking-type-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-color);
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
}

.booking-type-price.urgent {
    color: #d97706;
}

/* 信息框 */
.info-box-green {
    background: linear-gradient(135deg, rgba(45, 197, 102, 0.06) 0%, rgba(45, 197, 102, 0.02) 100%);
    border: 1px solid rgba(45, 197, 102, 0.15);
    border-radius: 14px;
    padding: 20px 24px;
    margin-bottom: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-box-green.urgent {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(245, 158, 11, 0.02) 100%);
    border-color: rgba(245, 158, 11, 0.15);
}

.info-box-icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(45, 197, 102, 0.15);
}

.info-box-green.urgent .info-box-icon {
    color: #d97706;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.info-box-content {
    flex: 1;
}

.info-box-content h6 {
    color: #059669;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-box-green.urgent .info-box-content h6 {
    color: #d97706;
}

.info-box-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.info-box-items span {
    color: #64748b;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.info-box-items span i {
    color: var(--primary-color);
    font-size: 12px;
}

.info-box-green.urgent .info-box-items span i {
    color: #d97706;
}

.info-box-green p {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 4px;
}

/* 表单样式 */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-green {
    margin-bottom: 0;
}

.form-group-green label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
}

.form-group-green label i {
    color: var(--primary-color);
    font-size: 13px;
}

.form-control-green,
.form-select-green {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
    color: #1e293b;
}

.form-control-green:hover,
.form-select-green:hover {
    border-color: #cbd5e1;
}

.form-control-green:focus,
.form-select-green:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 197, 102, 0.1);
}

.form-row-green {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* 优惠券区域 */
.coupon-area {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1.5px dashed #cbd5e1;
    border-radius: 14px;
    padding: 24px;
}

.coupon-input-row {
    display: flex;
    gap: 12px;
}

.coupon-input-wrapper {
    flex: 1;
    position: relative;
}

.coupon-input-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 16px;
}

.coupon-field {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    text-transform: uppercase;
    background: white;
    transition: all 0.3s ease;
}

.coupon-field:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(45, 197, 102, 0.1);
}

.coupon-field::placeholder {
    color: #94a3b8;
    text-transform: none;
}

.btn-coupon-use {
    padding: 14px 24px;
    background: white;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-coupon-use:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 197, 102, 0.3);
}

.coupon-msg {
    margin-top: 12px;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 10px;
    display: none;
}

.coupon-msg.success {
    display: block;
    background: rgba(45, 197, 102, 0.1);
    color: #059669;
    border: 1px solid rgba(45, 197, 102, 0.2);
}

.coupon-msg.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* 支付方式 */
.payment-methods-area {
    margin: 0;
}

.payment-options-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-option {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.payment-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option label:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.payment-option input:checked + label {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(45, 197, 102, 0.05) 0%, rgba(45, 197, 102, 0.02) 100%);
    box-shadow: 0 4px 20px rgba(45, 197, 102, 0.15);
}

.payment-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.payment-icon.alipay {
    background: linear-gradient(135deg, #e6f4ff 0%, #bae0ff 100%);
    color: #1677ff;
}

.payment-icon.wechat {
    background: linear-gradient(135deg, #f6ffed 0%, #d9f7be 100%);
    color: #07c160;
}

.payment-icon.qq {
    background: linear-gradient(135deg, #e6f7ff 0%, #bae7ff 100%);
    color: #12b7f5;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.payment-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.payment-desc {
    font-size: 13px;
    color: #64748b;
}

/* 价格汇总 */
.price-summary-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1.5px solid rgba(45, 197, 102, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin: 32px 0;
}

.price-original-line {
    display: flex;
    justify-content: space-between;
    color: #64748b;
    font-size: 15px;
    margin-bottom: 10px;
}

.strike-amount {
    text-decoration: line-through;
}

.price-discount-line {
    display: flex;
    justify-content: space-between;
    color: #dc2626;
    font-size: 15px;
    margin-bottom: 10px;
}

.price-final-amount {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1.5px dashed rgba(45, 197, 102, 0.3);
}

#finalAmount {
    color: var(--primary-color);
    font-size: 32px;
    font-weight: 800;
}

/* 提交按钮 */
.btn-submit-main {
    width: 100%;
    padding: 18px 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(45, 197, 102, 0.4);
    margin-top: 24px;
}

.btn-submit-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(45, 197, 102, 0.5);
    background: var(--gradient-primary-hover);
}

.btn-submit-main:active {
    transform: translateY(-1px);
}

/* 警告框 */
.alert-danger-box {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: #dc2626;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 输入验证错误 */
.input-invalid {
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* 响应式 */
@media (max-width: 768px) {
    .booking-header {
        padding-top: 30px;
        margin-bottom: 30px;
    }
    
    .booking-header-title {
        font-size: 32px;
    }
    
    .booking-form-card {
        padding: 24px;
        margin: 0 16px;
        border-radius: 16px;
    }
    
    .form-section {
        margin-bottom: 28px;
        padding-bottom: 28px;
    }
    
    .section-title {
        font-size: 16px;
    }
    
    .appointment-type-grid,
    .booking-type-selector {
        grid-template-columns: 1fr;
    }
    
    .appointment-card,
    .booking-type-card {
        padding: 20px 16px;
    }
    
    .form-grid,
    .form-row-green {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .info-box-green {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .info-box-icon {
        margin: 0 auto;
    }
    
    .info-box-items {
        justify-content: center;
    }
    
    .coupon-input-row {
        flex-direction: column;
    }
    
    .payment-option {
        min-width: 100%;
    }
    
    .payment-option label {
        padding: 16px;
    }
    
    .price-final-amount {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    #finalAmount {
        font-size: 28px;
    }
}

/* ========== 腾讯云控制台风格订单查询页面 ========== */

.order-query-console {
    background: #f5f7fa;
    min-height: calc(100vh - 86px);
    padding: 40px 0 80px;
}

/* 页面头部 */
.console-page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.console-page-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.console-page-desc {
    font-size: 15px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* 卡片样式 */
.console-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.04);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.console-card:hover {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* 查询表单 */
.console-query-form {
    display: flex;
    gap: 16px;
    padding: 32px;
    align-items: center;
}

.query-input-box {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.query-input-box i {
    position: absolute;
    left: 20px;
    color: #94a3b8;
    font-size: 18px;
    pointer-events: none;
}

.query-input-box input {
    width: 100%;
    height: 56px;
    padding: 0 20px 0 52px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.query-input-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 197, 102, 0.1);
}

.query-input-box input::placeholder {
    color: #94a3b8;
}

.btn-query {
    height: 56px;
    padding: 0 32px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(45, 197, 102, 0.35);
}

.btn-query:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 197, 102, 0.45);
    background: var(--gradient-primary-hover);
}

.btn-query:active {
    transform: translateY(0);
}

/* 警告提示 */
.console-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.alert-error i {
    font-size: 18px;
}

/* 订单详情卡片 */
.order-detail-card {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-bottom: 1px solid rgba(45, 197, 102, 0.1);
}

.order-detail-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.order-detail-title i {
    color: var(--primary-color);
    font-size: 22px;
}

/* 状态标签 */
.order-status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.order-status-tag.status-pending {
    background: #fef3c7;
    color: #d97706;
}

.order-status-tag.status-paid {
    background: #dbeafe;
    color: #2563eb;
}

.order-status-tag.status-booked {
    background: #e0e7ff;
    color: #4f46e5;
}

.order-status-tag.status-completed {
    background: #d1fae5;
    color: #059669;
}

.order-status-tag.status-refunded {
    background: #fee2e2;
    color: #dc2626;
}

/* 订单信息网格 */
.order-info-grid {
    padding: 8px 32px 32px;
}

.info-row {
    display: flex;
    border-bottom: 1px solid #f1f5f9;
}

.info-row:last-child,
.info-row.last {
    border-bottom: none;
}

.info-cell {
    flex: 1;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-cell:first-child {
    border-right: 1px solid #f1f5f9;
    padding-right: 32px;
}

.info-cell:last-child {
    padding-left: 32px;
}

.info-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.info-label i {
    font-size: 14px;
    color: var(--primary-color);
    width: 16px;
}

.info-value {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    word-break: break-all;
}

.info-value.order-no {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 14px;
    color: #3b82f6;
    background: #eff6ff;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
}

.info-value.price {
    font-size: 20px;
    font-weight: 700;
    color: #ef4444;
}

.info-value.highlight {
    color: var(--primary-color);
}

.info-value.game {
    color: #8b5cf6;
}

.info-value.type {
    color: #06b6d4;
}

.info-value.time {
    font-family: 'SF Mono', Monaco, monospace;
    font-size: 14px;
    color: #64748b;
}

.info-value .completed {
    color: #059669;
}

.info-value .pending {
    color: #94a3b8;
}

/* 状态徽章 */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.badge-success {
    background: #d1fae5;
    color: #059669;
}

.status-badge.badge-warning {
    background: #fef3c7;
    color: #d97706;
}

.status-badge.badge-danger {
    background: #fee2e2;
    color: #dc2626;
}

.status-badge.badge-secondary {
    background: #f1f5f9;
    color: #64748b;
}

/* 小贴士卡片 */
.tips-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.tips-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 32px;
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    font-size: 16px;
    font-weight: 600;
    color: #92400e;
}

.tips-header i {
    color: #f59e0b;
    font-size: 18px;
}

.tips-list {
    list-style: none;
    padding: 20px 32px;
    margin: 0;
}

.tips-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #78350f;
    line-height: 1.6;
}

.tips-list li:last-child {
    margin-bottom: 0;
}

.tips-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #f59e0b;
    border-radius: 50%;
}

/* 响应式 */
@media (max-width: 768px) {
    .order-query-console {
        padding: 24px 0 60px;
    }
    
    .console-page-header {
        margin-bottom: 28px;
        padding-top: 10px;
    }
    
    .console-page-title {
        font-size: 28px;
    }
    
    .console-page-desc {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .console-query-form {
        flex-direction: column;
        padding: 24px;
        gap: 12px;
    }
    
    .query-input-box {
        width: 100%;
    }
    
    .query-input-box input {
        height: 50px;
    }
    
    .btn-query {
        width: 100%;
        height: 50px;
        justify-content: center;
    }
    
    .order-detail-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 20px 24px;
    }
    
    .order-detail-title {
        font-size: 18px;
    }
    
    .order-info-grid {
        padding: 0 24px 24px;
    }
    
    .info-row {
        flex-direction: column;
    }
    
    .info-cell {
        padding: 16px 0;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .info-cell:first-child {
        border-right: none;
        padding-right: 0;
    }
    
    .info-cell:last-child {
        padding-left: 0;
        border-bottom: none;
    }
    
    .info-row:last-child .info-cell:last-child {
        border-bottom: none;
    }
    
    .tips-header,
    .tips-list {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ========== 黑名单公示页面样式 ========== */

.blacklist-page {
    background: #f5f7fa;
    min-height: calc(100vh - 86px);
    padding: 40px 0 80px;
}

/* 页面头部 */
.page-header-green {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-header-green h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-header-green h1 i {
    color: #dc2626;
}

.page-subtitle-green {
    font-size: 15px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* 统计卡片行 */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.stat-card-bl {
    background: white;
    border-radius: 12px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.stat-card-bl:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stat-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.stat-icon-wrap.stat-danger {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #dc2626;
}

.stat-icon-wrap.stat-warning {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    color: #d97706;
}

.stat-icon-wrap.stat-success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #059669;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

/* 搜索栏 */
.search-filter-bar {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.04);
}

.search-filter-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

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

.search-input-group input {
    width: 100%;
    height: 48px;
    padding: 0 18px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #1e293b;
    background: #fafbfc;
    transition: all 0.3s ease;
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(45, 197, 102, 0.1);
}

.search-input-group input::placeholder {
    color: #94a3b8;
}

.btn-primary-modern {
    height: 48px;
    padding: 0 24px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(45, 197, 102, 0.35);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 197, 102, 0.45);
}

.btn-secondary-modern {
    height: 48px;
    padding: 0 24px;
    background: white;
    color: #64748b;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-secondary-modern:hover {
    border-color: #dc2626;
    color: #dc2626;
    background: #fef2f2;
}

/* 表格容器 */
.bl-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-bottom: 24px;
}

.table-responsive {
    overflow-x: auto;
}

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

.bl-table thead {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.bl-table th {
    padding: 18px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}

.bl-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #334155;
}

.bl-table tbody tr:hover {
    background: #f8fafc;
}

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

/* 表格单元格样式 */
.id-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 10px;
    background: #f1f5f9;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    font-family: 'SF Mono', Monaco, monospace;
}

.username-cell strong {
    color: #1e293b;
    font-weight: 600;
}

.wechat-cell {
    font-family: 'SF Mono', Monaco, monospace;
    color: #64748b;
    letter-spacing: 1px;
}

.date-cell {
    color: #64748b;
    font-size: 13px;
}

.date-cell i {
    margin-right: 6px;
    color: #94a3b8;
}

.reason-cell {
    max-width: 300px;
    line-height: 1.6;
    color: #475569;
}

/* 空状态 */
.empty-state-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.empty-state-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.empty-state-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.empty-state-desc {
    font-size: 14px;
    color: #64748b;
    max-width: 400px;
}

/* 分页 */
.pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.pagination-modern a,
.pagination-modern span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination-modern a {
    background: white;
    color: #475569;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.pagination-modern a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: #f0fdf4;
}

.pagination-modern span.current {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(45, 197, 102, 0.35);
}

.pagination-modern span.disabled {
    color: #94a3b8;
    cursor: default;
}

/* 记录信息栏 */
.records-info-bar {
    text-align: center;
    padding: 16px;
    background: white;
    border-radius: 10px;
    font-size: 14px;
    color: #64748b;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.records-info-bar strong {
    color: #1e293b;
    font-weight: 700;
}

/* 响应式 */
@media (max-width: 1024px) {
    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .stat-card-bl {
        padding: 20px;
    }
    
    .stat-icon-wrap {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }
    
    .stat-num {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .blacklist-page {
        padding: 20px 0 60px;
    }
    
    .page-header-green {
        margin-bottom: 28px;
        padding-top: 10px;
    }
    
    .page-header-green h1 {
        font-size: 28px;
    }
    
    .page-subtitle-green {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-card-bl {
        padding: 20px;
    }
    
    .search-filter-bar {
        padding: 20px;
    }
    
    .search-filter-row {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input-group input {
        min-width: auto !important;
    }
    
    .search-filter-row > div {
        display: flex;
        gap: 12px;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        flex: 1;
        justify-content: center;
    }
    
    .bl-table th,
    .bl-table td {
        padding: 14px 16px;
    }
    
    .reason-cell {
        max-width: 200px;
    }
}

/* ========== 文章列表横向布局样式 ========== */

.articles-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-item-horizontal {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.article-item-horizontal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

/* 左侧图片区域 */
.article-item-image {
    position: relative;
    width: 280px;
    min-width: 280px;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-item-horizontal:hover .article-item-image img {
    transform: scale(1.05);
}

.article-item-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-item-image-placeholder i {
    font-size: 48px;
    color: var(--primary-color);
}

.article-item-top-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

/* 右侧内容区域 */
.article-item-content {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-item-header {
    margin-bottom: 12px;
}

.article-item-category {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-item-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    margin: 0;
}

.article-item-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.article-item-title a:hover {
    color: var(--primary-color);
}

.article-item-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-item-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
}

.meta-item {
    font-size: 13px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    font-size: 14px;
}

.article-item-readmore {
    margin-left: auto;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.article-item-readmore:hover {
    gap: 10px;
}

.article-item-readmore i {
    font-size: 12px;
}

/* 响应式 */
@media (max-width: 768px) {
    .article-item-horizontal {
        flex-direction: column;
    }
    
    .article-item-image {
        width: 100%;
        height: 200px;
        min-width: auto;
    }
    
    .article-item-content {
        padding: 20px;
    }
    
    .article-item-title {
        font-size: 18px;
    }
    
    .article-item-meta {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .article-item-readmore {
        margin-left: 0;
        width: 100%;
        margin-top: 8px;
        padding-top: 12px;
        border-top: 1px solid #f1f5f9;
    }
}

/* ========== 文章详情页面样式 ========== */

/* 面包屑导航 */
.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: var(--primary-color);
}

.breadcrumb-separator {
    color: #cbd5e1;
}

.breadcrumb-current {
    color: #1e293b;
    font-weight: 500;
}

/* 文章头部 */
.article-view-category {
    display: inline-block;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.article-view-title {
    font-size: 32px !important;
    line-height: 1.4;
    margin-bottom: 20px;
}

.article-view-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.article-view-meta .meta-item {
    font-size: 14px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-view-meta .meta-item i {
    color: #94a3b8;
}

/* 文章布局 */
.article-view-layout {
    display: flex;
    gap: 32px;
}

.article-view-main {
    flex: 1;
    min-width: 0;
}

.article-view-sidebar {
    width: 340px;
    flex-shrink: 0;
}

/* 封面图片 */
.article-view-cover {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.article-view-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* 文章内容 */
.article-view-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.04);
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
}

.article-view-content p {
    margin-bottom: 20px;
}

.article-view-content h2,
.article-view-content h3,
.article-view-content h4 {
    color: #1e293b;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.article-view-content h2 {
    font-size: 24px;
}

.article-view-content h3 {
    font-size: 20px;
}

.article-view-content h4 {
    font-size: 18px;
}

.article-view-content ul,
.article-view-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-view-content li {
    margin-bottom: 8px;
}

.article-view-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 16px 20px;
    margin: 24px 0;
    background: #f8fafc;
    border-radius: 0 8px 8px 0;
    color: #475569;
    font-style: italic;
}

.article-view-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.article-view-content a:hover {
    text-decoration: underline;
}

.article-view-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 24px 0;
}

.article-view-content strong {
    color: #1e293b;
    font-weight: 700;
}

/* 图片画廊 */
.article-gallery {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
}

.gallery-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-title i {
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    margin: 0;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 附件列表 */
.article-attachments {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #f1f5f9;
}

.attachments-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.attachments-title i {
    color: var(--primary-color);
}

.attachment-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.attachment-card:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(45, 197, 102, 0.1);
}

.attachment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.attachment-info {
    flex: 1;
    min-width: 0;
}

.attachment-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.attachment-size {
    font-size: 13px;
    color: #94a3b8;
}

.attachment-action {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

/* 文章导航 */
.article-view-nav {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}

.nav-item {
    flex: 1;
    padding: 20px 24px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(45, 197, 102, 0.12);
    transform: translateY(-2px);
}

.nav-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-item.disabled:hover {
    border-color: #f1f5f9;
    transform: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.nav-prev {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-label {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-prev .nav-label {
    justify-content: flex-start;
}

.nav-next .nav-label {
    justify-content: flex-end;
}

.nav-title {
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-item:hover .nav-title {
    color: var(--primary-color);
}

/* 侧边栏 */
.btn-back-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(45, 197, 102, 0.35);
}

.btn-back-list:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 197, 102, 0.45);
    color: white;
}

.sidebar-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sidebar-title {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-title i {
    color: var(--primary-color);
}

/* 相关文章列表 */
.related-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.related-item {
    display: flex;
    gap: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 8px;
    margin: -8px;
}

.related-item:hover {
    background: #f8fafc;
}

.related-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-thumb.placeholder {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-thumb.placeholder i {
    font-size: 24px;
    color: var(--primary-color);
}

.related-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.related-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 6px;
}

.related-item:hover .related-item-title {
    color: var(--primary-color);
}

.related-item-date {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .article-view-layout {
        flex-direction: column;
    }
    
    .article-view-sidebar {
        width: 100%;
    }
    
    .article-view-title {
        font-size: 26px !important;
    }
}

@media (max-width: 768px) {
    .article-view-content {
        padding: 24px;
    }
    
    .article-view-title {
        font-size: 22px !important;
    }
    
    .article-view-meta {
        gap: 16px;
    }
    
    .article-view-nav {
        flex-direction: column;
    }
    
    .nav-next {
        text-align: left;
    }
    
    .nav-next .nav-label {
        justify-content: flex-start;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
