/* ==================== CSS变量定义 ==================== */
:root {
    --primary-color: rgb(44, 62, 80);
    --primary-dark: rgb(30, 42, 54);
    --primary-light: rgb(60, 80, 100);
    --accent-color: #C9A962;
    --accent-hover: #D4B872;
    --text-dark: #2C3E50;
    --text-gray: #6C757D;
    --text-light: #F8F9FA;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --shadow: 0 4px 20px rgba(44, 62, 80, 0.1);
    --shadow-hover: 0 8px 30px rgba(44, 62, 80, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Songti SC', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

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

.section-padding-a15e70 {
    padding: 100px 0;
}

.section-title-266f08 {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-266f08 h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title-266f08 h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.section-title-266f08 p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ==================== 占位图片样式 ==================== */
.placeholder-img-4a4bbb {
    background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-img-4a4bbb::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(44, 62, 80, 0.03) 10px,
        rgba(44, 62, 80, 0.03) 20px
    );
}

.placeholder-img-4a4bbb i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    z-index: 1;
}

/* ==================== 按钮样式 ==================== */
.btn-fb7cae {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary-2dc6c6 {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-primary-2dc6c6:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-accent-5bcd8e {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-accent-5bcd8e:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-outline-bbab0f {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-bbab0f:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* ==================== 导航栏 ==================== */
.header-721f9f {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    background: rgb(48 67 85);
}

.header-721f9f.scrolled {
    background: var(--primary-color);
    box-shadow: var(--shadow);
}

.header-inner-fc21fe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: var(--transition);
}

.header-721f9f.scrolled .header-inner-fc21fe {
    padding: 15px 0;
}

.logo-74d7ef {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.logo-74d7ef span {
    color: var(--accent-color);
}

.nav-menu-f81ef8 {
    display: flex;
    gap: 35px;
}

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

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

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

.header-cta-238428 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-number-f133ff {
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-number-f133ff i {
    color: var(--accent-color);
}

.mobile-toggle-cb0bfe {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle-cb0bfe span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* ==================== Hero Banner ==================== */
.hero-665b54 {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-f8940e {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url('../imgs/banner.jpg');
}

.hero-content-64892f {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
}

.hero-badge-bedb54 {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-665b54 h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-665b54 p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons-ab21b0 {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats-402b5e {
    display: grid;
    gap: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 50px;
    border-radius: var(--border-radius);
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.stat-item-79ac3e {
    text-align: center;
}

.stat-number-86d826 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label-3ec97c {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* ==================== 服务内容模块 ==================== */
.services-section-71615b {
    background: var(--bg-light);
}

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

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

.service-card-719add::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card-719add:hover::before {
    transform: scaleX(1);
}

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

.service-icon-653c99 {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-653c99 i {
    font-size: 2rem;
    color: var(--text-light);
}

.service-card-719add h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card-719add p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================== 服务优势模块 ==================== */
.advantages-section-c8fe7a {
    background: var(--bg-white);
}

.advantages-wrapper-53c5ff {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.advantages-image-4a0981 {
    position: relative;
    height: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.advantages-image-4a0981 .main-img-d251cc {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantages-image-4a0981 .overlay-badge-9e4909 {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 20px 30px;
    border-radius: var(--border-radius);
}

.advantages-image-4a0981 .overlay-badge-9e4909 .number-4f26d0 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.advantages-list-bd7d4f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

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

.advantage-item-35afcd:hover {
    background: var(--primary-color);
}

.advantage-item-35afcd:hover .advantage-icon-296a2e {
    background: var(--accent-color);
}

.advantage-item-35afcd:hover .advantage-icon-296a2e i {
    color: var(--text-dark);
}

.advantage-item-35afcd:hover h4,
.advantage-item-35afcd:hover p {
    color: var(--text-light);
}

.advantage-icon-296a2e {
    width: 60px;
    height: 60px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.advantage-icon-296a2e i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.advantage-content-de8e44 h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    transition: var(--transition);
}

.advantage-content-de8e44 p {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: var(--transition);
}

/* ==================== 关于我们模块 ==================== */
.about-section-088f4b {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.about-section-088f4b .section-title-266f08 h2 {
    color: var(--text-light);
}

.about-section-088f4b .section-title-266f08 p {
    color: rgba(255, 255, 255, 0.8);
}

.about-wrapper-cbb3f6 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-fea9bf h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--accent-color);
}

.about-content-fea9bf p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-features-db5d1b {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.about-feature-3425b5 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-3425b5 i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.about-feature-3425b5 span {
    font-weight: 500;
}

.about-image-559bad {
    position: relative;
}

.about-image-main-1f7740 {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-image-badge-f6e2b6 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
}

.about-image-badge-f6e2b6 .year-3200e1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-image-badge-f6e2b6 .text-c1c6e9 {
    font-size: 0.9rem;
    font-weight: 500;
}

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

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

.filter-btn-768427 {
    padding: 10px 25px;
    background: var(--bg-white);
    border: 2px solid transparent;
    border-radius: 50px;
    color: var(--text-gray);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn-768427:hover,
.filter-btn-768427.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.products-grid-b7f42b {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card-77c7f4 {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.product-card-77c7f4:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image-dd427a {
    height: 250px;
    position: relative;
}

.product-image-dd427a .placeholder-img-4a4bbb {
    width: 100%;
    height: 100%;
}

.product-overlay-a01bc8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card-77c7f4:hover .product-overlay-a01bc8 {
    opacity: 1;
}

.product-overlay-a01bc8 .btn-fb7cae {
    padding: 10px 25px;
    font-size: 0.9rem;
}

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

.product-info-d0da59 h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-info-d0da59 p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-tag-638a85 {
    display: inline-block;
    padding: 5px 12px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 10px;
}

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

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

.news-card-028db3 {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.news-card-028db3:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-image-5f059e {
    height: 200px;
    position: relative;
}

.news-image-5f059e .placeholder-img-4a4bbb {
    width: 100%;
    height: 100%;
}

.news-date-b0d464 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 10px 15px;
    text-align: center;
    border-radius: var(--border-radius);
}

.news-date-b0d464 .day-351a81 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.news-date-b0d464 .month-40ae36 {
    font-size: 0.8rem;
    opacity: 0.8;
}

.news-content-6e9bdc {
    padding: 25px;
}

.news-content-6e9bdc h4 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-content-6e9bdc p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.news-meta-37e6be {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(44, 62, 80, 0.1);
}

.news-read-time-44e981 {
    color: var(--text-gray);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-read-more-0126a6 {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-read-more-0126a6:hover {
    color: var(--accent-color);
}

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

.faq-wrapper-720cec {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-0de2f4 {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.faq-question-0ef46e:hover {
    background: rgba(44, 62, 80, 0.03);
}

.faq-question-0ef46e h4 {
    font-size: 1.05rem;
    color: var(--primary-color);
    font-weight: 500;
    padding-right: 20px;
}

.faq-icon-101341 {
    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);
}

.faq-icon-101341 i {
    color: var(--primary-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.faq-item-0de2f4.active .faq-icon-101341 {
    background: var(--primary-color);
}

.faq-item-0de2f4.active .faq-icon-101341 i {
    color: var(--text-light);
    transform: rotate(180deg);
}

.faq-answer-3388ed {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

/* ==================== 客户评价模块 ==================== */
.testimonials-section-5d6950 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    position: relative;
}

.testimonials-section-5d6950 .section-title-266f08 h2 {
    color: var(--text-light);
}

.testimonials-section-5d6950 .section-title-266f08 p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-slider-3f0ffd {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card-f7934b {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 50px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-quote-b36569 {
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 20px;
}

.testimonial-content-38a68a {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 35px;
    font-style: italic;
}

.testimonial-author-2cb619 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

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

.author-info-fb0e64 {
    text-align: left;
}

.author-name-67f924 {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-light);
}

.author-company-bc689b {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-rating-75c401 {
    margin-top: 8px;
}

.testimonial-rating-75c401 i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.testimonial-nav-40dbd7 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-dot-254a1b {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot-254a1b.active,
.nav-dot-254a1b:hover {
    background: var(--accent-color);
}

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

.contact-wrapper-4d8dba {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-info-399c4c h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info-399c4c > p {
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-details-e9c668 {
    margin-bottom: 35px;
}

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

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

.contact-icon-bb7438 i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-item-content-03f7c7 h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item-content-03f7c7 p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.social-link-cf2801 {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link-cf2801:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.social-link-cf2801 i {
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-form-2f5c50 {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius);
}

.contact-form-2f5c50 h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group-6291ee {
    margin-bottom: 20px;
}

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

.form-group-6291ee input,
.form-group-6291ee textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group-6291ee input:focus,
.form-group-6291ee textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

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

.contact-form-2f5c50 .btn-fb7cae {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

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

/* ==================== 页脚 ==================== */
.footer-108ad6 {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 70px 0 30px;
}

.footer-grid-6d1129 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand-5f67ca .logo-74d7ef {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand-5f67ca p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-newsletter-8e1868 {
    display: flex;
    gap: 10px;
}

.footer-newsletter-8e1868 input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.footer-newsletter-8e1868 button {
    padding: 12px 20px;
    background: var(--accent-color);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter-8e1868 button:hover {
    background: var(--accent-hover);
}

.footer-links-fe7ca6 h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.footer-links-fe7ca6 h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

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

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

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

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

.footer-bottom-cd0001 p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

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

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

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    .section-padding-a15e70 {
        padding: 80px 0;
    }

    .hero-665b54 h1 {
        font-size: 2.8rem;
    }

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

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

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

    .footer-grid-6d1129 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding-a15e70 {
        padding: 60px 0;
    }

    .section-title-266f08 h2 {
        font-size: 2rem;
    }

    .header-inner-fc21fe {
        padding: 15px 0;
    }

    .nav-menu-f81ef8 {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: var(--transition);
    }

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

    .header-cta-238428 {
        display: none;
    }

    .mobile-toggle-cb0bfe {
        display: flex;
    }

    .hero-665b54 {
        min-height: 500px;
    }

    .hero-665b54 h1 {
        font-size: 2.2rem;
    }

    .hero-stats-402b5e {
        gap: 30px;
        padding: 20px 30px;
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .stat-number-86d826 {
        font-size: 1.8rem;
    }

    .advantages-wrapper-53c5ff {
        grid-template-columns: 1fr;
    }

    .advantages-image-4a0981 {
        height: 350px;
        order: -1;
    }

    .advantages-list-bd7d4f {
        grid-template-columns: 1fr;
    }

    .about-wrapper-cbb3f6 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-badge-f6e2b6 {
        bottom: -15px;
        right: 15px;
        padding: 15px 20px;
    }

    .services-grid-c86841 {
        grid-template-columns: 1fr;
    }

    .products-grid-b7f42b {
        grid-template-columns: 1fr;
    }

    .news-grid-df31f3 {
        grid-template-columns: 1fr;
    }

    .contact-wrapper-4d8dba {
        grid-template-columns: 1fr;
    }

    .contact-info-399c4c {
        padding-right: 0;
    }

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

    .footer-grid-6d1129 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-5f67ca {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-newsletter-8e1868 {
        flex-direction: column;
    }

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

    .footer-bottom-links-e30fbc {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-665b54 h1 {
        font-size: 1.8rem;
    }

    .hero-buttons-ab21b0 {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons-ab21b0 .btn-fb7cae {
        width: 100%;
    }

    .hero-stats-402b5e {
        /*flex-direction: column;*/
        gap: 20px;
        padding: 20px;
    }

    .about-features-db5d1b {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-card-f7934b {
        padding: 30px 20px;
    }

    .contact-form-2f5c50 {
        padding: 25px;
    }
}

/* ==================== 动画效果 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll-2254be {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll-2254be.visible-fd8639 {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 平滑滚动覆盖 ==================== */
.nav-overlay-f06c69 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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