: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-516d2f {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header-9b7f05 {
    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-f96623 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Section Common */
.section-8b955e {
    padding: 80px 20px;
}

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

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

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

.section-title-de282c 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-7cd9dc {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 30px auto 50px;
    font-size: 16px;
}

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

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

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

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

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

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

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

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

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

.service-card-15a06f {
    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-15a06f:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.case-card-75da19:hover img {
    transform: scale(1.1);
}

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

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

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

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

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

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

.news-img-030b54 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

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

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

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

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

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

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

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

.faq-item-45e7c9.active .faq-question-69b2af i {
    transform: rotate(180deg);
}

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

.faq-item-45e7c9.active .faq-answer-cec536 {
    padding: 0 25px 20px;
    max-height: 200px;
}

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

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

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

.review-stars-192cb3 {
    color: #f1c40f;
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

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

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

.contact-item-2eaace 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-516b2b h4 {
    font-size: 16px;
    color: var(--text-dark);
}

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

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

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

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

.form-group-e61904 input,
.form-group-e61904 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-e61904 input:focus,
.form-group-e61904 textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.btn-submit-70b7e2 {
    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-70b7e2:hover {
    opacity: 0.9;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-social-cca53f 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-cca53f a:hover {
    background: var(--primary-light);
}

.footer-bottom-520d1f {
    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-31ee50 {
    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-31ee50:hover {
    background: var(--primary-dark);
}

.back-top-31ee50.show {
    display: flex;
}

/* Responsive */
@media (max-width: 992px) {
    .products-grid-f498bb,
    .services-grid-ec616d,
    .news-grid-7167fd,
    .reviews-grid-77066d {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .about-content-19c28b,
    .contact-wrapper-aff99c {
        grid-template-columns: 1fr;
    }

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

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

    .nav-menu-183790 {
        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-183790.active {
        display: flex;
    }

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

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

    .products-grid-f498bb,
    .services-grid-ec616d,
    .news-grid-7167fd,
    .reviews-grid-77066d,
    .cases-grid-f9f7ad {
        grid-template-columns: 1fr;
    }

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

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

    .about-features-87cc32 {
        grid-template-columns: 1fr;
    }
}