

.index-section:nth-of-type(odd) {
    background-color: #E3F0F8 !important;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    color: var(--text-color);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}



.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.cta-button i {
    margin-right: 8px;
}

/* 实验室通过CNAS认可的好处 */
.benefits-section {
    padding: 60px 0;
    color: #fff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    margin-bottom: 20px;
    font-size: 40px;
    color: var(--primary-color);
}

.benefit-icon i {
    font-size: 40px;
}

.benefit-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.benefit-item p {
    font-size: 14px;
    color: var(--dark-gray);
}

.contact-info-banner {
    margin-top: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
    border-radius: 4px;
}

@media (max-width: 992px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
}

.contact-info-banner p {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.contact-info-banner a {
    color: var(--white);
    text-decoration: none;
}

.contact-info-banner i {
    margin-right: 10px;
}

/* CNAS认可基本原则与受理要求 - 优化样式 */
.principles-section {
        padding: 60px 0;
        position: relative;
    }
    
    .principles-container {
        display: flex;
        gap: 30px;
    }
    
    .principles-box, .requirements-box {
        flex: 1;
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
    }
    
    .principles-box h3, .requirements-box h3 {
        font-size: 22px;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
        color: #333;
        display: flex;
        align-items: center;
    }
    
    .principles-box h3 i, .requirements-box h3 i {
        color: #0066cc;
        margin-right: 10px;
        font-size: 24px;
    }
    
    .principles-list, .requirements-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .principles-list li, .requirements-list li {
        display: flex;
        margin-bottom: 20px;
        align-items: flex-start;
    }
    
    .principle-check, .requirement-check {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        margin-top: 3px;
        background-color: #0066cc;
        color: #fff;
    }
    
    .principle-content, .requirement-content {
        flex-grow: 1;
    }
    
    .principle-content h4, .requirement-content h4 {
        font-size: 18px;
        margin-bottom: 8px;
        color: #333;
        font-weight: 600;
    }
    
    .principle-content p, .requirement-content p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.6;
    }
    
    @media (max-width: 992px) {
        .principles-container {
            flex-direction: column;
        }
        
        .principles-box, .requirements-box {
            margin-bottom: 30px;
        }
    }
    
    @media (max-width: 576px) {
        .principles-box h3, .requirements-box h3 {
            font-size: 20px;
        }
        
        .principle-content h4, .requirement-content h4 {
            font-size: 16px;
        }
        
        .principle-content p, .requirement-content p {
            font-size: 13px;
        }
    }

/* 选择德凯的4大优势 - 修改后的样式 */
.advantages-section {
        padding: 60px 0;
        color: #fff;
    }

    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        position: relative;
        z-index: 2;
    }

    .advantage-item {
        display: flex;
        background-color: var(--white);
        border-radius: 8px;
        padding: 30px;
        box-shadow: var(--box-shadow);
        transition: all 0.3s ease;
    }

    .advantage-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

  

    .advantage-item:hover .advantage-icon {
        background-color: var(--accent-color);
        transform: rotate(360deg);
    }

    .advantage-content {
        flex-grow: 1;
    }

    .advantage-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--text-color);
    }

    .advantage-content p {
        font-size: 14px;
        color: var(--dark-gray);
        margin: 0;
        line-height: 1.6;
    }

    @media (max-width: 992px) {
        .advantages-grid {
            grid-template-columns: 1fr;
        }
    }

 


    /* 响应式样式 */
@media (max-width: 1200px) {
    /* .container {
        max-width: 960px;
    } */
}

@media (max-width: 992px) {
    /* .container {
        max-width: 720px;
    } */
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        flex: 0 0 100%;
    }
    
    .quick-links-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {

    
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-item {
        flex-direction: column;
    }
    
    .advantage-image {
        flex: 0 0 100%;
        height: 200px;
    }
    
    .advantage-content {
        flex: 0 0 100%;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {

    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-links-container {
        grid-template-columns: 1fr;
    }
    
}


.advantages-section {
            padding: 40px 0;
            background-color: #f8f9fa;
            background-image: linear-gradient(135deg, rgba(0, 85, 165, 0.05) 0%, rgba(0, 85, 165, 0.1) 100%);
        }

        .advantages-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .advantages-content {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .advantage-item {
            display: flex;
            background-color: #fff;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .advantage-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .advantage-icon {
            width: 60px;
            height: 60px;
            background-color: #e6f0fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: #0055a5;
            font-size: 24px;
            flex-shrink: 0;
        }

        .advantage-text h3 {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .advantage-text p {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 0;
        }

        .advantages-stats {
            flex: 1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .stat-item {
            background-color: #0055a5;
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            color: #fff;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background-color: #003d7a;
            transform: translateY(-5px);
        }

        .stat-number {
            display: block;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-text {
            font-size: 16px;
        }



        @media (max-width: 991px) {


            .advantages-container {
                flex-direction: column;
            }
            .advantages-stats{
                grid-template-columns: repeat(4, 1fr)
            }
        }

        @media (max-width: 768px) {

            .advantage-icon{
                margin-right: 0;
            }
            .advantage-item{
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }
            .advantage-text p{
                display: none;
            }

           .advantages-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            /* .advantages-content{
                display: none;
            } */
            .services-section,
            .advantages-section {
                padding: 50px 0;
            }



            .service-card {
                padding: 20px;
            }

            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }

            .service-card h3 {
                font-size: 18px;
            }

            .advantage-item {
                padding: 20px;
            }

            .advantage-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }



            .stat-item {
                padding: 20px;
            }

            .stat-number {
                font-size: 30px;
            }

            .stat-text {
                font-size: 14px;
            }
        }



/* 常见问题 */
.faq-section {
    padding: 60px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
}

.faq-question h3 {
    font-size: 18px;
    margin: 0;
    flex-grow: 1;
}

.toggle-icon {
    margin-left: 10px;
}

.faq-answer {
    padding: 0 20px 20px 55px;
    display: none;
}

.faq-answer p {
    margin: 0;
    color: var(--dark-gray);
}

.faq-item.active .faq-question {
    background-color: #f0f7ff;
}

/* 合作伙伴 */
.partners-section {
    padding: 60px 0;
    background-color: var(--white);
}

.partners-slider {
    margin: 0 -15px;
}

.partner-item {
    padding: 0 15px;
    text-align: center;
}

.partner-item img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}


.btn-primary, .btn-secondary {
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #ffb100;
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 177, 0, 0.3);
}

.btn-primary:hover {
    background-color: #ff9500;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 177, 0, 0.4);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.btn-primary i, .btn-secondary i {
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 576px) {
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    

}

.button-group{
    display: flex;
}
.button-group button{
    flex: 1;
}

/*首页maintab*/
/* Tab导航菜单样式 - 卡片式设计 */
.main-tab-navigation {
    background-color: #f5f5f5;
    position: relative;
    width: 100%;
    z-index: 100;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

/* 固定在顶部的样式 */
.main-tab-navigation.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.main-tab-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1px;
    padding: 0 15px;
    max-width: 1280px;
    margin: 0 auto;
}

.tab-button {
    background: #e8e8e8;
    color: #666;
    border-bottom: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    position: relative;
    text-align: center;
    white-space: nowrap;
    z-index: 1;
    flex: 1;
}

.tab-button:hover {
    color: var(--primary-color);
    background-color: #f0f0f0;
}

.tab-button.active {
    
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    z-index: 2;
}

.tab-content-section {
    display: none;
    background-color: #fff;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tab-content-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-content-wrapper {
    margin-left: 0;
    padding-left: 0;
    transition: all 0.3s ease;
    background-color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width:768px){
    .main-tab-navigation{
        overflow-x: auto;
    }
    .main-tab-nav{
        justify-content: start;
    }
}


/*index*/
.hero-layout {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-logo-container {
    flex: 0 0 auto;
}

.hero-text-container {
    flex: 1;
}

.hero-section .hero-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 0;
    display: block;
    border-radius: 50%;
}

/* 调整第二屏的布局 */
.hero-section .certificates-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-section .certificates-info .hero-logo-container {
    flex: 0 0 auto;
}

.hero-section .certificates-info .hero-text-container {
    flex: 1;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .hero-layout .last-tip {
        display: none;
    }

    .hero-layout,
    .hero-section .certificates-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-section .hero-logo {
        max-width: 150px;
        margin-bottom: 15px;
    }

    .hero-text-container {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* 首页横幅 - 滚动Banner样式 */
.hero-section {
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero-section .section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    color: var(--text-color);
}

.hero-section .section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.hero-section .hero-slide {
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-section .hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-section .hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

/* 证书展示样式 - 左图右文布局 */
.hero-section .certificates-layout {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.hero-section .certificates-showcase {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
    padding-left: 0;
}

.hero-section .certificate-item {
    background-color: transparent;
    border-radius: 8px;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 240px;
}

.hero-section .certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-section .certificate-item img {
    width: 220px;
    height: 310px;
    object-fit: contain;
    border-radius: 4px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
    background-color: transparent;
    padding: 0;
}

.hero-section .certificate-item:hover img {
    transform: scale(1.03);
}

.hero-section .certificates-info {
    flex: 1.2;
    padding-left: 20px;
}

.hero-section .certificates-info h2 {
    text-align: left;
    margin-bottom: 20px;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}

.hero-section .certificates-info p {
    text-align: left;
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-section .certificates-info .hero-buttons {
    justify-content: flex-start;
}

.hero-section .hero-content h2, .hero-section .hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.hero-section .hero-content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.hero-section .cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: var(--transition);
}

.hero-section .cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.hero-section .cta-button i {
    margin-right: 8px;
}

.hero-section .hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.hero-section .guarantee-button {
    background-color: #ff6600;
}

.hero-section .guarantee-button:hover {
    background-color: #e55c00;
}

/* Glide.js自定义样式 */
.hero-section .glide__bullets {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-section .glide__bullet {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-section .glide__bullet:hover,
.hero-section .glide__bullet--active {
    background-color: white;
    transform: scale(1.2);
}

.hero-section .glide__arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-section .glide__arrow {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .glide__arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-section .glide__arrow--left {
    left: 20px;
}

.hero-section .glide__arrow--right {
    right: 20px;
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式调整 */
@media (max-width: 1200px) {
    .hero-section .certificates-layout {
        gap: 30px;
    }

    .hero-section .certificates-showcase {
        gap: 15px;
        display: none;
    }

    .hero-section .certificate-item {
        width: 220px;
    }

    .hero-section .certificate-item img {
        width: 190px;
        height: 260px;
    }
}

@media (max-width: 992px) {
    .hero-section .certificates-layout {
        flex-direction: column;
        gap: 30px;
    }

    .hero-section .certificates-showcase {
        justify-content: center;
        margin-bottom: 20px;
    }

    .hero-section .certificates-info {
        text-align: center;
        padding-left: 0;
    }

    .hero-section .certificates-info h2,
    .hero-section .certificates-info p {
        text-align: center;
    }

    .hero-section .certificates-info .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section .hero-buttons {
        gap: 10px;
    }

    .hero-section .hero-slide {
        height: 500px;
    }

    .hero-section .hero-content h2, .hero-section .hero-content h1 {
        font-size: 24px;
    }

    .hero-section .hero-content p {
        font-size: 16px;
    }

    .hero-section .certificates-showcase {
        display: none;
    }

    .hero-section .certificates-info {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .hero-section .certificates-info h2,
    .hero-section .certificates-info p {
        text-align: center;
    }

    .hero-section .certificates-info .hero-buttons {
        justify-content: center;
    }

    .hero-section .glide__arrows {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-section .hero-content h2,.hero-section .hero-content h1 {
        font-size: 22px;
    }

    .hero-section .hero-slide {
        height: 450px;
        /* 在更小的屏幕上进一步减小高度 */
    }

    .hero-section .certificate-item {
        width: 240px;
    }

    .hero-section .certificate-item img {
        width: 210px;
        height: 290px;
    }
}

/*index content-intro*/
/* CNAS实验室认证认可简介 */
.intro-section {
    padding: 60px 0;
    background-color: var(--white);
}
.intro-section .section-title a{

}

.intro-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.intro-content {
    flex: 1;
}

.intro-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--dark-gray);
}

.intro-features {
    margin-top: 25px;
}

.intro-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.intro-feature i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
}

.intro-feature span {
    font-weight: 500;
}

.intro-cta {
    margin-top: 25px;
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-color);
}

.intro-cta i {
    margin-left: 8px;
}

.intro-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.intro-image:hover img {
    transform: scale(1.03);
}

/* 添加响应式样式 */
@media (max-width: 992px) {
    .intro-container {
        flex-direction: column-reverse;
    }

    .intro-image {
        margin-bottom: 30px;
        width: 100%;
    }

    .intro-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .intro-section {
        padding: 60px 0;
    }

    .intro-feature {
        margin-bottom: 12px;
    }

    .intro-feature i {
        font-size: 18px;
    }

    .intro-cta {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .intro-section {
        padding: 30px 0;
    }

    .intro-text p {
        font-size: 14px;
    }

    .intro-feature span {
        font-size: 14px;
    }

    .intro-cta {
        font-size: 15px;
    }
}

/*content-service-intro*/
/* 服务步骤模块样式 */
.service-steps-section {
    padding: 50px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.service-steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03) 0%, rgba(0, 77, 153, 0.05) 100%);
    z-index: 0;
}


/* 添加分类标签样式 */
.service-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.category-tag:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .service-categories {
        gap: 6px;
        margin-bottom: 15px;
    }

    .category-tag {
        font-size: 11px;
        padding: 4px 10px;
    }
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    position: relative;
    letter-spacing: 1px;
}

.service-steps-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* 服务步骤项目样式 */
.service-steps-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.service-steps-items .step-item {
    position: relative;
    width: calc(20% - 24px);
    min-width: 180px;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    flex-grow: 0;
    flex-shrink: 0;
}

.service-steps-items .step-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transition: all 0.4s ease;
    z-index: -1;
    opacity: 0;
    border-radius: 12px;
}

.service-steps-items .step-item:hover::before,
.service-steps-items .step-item.active::before {
    height: 100%;
    opacity: 1;
}

.service-steps-items .step-item:hover,
.service-steps-items .step-item.active {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15);
}

.service-steps-items .step-item:hover .step-icon i,
.service-steps-items .step-item.active .step-icon i {
    color: #fff;
    transform: scale(1.1);
}

.service-steps-items .step-item:hover .step-subtitle,
.service-steps-items .step-item.active .step-subtitle {
    color: #fff;
}

.service-steps-items .step-item:hover .step-number,
.service-steps-items .step-item.active .step-number {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.service-steps-items .step-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background-color: rgba(0, 102, 204, 0.1);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        



/* .service-steps-items .step1 .step-icon {
    background-image: url(img/cnas.png);
}

.service-steps-items .step2 .step-icon {
    background-image: url(img/cma.png);
}
.service-steps-items .step3 .step-icon {
    background-image: url(img/cma-cnas.png);
}

.service-steps-items .step4 .step-icon {
    background-image: url(img/icon-gh.png);
}

.service-steps-items .step5 .step-icon {
    background-image: url(img/icon-build.png);
}

.service-steps-items .step6 .step-icon {
    background-image: url(img/icon-device.png);
} */

.service-steps-items .step-icon i {
            font-size: 42px;
            color: var(--primary-color);
            transition: all 0.4s ease;
        }

.service-steps-items .step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    background-color: rgba(0, 102, 204, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 2;
}

.service-steps-items .step-content {
    margin-top: 15px;
    transition: all 0.4s ease;
}

.service-steps-items .step-subtitle {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin: 0;
    transition: all 0.4s ease;
}

/* 服务详情展示区域样式 */
.service-detail-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    padding: 40px;
    color: #fff;
    margin-top: 40px;
    position: relative;
    min-height: 180px;
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.2);
    overflow: hidden;
}

.service-detail-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.service-detail-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(-30%, 30%);
}

.service-detail {
    display: none;
    animation: fadeIn 0.6s ease;
    position: relative;
    z-index: 1;
}

.service-detail.active {
    display: block;
}

.service-detail a {
    color: #fff;
}

.detail-title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.detail-desc {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.detail-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 5px 10px;
    border-radius: 20px;
}

.detail-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.detail-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
}

.detail-link:hover i {
    transform: translateX(5px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 步骤连接线样式 */
.steps-connection-line {
    position: absolute;
    top: 60px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 0;
    opacity: 0.5;
}

/* 响应式样式 */
@media (max-width: 1280px) {
    .service-steps-items {
        justify-content: center;
    }

    .service-steps-items .step-item {
                width: calc(25% - 23px);
                margin-bottom: 20px;
            }

    .step-item[data-step="05"] {
                display: none;
            }
}

@media (max-width: 1200px) {
    .service-steps-items .step-item {
                width: calc(25% - 23px);
            }

    .service-detail-container {
        display: block;
    }

    .service-steps-items {
        justify-content: space-between;
    }

}

@media (max-width: 992px) {
    .service-steps-items .step-item {
                width: calc(50% - 15px);
            }

    .service-detail-container {
        padding: 30px;
    }

    .service-steps-items .step-icon {
        width: 90px;
        height: 90px;
    }

    .service-steps-items .step-icon i {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .step-item[data-step="05"] {
                display: block;
            }
    .service-steps-items .step-item {
                width: calc(50% - 10px);
                min-width: 150px;
                padding: 25px 15px;
            }

    .service-steps-items {
        gap: 20px;
        justify-content: space-between;
    }

    .service-steps-items .step-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .service-steps-items .step-icon i {
        font-size: 32px;
    }

    .service-steps-items .step-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: 10px;
        left: 10px;
    }

    .service-detail-container {
        display: none;
        /* 在移动端隐藏详情区域 */
    }

    .step-subtitle {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .service-steps-items .step-item {
                width: calc(50% - 10px);
                min-width: 130px;
                padding: 20px 10px;
                margin-bottom: 15px;
            }

    .service-steps-items {
        gap: 15px;
    }

    .service-steps-items .step-icon {
                width: 70px;
                height: 70px;
            }

           .service-steps-items .step-icon i {
                font-size: 30px;
            }

            .service-steps-items .step-subtitle {
                font-size: 15px;
            }

            .service-steps-items .step-number {
                width: 30px;
                height: 30px;
                font-size: 14px;
                top: 10px;
                left: 10px;
            }

            .service-steps-items .service-steps-items {
                gap: 15px;
            }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .service-steps-items .step-icon {
        width: 60px;
        height: 60px;
    }

    .service-steps-items .step-icon i {
        font-size: 28px;
    }

    .service-steps-items .step-number {
        width: 25px;
        height: 25px;
        font-size: 12px;
        top: 8px;
        left: 8px;
    }
}


/*content-prices*/
/* 灵活付费方案样式 */
.pricing-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.pricing-tabs {
    margin-top: 10px;
    position: relative;
}

/* 服务导航样式 */
.service-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.service-nav-item {
    background-color: #f8f9fa;
    color: #333;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid #e9ecef;
}

.service-nav-item:hover, .service-nav-item.active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 3px 10px rgba(0, 102, 204, 0.2);
}

@media (max-width: 768px) {
    .service-nav-item {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 12px;
        padding: 10px 12px;
    }
}

/* Glide.js 滑动布局 */
.pricing-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* 角标样式 */
.pricing-card-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #FF9800;
    color: white;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0 10px 0 10px;
}

.pricing-card-tag.special {
    background-color: #FF5722;
}

.pricing-card-tag.popular {
    background-color: #4CAF50;
}

/* 卡片头部 */
.pricing-header {
    padding: 20px 15px;
    text-align: center;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.pricing-header h3 {
    margin: 0 0 15px;
    font-size: 18px;
    color: #333;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* 按钮样式 */
.pricing-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
}

.pricing-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    color: #fff;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
}

.price span {
    font-size: 14px;
    font-weight: normal;
    margin-left: 5px;
}

/* 卡片内容 */
.pricing-body {
    padding: 20px 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-body p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.5;
    font-size: 14px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

/* 功能列表样式调整 */
.pricing-features li {
    padding: 8px 0;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    min-height: 30px; /* 确保所有列表项高度一致 */
}

.pricing-features i.fa-check {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
    text-align: center;
}

.pricing-features i.fa-times {
    color: #F44336;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 2px;
    min-width: 16px;
    text-align: center;
}

/* 卡片底部 */
.pricing-footer {
    padding: 15px;
    text-align: center;
    margin-top: auto;
}

/* Glide.js 导航按钮样式 */
.pricing-slider-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.pricing-slider-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.pricing-slider-arrow:hover {
    background-color: var(--secondary-color);
}

.pricing-slider-arrow--left {
    left: 0;
}

.pricing-slider-arrow--right {
    right: 0;
}

/* Glide.js 分页指示器样式 */
.pricing-slider-bullets {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pricing-slider-bullet {
    width: 10px;
    height: 10px;
    padding: 0;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-slider-bullet.glide__bullet--active {
    background-color: var(--primary-color);
}

/* 移动端样式 */
@media (max-width: 768px) {
    .pricing-slider-arrow--left {
        left: 10px;
    }

    .pricing-slider-arrow--right {
        right: 10px;
    }

    .pricing-header h3 {
        font-size: 20px;
        min-height: auto;
    }
}

/*content-limited*/
/* 限时特惠名额限制模块样式 - 更紧凑的版本 */
.limited-offer-section {
    padding: 50px 0;
    /* 减少上下内边距 */
    background: linear-gradient(135deg, #0055b8, #003b80);
    position: relative;
}

.limited-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pattern.jpg');
    background-size: cover;
    /* 让图片覆盖整个区域 */
    background-position: center;
    /* 居中显示 */
    opacity: 0.05;
    z-index: 1;
}

.limited-offer-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    /* 增加最大宽度 */
    margin: 0 auto;
}

.limited-offer-header {
    text-align: center;
    margin-bottom: 25px;
    /* 减少下边距 */
}

.limited-offer-header h2 {
    font-size: 32px;
    /* 减小字体 */
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    /* 减少下边距 */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.limited-offer-header p {
    font-size: 16px;
    /* 减小字体 */
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto;
    line-height: 1.5;
    max-width: none;
    /* 移除宽度限制 */
}

.highlight-number {
    font-size: 22px;
    font-weight: 700;
    color: #ffb100;
    background-color: rgba(255, 177, 0, 0.2);
    padding: 2px 10px;
    border-radius: 4px;
    margin: 0 3px;
    display: inline-block;
}

/* 名额统计样式 - 更紧凑 */
.quota-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* 减少间距 */
    margin-bottom: 25px;
    display: none;
    /* 减少下边距 */
}

.quota-stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px 15px;
    /* 减少内边距 */
    width: 160px;
    /* 减小宽度 */
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.quota-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: rgba(255, 255, 255, 0.15);
}

.quota-stat-item.highlight {
    background-color: rgba(255, 177, 0, 0.15);
    border: 1px solid rgba(255, 177, 0, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.quota-stat-item.highlight:hover {
    transform: translateY(-5px) scale(1.05);
}

.quota-stat-item .stat-number {
    font-size: 42px;
    /* 减小字体 */
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
    /* 减少下边距 */
}

.quota-stat-item.highlight .stat-number {
    color: #ffb100;
}

.quota-stat-item .stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    /* 减少下边距 */
}

.quota-stat-item .stat-icon {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    /* 减小尺寸 */
    height: 36px;
    /* 减小尺寸 */
    background-color: #0055b8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.quota-stat-item.highlight .stat-icon {
    background-color: #ffb100;
}

.quota-stat-item .stat-icon i {
    font-size: 16px;
    /* 减小字体 */
    color: #fff;
}

/* CTA按钮样式 - 更紧凑 */
.limited-offer-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    /* 减少间距 */
    margin-top: 30px;
    /* 减少上边距 */
}

.cta-phone,
.cta-wechat .wechat-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    /* 减少内边距 */
    border-radius: 50px;
    font-size: 16px;
    /* 减小字体 */
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-phone {
    background-color: #ffb100;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 177, 0, 0.3);
}

.cta-phone:hover {
    background-color: #ff9500;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 177, 0, 0.4);
    color: #fff;
}

.cta-phone i,
.cta-wechat .wechat-preview i {
    margin-right: 8px;
    /* 减少间距 */
    font-size: 18px;
}

.cta-wechat {
    position: relative;
}

.cta-wechat .wechat-preview {
    background-color: #07C160;
    color: #fff;
    box-shadow: 0 5px 15px rgba(7, 193, 96, 0.3);
}

.cta-wechat .wechat-preview:hover {
    background-color: #06b055;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(7, 193, 96, 0.4);
}

/* 修复微信弹窗问题 */
.limited-offer-cta .cta-wechat .wechat-qrcode {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) scale(0.95);
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    width: 180px;
    pointer-events: none;
    text-align: center;
}

/* 添加箭头 */
.limited-offer-cta .cta-wechat .wechat-qrcode::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #fff;
}

/* 悬停效果 */
.limited-offer-cta .cta-wechat:hover .wechat-qrcode {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
    pointer-events: auto;
}

.limited-offer-cta .wechat-qrcode img {
    width: 120px;
    height: 120px;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
    text-align: center;
}

.limited-offer-cta .wechat-qrcode p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .limited-offer-header h2 {
        font-size: 28px;
    }

    .limited-offer-header p {
        font-size: 15px;
    }

    .quota-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .quota-stat-item {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .limited-offer-section {
        padding: 35px 0;
    }

    .limited-offer-header h2 {
        font-size: 26px;
    }

    .limited-offer-header p {
        font-size: 14px;
    }

    /* 修改这里，保持数字统计并排显示 */
    .quota-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .quota-stat-item {
        width: 30%;
        min-width: 100px;
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 13px;
    }

    .limited-offer-cta {
        /* flex-direction: column; */
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .limited-offer-header h2 {
        font-size: 22px;
    }

    .limited-offer-header p {
        font-size: 13px;
    }

    .highlight-number {
        font-size: 18px;
    }

    /* 小屏幕下调整数字统计项的宽度 */
    .quota-stat-item {
        width: 30%;
        min-width: 90px;
        padding: 12px 8px;
    }

    .stat-number {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
    }

    .stat-icon i {
        font-size: 14px;
    }

}


/*content-renke*/
/* 2000+企业的选择和认可 */
.testimonials-section {
    padding: 60px 0;
}

.testimonials-section .glide__slide {
    padding: 0 3px;
    /* 减少滑块之间的边距 */
}

.testimonial-item {
    padding: 0 2px;
    box-sizing: border-box;
}

.certificate-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    padding: 5px;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.certificate-img img {
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    display: block;
}

/* 使用与其他滑块相同的响应式设计 */
@media (max-width: 768px) {
    .certificate-img {
        height: 260px;
    }

    .certificate-img img {
        max-height: 250px;
    }
}

@media (max-width: 576px) {
    .certificate-img {
        height: 220px;
    }

    .certificate-img img {
        max-height: 210px;
    }
}


.pic-slide .glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pic-slide .glide__arrow:hover {
    background-color: var(--secondary-color);
}

.pic-slide .glide__arrow--left {
    left: 0;
}

.pic-slide .glide__arrow--right {
    right: 0;
}

.pic-slide .glide__bullets {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pic-slide .glide__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    padding: 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pic-slide .glide__bullet--active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .pic-slide .glide__arrow--left {
        left: 5px;
    }

    .pic-slide .glide__arrow--right {
        right: 5px;
    }
}

@media (max-width: 768px) {

    .case-image,
    .service-image {
        height: 180px;
    }

    .case-content h3,
    .service-content h3 {
        font-size: 16px;
    }

    .case-content p,
    .service-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .pic-slide .glide__arrow {
        width: 35px;
        height: 35px;
    }

    .pic-slide .glide__arrow--left {
        left: 5px;
    }

    .pic-slide .glide__arrow--right {
        right: 5px;
    }
}

/* 市场前景样式 */
.market-section {
    padding: 60px 0;
    position: relative;
}

.market-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pattern.jpg');
    background-size: cover;
    /* 让图片覆盖整个区域 */
    background-position: center;
    /* 居中显示 */
    opacity: 0.05;
    z-index: 1;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.market-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.market-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
}

.market-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.market-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.market-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.market-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.market-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #666;
    line-height: 1.5;
}

.market-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.data-source {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

@media (max-width: 1200px) {
    .market-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .market-grid {
        grid-template-columns: 1fr;
    }

    .market-card {
        padding: 25px;
    }

    .market-icon {
        width: 60px;
        height: 60px;
    }

    .market-icon i {
        font-size: 24px;
    }

    .market-card h3 {
        font-size: 18px;
    }
}

/*content-case*/
/* 案例展示和推荐服务共用样式 */
.case-section,
.services-section {
    padding: 60px 0;
    overflow-x: hidden;
}

.services-section {}

.section-desc {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #666;
}

.pic-slide .glide {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.pic-slide .glide__track {
    overflow: hidden;
}

.pic-slide .glide__slides {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pic-slide .glide__slide {
    flex-shrink: 0;
    padding: 0 0;
    box-sizing: border-box;
    width: 100%;
}

.case-item,
.service-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.services-section .service-item {
    background: #f8f9fa;
}

.case-item:hover,
.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.case-image,
.service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.case-image img,
.service-image img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.case-item:hover .case-image img,
.service-item:hover .service-image img {
    transform: scale(1.05);
}

.case-content,
.service-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.case-content h3,
.service-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.case-content p,
.service-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.case-link,
.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
}

.case-link i,
.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.case-link:hover,
.service-link:hover {
    color: var(--secondary-color);
}

.case-link:hover i,
.service-link:hover i {
    transform: translateX(3px);
}

.pic-slide .glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pic-slide .glide__arrow:hover {
    background-color: var(--secondary-color);
}

.pic-slide .glide__arrow--left {
    left: 0;
}

.pic-slide .glide__arrow--right {
    right: 0;
}

.pic-slide .glide__bullets {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pic-slide .glide__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    padding: 0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pic-slide .glide__bullet--active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 992px) {
    .pic-slide .glide__arrow--left {
        left: 5px;
    }

    .pic-slide .glide__arrow--right {
        right: 5px;
    }
}

@media (max-width: 768px) {

    .case-image,
    .service-image {
        height: 180px;
    }

    .case-content h3,
    .service-content h3 {
        font-size: 16px;
    }

    .case-content p,
    .service-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .pic-slide .glide__arrow {
        width: 35px;
        height: 35px;
    }

    .pic-slide .glide__arrow--left {
        left: 5px;
    }

    .pic-slide .glide__arrow--right {
        right: 5px;
    }
}

/*content-reviews*/
/* 成功案例样式 */
.testimonials-full-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    position: relative;
}

.testimonials-full-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pattern-light.jpg');
    background-size: cover;
    /* 让图片覆盖整个区域 */
    background-position: center;
    /* 居中显示 */
    opacity: 0.05;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-full-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.testimonial-full-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-full-card.highlight {
    border: 2px solid var(--primary-color);
}

.testimonial-header {
    padding: 25px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.client-avatar img {
    width: 100%;
    height: 100%;
}

.client-details h3 {
    font-size: 20px;
    margin: 0 0 5px;
    color: #333;
}

.client-details p {
    font-size: 14px;
    color: #666;
    margin: 0 0 10px;
}

.client-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.client-meta span {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
}

.client-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.service-type {
    background-color: #f0f0f0;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #666;
}

.service-type.highlight {
    background-color: var(--primary-color);
    color: #fff;
}

.testimonial-body {
    padding: 25px;
}

.testimonial-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    font-style: italic;
    position: relative;
}

.testimonial-body p:before,
.testimonial-body p:after {
    content: '"';
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .client-avatar {
        width: 60px;
        height: 60px;
    }

    .client-details h3 {
        font-size: 18px;
    }

    .testimonial-header {
        flex-direction: column;
    }

    .service-type {
        margin-top: 15px;
        align-self: flex-start;
    }
}

@media (max-width: 576px) {
    .client-meta {
        flex-direction: column;
        gap: 5px;
    }

    .testimonial-body p {
        font-size: 14px;
    }
}

/*content-faq*/
@media (max-width:576px) {
    .principles-section .section-title {
        font-size: 18px;
    }
}

/* Tab切换样式 */
.principles-section .tab-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.principles-section .tab-header i {
    margin-right: 10px;
    color: var(--primary-color);
}

.principles-section .tab-item {
    padding: 8px 15px;
    margin-right: 5px;
    cursor: pointer;
    border-radius: 4px 4px 0 0;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.principles-section .tab-item:hover {
    color: var(--primary-color);
    background-color: rgba(0, 102, 204, 0.05);
}

.principles-section .tab-item.active {
    color: var(--primary-color);
    background-color: rgba(0, 102, 204, 0.1);
}

.principles-section .tab-item.active:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.principles-section .tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.principles-section .tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 响应式调整 */
@media (max-width: 768px) {
    .principles-section .tab-header {
        align-items: flex-start;
    }

    .principles-section .tab-item {
        width: 100%;
        margin-bottom: 5px;
        padding: 8px;
    }

    .principles-section .tab-item.active:after {
        display: none;
    }
}


/* 自定义菜单样式 */
.custom-menu-section {
    padding: 30px 0 15px;
    margin-bottom: 0px;
}

.page-links-menu {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-links-menu li {
    text-align: center;
    padding: 20px 15px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.page-links-menu li:hover,
.page-links-menu .current-menu-item {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #007bff;
    color: white;
}

/* 为不同菜单项设置不同背景色 */

.page-links-menu li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.page-links-menu li:hover a,
.page-links-menu .current-menu-item a {
    color: white;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .page-links-menu li a {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-links-menu li a {
        font-size: 11px;
    }
}



.plans-container {
    display: flex;
    gap: 25px;
    margin: 0 auto;
    max-width: 1200px;
}
@media (max-width: 768px) {
    .plans-container {
        gap: 0;
    }
}

.plans-left {
    flex: 1;
    display: flex;
    align-items: stretch;
}

.plans-right {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.plan-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 25px 18px;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
}

.plan-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.plan-content {
    position: relative;
    z-index: 1;
}

.plan-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 123, 255, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    padding: 20px;
    color: white;
    transform: translateY(20px);
}

.plan-item:hover .plan-overlay {
    opacity: 1;
    transform: translateY(0);
}

.plan-overlay .plan-price {
    color: white;
    margin-bottom: 15px;
}

.plan-overlay .plan-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.plan-overlay .plan-cta {
    background-color: white;
    color: #007bff;
    border-color: white;
}

.plan-overlay .plan-cta:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: #0056b3;
}

.plan-item h3 {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 15px;
    margin-top: 0;
    font-weight: 600;
}

.plan-marker {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ff9900;
    color: white;
    padding: 8px 15px;
    font-size: 0.85em;
    font-weight: bold;
    border-radius: 0 10px 0 10px;
    z-index: 1;
}

.plan-marker.special-marker {
    background-color: #dc3545;
}

.plan-price {
    font-size: 2.4em;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
    line-height: 1;
}

.plan-price span {
    font-size: 0.5em;
    font-weight: normal;
    color: #666;
    vertical-align: middle;
}

.plan-description {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 25px;
    flex-grow: 1;
    min-height: 60px;
    line-height: 1.6;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: #444;
}

.plan-features li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 0.95em;
    line-height: 1.4;
}

.plan-features li::before {
    content: '✓';
    color: #28a745;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.1em;
}

.plan-cta {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.plan-cta:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    color: #fff;
}

.plan-item.popular {
    border: 2px solid #ff9900;
    transform: scale(1.03);
}

.plan-item.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.plan-item.special {
    border: 2px solid #dc3545;
}

/* 一条龙套餐特殊样式 */
.plan-item.premium {
    border: 3px solid #ff9900;
    background-color: #fffaf0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-item.premium h3 {
    font-size: 1.6em;
    color: #ff9900;
}

.plan-item.premium .plan-price {
    font-size: 2.8em;
    color: #fff;
}

.plan-item.premium .plan-cta {
    background-color: #fff;
    border-color: #fff;
    padding: 15px 35px;
    font-size: 1.1em;
}

/* 一条龙套餐特殊样式 - 更新适配遮罩层 */
.plan-item.premium .plan-overlay {
    background-color: rgba(255, 153, 0, 0.95);
}

.plan-item.premium .plan-overlay .plan-cta {
    color: #ff9900;
}

.plan-item.premium .plan-overlay .plan-cta:hover {
    color: #e68a00;
}

/* 特别方案特殊样式 */
.plan-item.special .plan-overlay {
    background-color: rgba(220, 53, 69, 0.95);
}

.plan-item.special .plan-overlay .plan-cta {
    color: #dc3545;
}

.plan-item.special .plan-overlay .plan-cta:hover {
    color: #bd2130;
}

/* 媒体查询优化 */
@media (max-width: 992px) {
    .plans-container {
        flex-direction: column;
    }
    
    .plans-right {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-left {
        margin-bottom: 25px;
    }
    
    .plan-item.premium {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-section h2 {
        font-size: 1.8em;
    }

    .pricing-section .subtitle {
        font-size: 1em;
    }

    .plans-container {
        flex-direction: column;
        max-width: 450px;
    }
    
    .plans-right {
        grid-template-columns: 1fr;
    }

    .plan-item {
        padding: 25px 20px;
    }

    .plan-item.popular,
    .plan-item.premium {
        transform: scale(1);
    }

    .plan-item.popular:hover,
    .plan-item.premium:hover {
        transform: translateY(-8px);
    }
    
    /* 移动端遮罩层优化 */
    .plan-overlay {
        padding: 15px;
    }
    
    .plan-overlay .plan-price {
        font-size: 2em;
        margin-bottom: 10px;
    }
    
    .plan-overlay .plan-description {
        font-size: 0.9em;
        margin-bottom: 15px;
    }
    
    .plan-overlay .plan-cta {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}


    /* 流程列表样式 */
    .process-list-container {
        margin: 50px 0;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 1;
    }

    .process-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
        position: relative;
    }

    .process-list::before {
        content: '';
        position: absolute;
        left: 35px;
        top: 35px;
        bottom: 35px;
        width: 3px;
        background: linear-gradient(180deg, #007bff 0%, #0056b3 100%);
        border-radius: 2px;
        z-index: 0;
    }

    .process-list .process-item {
        display: flex;
        align-items: flex-start;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 20px;
        padding: 35px;
        border: 1px solid rgba(0, 123, 255, 0.1);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        z-index: 1;
        box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .process-list .process-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, transparent 100%);
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .process-list .process-item:hover::before {
        opacity: 1;
    }

    .process-list .process-item:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
        border-color: rgba(0, 123, 255, 0.3);
    }

    .process-list .process-number {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 20px;
        margin-right: 30px;
        flex-shrink: 0;
        position: relative;
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
        transition: all 0.4s ease;
    }

    .process-list .process-number::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(135deg, #007bff, #0056b3);
        border-radius: 50%;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .process-list .process-item:hover .process-number::before {
        opacity: 0.3;
    }

    .process-list .process-item:hover .process-number {
        transform: scale(1.1);
        box-shadow: 0 12px 30px rgba(0, 123, 255, 0.4);
    }

    .process-list .process-info {
        flex: 1;
        position: relative;
        z-index: 1;
    }

    .process-list .process-title {
        color: #333;
        margin-bottom: 12px;
        font-size: 20px;
        font-weight: 700;
        transition: color 0.3s ease;
    }

    .process-list .process-item:hover .process-title {
        color: #007bff;
    }

    .process-list .process-description {
        color: #666;
        line-height: 1.8;
        margin-bottom: 0;
        font-size: 16px;
        font-weight: 400;
    }

    

    /* 响应式调整 */
    @media (max-width: 1200px) {
        .process-list-container {
            margin: 30px 0;
        }
        
        .process-list .process-item {
            padding: 20px;
        }
    }



    @media (max-width: 768px) {
        
        .process-list .process-number {
            width: 50px;
            height: 50px;
            font-size: 16px;
        }
        
        .process-list .process-title {
            font-size: 16px;
        }


    }

    @media (max-width: 480px) {
       .process-list  .process-item {
            padding: 20px 15px;
        }
        
       .process-list  .process-number {
            width: 45px;
            height: 45px;
            font-size: 14px;
            margin-bottom: 12px;
        }
        
       .process-list  .process-title {
            font-size: 15px;
            margin-bottom: 8px;
        }
        
       .process-list  .process-description {
            font-size: 13px;
            margin-bottom: 10px;
        }
        
       .process-list  .process-duration {
            font-size: 12px;
            padding: 5px 10px;
        }
    }

/* 服务流程样式 */
.service-process-section {
    padding: 30px 0;
    background-color: #fff;
}



.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    /* 减小间距，使布局更紧凑 */
    display: flex;
    justify-content: center;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 55%;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 5px solid #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
    z-index: 2;
}

.timeline-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.timeline-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.timeline-content .features-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.timeline-content .features-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.timeline-content .features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.timeline-content .process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    flex-shrink: 0;
}

/* 服务保障部分 */
.service-guarantee {
    margin-top: 0px;
    padding: 50px 0;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.service-guarantee h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
    color: #333;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guarantee-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.guarantee-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.guarantee-item p {
    color: #666;
    line-height: 1.6;
}

/* 联系我们部分 */
.contact-cta {
    margin-top: 0px;
    text-align: center;
    padding: 50px;
    background-color: #007bff;
    border-radius: 10px;
    color: #fff;
}

.contact-cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.contact-cta p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cta .cta-button {
    display: inline-block;
    background-color: #fff;
    color: #007bff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.contact-cta .cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-process-section .section-title {
        font-size: 28px;
    }

    .process-timeline:before {
        left: 30px;
    }

    .timeline-dot {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 80px);
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .service-process-section .section-title {
        font-size: 24px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-content h3 {
        font-size: 18px;
    }

    .contact-cta {
        padding: 30px 20px;
    }

    .contact-cta h2 {
        font-size: 24px;
    }
}


/*content-contact*/
/* 联系我们部分样式调整 */
.contact-section {
    padding: 40px 0;
    background-color: #f8f9fa;
    position: relative;
}

.contact-container {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}

.contact-info {
    flex: 1.1;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* border-left: 4px solid var(--primary-color); */
}

.contact-subtitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-desc {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: rgba(0, 102, 204, 0.1);
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: row;
    /* 改为横向排列 */
    align-items: center;
    /* 垂直居中 */
    flex-wrap: wrap;
    /* 允许在小屏幕上换行 */
    width: 100%;
}

.contact-text span {
    font-size: 16px;
    font-weight: bold;
    margin-right: 15px;
    /* 右侧添加间距 */
    color: #333;
}

.contact-text p {
    font-size: 14px;
    margin: 0;
    color: #666;
    line-height: 1.5;
    flex: 1;
    /* 让内容占据剩余空间 */
}

.contact-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 18px;
}

.contact-text a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* 热线电话样式特殊处理 */

.hotline-number {
    font-size: 18px !important;
    /* 放大字体 */
    font-weight: bold !important;
    /* 加粗 */
}

.hotline-number a {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 26px;
}

.contact-text .service-time {
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

.contact-phone {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-phone:hover {
    transform: translateY(-3px);
}

.contact-phone i {
    font-size: 32px;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background-color: rgba(0, 102, 204, 0.1);
}

.phone-number {
    display: flex;
    flex-direction: column;
}

.phone-number span {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.phone-number p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* 新增微信联系方式样式 */
.contact-wechat {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 0 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.contact-wechat:hover {
    transform: translateY(-3px);
}

.contact-wechat .wechat-info {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.contact-wechat .wechat-info i {
    font-size: 32px;
    color: #07C160;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    background-color: rgba(7, 193, 96, 0.1);
}

.contact-wechat .wechat-text {
    display: flex;
    flex-direction: column;
}

.contact-wechat .wechat-text span {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.contact-wechat .wechat-text p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

.contact-wechat .wechat-qrcode {
    text-align: center;
}

.contact-wechat .wechat-qrcode img {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    border: 1px solid #eee;
}

.contact-wechat .wechat-qrcode p {
    font-size: 14px;
    margin-top: 5px;
    color: #666;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-tip {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ddd;
}

.form-field {
    margin-bottom: 15px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-field textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row .form-field {
    flex: 1;
    margin-bottom: 0;
}

.button-group {
    display: flex;
    gap: 15px;
}

.submit-btn {
    flex: 1;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.baidu-service-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.baidu-service-btn:hover {
    background-color: #e55c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.3);
    color: #fff;
}

.baidu-service-btn i {
    margin-right: 5px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info {
        width: 100%;
        padding: 30px;
    }

    .contact-form {
        width: 100%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-subtitle {
        font-size: 20px;
    }

    .contact-desc {
        font-size: 14px;
    }

    .contact-item i,
    .wechat-info i {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .contact-text span {
        font-size: 15px;
    }

    .contact-text p {
        font-size: 13px;
    }

    .phone-number span {
        font-size: 20px;
    }

    .hotline-number {
        font-size: 16px !important;
    }

    .hotline-number a {
        font-size: 22px;
    }

    .contact-wechat .wechat-info {
        flex: 1;
        margin-right: 0;
    }

    .contact-wechat .wechat-qrcode {
        display: flex;
        align-items: center;
    }

    .contact-wechat .wechat-qrcode img {
        width: 80px;
        height: 80px;
        margin-right: 0;
    }

    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-row .form-field {
        margin-bottom: 10px;
    }

    .button-group {
        flex-direction: column;
    }
}

/*case*/
/* 子分类导航样式 */
.subcategory-navigation {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    position: relative;
    padding: 10px 0;
}

.subcategory-menu {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-height: 80px;
    /* 默认只显示一行 */
    transition: max-height 0.3s ease;
}

.subcategory-menu.expanded {
    max-height: 500px;
    /* 展开后的高度，足够显示所有分类 */
}

.subcategory-menu li {
    margin: 0;
    padding: 0;
    width: 10%;
    /* 一行显示10个图标 */
    text-align: center;
}

.subcategory-menu li a {
    display: flex;
    flex-direction: column;
    /* 图标在上，文字在下 */
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 100%;
}

.subcategory-menu li a i {
    font-size: 35px;
    margin-bottom: 5px;
    display: block;
    text-align: center;
}

.subcategory-menu li a span {
    display: block;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
}

.subcategory-menu li.active a,
.subcategory-menu li a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.03);
}

.subcategory-menu li.more-item a {
    color: var(--primary-color);
}

.subcategory-menu li:nth-child(n+10) {
    order: 1;
}

.subcategory-menu li:last-child {
    order: 0;
}

/* 隐藏额外的分类，只在展开时显示 */
.subcategory-menu .hidden-category {
    display: none;
}

.subcategory-menu.expanded .hidden-category {
    display: block;
}

.subcategory-menu.expanded li:last-child {
    order: 2;
}

@media (max-width: 992px) {
    .subcategory-menu li {
        width: 20%;
        /* 平板上一行显示5个 */
    }

    .subcategory-menu li:nth-child(n+10) {
        order: 1;
    }

    .subcategory-menu li:last-child {
        order: 0;
    }

    .subcategory-menu {
        max-height: 160px;
        /* 默认显示两行 */
    }
}

@media (max-width: 768px) {
    .subcategory-menu li:nth-child(n+8) {
        order: 1;
    }

    .subcategory-menu li {
        width: 25%;
        /* 移动端一行显示4个 */
    }

    /* 移动端显示更多按钮放在第8个位置 */
    .subcategory-menu li.more-item {
        order: 0;
    }
}


