/* index.css - 首页专属样式 */
/* 使用免费图标库：Font Awesome 免费版 */

/* 英雄区块 */
.hero {
    background: linear-gradient(135deg, #1a5276, #e74c3c);
    color: white;
    padding: 60px 0;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #e74c3c;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

/* 淘宝店铺区块 */
.taobao-section {
    background-color: #fff8f6;
    padding: 30px;
    border-radius: 5px;
    margin: 30px 0;
    text-align: center;
    border: 2px dashed #ff4e00;
}

.taobao-section h2 {
    color: #ff4e00;
    margin-bottom: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.review-card {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stars {
    color: #ff4e00;
    margin-bottom: 10px;
}

.reviewer {
    color: #ff4e00;
    margin-top: 10px;
    font-style: italic;
}

/* 服务区块 */
.services-section {
    margin: 50px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    border-top: 4px solid #e74c3c;
    cursor: pointer;
}

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

.service-icon {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: #2e86c1;
    font-weight: bold;
}

/* 本地服务区域 */
.local-section {
    margin: 50px 0;
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.local-area {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* 服务流程 */
.process-section {
    margin: 50px 0;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 30px;
}

.process-step {
    flex: 0 0 calc(20% - 20px);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* 优惠活动 */
.promotion-section {
    margin: 50px 0;
}

.promotion-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.promotion-card {
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #2e86c1;
}

/* 转化引导 */
.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) {
    .hero {
        padding: 40px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 80%;
        margin: 5px 0;
    }
    
    .process-step {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-card {
        padding: 15px;
    }
    
    .local-grid {
        grid-template-columns: 1fr;
    }
    
    .conversion-funnel {
        grid-template-columns: 1fr;
    }
}