/* 整体容器 */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* banner区域 */
.contact-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    text-align: center;
    padding: 60px 0;
    background: #f7f8fa;
    margin-bottom: 60px;
}

.contact-banner h1 {
    font-size: 32px;
    color: #1f2329;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 联系方式卡片 */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.method-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.method-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 28px;
    color: #1677ff;
}

.method-card h2 {
    font-size: 20px;
    color: #1f2329;
    margin: 0 0 16px;
}

.phone-number {
    font-size: 24px;
    color: #1677ff;
    font-weight: bold;
    margin: 0 0 8px;
}

.service-time {
    color: #86909c;
    font-size: 14px;
    margin: 0;
}

.desc {
    color: #86909c;
    font-size: 14px;
    margin: 0 0 20px;
}

.contact-btn {
    background: #1677ff;
    color: #fff;
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.contact-btn:hover {
    background: #0958d9;
}

/* 更多服务区域 */
.more-services {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 0 20px;
}

.more-services h2 {
    font-size: 28px;
    color: #1f2329;
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.service-card h3 {
    font-size: 18px;
    color: #1f2329;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-card h3 i {
    color: #1677ff;
}

.service-card p {
    color: #86909c;
    font-size: 14px;
    margin: 0 0 20px;
    line-height: 1.6;
}

.service-link {
    color: #1677ff;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-right: 16px;
}

.service-link:hover {
    color: #0958d9;
}

.service-links {
    display: flex;
    gap: 16px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-banner h1 {
        font-size: 24px;
    }
}