/* ==================== 基础重置与变量 ==================== */
:root {
    --primary-color: #1B2A4E;
    --secondary-color: #C5A059;
    --accent-color: #8B6914;
    --text-dark: #2C3338;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F4F6F9;
    --bg-dark: #111111;
    --border-color: #E5E7EB;
    --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 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.3s ease;
    --transition-slow: 0.5s ease;
    --border-radius: 4px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Serif SC', 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

ul, li {
    list-style: none;
}

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

.section-b3d27a {
    padding: 100px 0;
    position: relative;
}

.section-header-9c10a2 {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag-f9edfd {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.section-tag-f9edfd::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.section-title-d72eec {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle-8005f4 {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* ==================== 顶部导航 ==================== */
.header-e87b4a {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-fast);
    padding: 20px 0;
    background: rgb(16 26 49);
}

.header-e87b4a.scrolled {
    background: rgba(27, 42, 78, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
}

.header-inner-9a4afd {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-b0a28d {
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-b0a28d i {
    font-size: 28px;
    color: var(--secondary-color);
}

.nav-menu-e25ac1 {
    display: flex;
    gap: 40px;
}

.nav-link-f1b9f8 {
    color: var(--bg-white);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link-f1b9f8::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-fast);
}

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

.header-cta-6a50df {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.header-cta-6a50df:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(197, 160, 89, 0.4);
}

.mobile-toggle-e795cb {
    display: none;
    color: var(--bg-white);
    font-size: 24px;
    cursor: pointer;
}

/* ==================== 首页Banner ==================== */
.hero-e84e4f {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a1628 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-e84e4f::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../imgs/banner.jpg') center / cover;
    opacity: 0.2;
}

.hero-overlay-7c4e70 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content-f7612c {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
}

.hero-badge-775bc7 {
    display: inline-block;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-title-31ce0a {
    font-size: 56px;
    color: var(--bg-white);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle-c796d1 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-tags-a254e3 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-tag-bfbf6e {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 25px;
    border-radius: var(--border-radius);
    font-size: 14px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.hero-tag-bfbf6e:hover {
    background: rgba(197, 160, 89, 0.2);
    border-color: var(--secondary-color);
}

.hero-buttons-1ae8e8 {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary-fd3d54 {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
}

.btn-primary-fd3d54:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}

.btn-secondary-f42b43 {
    background: transparent;
    color: var(--bg-white);
    padding: 16px 40px;
    border-radius: var(--border-radius);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-secondary-f42b43:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--bg-white);
}

.scroll-indicator-aaf62b {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: bounce 2s infinite;
}

.scroll-indicator-aaf62b i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ==================== 服务内容 ==================== */
.services-bf0ea2 {
    background: var(--bg-light);
}

.services-intro-eb6aed {
    text-align: center;
    margin-bottom: 50px;
}

.services-intro-eb6aed p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-grid-fbfb9b {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card-5d22c1 {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.service-card-5d22c1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition-fast);
}

.service-card-5d22c1:hover::before {
    transform: scaleX(1);
}

.service-card-5d22c1:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon-7dd292 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(27, 42, 78, 0.05), rgba(27, 42, 78, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-fast);
}

.service-card-5d22c1:hover .service-icon-7dd292 {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.service-icon-7dd292 i {
    font-size: 32px;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.service-card-5d22c1:hover .service-icon-7dd292 i {
    color: var(--bg-white);
}

.service-title-5215c7 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-desc-8547b5 {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ==================== 服务优势 ==================== */
.advantages-78e130 {
    background: var(--bg-white);
}

.advantages-wrapper-cac1c1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.advantages-image-c1f845 {
    position: relative;
}

.advantages-image-main-66f3b7 {
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.advantages-image-main-66f3b7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages-image-badge-c20f6f {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    padding: 30px;
    border-radius: var(--border-radius);
    color: var(--bg-white);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.advantages-badge-number-25439e {
    font-family: 'Noto Serif SC', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.advantages-badge-text-6e11b4 {
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
}

.advantages-content-a2be0c .section-tag-f9edfd {
    text-align: left;
}

.advantages-content-a2be0c .section-tag-f9edfd::after {
    left: 0;
    transform: none;
}

.advantages-content-a2be0c .section-title-d72eec {
    text-align: left;
    font-size: 42px;
    margin-bottom: 30px;
}

.advantages-intro-6ba42c {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.advantage-list-277658 {
    display: grid;
    gap: 25px;
}

.advantage-item-b67135 {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.advantage-item-b67135:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.advantage-icon-2a1e0e {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0a1628);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-icon-2a1e0e i {
    font-size: 24px;
    color: var(--secondary-color);
}

.advantage-info-897a1a h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.advantage-info-897a1a p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==================== 关于我们 ==================== */
.about-a041a2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a1628 100%);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about-a041a2::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3-948abe.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="50" fill="rgba(197,160,89,0.03)"/></svg>') center/cover;
}

.about-wrapper-e1637c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content-84ec85 .section-tag-f9edfd {
    text-align: left;
    color: var(--secondary-color);
}

.about-content-84ec85 .section-tag-f9edfd::after {
    background: var(--secondary-color);
    left: 0;
    transform: none;
}

.about-content-84ec85 .section-title-d72eec {
    text-align: left;
    color: var(--bg-white);
    font-size: 42px;
    margin-bottom: 25px;
}

.about-intro-fde0d2 {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.9;
}

.about-details-4c3475 {
    margin-bottom: 40px;
}

.about-details-4c3475 p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
}

.about-stats-cc8969 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-6a1231 {
    text-align: center;
}

.stat-number-623212 {
    font-family: 'Noto Serif SC', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label-41bad2 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.about-image-ecde1c {
    position: relative;
}

.about-image-ecde1c img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.about-image-overlay-11e4e6 {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--bg-white);
    padding: 25px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.about-overlay-item-706c4e {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.about-overlay-item-706c4e:last-child {
    margin-bottom: 0;
}

.about-overlay-icon-9f4b5a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-overlay-icon-9f4b5a i {
    font-size: 20px;
    color: var(--bg-white);
}

.about-overlay-text-595639 h5 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.about-overlay-text-595639 p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==================== 产品案例 ==================== */
.products-0c0fc5 {
    background: var(--bg-light);
}

.products-filter-9ad3b3 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn-19f2de {
    padding: 12px 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn-19f2de:hover,
.filter-btn-19f2de.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.products-grid-b7a675 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card-54cfa9 {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-fast);
}

.product-card-54cfa9:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.product-image-58af9a {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-image-58af9a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card-54cfa9:hover .product-image-58af9a img {
    transform: scale(1.1);
}

.product-badge-99e685 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.product-content-2ef631 {
    padding: 25px;
}

.product-title-ccc9bb {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-desc-ab41f0 {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-btn-9a53ea {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
}

.product-btn-9a53ea i {
    transition: var(--transition-fast);
}

.product-btn-9a53ea:hover i {
    transform: translateX(5px);
}

/* ==================== 新闻资讯 ==================== */
.news-24424a {
    background: var(--bg-white);
}

.news-grid-7c23a6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-a3aad9 {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-fast);
    border: 1px solid var(--border-color);
}

.news-card-a3aad9:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.news-image-95c9f3 {
    height: 200px;
    overflow: hidden;
}

.news-image-95c9f3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.news-card-a3aad9:hover .news-image-95c9f3 img {
    transform: scale(1.1);
}

.news-content-0d6cc3 {
    padding: 25px;
}

.news-meta-1e94af {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

.news-meta-1e94af span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-title-baf5cf {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.4;
    transition: var(--transition-fast);
}

.news-card-a3aad9:hover .news-title-baf5cf {
    color: var(--secondary-color);
}

.news-excerpt-aab267 {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

.news-link-7e22fd {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.news-link-7e22fd:hover {
    gap: 12px;
}

/* ==================== 常见问题 ==================== */
.faq-fc8a5d {
    background: var(--bg-light);
}

.faq-wrapper-643cba {
    max-width: 800px;
    margin: 0 auto;
}

.faq-intro-a15503 {
    text-align: center;
    margin-bottom: 50px;
}

.faq-intro-a15503 p {
    font-size: 18px;
    color: var(--text-light);
}

.faq-list-830241 {
    display: grid;
    gap: 15px;
}

.faq-item-4c6621 {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question-2c521e {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question-2c521e:hover {
    background: var(--bg-light);
}

.faq-question-2c521e h4 {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    padding-right: 20px;
}

.faq-icon-f6894b {
    width: 30px;
    height: 30px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.faq-icon-f6894b i {
    font-size: 14px;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.faq-item-4c6621.active .faq-icon-f6894b {
    background: var(--secondary-color);
}

.faq-item-4c6621.active .faq-icon-f6894b i {
    color: var(--bg-white);
    transform: rotate(180deg);
}

.faq-answer-8ca700 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-content-3f18c9 {
    padding: 0 30px 25px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ==================== 客户评价 ==================== */
.testimonials-ac6232 {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-ac6232::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3-948abe.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="60" font-size="80" fill="rgba(197,160,89,0.03)" text-anchor="middle">"</text></svg>');
}

.testimonials-ac6232 .section-tag-f9edfd {
    color: var(--secondary-color);
}

.testimonials-ac6232 .section-title-d72eec {
    color: var(--bg-white);
}

.testimonials-subtitle-e288af {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider-cb3cc6 {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-card-2c08f4 {
    background: var(--bg-white);
    padding: 50px;
    border-radius: var(--border-radius);
    margin: 20px;
    position: relative;
}

.testimonial-quote-096d79 {
    position: absolute;
    top: 30px;
    left: 40px;
    font-size: 60px;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content-47d074 {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author-19a6f0 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar-353984 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif SC', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--bg-white);
}

.testimonial-avatar-353984 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info-04f515 h5 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-info-04f515 p {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial-rating-90c9fe {
    margin-left: auto;
    color: var(--secondary-color);
    font-size: 16px;
}

.slider-controls-3a79a8 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-btn-8ebd76 {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-btn-8ebd76:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* ==================== 联系我们 ==================== */
.contact-1d7807 {
    background: var(--bg-white);
}

.contact-wrapper-62cb66 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-7fd91f .section-tag-f9edfd {
    text-align: left;
}

.contact-info-7fd91f .section-tag-f9edfd::after {
    left: 0;
    transform: none;
}

.contact-info-7fd91f .section-title-d72eec {
    text-align: left;
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-intro-c7c2dc {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details-abfc13 {
    display: grid;
    gap: 25px;
}

.contact-item-183c06 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition-fast);
}

.contact-item-183c06:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.contact-icon-f2c9ae {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0a1628);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-f2c9ae i {
    font-size: 20px;
    color: var(--secondary-color);
}

.contact-text-5ad55a h5 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-text-5ad55a p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-form-a4df27 {
    background: var(--bg-light);
    padding: 50px;
    border-radius: var(--border-radius);
}

.form-title-41ac2c {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.form-group-681795 {
    margin-bottom: 25px;
}

.form-group-681795 label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group-681795 input,
.form-group-681795 textarea,
.form-group-681795 select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-fast);
    background: var(--bg-white);
}

.form-group-681795 input:focus,
.form-group-681795 textarea:focus,
.form-group-681795 select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-group-681795 textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row-7eb631 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-submit-3f2538 {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--bg-white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.form-submit-3f2538:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.4);
}

.flink-section-7f51da {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-2fe1cc{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-7f51da li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-7f51da a{
    color: #718096;
    text-decoration: none;
}

/* ==================== 页脚 ==================== */
.footer-939147 {
    background: var(--bg-dark);
    padding: 80px 0 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-top-50c925 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-b2bdc0 {
    max-width: 350px;
}

.footer-logo-3433cb {
    font-family: 'Noto Serif SC', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo-3433cb i {
    font-size: 32px;
    color: var(--secondary-color);
}

.footer-brand-b2bdc0 p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-social-20320f {
    display: flex;
    gap: 15px;
}

.footer-social-20320f a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.footer-social-20320f a:hover {
    background: var(--secondary-color);
}

.footer-social-20320f i {
    font-size: 16px;
    color: var(--bg-white);
}

.footer-title-bb213b {
    font-size: 18px;
    color: var(--bg-white);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links-8b5da7 {
    display: grid;
    gap: 15px;
}

.footer-links-8b5da7 a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-links-8b5da7 a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom-fdb39f {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright-527468 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-warning-d515d5 {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
}

/* ==================== 移动端响应式 ==================== */
@media (max-width: 1024px) {
    .section-b3d27a {
        padding: 80px 0;
    }

    .hero-title-31ce0a {
        font-size: 42px;
    }

    .services-grid-fbfb9b {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-wrapper-cac1c1,
    .about-wrapper-e1637c,
    .contact-wrapper-62cb66 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-badge-10e481,
    .about-image-overlay-11e4e6 {
        display: none;
    }

    .products-grid-b7a675 {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid-7c23a6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top-50c925 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu-e25ac1 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary-color);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 25px;
        transition: var(--transition-fast);
    }

    .nav-menu-e25ac1.active {
        right: 0;
    }

    .mobile-toggle-e795cb {
        display: block;
    }

    .header-cta-6a50df {
        display: none;
    }

    .hero-title-31ce0a {
        font-size: 32px;
    }

    .hero-subtitle-c796d1 {
        font-size: 16px;
    }

    .hero-buttons-1ae8e8 {
        flex-direction: column;
        align-items: center;
    }

    .section-b3d27a {
        padding: 60px 0;
    }

    .section-title-d72eec {
        font-size: 28px;
    }

    .services-grid-fbfb9b,
    .products-grid-b7a675,
    .news-grid-7c23a6 {
        grid-template-columns: 1fr;
    }

    .about-stats-cc8969 {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-number-623212 {
        font-size: 32px;
    }
    .advantages-image-badge-c20f6f{
        right: -10px;
        bottom: -10px;
    }

    .form-row-7eb631 {
        grid-template-columns: 1fr;
    }

    .footer-top-50c925 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-fdb39f {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-card-2c08f4 {
        padding: 30px;
    }

    .testimonial-content-47d074 {
        font-size: 16px;
    }

    .contact-form-a4df27 {
        padding: 30px;
    }
}

/* ==================== 动画效果 ==================== */
.fade-up-8e5c52 {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up-8e5c52.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-left-4408fb {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-left-4408fb.active {
    opacity: 1;
    transform: translateX(0);
}

.fade-right-8b2252 {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-right-8b2252.active {
    opacity: 1;
    transform: translateX(0);
}