/**
 * 自定义模块样式文件
 * 包含服务特点模块和我们的客户模块的样式
 */

/* ==================== 服务特点模块样式 ==================== */

.service-features-main {
    background-color: #ffffff;
    padding: 0 0 30px 0;
}

.service-features {
    /* 服务特点容器 */
}

.service-features > div {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.service-features .feature-item {
    text-align: center;
    flex: 1;
    min-width: 280px;
    padding: 30px 20px;
}

.service-features .feature-icon {
    margin-bottom: 20px;
}

.service-features .feature-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-features .feature-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.service-features .feature-description {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    line-height: 1.8;
}

/* 响应式设计 - 服务特点 */
@media (max-width: 768px) {
    .service-features > div {
        flex-direction: column;
        gap: 30px;
    }
    
    .service-features .feature-item {
        min-width: 100%;
        padding: 20px 15px;
    }
    
    .service-features .feature-icon img {
        width: 60px;
        height: 60px;
    }
    
    .service-features .feature-title,
    .service-features .feature-description {
        font-size: 18px;
    }
}


/* ==================== 我们的客户模块样式 ==================== */

.customer-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.customer-title {
    text-align: center;
    margin-bottom: 50px;
}

.customer-title h3 {
    /* 使用页面统一的h3样式 */
}

.customer-logos {
    /* 客户logo容器 */
}

.customer-logos > div {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.customer-logos > div:first-child {
    margin-bottom: 40px;
}

.customer-logo-item {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.customer-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.customer-logo-item img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* 响应式设计 - 我们的客户 */
@media (max-width: 768px) {
    .customer-section {
        padding: 40px 0;
    }
    
    .customer-title {
        margin-bottom: 30px;
    }
    
    .customer-logos > div {
        gap: 20px;
    }
    
    .customer-logos > div:first-child {
        margin-bottom: 20px;
    }
    
    .customer-logo-item {
        min-width: 120px;
        max-width: 150px;
        padding: 15px;
    }
    
    .customer-logo-item img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .customer-logo-item {
        min-width: 100px;
        max-width: 130px;
        padding: 10px;
    }
}
