:root {
            --primary: #1A365D;      /* 烟草深蓝 */
            --primary-light: #2A4A7A;
            --secondary: #ECC94B;    /* 烤烟蛋黄 */
            --secondary-light: #F5D95E;
            --bg-white: #FAF8F5;     /* 象牙白 */
            --bg-card: #FFFFFF;
            --text-dark: #1E2A3A;
            --text-muted: #5A6B7A;
            --border-light: #E8E3DA;
            --shadow: 0 8px 30px rgba(26, 54, 93, 0.08);
            --font: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }
        
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: var(--font);
            background: var(--bg-white);
            color: var(--text-dark);
            line-height: 1.7;
        }
        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }
        .container-3c2bbd {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        
        /* ----- 通用按钮 ----- */
        .btn-9afd3f {
            display: inline-block;
            padding: 14px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }
        .btn-primary-253950 {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 4px 16px rgba(26, 54, 93, 0.3);
        }
        .btn-primary-253950:hover {
            background: var(--primary-light);
            transform: translateY(-3px);
            box-shadow: 0 8px 28px rgba(26, 54, 93, 0.35);
        }
        .btn-secondary-0d5f4b {
            background: var(--secondary);
            color: var(--primary);
            box-shadow: 0 4px 16px rgba(236, 201, 75, 0.3);
        }
        .btn-secondary-0d5f4b:hover {
            background: var(--secondary-light);
            transform: translateY(-3px);
        }
        .btn-outline-4299cd {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }
        .btn-outline-4299cd:hover {
            background: var(--primary);
            color: #fff;
        }
        
        /* ----- 通用标题 ----- */
        .section-82b68f {
            padding: 80px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .section-alt-f40c42 {
            background: #FFFFFF;
        }
        .section-header-7a3f95 {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title-5c5f92 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            position: relative;
            display: inline-block;
            margin-bottom: 12px;
        }
        .section-title-5c5f92::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            margin: 10px auto 0;
            border-radius: 4px;
        }
        .section-subtitle-c663a5 {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* ----- 导航栏 (深蓝+黄) ----- */
        .header-ce8c32 {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--primary);
            box-shadow: 0 2px 20px rgba(26, 54, 93, 0.2);
        }
        .navbar-0d1639 { padding: 0 20px; }
        .nav-container-498d3b {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .nav-logo-71d3c3 {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: 1px;
        }
        .nav-logo-icon-7c95de {
            font-size: 2rem;
            color: var(--secondary);
        }
        .nav-logo-text-d382d2 { color: #fff; }
        .nav-menu-98eefd {
            display: flex;
            gap: 6px;
            align-items: center;
        }
        .nav-item-ba134a .nav-link-86eba2 {
            color: rgba(255,255,255,0.8);
            padding: 8px 18px;
            border-radius: 30px;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s;
        }
        .nav-item-ba134a .nav-link-86eba2:hover,
        .nav-item-ba134a .nav-link-86eba2.active {
            color: #fff;
            background: rgba(236, 201, 75, 0.2);
        }
        .nav-item-ba134a .nav-link-86eba2.active::after {
            content: '';
            display: block;
            width: 20px;
            height: 2px;
            background: var(--secondary);
            margin: 2px auto 0;
            border-radius: 2px;
        }
        .nav-toggle-d2dfa8 {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        .nav-toggle-d2dfa8 .bar-f3720c {
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 4px;
            transition: 0.3s;
        }
        @media (max-width: 992px) {
            .nav-menu-98eefd {
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--primary);
                flex-direction: column;
                padding: 20px;
                gap: 8px;
                display: none;
                box-shadow: 0 20px 30px rgba(0,0,0,0.15);
            }
            .nav-menu-98eefd.active { display: flex; }
            .nav-toggle-d2dfa8 { display: flex; }
        }
        
        /* ----- Hero (深蓝底，亮黄点缀) ----- */
        .hero-9ca0be {
            background: linear-gradient(135deg, var(--primary) 0%, #0F2847 100%);
            color: #fff;
            padding: 90px 0 70px;
            position: relative;
            overflow: hidden;
        }
        .hero-9ca0be::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(236, 201, 75, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero-content-a028cd { position: relative; z-index: 1; }
        .hero-text-9f200e { max-width: 800px; }
        .hero-title-16e4fd {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 10px;
        }
        .hero-title-16e4fd .yellow-9af375 {
            color: var(--secondary);
            text-shadow: 0 0 30px rgba(236, 201, 75, 0.2);
        }
        .hero-subtitle-d804d8 {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.85);
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 30px;
        }
        .hero-features-52f08d {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            margin: 30px 0 35px;
        }
        .hero-feature-e20880 {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.1rem;
        }
        .hero-feature-e20880 i {
            font-size: 1.8rem;
            color: var(--secondary);
        }
        .hero-buttons-c85737 {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .hero-buttons-c85737 .btn-secondary-0d5f4b i {
            margin-right: 8px;
        }
        @media (max-width: 768px) {
            .hero-title-16e4fd { font-size: 2.2rem; }
            .hero-subtitle-d804d8 { font-size: 1rem; }
            .hero-features-52f08d { gap: 20px; }
        }
        
        /* ----- 卡片 (白底，黄蓝边框) ----- */
        .card-e30914 {
            background: #fff;
            border-radius: 16px;
            padding: 30px 25px;
            border: 1px solid var(--border-light);
            transition: all 0.3s;
            box-shadow: var(--shadow);
        }
        .card-e30914:hover {
            transform: translateY(-6px);
            border-color: var(--secondary);
            box-shadow: 0 12px 40px rgba(26, 54, 93, 0.08);
        }
        
        /* ----- 关于我们 (前置) ----- */
        .about-content-bcee5e {
            display: flex;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;
        }
        .about-text-97b268 { flex: 1; min-width: 300px; }
        .about-text-97b268 h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .about-text-97b268 p {
            color: var(--text-muted);
            line-height: 1.9;
            margin-bottom: 25px;
        }
        .about-features-6bad9c {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .about-feature-742eb6 {
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }
        .about-feature-742eb6 i {
            font-size: 1.6rem;
            color: var(--secondary);
            margin-top: 4px;
        }
        .about-feature-content-c74e7b h4 {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 2px;
        }
        .about-feature-content-c74e7b p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }
        .about-image-3709d9 { flex: 1; min-width: 280px; }
        .about-image-3709d9 img {
            border-radius: 20px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
        }
        .company-values-f7acd6 {
            margin-top: 50px;
            text-align: center;
        }
        .company-values-f7acd6 h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 35px;
        }
        .values-grid-4ee82d {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }
        .value-item-dce439 {
            background: #fff;
            padding: 30px 20px;
            border-radius: 16px;
            border: 1px solid var(--border-light);
            transition: 0.3s;
        }
        .value-item-dce439:hover {
            border-color: var(--secondary);
            transform: translateY(-4px);
        }
        .value-icon-fc05c0 {
            font-size: 2.8rem;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .value-item-dce439 h4 {
            color: var(--text-dark);
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .value-item-dce439 p {
            color: var(--text-muted);
            font-size: 0.92rem;
        }
        
        /* ----- 核心服务 (黄蓝撞色) ----- */
        .services-grid-009d5f {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
        }
        .service-card-0fb66a {
            background: #fff;
            border-radius: 16px;
            padding: 35px 25px;
            border: 1px solid var(--border-light);
            text-align: center;
            transition: 0.4s;
            box-shadow: var(--shadow);
        }
        .service-card-0fb66a:hover {
            border-color: var(--secondary);
            transform: translateY(-8px);
        }
        .service-icon-898dec {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--secondary);
        }
        .service-card-0fb66a h3 {
            font-size: 1.3rem;
            color: var(--primary);
            margin-bottom: 12px;
        }
        .service-card-0fb66a p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .services-stats-0c31dd {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
            background: var(--primary);
            padding: 30px 20px;
            border-radius: 20px;
            color: #fff;
        }
        .services-stats-0c31dd .stat-item-a439b9 {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .services-stats-0c31dd .stat-item-a439b9 i {
            font-size: 2.4rem;
            color: var(--secondary);
        }
        .services-stats-0c31dd .stat-content-69315a .stat-number-039ac2 {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
        }
        .services-stats-0c31dd .stat-content-69315a .stat-label-fc655f {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        
        /* ----- 优势 (亮黄点缀) ----- */
        .advantages-content-d0d094 {
            display: flex;
            gap: 50px;
            align-items: center;
            flex-wrap: wrap;
        }
        .advantages-text-fa4184 { flex: 1; min-width: 300px; }
        .advantage-item-05367e {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }
        .advantage-icon-443120 {
            width: 60px;
            height: 60px;
            min-width: 60px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: var(--primary);
            transition: 0.3s;
        }
        .advantage-item-05367e:hover .advantage-icon-443120 {
            background: var(--primary);
            color: var(--secondary);
        }
        .advantage-content-9d593a h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 6px;
        }
        .advantage-content-9d593a p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .advantages-image-d6d73e { flex: 1; min-width: 280px; }
        .advantages-image-d6d73e img {
            border-radius: 20px;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow);
        }
        
        /* ----- 产品 (更多卡片) ----- */
        .product-categories-b4e0c6 {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
        }
        .category-filter-1a2a38 {
            padding: 8px 26px;
            border-radius: 30px;
            background: #fff;
            border: 2px solid var(--border-light);
            color: var(--text-muted);
            font-weight: 500;
            cursor: pointer;
            transition: 0.3s;
            font-size: 0.95rem;
        }
        .category-filter-1a2a38:hover,
        .category-filter-1a2a38.active {
            background: var(--secondary);
            color: var(--primary);
            border-color: var(--secondary);
        }
        .products-grid-08132f {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .product-card-5ac26e {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: 0.4s;
            box-shadow: var(--shadow);
        }
        .product-card-5ac26e:hover {
            transform: translateY(-10px);
            border-color: var(--secondary);
            box-shadow: 0 16px 48px rgba(26, 54, 93, 0.08);
        }
        .product-image-0a878b {
            height: 200px;
            overflow: hidden;
            background: var(--bg-white);
        }
        .product-image-0a878b img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .product-info-1a5af1 { padding: 20px 22px 25px; }
        .product-info-1a5af1 h3 {
            font-size: 1.25rem;
            color: var(--primary);
            margin-bottom: 4px;
        }
        .product-category-tag-ab5712 {
            font-size: 0.8rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .product-desc-002bb7 {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 14px;
        }
        .product-features-bae5d2 {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            font-size: 0.85rem;
            color: var(--text-muted);
        }
        .product-features-bae5d2 span i {
            color: var(--secondary);
            margin-right: 4px;
        }
        
        /* 价格标签 (黄色高亮) */
        .product-price-f6d1f6 {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            font-weight: 700;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-top: 8px;
        }
        
        /* ----- 新闻 ----- */
        .news-grid-bc9208 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .news-card-8cd612 {
            display: flex;
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-light);
            transition: 0.3s;
        }
        .news-card-8cd612:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
        }
        .news-date-5877d4 {
            min-width: 80px;
            background: var(--primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px 10px;
            color: var(--secondary);
        }
        .news-date-5877d4 .date-day-08db6b {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }
        .news-date-5877d4 .date-month-0890c4 {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        .news-content-9dda07 { padding: 18px 22px; flex: 1; }
        .news-content-9dda07 h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .news-content-9dda07 h3 a {
            color: var(--text-dark);
            transition: 0.3s;
        }
        .news-content-9dda07 h3 a:hover { color: var(--primary); }
        .news-content-9dda07 p {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 10px;
        }
        .news-meta-1ada73 {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .news-meta-1ada73 i { color: var(--secondary); margin-right: 4px; }
        .news-more-3073b9 { text-align: center; margin-top: 40px; }
        
        /* ----- FAQ (黄色边框) ----- */
        .faq-container-640fa2 { max-width: 800px; margin: 0 auto; }
        .faq-item-5ef002 {
            background: #fff;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid var(--border-light);
            overflow: hidden;
            transition: 0.3s;
        }
        .faq-item-5ef002:hover { border-color: var(--secondary); }
        .faq-question-564acc {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            cursor: pointer;
        }
        .faq-question-564acc h3 {
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-dark);
        }
        .faq-icon-d5e1fc {
            color: var(--secondary);
            transition: 0.3s;
            font-size: 1.2rem;
        }
        .faq-item-5ef002.active .faq-icon-d5e1fc { transform: rotate(180deg); }
        .faq-answer-a2efff {
            padding: 0 25px 20px;
            color: var(--text-muted);
            display: none;
            line-height: 1.8;
        }
        .faq-item-5ef002.active .faq-answer-a2efff { display: block; }
        
        /* ----- 口碑 (评论) ----- */
        .testimonials-grid-0dbaa1 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .testimonial-card-1dea40 {
            background: #fff;
            padding: 28px 25px;
            border-radius: 16px;
            border: 1px solid var(--border-light);
            transition: 0.3s;
        }
        .testimonial-card-1dea40:hover {
            border-color: var(--secondary);
            transform: translateY(-6px);
        }
        .testimonial-header-d6c05b {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
        }
        .testimonial-info-b1f117 h4 {
            font-size: 1.1rem;
            color: var(--primary);
        }
        .testimonial-rating-3d9c1e {
            color: var(--secondary);
            font-size: 0.9rem;
            letter-spacing: 2px;
        }
        .testimonial-content-0ddbfc p {
            color: var(--text-muted);
            font-style: italic;
            line-height: 1.7;
        }
        .testimonials-stats-8f063a {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
            padding: 30px 20px;
            background: var(--primary);
            border-radius: 20px;
            color: #fff;
        }
        .testimonials-stats-8f063a .stat-item-a439b9 {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .testimonials-stats-8f063a .stat-icon-7b4798 {
            font-size: 2.2rem;
            color: var(--secondary);
        }
        .testimonials-stats-8f063a .stat-content-69315a .stat-number-039ac2 {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary);
        }
        .testimonials-stats-8f063a .stat-content-69315a .stat-label-fc655f {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        
        /* ----- 友情链接 (暖白) ----- */
        .flink-section-934dd6 {
            padding: 30px 0;
            background: var(--bg-white);
            border-top: 1px solid var(--border-light);
            border-bottom: 1px solid var(--border-light);
        }
        .flink-header-9654f0 {
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 10px;
        }
        .flink-section-934dd6 ul {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .flink-section-934dd6 ul li a {
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: 0.3s;
        }
        .flink-section-934dd6 ul li a:hover {
            color: var(--primary);
        }
        
        /* ----- 页脚 (深蓝+黄) ----- */
        .footer-a1c077 {
            background: var(--primary);
            color: rgba(255,255,255,0.85);
            padding: 60px 0 30px;
        }
        .footer-content-400e4b {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo-99dcce {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.6rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
        }
        .footer-logo-99dcce i { color: var(--secondary); }
        .footer-desc-3b06d9 {
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 20px;
            opacity: 0.8;
        }
        .footer-social-949618 {
            display: flex;
            gap: 16px;
        }
        .social-link-ea870b {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: #fff;
            font-size: 1.2rem;
            transition: 0.3s;
        }
        .social-link-ea870b:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }
        .footer-section-aba2f8 h3 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 18px;
            position: relative;
        }
        .footer-section-aba2f8 h3::after {
            content: '';
            display: block;
            width: 30px;
            height: 3px;
            background: var(--secondary);
            margin-top: 8px;
        }
        .footer-links-3d3818 li { margin-bottom: 10px; }
        .footer-links-3d3818 li a {
            color: rgba(255,255,255,0.75);
            transition: 0.3s;
            font-size: 0.95rem;
        }
        .footer-links-3d3818 li a:hover {
            color: var(--secondary);
            padding-left: 6px;
        }
        .contact-item-163980 {
            display: flex;
            gap: 12px;
            margin-bottom: 14px;
            align-items: flex-start;
        }
        .contact-item-163980 i {
            font-size: 1.2rem;
            color: var(--secondary);
            margin-top: 3px;
            min-width: 20px;
        }
        .contact-content-9ded38 {
            display: flex;
            flex-direction: column;
            font-size: 0.9rem;
        }
        .contact-content-9ded38 span:first-child {
            opacity: 0.6;
            font-size: 0.8rem;
        }
        .contact-content-9ded38 a {
            color: #fff;
        }
        .contact-content-9ded38 a:hover { color: var(--secondary); }
        .footer-bottom-8155ff {
            border-top: 1px solid rgba(255,255,255,0.15);
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 0.9rem;
        }
        .footer-bottom-8155ff a {
            color: rgba(255,255,255,0.7);
            margin-left: 20px;
            transition: 0.3s;
        }
        .footer-bottom-8155ff a:hover { color: var(--secondary); }
        .footer-copyright-149704 p { opacity: 0.8; }
        
        /* ----- 回到顶部 (黄色) ----- */
        .back-to-top-3f73a9 {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: var(--primary);
            border: none;
            border-radius: 50%;
            font-size: 1.4rem;
            box-shadow: 0 4px 20px rgba(236, 201, 75, 0.4);
            cursor: pointer;
            transition: 0.3s;
            display: none;
            z-index: 999;
        }
        .back-to-top-3f73a9:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(236, 201, 75, 0.5);
        }
        
        /* 响应式 */
        @media (max-width: 768px) {
            .section-82b68f { padding: 50px 0; }
            .section-title-5c5f92 { font-size: 2rem; }
            .hero-title-16e4fd { font-size: 2rem; }
            .about-features-6bad9c { grid-template-columns: 1fr; }
            .footer-content-400e4b { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 480px) {
            .footer-content-400e4b { grid-template-columns: 1fr; }
            .footer-bottom-8155ff { flex-direction: column; align-items: center; }
            .footer-bottom-8155ff a { margin: 0 10px; }
        }