:root {
    --primary-color: #1a5f7a;
    --primary-dark: #134b61;
    --primary-light: #2980b9;
    --secondary-color: #16a085;
    --accent-color: #27ae60;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 25px rgba(0,0,0,0.15);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

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

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

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

/* Header */
.header-eaebeb {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-inner-e5c51a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-43f97e {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-43f97e i {
    margin-right: 8px;
}

.nav-menu-238894 {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu-238894 a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu-238894 a:hover {
    color: var(--primary-color);
}

.menu-toggle-47f5dc {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero-123a64 {
    background: var(--gradient);
    padding: 150px 20px 100px;
    text-align: center;
    color: white;
}

.hero-123a64 h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-123a64 p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-badges-8efb61 {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.badge-item-eb412a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 12px 25px;
    border-radius: 50px;
}

.badge-item-eb412a i {
    font-size: 24px;
}

/* Section Common */
.section-8478ae {
    padding: 80px 20px;
}

.section-alt-4a176c {
    background: var(--bg-light);
}

.section-title-f3304f {
    text-align: center;
    margin-bottom: 20px;
}

.section-title-f3304f h2 {
    font-size: 36px;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-title-f3304f h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-intro-5970b6 {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 30px auto 50px;
    font-size: 16px;
}

/* Products Section */
.products-grid-b12311 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card-a26cb5 {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.product-img-290195 {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.product-img-290195 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content-cb97f3 {
    padding: 25px;
}

.product-content-cb97f3 h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-content-cb97f3 p {
    color: var(--text-light);
    font-size: 14px;
}

/* Services Section */
.services-grid-ae56ff {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-9f047f {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card-9f047f:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-icon-a75cb3 {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon-a75cb3 i {
    font-size: 32px;
    color: white;
}

.service-card-9f047f h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card-9f047f p {
    color: var(--text-light);
    font-size: 14px;
}

/* About Section */
.about-content-886efc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-8bdbe6 h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text-8bdbe6 p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features-610d3c {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

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

.about-feature-7fb33c i {
    color: var(--accent-color);
    font-size: 20px;
}

.about-img-c88b4a {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-c88b4a img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Cases Section */
.cases-grid-317c19 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.case-card-13d4fd {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
}

.case-card-13d4fd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.case-card-13d4fd:hover img {
    transform: scale(1.1);
}

.case-overlay-e3a45b {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    color: white;
}

.case-overlay-e3a45b h4 {
    font-size: 16px;
}

/* News Section */
.news-grid-a65634 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-31dcc3 {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.news-img-53c757 {
    height: 180px;
    background: var(--bg-light);
    overflow: hidden;
}

.news-img-53c757 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content-e7a6c3 {
    padding: 25px;
}

.news-meta-0c40ac {
    display: flex;
    gap: 15px;
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 10px;
}

.news-content-e7a6c3 h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.4;
}

.news-content-e7a6c3 p {
    color: var(--text-light);
    font-size: 14px;
}

/* FAQ Section */
.faq-list-2373b1 {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question-c7fc4c {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
}

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

.faq-question-c7fc4c i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item-3d6d9a.active .faq-question-c7fc4c i {
    transform: rotate(180deg);
}

.faq-answer-fbf189 {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
    color: var(--text-light);
}

.faq-item-3d6d9a.active .faq-answer-fbf189 {
    padding: 0 25px 20px;
    max-height: 200px;
}

/* Reviews Section */
.reviews-grid-050c4d {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card-c2e9b4 {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.review-card-c2e9b4::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: serif;
}

.review-stars-8d6844 {
    color: #f1c40f;
    margin-bottom: 15px;
}

.review-text-462215 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}

.reviewer-adb296 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar-e38332 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-info-84252d h4 {
    font-size: 16px;
    color: var(--text-dark);
}

.reviewer-info-84252d p {
    font-size: 13px;
    color: var(--text-light);
}

/* Contact Section */
.contact-wrapper-f38972 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-db8acd h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-info-db8acd p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-item-46ff22 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-46ff22 i {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.contact-item-text-add559 h4 {
    font-size: 16px;
    color: var(--text-dark);
}

.contact-item-text-add559 p {
    color: var(--text-light);
    font-size: 14px;
}

.contact-form-3ef74b {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group-29da34 {
    margin-bottom: 20px;
}

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

.form-group-29da34 input,
.form-group-29da34 textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

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

.form-group-29da34 textarea {
    height: 120px;
    resize: none;
}

.btn-submit-d6ea50 {
    width: 100%;
    padding: 15px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-submit-d6ea50:hover {
    opacity: 0.9;
}

/* Links Section */
.links-section-b7fc5e {
    background: var(--text-dark);
    padding: 40px 20px;
}

.links-title-1b4d64 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
}

.links-list-c7fd19 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.links-list-c7fd19 a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.links-list-c7fd19 a:hover {
    color: white;
}

/* Footer */
.footer-f32b4d {
    background: var(--primary-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-content-b0f457 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand-e42edb h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-brand-e42edb p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

.footer-links-767334 h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links-767334 ul {
    list-style: none;
}

.footer-links-767334 li {
    margin-bottom: 10px;
}

.footer-links-767334 a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links-767334 a:hover {
    color: white;
}

.footer-social-4a072d {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-4a072d a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.footer-social-4a072d a:hover {
    background: var(--primary-light);
}

.footer-bottom-a3d51f {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Back to Top */
.back-top-86ccaa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    z-index: 999;
}

.back-top-86ccaa:hover {
    background: var(--primary-dark);
}

.back-top-86ccaa.show {
    display: flex;
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid-b12311,
    .services-grid-ae56ff,
    .news-grid-a65634,
    .reviews-grid-050c4d {
        grid-template-columns: repeat(2, 1fr);
    }

    .cases-grid-317c19 {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content-886efc,
    .contact-wrapper-f38972 {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .menu-toggle-47f5dc {
        display: block;
    }

    .nav-menu-238894 {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu-238894.active {
        display: flex;
    }

    .hero-123a64 h1 {
        font-size: 32px;
    }

    .hero-123a64 p {
        font-size: 16px;
    }

    .products-grid-b12311,
    .services-grid-ae56ff,
    .news-grid-a65634,
    .reviews-grid-050c4d,
    .cases-grid-317c19 {
        grid-template-columns: 1fr;
    }

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

    .footer-content-b0f457 {
        grid-template-columns: 1fr;
    }

    .about-features-610d3c {
        grid-template-columns: 1fr;
    }
}