/* 响应式样式 - 我们能提供什么 & 关于我们 */

/* 我们能提供什么 - 基础样式 */
.what-we-provide-section {
    position: relative;
    height: 482px;
    background: transparent;
}

.what-we-provide-section .container {
    position: relative;
    height: 482px;
}

.what-we-provide-section .section-header {
    position: absolute;
    left: 0;
    top: 48px;
    width: 100%;
    text-align: center;
    z-index: 104;
}

.what-we-provide-section .section-header h2 {
    font-size: 30px;
    font-weight: bold;
}

/* 服务项基础样式 */
.what-we-provide-section .service-item {
    position: absolute;
    height: 325px;
    z-index: 103;
}

.what-we-provide-section .service-item-1 {
    left: 0px;
    top: 141px;
    width: 403px;
}

.what-we-provide-section .service-item-2 {
    left: 412px;
    top: 141px;
    width: 285px;
    height: 332px;
}

.what-we-provide-section .service-item-3 {
    left: 715px;
    top: 141px;
    width: 285px;
    height: 332px;
}

.what-we-provide-section .service-item-4 {
    left: 1010px;
    top: 141px;
    width: 270px;
    height: 332px;
}

.what-we-provide-section .service-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.what-we-provide-section .service-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.what-we-provide-section .service-image .phback {
    transform: translateY(-100%);
}

.what-we-provide-section .service-title {
    position: absolute;
    left: 23px;
    bottom: 80px;
    width: 205px;
    height: 38px;
}

.what-we-provide-section .service-title span {
    font-size: 25px;
    color: #ffffff;
}

.what-we-provide-section .service-desc {
    position: absolute;
    left: 27px;
    bottom: 20px;
    width: 215px;
    height: 50px;
}

.what-we-provide-section .service-desc span {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
}

.what-we-provide-section .service-icon {
    position: absolute;
    right: 20px;
    bottom: 50px;
    width: 42px;
    height: 30px;
}

.what-we-provide-section .service-icon img {
    width: auto;
    height: 30px;
}

.what-we-provide-section .divider {
    position: absolute;
    left: 24px;
    top: 358px;
    width: 63px;
    height: 32px;
    z-index: 113;
}

.what-we-provide-section .divider div {
    width: 63px;
    height: 2px;
    background: #ffffff;
}

/* 我们能提供什么 - 响应式样式 */
@media (max-width: 1200px) {
    .what-we-provide-section {
        height: auto;
        padding: 60px 0;
    }
    
    .what-we-provide-section .container {
        height: auto;
        display: flex;
        flex-direction: column;
    }
    
    .what-we-provide-section .section-header {
        position: static;
        margin-bottom: 40px;
    }
    
    .what-we-provide-section .service-item {
        position: static;
        width: 100%;
        height: 300px;
        margin-bottom: 30px;
    }
    
    .what-we-provide-section .service-title,
    .what-we-provide-section .service-desc {
        width: auto;
    }
    
    .what-we-provide-section .divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .what-we-provide-section {
        padding: 50px 0;
    }
    
    .what-we-provide-section .service-item {
        height: 250px;
    }
    
    .what-we-provide-section .service-title span {
        font-size: 22px;
    }
    
    .what-we-provide-section .service-desc span {
        font-size: 13px;
    }
}

/* 关于我们 - 基础样式 */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-item {
    text-align: center;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #0a3dd0;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

/* 关于我们 - 响应式样式 */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
        max-width: 600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 15px);
    }
    
    .about-text p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .btn-primary {
        display: block;
        text-align: center;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-stats {
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .about-text p {
        font-size: 14px;
    }
}