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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Microsoft YaHei", "Hiragino Sans GB", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #343a40;
    background-color: #ffffff;
}

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

/* 导航栏样式 */
.navbar-591b35 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container-8e26ce {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-d13a50 {
    font-size: 24px;
    font-weight: 700;
    color: #0d6efd;
    text-decoration: none;
}

.nav-menu-334954 {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-menu-334954 a {
    text-decoration: none;
    color: #343a40;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu-334954 a:hover {
    color: #0d6efd;
}

.nav-cta-84e99c {
    background: #0d6efd;
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-cta-84e99c:hover {
    background: #0b5ed7;
    color: white !important;
}

.mobile-toggle-5b298a {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-toggle-5b298a span {
    width: 25px;
    height: 3px;
    background: #343a40;
    margin: 3px 0;
    transition: 0.3s;
}

/* 主要内容区域 */
.hero-a22559 {
    min-height: 100vh;
    background: linear-gradient(#0b5ed78a, #0b5ed7b5), url(/static/zhengjian1/images/modern_professional_office_city_view_collaborative_workspace.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.hero-content-9d2c60 h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle-c4f5bd {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #e3f2fd;
}

.hero-description-3ce4fd {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #bbdefb;
}

.hero-buttons-e5cba6 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-8bc7f8 {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.btn-primary-7b1a03 {
    background: #0d6efd;
    color: white;
}

.btn-primary-7b1a03:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

.btn-outline-a6a2bf {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-a6a2bf:hover {
    background: white;
    color: #0d6efd;
}

.hero-stats-791383 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item-11d519 {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.stat-number-957ed8 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label-5bacac {
    color: #bbdefb;
}

.scroll-indicator-7bb802 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    animation: bounce 2s infinite;
}

.scroll-indicator-7bb802::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    margin-top: 8px;
    animation: scroll 2s infinite;
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* 通用区块样式 */
.section-67a895 {
    padding: 80px 0;
}

.section-alt-e3db33 {
    background: #f8f9fa;
}

.section-title-e760aa {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #212529;
}

.section-description-6a88c8 {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 60px;
}

/* 服务优势样式 */
.advantages-grid-e46763 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card-a2a4ae {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.advantage-card-a2a4ae:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.advantage-icon-1464d7 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.advantage-title-f1f868 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.advantage-subtitle-783449 {
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 15px;
}

/* 产品展示样式 */
.products-grid-4ca199 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card-53f93d {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-card-53f93d:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-image-132174 {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-content-1b78f7 {
    padding: 25px;
}

.product-title-2afc4e {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #212529;
}

.product-description-546031 {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.product-footer-f95060 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price-392c86 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d6efd;
}

.btn-small-ccfce8 {
    padding: 8px 16px;
    font-size: 14px;
}

/* 关于我们样式 */
.about-grid-2e59a3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-596186 {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content-7c8af6 h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #212529;
}

.about-content-7c8af6 p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #495057;
}

.features-grid-6b1789 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.feature-item-7e92cf {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon-402154 {
    width: 40px;
    height: 40px;
    background: #e3f2fd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    flex-shrink: 0;
}

.feature-text-03a3f6 h4 {
    margin-bottom: 5px;
    color: #212529;
}

.feature-text-03a3f6 p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

/* 案例展示样式 */
.cases-grid-744ec6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.case-card-a0d2ff {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.case-card-a0d2ff:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.case-image-43c64f {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-content-5b1b24 {
    padding: 30px;
}

.case-meta-d0e0d2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.case-category-f8a570 {
    background: #e3f2fd;
    color: #0d6efd;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.case-date-9d8c16 {
    color: #6c757d;
    font-size: 0.9rem;
}

.case-title-f23f45 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

.case-description-5dadb2 {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.case-footer-ca9b12 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.case-client-e31a2a {
    font-size: 0.9rem;
    color: #6c757d;
}

/* 客户评价样式 */
.reviews-grid-16a0fa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card-a083d9 {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.review-quote-91602c {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: #e3f2fd;
}

.review-header-ad6be8 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

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

.reviewer-name-017656 {
    font-weight: 600;
    color: #212529;
}

.reviewer-role-f1b041 {
    color: #6c757d;
    font-size: 0.9rem;
}

.rating-9c3c27 {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.star-802392 {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-text-015ccd {
    color: #495057;
    line-height: 1.6;
    font-style: italic;
}

/* FAQ样式 */
.faq-container-9c6e12 {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item-a7a329 {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question-0b9201 {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    color: #212529;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question-0b9201:hover {
    background: #f8f9fa;
}

.faq-toggle-a8e1f5 {
    transition: transform 0.3s ease;
}

.faq-toggle-a8e1f5.active {
    transform: rotate(180deg);
}

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

.faq-answer-013ac5.active {
    max-height: 500px;
}

.faq-answer-content-00698f {
    padding: 0 20px 25px;
    color: #6c757d;
    line-height: 1.6;
}

/* 新闻资讯样式 */
.news-grid-a86525 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card-cbe0cd {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card-cbe0cd:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-content-96d033 {
    padding: 25px;
}

.news-meta-df124b {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.news-category-21f265 {
    background: #e3f2fd;
    color: #0d6efd;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-date-9e5968 {
    color: #6c757d;
    font-size: 0.9rem;
}

.news-title-e48d39 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #212529;
}

.news-excerpt-8a6536 {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.news-footer-a8236a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #dee2e6;
}

.read-time-58e3c6 {
    color: #6c757d;
    font-size: 0.9rem;
}

/* 联系方式样式 */
.contact-grid-59dc29 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-7a71c6 h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #212529;
}

.contact-item-0304e5 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon-944c18 {
    width: 50px;
    height: 50px;
    background: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d6efd;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-details-54dfef h4 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
}

.contact-value-991e8a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0d6efd;
    margin-bottom: 5px;
}

.contact-description-045c82 {
    color: #6c757d;
    font-size: 0.9rem;
}

.contact-form-e62c9b {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-label-683ac3 {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #212529;
}

.form-control-6c6de7 {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control-6c6de7:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

textarea.form-control-6c6de7 {
    resize: vertical;
    min-height: 120px;
}
/* Flink */
.flink-section-fb3f59 {
    background: white;
    color: #2d3748;
    padding: 30px 0;
}
.flink-header-ea4fbb{
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 10px;
}
.flink-section-fb3f59 li{
    list-style: none;
    display: inline;
    padding-right: 20px;
}
.flink-section-fb3f59 a{
    color: #718096;
    text-decoration: none;
}

/* 页脚样式 */
.footer-75b657 {
    background: #212529;
    color: white;
    padding: 60px 0 20px;
}

.footer-content-44d472 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section-172970 h3 {
    color: #0d6efd;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section-172970 p {
    color: #adb5bd;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-section-172970 ul {
    list-style: none;
}

.footer-section-172970 ul li {
    margin-bottom: 10px;
}

.footer-section-172970 ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section-172970 ul li a:hover {
    color: #0d6efd;
}

.footer-contact-e33e35 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact-icon-2b7aed {
    color: #0d6efd;
}

.footer-bottom-d82517 {
    border-top: 1px solid #343a40;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom-d82517 p {
    color: #6c757d;
    margin: 10px 0;
}

.legal-notice-6ae805 {
    background: #343a40;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.legal-notice-6ae805 p {
    color: #adb5bd;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* 返回顶部按钮 */
.back-to-top-0ffddd {
    position: fixed;
    bottom: 200px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0d6efd;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top-0ffddd.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-0ffddd:hover {
    background: #0b5ed7;
    transform: translateY(-3px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-a22559{
       /*top:70px; */
    }
    .hero-buttons-e5cba6{
        margin-bottom: 30px;
    }
    .stat-item-11d519{
        padding: 10px;
    }
    .hero-buttons-e5cba6 .btn-8bc7f8{
        padding: 10px 30px;
    }
    .stat-number-957ed8{
        font-size: 1.2rem;
    }
    .stat-label-5bacac{
        font-size: 0.8rem;
    }
    .mobile-toggle-5b298a {
        display: flex;
    }

    .nav-menu-334954 {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu-334954.active {
        left: 0;
    }

    .hero-content-9d2c60 h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle-c4f5bd {
        font-size: 1.2rem;
    }

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

    .hero-stats-791383 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title-e760aa {
        font-size: 2rem;
    }

    .advantages-grid-e46763,
    .products-grid-4ca199,
    .cases-grid-744ec6,
    .reviews-grid-16a0fa,
    .news-grid-a86525 {
        grid-template-columns: 1fr;
    }

    .about-grid-2e59a3,
    .contact-grid-59dc29 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid-6b1789 {
        grid-template-columns: 1fr;
    }

    .container-860c11 {
        padding: 0 15px;
    }

    .section-67a895 {
        padding: 60px 0;
    }
    .back-to-top-0ffddd{
        right: 20px;
    }
}