/* 服务体系内容页面样式 */
.service-content-section {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.service-images-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-image {
    width: 100%;
    display: block;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .service-content-section {
        margin-top: 80px;
        min-height: calc(100vh - 160px);
        padding: 30px 0;
    }
    
    .service-images-container {
        max-width: 100%;
        margin: 0 15px;
    }
}

@media (max-width: 480px) {
    .service-content-section {
        padding: 10px 0;
    }
    
    .service-images-container {
        margin: 0 10px;
    }
}

/* 确保图片在不同屏幕尺寸下保持良好显示 */
@media (min-width: 1201px) {
    .service-images-container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .service-images-container {
        max-width: 95%;
        margin: 0 auto;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #C03D2D;
}

.section-header p {
    color: #666;
    font-size: 16px;
}

/* 服务内容网格布局 */
.service-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-content-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 300px;
}

.service-content-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* 交替布局 */
.service-content-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.service-content-item:nth-child(even) .service-content-image {
    order: 2;
}

.service-content-item:nth-child(even) .service-content-info {
    order: 1;
}

.service-content-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-content-item:hover .service-content-image img {
    transform: scale(1.05);
}

.service-content-info {
    padding: 40px;
}

.service-content-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-content-info p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* 响应式设计 - 按照首页标准 */
@media (max-width: 768px) {
    .service-content-section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-content-grid {
        gap: 30px;
        margin: 0 15px;
    }
    
    .service-content-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-content-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-content-item:nth-child(even) .service-content-image,
    .service-content-item:nth-child(even) .service-content-info {
        order: unset;
    }
    
    .service-content-image {
        height: 250px;
    }
    
    .service-content-info {
        padding: 30px 25px;
    }
    
    .service-content-info h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .service-content-info p {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .service-content-section {
        padding: 30px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .service-content-grid {
        gap: 25px;
        margin: 0 10px;
    }
    
    .service-content-item {
        border-radius: 12px;
    }
    
    .service-content-image {
        height: 200px;
    }
    
    .service-content-info {
        padding: 25px 20px;
    }
    
    .service-content-info h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .service-content-info p {
        font-size: 14px;
    }
}