* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
            background: linear-gradient(145deg, #1a0505 0%, #2c0a0a 50%, #1a0505 100%);
            color: #f5e6d0;
            line-height: 1.7;
            min-height: 100vh;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #1a0505;
        }
        ::-webkit-scrollbar-thumb {
            background: #991b1b;
            border-radius: 4px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #4a0a0a 0%, #6e1111 100%);
            border-bottom: 2px solid #c99a3e;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.6);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .nav-logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: #ffd966;
            text-shadow: 0 2px 8px rgba(153,27,27,0.5);
            letter-spacing: 2px;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #f5e6d0;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 6px 14px;
            border-radius: 30px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: rgba(201, 154, 62, 0.2);
            border-color: #c99a3e;
            color: #ffd966;
        }
        /* 主视觉 */
        .hero {
            background: radial-gradient(ellipse at 30% 40%, #3d0f0f 0%, #1a0505 80%);
            padding: 80px 0 60px;
            text-align: center;
            border-bottom: 1px solid #5a2a2a;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffd966, #f0b34b, #c99a3e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            letter-spacing: 4px;
        }
        .hero-desc {
            max-width: 800px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
            color: #d4c5a9;
            line-height: 1.8;
        }
        .hero-images {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px;
            margin: 30px 0;
        }
        .hero-images img {
            width: 220px;
            height: 140px;
            object-fit: cover;
            border-radius: 12px;
            border: 2px solid #c99a3e;
            box-shadow: 0 8px 24px rgba(0,0,0,0.6);
            transition: transform 0.3s;
        }
        .hero-images img:hover {
            transform: scale(1.03);
        }
        /* GEO区域 */
        .geo-intro {
            background: #1f0808;
            padding: 50px 0;
            border-bottom: 1px solid #3a1a1a;
        }
        .geo-intro h2 {
            font-size: 2rem;
            color: #ffd966;
            margin-bottom: 20px;
            border-left: 4px solid #c99a3e;
            padding-left: 16px;
        }
        .geo-intro p {
            font-size: 1.05rem;
            color: #d4c5a9;
            max-width: 1000px;
        }
        /* 核心优势 */
        .advantages {
            padding: 60px 0;
            background: #140505;
        }
        .advantages h2 {
            text-align: center;
            font-size: 2.2rem;
            color: #ffd966;
            margin-bottom: 40px;
            letter-spacing: 2px;
        }
        .adv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
        }
        .adv-card {
            background: linear-gradient(145deg, #2a0c0c, #1a0505);
            border: 1px solid #5a2a2a;
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            transition: all 0.3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.4);
        }
        .adv-card:hover {
            border-color: #c99a3e;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(153,27,27,0.3);
        }
        .adv-card .icon {
            font-size: 2.8rem;
            margin-bottom: 16px;
        }
        .adv-card h3 {
            color: #ffd966;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        .adv-card p {
            color: #c4b69a;
            font-size: 0.95rem;
        }
        /* 数据统计 */
        .stats {
            background: linear-gradient(135deg, #2a0c0c, #1a0505);
            padding: 60px 0;
            border-top: 1px solid #3a1a1a;
            border-bottom: 1px solid #3a1a1a;
        }
        .stats h2 {
            text-align: center;
            color: #ffd966;
            font-size: 2rem;
            margin-bottom: 36px;
        }
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }
        .stat-item {
            text-align: center;
            min-width: 140px;
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #ffd966;
            display: block;
        }
        .stat-label {
            color: #b09b7a;
            font-size: 1rem;
            margin-top: 4px;
        }
        /* 品牌故事 */
        .story {
            padding: 60px 0;
            background: #1a0505;
        }
        .story h2 {
            color: #ffd966;
            font-size: 2rem;
            margin-bottom: 24px;
            text-align: center;
        }
        .story-content {
            max-width: 900px;
            margin: 0 auto;
            color: #d4c5a9;
            font-size: 1.05rem;
            text-align: center;
        }
        /* 新闻板块 */
        .news-list {
            padding: 60px 0;
            background: #140505;
        }
        .news-list h2 {
            text-align: center;
            color: #ffd966;
            font-size: 2.2rem;
            margin-bottom: 36px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }
        .news-card {
            background: linear-gradient(145deg, #2a0c0c, #1a0505);
            border: 1px solid #4a2020;
            border-radius: 16px;
            padding: 24px;
            transition: 0.3s;
        }
        .news-card:hover {
            border-color: #c99a3e;
        }
        .news-date {
            color: #b09b7a;
            font-size: 0.85rem;
            margin-bottom: 8px;
            display: block;
        }
        .news-card h3 {
            color: #f5e6d0;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .news-card p {
            color: #c4b69a;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        /* FAQ */
        .faq {
            padding: 60px 0;
            background: #1f0808;
        }
        .faq h2 {
            text-align: center;
            color: #ffd966;
            font-size: 2.2rem;
            margin-bottom: 36px;
        }
        .faq-item {
            background: #2a0c0c;
            border: 1px solid #4a2020;
            border-radius: 12px;
            margin-bottom: 16px;
            padding: 20px 24px;
            transition: 0.3s;
        }
        .faq-item:hover {
            border-color: #c99a3e;
        }
        .faq-question {
            font-weight: 700;
            color: #ffd966;
            font-size: 1.1rem;
            margin-bottom: 10px;
            cursor: default;
        }
        .faq-answer {
            color: #d4c5a9;
            line-height: 1.7;
        }
        /* 合作伙伴 */
        .partners {
            padding: 50px 0;
            background: #140505;
            border-top: 1px solid #3a1a1a;
        }
        .partners h2 {
            text-align: center;
            color: #ffd966;
            font-size: 2rem;
            margin-bottom: 30px;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px 40px;
        }
        .partner-logos span {
            font-size: 1rem;
            color: #b09b7a;
            background: #1f0808;
            padding: 8px 20px;
            border-radius: 30px;
            border: 1px solid #3a1a1a;
        }
        /* CTA */
        .cta {
            padding: 60px 0;
            background: linear-gradient(135deg, #4a0a0a, #991b1b);
            text-align: center;
        }
        .cta h2 {
            color: #ffd966;
            font-size: 2.2rem;
            margin-bottom: 16px;
        }
        .cta p {
            color: #f5e6d0;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 24px;
        }
        .cta-btn {
            display: inline-block;
            background: #ffd966;
            color: #4a0a0a;
            font-weight: 700;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: 0.3s;
            border: 2px solid #c99a3e;
        }
        .cta-btn:hover {
            background: #f0b34b;
            transform: scale(1.05);
        }
        /* 用户口碑 */
        .testimonials {
            padding: 60px 0;
            background: #1a0505;
        }
        .testimonials h2 {
            text-align: center;
            color: #ffd966;
            font-size: 2rem;
            margin-bottom: 36px;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .testimonial-card {
            background: linear-gradient(145deg, #2a0c0c, #1a0505);
            border: 1px solid #4a2020;
            border-radius: 16px;
            padding: 24px;
            font-style: italic;
        }
        .testimonial-card p {
            color: #d4c5a9;
        }
        .testimonial-author {
            margin-top: 12px;
            color: #b09b7a;
            font-style: normal;
            font-weight: 600;
        }
        /* 页脚 */
        .footer {
            background: #0d0202;
            border-top: 2px solid #3a1a1a;
            padding: 40px 0 20px;
            color: #a08b6e;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 20px;
        }
        .footer-col {
            min-width: 160px;
        }
        .footer-col h4 {
            color: #c99a3e;
            margin-bottom: 12px;
            font-size: 1rem;
        }
        .footer-col a {
            color: #b09b7a;
            text-decoration: none;
            display: block;
            margin: 4px 0;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #ffd966;
        }
        .footer-links {
            text-align: center;
            margin: 20px 0;
            padding: 16px 0;
            border-top: 1px solid #2a1a1a;
            border-bottom: 1px solid #2a1a1a;
            font-size: 0.9rem;
        }
        .footer-links a {
            color: #b09b7a;
            text-decoration: none;
            margin: 0 8px;
        }
        .footer-links a:hover {
            color: #ffd966;
        }
        .footer-bottom {
            text-align: center;
            font-size: 0.85rem;
            padding-top: 16px;
            color: #7a6a52;
        }
        .footer-bottom span {
            display: inline-block;
            margin: 0 12px;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .navbar .container { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; gap: 12px; }
            .hero-images img { width: 160px; height: 100px; }
        }