/* ===== 劳力士原色色调：深邃绿 + 香槟金 ===== */
        :root {
            --rolex-green: #00572E;
            --rolex-green-dark: #003D1F;
            --rolex-green-light: #E8F0EC;
            --rolex-gold: #C9A84C;
            --rolex-gold-light: #E8D5A3;
            --rolex-black: #1A1A1A;
            --rolex-white: #FFFFFF;
            --rolex-gray: #F7F7F7;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
            background: #f0f2ef;
            color: #222;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== 顶部提示条 ===== */
        .top-bar {
            background: var(--rolex-green-dark);
            color: #d4d9d1;
            font-size: 13px;
            padding: 8px 0;
            border-bottom: 2px solid var(--rolex-gold);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar .hotline {
            color: #fff;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .top-bar .hotline i {
            color: var(--rolex-gold);
            margin-right: 6px;
        }

        .top-bar .notice i {
            color: var(--rolex-gold);
            margin-right: 4px;
        }

        /* ===== 头部导航 ===== */
        .header {
            background: var(--rolex-white);
            box-shadow: 0 2px 12px rgba(0, 87, 46, 0.12);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid #e0e6e2;
        }

        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 76px;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .logo .icon {
            font-size: 34px;
            color: var(--rolex-gold);
            filter: drop-shadow(0 2px 4px rgba(201, 168, 76, 0.3));
        }

        .logo h1 {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 3px;
            color: var(--rolex-green-dark);
        }

        .logo h1 span {
            color: var(--rolex-gold);
        }

        .logo .sub {
            font-size: 12px;
            color: #7a8a7e;
            letter-spacing: 2px;
            margin-left: 6px;
            font-weight: 500;
        }

        /* ===== 桌面导航 ===== */
        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-desktop a {
            font-size: 15px;
            color: #2d3a32;
            font-weight: 500;
            transition: color 0.2s;
            position: relative;
            white-space: nowrap;
        }

        .nav-desktop a:hover {
            color: var(--rolex-gold);
        }

        .nav-desktop a.active {
            color: var(--rolex-green);
            font-weight: 600;
        }

        .nav-desktop a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--rolex-gold);
            border-radius: 2px;
        }

        .nav-desktop .phone {
            background: var(--rolex-gold);
            color: #fff;
            padding: 8px 22px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1px;
            transition: background 0.2s, transform 0.1s;
            box-shadow: 0 4px 10px rgba(201, 168, 76, 0.3);
        }

        .nav-desktop .phone:hover {
            background: #b8973a;
            color: #fff;
            transform: scale(1.02);
        }

        .nav-desktop .phone::after {
            display: none;
        }

        /* ===== 汉堡菜单按钮（仅移动端显示） ===== */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px 4px;
            background: none;
            border: none;
            outline: none;
            flex-shrink: 0;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--rolex-green-dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* ===== 移动端导航 ===== */
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: var(--rolex-white);
            padding: 16px 24px 24px;
            border-top: 1px solid #e0e6e2;
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 99;
        }

        .mobile-nav.open {
            display: flex;
        }

        .mobile-nav a {
            padding: 12px 0;
            font-size: 16px;
            color: #2d3a32;
            font-weight: 500;
            border-bottom: 1px solid #f0f0f0;
            transition: color 0.2s;
        }

        .mobile-nav a:last-child {
            border-bottom: none;
        }

        .mobile-nav a.active {
            color: var(--rolex-gold);
        }

        .mobile-nav .phone-mobile {
            margin-top: 14px;
            background: var(--rolex-gold);
            color: #fff;
            padding: 12px 20px;
            border-radius: 30px;
            text-align: center;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
            display: block;
            border-bottom: none;
        }

        .mobile-nav .phone-mobile:hover {
            background: #b8973a;
        }

        /* ===== 大 Banner ===== */
        .hero-banner {
            background: linear-gradient(135deg, #002b14 0%, var(--rolex-green-dark) 50%, #001f0e 100%);
            padding: 80px 0;
            position: relative;
            border-bottom: 4px solid var(--rolex-gold);
            min-height: 480px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-banner::after {
            content: '\f005';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            font-size: 280px;
            color: rgba(201, 168, 76, 0.04);
            position: absolute;
            bottom: -60px;
            left: -40px;
            pointer-events: none;
            transform: rotate(-8deg);
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .hero-content .badge {
            display: inline-block;
            background: var(--rolex-gold);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            padding: 4px 18px;
            border-radius: 30px;
            letter-spacing: 2px;
            margin-bottom: 20px;
            text-transform: uppercase;
            box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3);
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: 2px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .hero-content h1 span {
            color: var(--rolex-gold);
        }

        .hero-content p {
            font-size: 18px;
            color: #d4e0d8;
            margin-bottom: 28px;
            line-height: 1.8;
            max-width: 550px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }

        .hero-content .btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        .hero-content .btn-primary {
            background: var(--rolex-gold);
            color: #fff;
            padding: 14px 40px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1px;
            transition: all 0.25s ease;
            box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .hero-content .btn-primary:hover {
            background: #b8973a;
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(201, 168, 76, 0.45);
        }

        .hero-content .btn-outline {
            border: 2px solid var(--rolex-gold);
            color: var(--rolex-gold);
            padding: 12px 32px;
            border-radius: 40px;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-content .btn-outline:hover {
            background: var(--rolex-gold);
            color: #fff;
        }

        .hero-content .small-note {
            margin-top: 20px;
            font-size: 13px;
            color: #8aa699;
        }

        .hero-content .small-note i {
            color: var(--rolex-gold);
            margin-right: 4px;
        }

        /* ===== 地址滚动条 ===== */
        .address-scroll {
            background: var(--rolex-white);
            padding: 14px 0;
            border-bottom: 1px solid #dce3de;
            overflow: hidden;
            white-space: nowrap;
        }

        .address-scroll .scroll-track {
            display: inline-block;
            animation: scrollAddress 48s linear infinite;
            font-size: 14px;
            color: #2d4a3a;
        }

        .address-scroll .scroll-track span {
            margin-right: 40px;
        }

        .address-scroll .scroll-track i {
            color: var(--rolex-gold);
            margin-right: 6px;
        }

        @keyframes scrollAddress {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        /* ===== 主体卡片通用 ===== */
        .section-block {
            background: var(--rolex-white);
            padding: 40px 0 30px;
            margin-top: 24px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 40, 20, 0.06);
            border-left: 4px solid var(--rolex-gold);
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 6px;
            letter-spacing: 3px;
            color: var(--rolex-green-dark);
        }

        .section-title span {
            color: var(--rolex-gold);
        }

        .section-sub {
            text-align: center;
            color: #7a8e80;
            font-size: 14px;
            margin-bottom: 28px;
            letter-spacing: 1px;
        }

        /* ===== 统一更多链接样式 ===== */
        .more-link-wrapper {
            text-align: center;
            margin-top: 28px;
        }

        .more-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--rolex-gold);
            color: #fff;
            padding: 14px 40px;
            border-radius: 40px;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.25s ease;
            box-shadow: 0 4px 16px rgba(201, 168, 76, 0.3);
        }

        .more-link i {
            transition: transform 0.25s ease;
        }

        .more-link:hover {
            background: #b8973a;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(201, 168, 76, 0.4);
        }

        .more-link:hover i {
            transform: translateX(4px);
        }

        /* ===== 城市分中心 ===== */
        .city-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
            gap: 18px;
        }

        .city-card {
            background: var(--rolex-gray);
            border-radius: 10px;
            padding: 20px 22px;
            border-left: 4px solid var(--rolex-gold);
            border-bottom: 1px solid #e6ede8;
            transition: all 0.25s ease;
            cursor: default;
        }

        .city-card:hover {
            background: #f4f9f6;
            box-shadow: 0 4px 16px rgba(0, 87, 46, 0.10);
            transform: translateY(-2px);
        }

        .city-card .name {
            font-weight: 700;
            font-size: 17px;
            color: var(--rolex-green-dark);
            margin-bottom: 6px;
        }

        .city-card .name i {
            color: var(--rolex-gold);
            margin-right: 8px;
        }

        .city-card .addr {
            font-size: 13px;
            color: #4d6656;
            line-height: 1.6;
        }

        .city-card .hotline {
            font-size: 13px;
            color: var(--rolex-gold);
            font-weight: 600;
            margin-top: 8px;
        }

        /* ===== 评价区 ===== */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        .review-card {
            background: #fafcfa;
            border-radius: 10px;
            padding: 22px;
            border: 1px solid #e0eae4;
            transition: border-color 0.2s;
        }

        .review-card:hover {
            border-color: var(--rolex-gold);
        }

        .review-card .user {
            font-weight: 600;
            font-size: 15px;
            color: var(--rolex-green-dark);
        }

        .review-card .user i {
            color: var(--rolex-gold);
            margin-right: 6px;
        }

        .review-card .stars {
            color: var(--rolex-gold);
            font-size: 14px;
            margin: 4px 0 10px;
        }

        .review-card .content {
            font-size: 14px;
            color: #3d5447;
            line-height: 1.8;
        }

        .review-card .meta {
            margin-top: 12px;
            font-size: 12px;
            color: #99ae9f;
        }

        /* ===== 常见问题 ===== */
        .faq-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
            gap: 12px;
        }

        .faq-item {
            padding: 14px 18px;
            background: #f6f9f7;
            border-radius: 8px;
            border-bottom: 2px solid #e0eae4;
            transition: background 0.2s, border-color 0.2s;
        }

        .faq-item:hover {
            background: #eff5f1;
            border-color: var(--rolex-gold);
        }

        .faq-item a {
            font-size: 14px;
            color: #1e3a2c;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item a i {
            color: var(--rolex-gold);
            font-size: 13px;
            transition: transform 0.2s;
        }

        .faq-item a:hover i {
            transform: translateX(4px);
        }

        .faq-item .tag {
            font-size: 12px;
            color: var(--rolex-green);
            background: #e3efe8;
            padding: 0 12px;
            border-radius: 12px;
            margin-right: 10px;
            font-weight: 600;
        }

        /* ===== 服务项目 ===== */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 24px;
        }

        .service-card {
            text-align: center;
            padding: 28px 16px;
            background: #f8fbf9;
            border-radius: 12px;
            border: 1px solid #e0ece4;
            transition: all 0.25s ease;
        }

        .service-card:hover {
            border-color: var(--rolex-gold);
            box-shadow: 0 6px 24px rgba(201, 168, 76, 0.15);
            background: #fffdf7;
        }

        .service-card .icon {
            font-size: 38px;
            color: var(--rolex-gold);
            margin-bottom: 12px;
        }

        .service-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--rolex-green-dark);
            margin-bottom: 6px;
        }

        .service-card p {
            font-size: 13px;
            color: #5d7566;
            line-height: 1.7;
        }

        /* ===== 页脚 ===== */
        .footer {
            background: var(--rolex-green-dark);
            color: #b6cdbe;
            padding: 40px 0 20px;
            margin-top: 40px;
            border-top: 4px solid var(--rolex-gold);
        }

        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }

        .footer .brand {
            max-width: 300px;
        }

        .footer .brand h3 {
            color: #fff;
            font-size: 22px;
            letter-spacing: 3px;
        }

        .footer .brand h3 span {
            color: var(--rolex-gold);
        }

        .footer .brand p {
            font-size: 13px;
            margin-top: 10px;
            line-height: 1.8;
            color: #b0c9bb;
        }

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

        .footer .links .col h4 {
            color: var(--rolex-gold-light);
            font-size: 15px;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .footer .links .col a {
            display: block;
            font-size: 13px;
            color: #b0c9bb;
            margin-bottom: 6px;
            transition: color 0.2s;
        }

        .footer .links .col a:hover {
            color: var(--rolex-gold);
        }

        .footer .bottom {
            text-align: center;
            padding-top: 20px;
            margin-top: 20px;
            border-top: 1px solid #1f4d35;
            font-size: 13px;
            color: #7a9b89;
            width: 100%;
            letter-spacing: 0.5px;
        }

        /* ============================================================ */
        /* ===== 响应式：移动端专用 ===== */
        /* ============================================================ */
        @media (max-width: 768px) {
            /* 隐藏顶部提示条中的400号码 */
            .top-bar .hotline {
                display: none;
            }

            .top-bar .container {
                flex-direction: column;
                gap: 4px;
                text-align: center;
            }

            /* ===== 头部：显示汉堡，隐藏桌面导航 ===== */
            .header .container {
                height: auto;
                padding: 12px 20px;
                flex-wrap: nowrap;
            }

            .logo h1 {
                font-size: 20px;
            }
            .logo .sub {
                font-size: 11px;
            }

            .nav-desktop {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--rolex-white);
                padding: 16px 24px 24px;
                border-top: 1px solid #e0e6e2;
                box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
                z-index: 99;
                flex-direction: column;
            }

            .mobile-nav.open {
                display: flex;
            }

            .mobile-nav a {
                padding: 12px 0;
                font-size: 16px;
                color: #2d3a32;
                font-weight: 500;
                border-bottom: 1px solid #f0f0f0;
            }

            .mobile-nav a:last-child {
                border-bottom: none;
            }

            .mobile-nav a.active {
                color: var(--rolex-gold);
            }

            .mobile-nav .phone-mobile {
                margin-top: 14px;
                background: var(--rolex-gold);
                color: #fff;
                padding: 12px 20px;
                border-radius: 30px;
                text-align: center;
                font-weight: 600;
                font-size: 16px;
                letter-spacing: 1px;
                box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
                display: block;
                border-bottom: none;
            }

            .mobile-nav .phone-mobile:hover {
                background: #b8973a;
            }

            /* ===== Banner 适配 ===== */
            .hero-banner {
                padding: 60px 0;
                min-height: 320px;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .hero-content p {
                font-size: 16px;
            }
            .hero-content .btn-primary,
            .hero-content .btn-outline {
                padding: 10px 24px;
                font-size: 14px;
            }

            /* ===== 卡片网格 ===== */
            .city-grid,
            .review-grid,
            .faq-list {
                grid-template-columns: 1fr;
            }

            /* ===== 移动端限制显示数量：网点、评价、问题各显示前3个 ===== */
            .city-grid .city-card:nth-child(n+4) {
                display: none;
            }
            .review-grid .review-card:nth-child(n+4) {
                display: none;
            }
            .faq-list .faq-item:nth-child(n+4) {
                display: none;
            }

            /* ===== 服务项目：移动端两列布局 ===== */
            .service-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }

            .service-card {
                padding: 20px 12px;
            }

            .service-card .icon {
                font-size: 28px;
                margin-bottom: 8px;
            }

            .service-card h4 {
                font-size: 15px;
                margin-bottom: 4px;
            }

            .service-card p {
                font-size: 12px;
                line-height: 1.5;
                color: #6a7f72;
            }

            /* ============================================================ */
            /* ===== ★ 页脚：移动端三个栏目水平一排 ===== */
            /* ============================================================ */
            .footer .container {
                flex-direction: column;
                gap: 20px;
            }

            .footer .brand {
                max-width: 100%;
                text-align: center;
            }

            .footer .brand h3 {
                font-size: 20px;
            }

            .footer .brand p {
                font-size: 12px;
                max-width: 100%;
            }

            .footer .links {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 0;
                width: 100%;
                justify-content: space-around;
            }

            .footer .links .col {
                flex: 1;
                text-align: center;
                min-width: 0;
                padding: 0 4px;
            }

            .footer .links .col h4 {
                font-size: 13px;
                margin-bottom: 6px;
                letter-spacing: 0.5px;
            }

            .footer .links .col a {
                font-size: 12px;
                margin-bottom: 4px;
                display: block;
            }

            .footer .bottom {
                font-size: 11px;
                padding-top: 16px;
                margin-top: 16px;
                line-height: 1.6;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 26px;
            }
            .hero-content .btn-group {
                flex-direction: column;
                align-items: stretch;
            }
            .hero-content .btn-primary,
            .hero-content .btn-outline {
                justify-content: center;
            }

            /* 极窄屏下保持两列，但进一步缩小内边距 */
            .service-card {
                padding: 16px 8px;
            }
            .service-card .icon {
                font-size: 24px;
            }
            .service-card h4 {
                font-size: 13px;
            }
            .service-card p {
                font-size: 11px;
            }

            /* 页脚三个栏目进一步缩小字体 */
            .footer .links .col h4 {
                font-size: 12px;
            }
            .footer .links .col a {
                font-size: 11px;
            }
            .footer .bottom {
                font-size: 10px;
            }
        }
        
        
        /*列表页样式*/
        /* ================================================================ */
/* ===== 列表页新增样式（仅追加，不覆盖原有全局样式） ===== */
/* ================================================================ */

/* ---- 页面横幅 ---- */
.page-banner {
    background: linear-gradient(135deg, #002b14 0%, var(--rolex-green-dark) 50%, #001f0e 100%);
    padding: 52px 0 44px;
    border-bottom: 4px solid var(--rolex-gold);
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '\f15c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 200px;
    color: rgba(201, 168, 76, 0.04);
    position: absolute;
    bottom: -40px;
    right: 20px;
    pointer-events: none;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-banner h1 span {
    color: var(--rolex-gold);
}

.page-banner .breadcrumb {
    margin-top: 8px;
    font-size: 14px;
    color: #a0b9ab;
}

.page-banner .breadcrumb a {
    color: #c9dcd2;
    transition: color 0.2s;
}

.page-banner .breadcrumb a:hover {
    color: var(--rolex-gold);
}

.page-banner .breadcrumb .sep {
    margin: 0 8px;
    color: #5d7d6a;
}

.page-banner .breadcrumb .current {
    color: var(--rolex-gold-light);
    font-weight: 500;
}

/* ---- 列表主体：两栏布局 ---- */
.list-main {
    padding: 40px 0 50px;
    background: #f0f2ef;
}

.list-main .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* 左侧：文章列表 */
.list-content {
    flex: 1;
    min-width: 0;
}

/* 分类筛选标签 */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e0eae4;
}

.filter-tabs a {
    font-size: 14px;
    color: #4d6656;
    padding: 6px 18px;
    border-radius: 20px;
    background: #f4f8f5;
    border: 1px solid #dce3de;
    transition: all 0.2s;
    font-weight: 500;
}

.filter-tabs a:hover {
    border-color: var(--rolex-gold);
    color: var(--rolex-green-dark);
}

.filter-tabs a.active {
    background: var(--rolex-gold);
    color: #fff;
    border-color: var(--rolex-gold);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

/* 文章条目 */
.article-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.article-item {
    background: var(--rolex-white);
    border-radius: 12px;
    padding: 24px 28px 22px;
    border-left: 4px solid var(--rolex-gold);
    box-shadow: 0 2px 12px rgba(0, 40, 20, 0.05);
    transition: all 0.25s ease;
    border-bottom: 1px solid #eef3f0;
}

.article-item:hover {
    box-shadow: 0 6px 28px rgba(0, 87, 46, 0.10);
    transform: translateY(-2px);
}

.article-item .meta-top {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.article-item .meta-top .tag {
    font-size: 12px;
    background: var(--rolex-green-light);
    color: var(--rolex-green);
    padding: 0 14px;
    border-radius: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    height: 24px;
    line-height: 24px;
}

.article-item .meta-top .tag.gold {
    background: var(--rolex-gold-light);
    color: #8a7230;
}

.article-item .meta-top .date {
    font-size: 13px;
    color: #8aa699;
}

.article-item .meta-top .date i {
    margin-right: 4px;
    color: var(--rolex-gold);
}

.article-item .meta-top .views {
    font-size: 13px;
    color: #8aa699;
}

.article-item .meta-top .views i {
    margin-right: 4px;
    color: var(--rolex-gold);
}

.article-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--rolex-green-dark);
    margin-bottom: 8px;
    transition: color 0.2s;
    line-height: 1.4;
}

.article-item h3 a:hover {
    color: var(--rolex-gold);
}

.article-item .summary {
    font-size: 14px;
    color: #4d6656;
    line-height: 1.8;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-item .read-more {
    font-size: 13px;
    color: var(--rolex-gold);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.article-item .read-more:hover {
    gap: 12px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination a,
.pagination 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;
    color: #4d6656;
    background: #f4f8f5;
    border: 1px solid #dce3de;
    transition: all 0.2s;
}

.pagination a:hover {
    border-color: var(--rolex-gold);
    color: var(--rolex-green-dark);
    background: #fffdf7;
}

.pagination a.active {
    background: var(--rolex-gold);
    color: #fff;
    border-color: var(--rolex-gold);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.25);
}

.pagination a.disabled {
    opacity: 0.4;
    pointer-events: none;
}

.pagination .ellipsis {
    border: none;
    background: transparent;
    color: #8aa699;
    pointer-events: none;
}

/* 右侧边栏 */
.list-sidebar {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: var(--rolex-white);
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 2px 12px rgba(0, 40, 20, 0.05);
    border-top: 4px solid var(--rolex-gold);
}

.sidebar-card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--rolex-green-dark);
    margin-bottom: 16px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card .card-title i {
    color: var(--rolex-gold);
    font-size: 20px;
}

/* 搜索框 */
.search-box {
    display: flex;
    border: 1px solid #dce3de;
    border-radius: 30px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.search-box:focus-within {
    border-color: var(--rolex-gold);
}

.search-box input {
    flex: 1;
    border: none;
    padding: 10px 18px;
    font-size: 14px;
    outline: none;
    background: transparent;
    color: #2d3a32;
    min-width: 0;
}

.search-box input::placeholder {
    color: #a0b9ab;
}

.search-box button {
    background: var(--rolex-gold);
    border: none;
    color: #fff;
    padding: 0 18px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-box button:hover {
    background: #b8973a;
}

/* 热门文章 */
.hot-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hot-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f4f1;
}

.hot-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hot-list .num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rolex-green-light);
    color: var(--rolex-green);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.hot-list .num.top {
    background: var(--rolex-gold);
    color: #fff;
}

.hot-list li a {
    font-size: 14px;
    color: #2d3a32;
    line-height: 1.5;
    transition: color 0.2s;
}

.hot-list li a:hover {
    color: var(--rolex-gold);
}

.hot-list li .hot-meta {
    font-size: 12px;
    color: #8aa699;
    display: block;
    margin-top: 2px;
}

/* 标签云 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    font-size: 13px;
    color: #4d6656;
    background: #f4f8f5;
    padding: 4px 16px;
    border-radius: 20px;
    border: 1px solid #e0eae4;
    transition: all 0.2s;
}

.tag-cloud a:hover {
    border-color: var(--rolex-gold);
    color: var(--rolex-green-dark);
    background: #fffdf7;
}

/* ================================================================ */
/* ===== 列表页专属响应式（追加，不干扰原有全局响应式） ===== */
/* ================================================================ */

@media (max-width: 992px) {
    .list-main .container {
        flex-direction: column;
    }

    .list-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .list-sidebar .sidebar-card {
        flex: 1;
        min-width: 240px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 36px 0 30px;
    }
    .page-banner h1 {
        font-size: 26px;
    }

    .list-main {
        padding: 24px 0 36px;
    }

    .article-item {
        padding: 18px 18px 18px 20px;
    }
    .article-item h3 {
        font-size: 17px;
    }

    .filter-tabs {
        gap: 6px;
    }
    .filter-tabs a {
        font-size: 13px;
        padding: 4px 14px;
    }

    .list-sidebar {
        flex-direction: column;
    }
    .list-sidebar .sidebar-card {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .page-banner h1 {
        font-size: 22px;
    }
    .article-item h3 {
        font-size: 15px;
    }
    .article-item .summary {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
    .pagination a,
    .pagination span {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 8px;
    }
}

/*arcticle*/
/* ================================================================ */
/* ===== 文章详情页新增样式（仅追加，不覆盖已有样式） ===== */
/* ================================================================ */

/* ---- 页面横幅（文章页标题略小） ---- */
.page-banner h1 {
    font-size: 32px;
}

/* ---- 文章详情主体 ---- */
.article-detail-main {
    padding: 40px 0 50px;
    background: #f0f2ef;
}

.article-detail-main .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* ---- 左侧文章内容 ---- */
.article-content {
    flex: 1;
    min-width: 0;
    background: var(--rolex-white);
    border-radius: 12px;
    padding: 40px 44px;
    box-shadow: 0 2px 12px rgba(0, 40, 20, 0.05);
    border-left: 4px solid var(--rolex-gold);
}

.article-content .article-header {
    border-bottom: 2px solid #eef3f0;
    padding-bottom: 24px;
    margin-bottom: 28px;
}

.article-content .article-header .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-size: 14px;
    color: #7a8e80;
    margin-bottom: 12px;
}

.article-content .article-header .meta i {
    color: var(--rolex-gold);
    margin-right: 4px;
}

.article-content .article-header .meta .tag {
    background: var(--rolex-green-light);
    color: var(--rolex-green);
    padding: 0 14px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    display: inline-block;
}

.article-content .article-header .meta .tag.gold {
    background: var(--rolex-gold-light);
    color: #8a7230;
}

.article-content .article-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--rolex-green-dark);
    line-height: 1.4;
    margin-bottom: 8px;
}

.article-content .article-header .sub-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #8aa699;
}

.article-content .article-header .sub-info span i {
    color: var(--rolex-gold);
    margin-right: 4px;
}

/* ---- 正文样式 ---- */
.article-body {
    font-size: 16px;
    color: #2d3a32;
    line-height: 1.9;
}

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

.article-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--rolex-green-dark);
    margin: 28px 0 14px;
}

.article-body h4 {
    font-size: 17px;
    font-weight: 600;
    color: var(--rolex-green-dark);
    margin: 22px 0 10px;
}

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

.article-body li {
    margin-bottom: 6px;
}

.article-body blockquote {
    background: #f6f9f7;
    border-left: 4px solid var(--rolex-gold);
    padding: 16px 22px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    color: #3d5447;
    font-style: italic;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 16px 0;
    display: block;
}

.article-body .table-wrap {
    overflow-x: auto;
    margin: 20px 0;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.article-body table th,
.article-body table td {
    border: 1px solid #dce3de;
    padding: 10px 16px;
    text-align: left;
}

.article-body table th {
    background: var(--rolex-green-light);
    color: var(--rolex-green-dark);
    font-weight: 600;
}

/* ---- 文章底部 ---- */
.article-footer {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 2px solid #eef3f0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.article-footer .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.article-footer .tags a {
    font-size: 13px;
    color: #4d6656;
    background: #f4f8f5;
    padding: 4px 16px;
    border-radius: 20px;
    border: 1px solid #e0eae4;
    transition: all 0.2s;
}

.article-footer .tags a:hover {
    border-color: var(--rolex-gold);
    color: var(--rolex-green-dark);
    background: #fffdf7;
}

.article-footer .share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4d6656;
}

.article-footer .share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f8f5;
    color: #4d6656;
    border: 1px solid #e0eae4;
    transition: all 0.2s;
}

.article-footer .share a:hover {
    background: var(--rolex-gold);
    color: #fff;
    border-color: var(--rolex-gold);
}

/* ---- 作者信息 ---- */
.author-box {
    background: #fafcfa;
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 32px;
    display: flex;
    gap: 18px;
    align-items: center;
    border: 1px solid #e0eae4;
}

.author-box .avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--rolex-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--rolex-gold);
    flex-shrink: 0;
}

.author-box .info .name {
    font-weight: 700;
    color: var(--rolex-green-dark);
    font-size: 16px;
}

.author-box .info .desc {
    font-size: 13px;
    color: #7a8e80;
    line-height: 1.6;
}

/* ---- 相关文章 ---- */
.related-articles {
    margin-top: 40px;
}

.related-articles h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--rolex-green-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-articles h4 i {
    color: var(--rolex-gold);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 18px;
}

.related-grid .rel-item {
    background: #f8fbf9;
    border-radius: 8px;
    padding: 16px;
    border: 1px solid #e0ece4;
    transition: all 0.2s;
}

.related-grid .rel-item:hover {
    border-color: var(--rolex-gold);
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.12);
}

.related-grid .rel-item .rel-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--rolex-green-dark);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-grid .rel-item .rel-title a:hover {
    color: var(--rolex-gold);
}

.related-grid .rel-item .rel-date {
    font-size: 12px;
    color: #8aa699;
    margin-top: 6px;
    display: block;
}

/* ---- 评论区 ---- */
.comment-section {
    margin-top: 40px;
    border-top: 2px solid #eef3f0;
    padding-top: 32px;
}

.comment-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--rolex-green-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-section h4 i {
    color: var(--rolex-gold);
}

.comment-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.comment-item {
    display: flex;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f4f1;
}

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

.comment-item .c-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0eae4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4d6656;
    flex-shrink: 0;
}

.comment-item .c-body .c-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--rolex-green-dark);
}

.comment-item .c-body .c-time {
    font-size: 12px;
    color: #8aa699;
    margin-left: 10px;
}

.comment-item .c-body .c-text {
    font-size: 14px;
    color: #2d3a32;
    margin-top: 4px;
    line-height: 1.7;
}

.comment-item .c-body .c-reply {
    margin-top: 6px;
    font-size: 13px;
    color: var(--rolex-gold);
    cursor: pointer;
}

.comment-item .c-body .c-reply:hover {
    text-decoration: underline;
}

/* ---- 评论表单 ---- */
.comment-form {
    background: #fafcfa;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #e0eae4;
}

.comment-form .form-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.comment-form .form-row input {
    flex: 1;
    min-width: 160px;
    padding: 10px 16px;
    border: 1px solid #dce3de;
    border-radius: 6px;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.2s;
}

.comment-form .form-row input:focus {
    border-color: var(--rolex-gold);
    outline: none;
}

.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dce3de;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: border-color 0.2s;
}

.comment-form textarea:focus {
    border-color: var(--rolex-gold);
    outline: none;
}

.comment-form .submit-btn {
    background: var(--rolex-gold);
    color: #fff;
    border: none;
    padding: 10px 32px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 12px;
}

.comment-form .submit-btn:hover {
    background: #b8973a;
}

/* ---- 右侧边栏（文章页专用） ---- */
.article-sidebar {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 侧边栏卡片（复用列表页 .sidebar-card，但若没有则定义） */
/* 如果已有 .sidebar-card，则无需重复，但为确保独立，这里保留 */
.sidebar-card {
    background: var(--rolex-white);
    border-radius: 12px;
    padding: 22px 24px;
    box-shadow: 0 2px 12px rgba(0, 40, 20, 0.05);
    border-top: 4px solid var(--rolex-gold);
}

.sidebar-card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--rolex-green-dark);
    margin-bottom: 16px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card .card-title i {
    color: var(--rolex-gold);
    font-size: 20px;
}

/* 目录 */
.toc-list {
    list-style: none;
}

.toc-list li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f4f1;
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list li a {
    font-size: 14px;
    color: #4d6656;
    transition: color 0.2s;
    display: block;
}

.toc-list li a:hover {
    color: var(--rolex-gold);
}

.toc-list li a .toc-level {
    display: inline-block;
    width: 20px;
    color: var(--rolex-gold);
    font-weight: 600;
}

/* 侧边栏热门文章（区别于列表页的 .hot-list） */
.sidebar-hot-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-hot-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f4f1;
}

.sidebar-hot-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-hot-list .num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--rolex-green-light);
    color: var(--rolex-green);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.sidebar-hot-list .num.top {
    background: var(--rolex-gold);
    color: #fff;
}

.sidebar-hot-list li a {
    font-size: 14px;
    color: #2d3a32;
    line-height: 1.5;
    transition: color 0.2s;
}

.sidebar-hot-list li a:hover {
    color: var(--rolex-gold);
}

/* ================================================================ */
/* ===== 文章详情页专属响应式（追加） ===== */
/* ================================================================ */

@media (max-width: 992px) {
    .article-detail-main .container {
        flex-direction: column;
    }

    .article-sidebar {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .article-sidebar .sidebar-card {
        flex: 1;
        min-width: 240px;
    }

    .article-content {
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 24px;
    }

    .article-detail-main {
        padding: 24px 0 36px;
    }

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

    .article-content .article-header h2 {
        font-size: 22px;
    }

    .article-body {
        font-size: 15px;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        flex-direction: column;
    }

    .article-sidebar .sidebar-card {
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .page-banner h1 {
        font-size: 20px;
    }

    .article-content .article-header h2 {
        font-size: 19px;
    }

    .article-body {
        font-size: 14px;
    }

    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}
