/* services.css - 服务页面专属样式 */

/* 服务分类 */
.service-category {
    margin: 40px 0;
}

.service-category h2 {
    color: #1a5276;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

.service-detail-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
}

.service-detail-card.full-width {
    width: 100%;
}

.service-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.service-header i {
    font-size: 24px;
    color: #e74c3c;
    margin-right: 15px;
}

.service-header h3 {
    color: #1a5276;
    margin-right: auto;
}

.service-content {
    padding: 25px;
}

.service-content h4 {
    color: #1a5276;
    margin-bottom: 15px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.feature {
    background-color: #e8f4fc;
    color: #2e86c1;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.special-offer {
    background-color: #fff8f6;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    border-left: 4px solid #e74c3c;
}

.chaos-fixing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.fixing-step h4 {
    color: #1a5276;
    margin-bottom: 10px;
}

/* 服务保障 */
.guarantee-section {
    margin: 50px 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.guarantee-item {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.guarantee-item i {
    font-size: 40px;
    color: #2e86c1;
    margin-bottom: 15px;
}

.guarantee-item h3 {
    color: #1a5276;
    margin-bottom: 10px;
}

/* CTA区块 */
.cta-section {
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    color: white;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    margin: 50px 0;
}

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* 转化引导 */
.conversion-funnel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.funnel-step {
    background: linear-gradient(135deg, #1a5276, #2e86c1);
    color: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.funnel-step h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 20px;
}

.wechat-btn, .taobao-btn {
    display: inline-block;
    background-color: white;
    color: #1a5276;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s;
}

.wechat-btn:hover, .taobao-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.taobao-btn {
    background-color: #ff4e00;
    color: white;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-header i {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .service-header h3 {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .chaos-fixing-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .conversion-funnel {
        grid-template-columns: 1fr;
    }
}