/* ==================== CSS 变量定义 ==================== */
:root {
    --primary-color: rgb(30, 60, 114);
    --primary-light: rgb(45, 80, 140);
    --accent-color: rgb(218, 165, 32);
    --accent-light: rgb(238, 195, 82);
    --bg-color: rgb(255, 255, 255);
    --bg-secondary: rgb(245, 247, 250);
    --text-primary: rgb(51, 51, 51);
    --text-secondary: rgb(102, 102, 102);
    --text-light: rgb(153, 153, 153);
    --shadow: 0 10px 40px rgba(30, 60, 114, 0.1);
    --shadow-hover: 0 20px 60px rgba(30, 60, 114, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-primary);
    line-height: 1.8;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, li {
    list-style: none;
}

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

/* ==================== 排版样式 ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Songti SC', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

/* ==================== 按钮样式 ==================== */
.btn-372a05 {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary-476d45 {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.btn-primary-476d45:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
}

.btn-outline-735dd2 {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-735dd2:hover {
    background: #fff;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-gold-af9943 {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.btn-gold-af9943:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218, 165, 32, 0.3);
}

/* ==================== 通用模块样式 ==================== */
.section-738f8d {
    padding: 100px 0;
    position: relative;
}

.section-bg-d103ed {
    background: var(--bg-secondary);
}

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

.section-subtitle-be2275 {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle-be2275::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-color);
}

.section-title-3cc031 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-desc-3f5530 {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ==================== 导航栏样式 ==================== */
.header-93e122 {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header-93e122.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.nav-container-526a8c {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-50beaf {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-9d59bc {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.logo-text-19360d {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu-8d7931 {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link-c138ca {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
}

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

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

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

.nav-btn-9b88a6 {
    padding: 12px 28px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-btn-9b88a6:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(30, 60, 114, 0.3);
}

/* 移动端导航 */
.hamburger-ab85c4 {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger-ab85c4 span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.mobile-menu-055da7 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    padding: 80px 40px;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu-055da7.active {
    right: 0;
}

.mobile-menu-055da7 .nav-link-c138ca {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-close-15ff71 {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.overlay-1bfbb5 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay-1bfbb5.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== Hero 区域样式 ==================== */
.hero-97f9bc {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgb(20, 40, 90) 100%);
    overflow: hidden;
}

.hero-bg-6575f9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover;
    opacity: 0.15;
}

.hero-pattern-a332b2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(218, 165, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(218, 165, 32, 0.08) 0%, transparent 50%);
}

.hero-content-4a601a {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge-1a3e94 {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(218, 165, 32, 0.2);
    border: 1px solid rgba(218, 165, 32, 0.4);
    border-radius: 50px;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.hero-title-1ff802 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero-subtitle-9d0ae4 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons-71c6f2 {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

@keyframes scrollDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ==================== 服务优势模块 ==================== */
.services-section-4cf082 {
    background: var(--bg-color);
}

.services-intro-69b11d {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-secondary);
}

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

.service-card-696fa5 {
    background: #fff;
    padding: 45px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card-696fa5:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card-696fa5:hover::before {
    transform: scaleX(1);
}

.service-icon-3ced24 {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.1), rgba(218, 165, 32, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-3ced24 i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card-696fa5:hover .service-icon-3ced24 i {
    color: var(--accent-color);
}

.service-title-38e5f5 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-desc-36f509 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== 关于我们模块 ==================== */
.about-section-a3e168 {
    background: var(--bg-secondary);
}

.about-container-960fbf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-2352d0 {
    position: relative;
}

.about-img-main-dd0c81 {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-img-badge-f6aa7e {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-hover);
}

.about-img-badge-f6aa7e .years-5c8ddd {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.about-img-badge-f6aa7e .text-1db605 {
    font-size: 0.9rem;
    margin-top: 5px;
}

.about-content-9b1e8b {
    padding-right: 30px;
}

.about-subtitle-de6e32 {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-title-639eed {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-intro-d54fc2 {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.about-content-text-f09120 {
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.9;
}

.about-features-b5245b {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.about-feature-c4edbf {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-c4edbf i {
    width: 24px;
    height: 24px;
    background: rgba(218, 165, 32, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.about-feature-c4edbf span {
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* ==================== 产品案例模块 ==================== */
.products-section-4f7ed4 {
    background: var(--bg-color);
}

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

.filter-btn-97f9a3 {
    padding: 12px 28px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn-97f9a3.active,
.filter-btn-97f9a3:hover {
    background: var(--primary-color);
    color: #fff;
}

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

.product-card-a145a0 {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-image-481e21 {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.product-card-a145a0:hover .product-image-481e21 img {
    transform: scale(1.1);
}

.product-overlay-a0b881 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(30, 60, 114, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.product-card-a145a0:hover .product-overlay-a0b881 {
    opacity: 1;
}

.product-tag-72ae29 {
    display: inline-block;
    padding: 6px 15px;
    background: var(--accent-color);
    color: #fff;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-info-e8f20d {
    padding: 25px;
}

.product-title-80720b {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.product-desc-433585 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== 客户评价模块 ==================== */
.testimonials-section-0dc4b8 {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgb(15, 35, 80) 100%);
    color: #fff;
}

.testimonials-section-0dc4b8 .section-subtitle-be2275 {
    color: var(--accent-color);
}

.testimonials-section-0dc4b8 .section-title-3cc031 {
    color: #fff;
}

.testimonials-section-0dc4b8 .section-desc-3f5530 {
    color: rgba(255, 255, 255, 0.8);
}

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

.testimonial-card-5cd703 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.testimonial-card-5cd703:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.testimonial-header-bb5ee6 {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar-168af0 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.testimonial-info-27bcca h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-family: 'Noto Sans SC', sans-serif;
}

.testimonial-info-27bcca span {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.testimonial-rating-646749 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-content-5ef7b8 {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
}

.testimonial-content-5ef7b8::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

/* ==================== 新闻资讯模块 ==================== */
.news-section-ca8049 {
    background: var(--bg-secondary);
}

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

.news-card-54bad9 {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.news-image-23e3e1 {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.news-card-54bad9:hover .news-image-23e3e1 img {
    transform: scale(1.1);
}

.news-date-60412b {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-align: center;
    min-width: 70px;
}

.news-date-60412b .day-c0ec25 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: 'Playfair Display', serif;
}

.news-date-60412b .month-a2ac24 {
    font-size: 0.8rem;
    margin-top: 5px;
}

.news-content-782c32 {
    padding: 25px;
}

.news-title-b44f57 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--primary-color);
    line-height: 1.4;
    transition: var(--transition);
}

.news-card-54bad9:hover .news-title-b44f57 {
    color: var(--accent-color);
}

.news-desc-c0ea47 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-meta-67dd7a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.news-reading-time-ea1566 {
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-read-more-321731 {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.news-read-more-321731:hover {
    color: var(--primary-color);
}

/* ==================== 常见问题模块 ==================== */
.faq-section-4ea135 {
    background: var(--bg-color);
}

.faq-container-50e4ac {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-8babcb {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item-8babcb:hover {
    box-shadow: var(--shadow-hover);
}

.faq-question-7299c6 {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: var(--transition);
}

.faq-question-7299c6 h4 {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-family: 'Noto Sans SC', sans-serif;
    font-weight: 500;
    padding-right: 20px;
}

.faq-icon-3ffb37 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(30, 60, 114, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item-8babcb.active .faq-icon-3ffb37 {
    background: var(--accent-color);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer-5b0641 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-8babcb.active .faq-answer-5b0641 {
    max-height: 500px;
}

.faq-answer-content-4e3754 {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== 联系我们模块 ==================== */
.contact-section-e83c33 {
    background: var(--bg-secondary);
}

.contact-container-107b52 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-f39b90 {
    padding-right: 30px;
}

.contact-subtitle-53bf70 {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.contact-title-3d1492 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.contact-desc-e7ad2f {
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-details-27d366 {
    margin-bottom: 40px;
}

.contact-item-a48a8f {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon-010321 {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text-56733d h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Noto Sans SC', sans-serif;
}

.contact-text-56733d p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.contact-social-a3ed5f {
    display: flex;
    gap: 15px;
}

.social-link-5ee9a0 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(30, 60, 114, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link-5ee9a0:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-wrapper-0ff0ac {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper-0ff0ac h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

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

.form-group-dd7b62 label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-control-39ffa9 {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: var(--transition);
    font-family: inherit;
}

.form-control-39ffa9:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.1);
}

.form-control-39ffa9::placeholder {
    color: var(--text-light);
}

textarea.form-control-39ffa9 {
    resize: vertical;
    min-height: 130px;
}

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

.submit-btn-16cff9 {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn-16cff9:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 60, 114, 0.3);
}


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

/* ==================== Footer 样式 ==================== */
.footer-ee9a9e {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgb(15, 35, 80) 100%);
    color: #fff;
    padding: 80px 0 30px;
}

.footer-grid-2de0df {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand-74b781 .logo-50beaf {
    margin-bottom: 25px;
}

.footer-brand-74b781 .logo-text-19360d {
    color: #fff;
}

.footer-brand-74b781 .logo-icon-9d59bc {
    background: rgba(255, 255, 255, 0.2);
}

.footer-desc-e586cd {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-title-230e0b {
    color: #fff;
    font-size: 1.15rem;
    font-family: 'Noto Sans SC', sans-serif;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title-230e0b::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-f318f2 li {
    margin-bottom: 12px;
}

.footer-links-f318f2 a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links-f318f2 a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact-d10e6b p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-contact-d10e6b i {
    color: var(--accent-color);
}

.footer-bottom-8192a6 {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-4152d6 {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links-36d48f {
    display: flex;
    gap: 25px;
}

.footer-bottom-links-36d48f a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links-36d48f a:hover {
    color: var(--accent-color);
}

/* ==================== 动画效果 ==================== */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-down"] {
    transform: translateY(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1200px) {
    .container-16e8eb {
        max-width: 1000px;
    }
    
    .services-grid-f8de72 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid-6b98e6,
    .testimonials-grid-5b744a,
    .news-grid-83f108 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid-2de0df {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-menu-8d7931 {
        display: none;
    }
    
    .hamburger-ab85c4 {
        display: flex;
    }
    
    .about-container-960fbf,
    .contact-container-107b52 {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image-2352d0 {
        order: -1;
    }
    
    .about-img-main-dd0c81 {
        height: 400px;
    }
    
    .about-img-badge-f6aa7e {
        width: 140px;
        height: 140px;
        right: -20px;
        bottom: -20px;
    }
    
    .section-738f8d {
        padding: 70px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2,
    .section-title-3cc031,
    .contact-title-3d1492 {
        font-size: 2rem;
    }
    
    .hero-title-1ff802 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container-16e8eb {
        padding: 0 15px;
    }
    
    .services-grid-f8de72,
    .products-grid-6b98e6,
    .testimonials-grid-5b744a,
    .news-grid-83f108 {
        grid-template-columns: 1fr;
    }
    
    .about-features-b5245b {
        grid-template-columns: 1fr;
    }
    
    .form-row-bf9c89 {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons-71c6f2 {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title-1ff802 {
        font-size: 2rem;
    }
    
    .hero-subtitle-9d0ae4 {
        font-size: 1rem;
    }
    
    .contact-form-wrapper-0ff0ac {
        padding: 30px 20px;
    }
    
    .footer-grid-2de0df {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-8192a6 {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    .btn-372a05 {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    .service-card-696fa5 {
        padding: 35px 25px;
    }
    
    .section-738f8d {
        padding: 50px 0;
    }
}