.customer-service2 {
    width: 100%;
    height: auto;
    position: relative;
}
.customer-service2 img{
    width: 100%;
    display: block;
}
#wrap{
    background: #000;
}
/* 解决方案页面样式 */
.solution-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 10px 20px 40px;
    box-sizing: border-box;
}

/* 切换标签样式 */
.solution-tabs {
    display: flex;
    /* justify-content: center; */
    gap: 20px;
    margin-bottom: 50px;
        border-bottom: 1px solid #1a1a1a;
}

.tab-item {
    padding: 12px 30px;
    font-size: 18px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    color: #fff;
}

.tab-item.active {
    /* color: #FE8B00; */
    border-bottom-color: #FE8B00;
}

.tab-item:hover {
    color: #FE8B00;
}

/* 解决方案部分样式 */
.solution-section {
    margin-bottom: 60px;
    /* background-color: #f8f8f8; */
    border-radius: 8px;
    overflow: hidden;
}

.section-content {
    /* padding: 40px; */
    text-align: center;
    position: relative;
    box-sizing: border-box;
    
}

.solution-section h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    position: absolute;
    z-index: 10;
    width: 100%;
    text-align: center;
    line-height: 40px;
    margin-top: 10%;
}

.solution-section h2.enterprise {
    color: #FE8B00;
}

.description {
    font-size: 16px;
    margin-bottom: 30px;
    display: inline-block;

    position: absolute;
    left: 0;
    z-index: 10;
    width: 100%;
    text-align: center;
    line-height: 30px;
    margin-top: 15%;
    color: rgba(255, 255, 255, 0.7);

}

.btn-wrapper {
    margin-bottom: 30px;
    width: 100%;
    height: 30px;
    text-align: center;
    position: absolute;
    top: 34%;
    left: 0;
    display: none;
}



.detail-btn {
   
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    border: 1px solid #fff;
    text-align: center;
    line-height: 30px;
    /* display: none; */
    z-index: 10;
    position: relative;
    padding: 5px 20px;
    box-sizing: border-box;
    

}
.solution-image-wrapper{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.solution-section:hover .btn-wrapper{
    display: block !important;
}
.detail-btn:hover {
    background-color: #FE8B00;
    border: 1px solid #FE8B00;
    transform: translateY(-2px);
}

/* .detail-btn.enterprise {
    background-color: #4169e1;
}

.detail-btn.enterprise:hover {
    background-color: #3557b7;
} */

.solution-image {
    width: 100%;
    height: 800px;
    overflow: hidden;
    /* border-radius: 8px; */
    
}

.solution-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
   
}

.solution-image:hover img {
    transform: scale(1.05);
}

/* 客服按钮样式 */
.customer-service {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.service-btn {
    background-color: #FE8B00;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.4;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(244, 164, 96, 0.3);
}

.service-btn:hover {
    background-color: #e38d45;
    transform: translateY(-2px);
}

/* 响应式布局 */
@media screen and (max-width: 768px) {
    .solution-container {
        padding: 20px;
    }

    .solution-tabs {
        gap: 10px;
    }

    .tab-item {
        padding: 10px 20px;
        font-size: 16px;
    }

    .section-content {
        padding: 30px 20px;
    }

    .solution-section h2 {
        font-size: 24px;
    }

    .description {
        font-size: 14px;
    }

    .solution-image {
        height: 200px;
    }

    .customer-service {
        right: 10px;
    }

    .service-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .solution-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-item {
        width: 100%;
        text-align: center;
        padding: 12px 0;
    }

    .solution-section h2 {
        font-size: 20px;
        text-align: center;
        margin-top: 0% !important;
        width: 86%;
    }

    .description {
        text-align: center;
        line-height: 20px;
    }

    .btn-wrapper {
        text-align: center;
        top: 80%;
    }

    .solution-image {
        height: 150px;
    }
    .customer-service2-title, .customer-service2-cont{
        font-size: 14px !important;
    }
    .solution-image img{
        height: 350px;
    }
}


.customer-service2-title{
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    display: block;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 100px;
}
.customer-service2-cont{
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    display: block;
    color: rgba(255, 255, 255, 1);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 50px;
}

