/* 滁州代怀页面样式 - 模板3：时间线布局 */

/* 页面标题 */
.page-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* 服务概览 */
.service-overview {
    padding: 80px 0;
    background: #fff;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.overview-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    text-align: center;
}

/* 时间线 */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: #4facfe;
    border: 4px solid #00f2fe;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.right::after {
    left: -10px;
}

.timeline-content {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.timeline-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.timeline-content ul {
    list-style: none;
    margin-top: 15px;
}

.timeline-content ul li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.timeline-content ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

/* 供应优势 */
.supply-advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.advantage-box {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.advantage-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.advantage-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #4facfe;
}

.advantage-box p {
    color: #666;
    line-height: 1.6;
}

/* 响应式 */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item.right {
        left: 0;
    }
    
    .timeline-item::after {
        left: 21px;
        right: auto;
    }
    
    .timeline-item.right::after {
        left: 21px;
    }
}
