/* 联系我们页面样式 */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-container {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 0 0 40%;
}

.contact-form {
    flex: 0 0 60%;
}

.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
    position: relative;
}

.contact-info h2::after,
.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #ff8800;
}

.contact-info p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-list i {
    font-size: 20px;
    color: #ff8800;
    margin-right: 15px;
    margin-top: 5px;
}

.info-list h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.info-list p {
    margin: 0;
    color: #666;
}

.social-links h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ff8800;
    color: #fff;
    transform: translateY(-3px);
}

/* 表单样式 */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ff8800;
    outline: none;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    padding: 12px 30px;
    font-size: 16px;
}

/* 地图部分 */
.map-section {
    height: 450px;
}

.map-container {
    width: 100%;
    height: 100%;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-info,
    .contact-form {
        flex: 0 0 100%;
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .info-list i {
        font-size: 18px;
    }
    
    .map-section {
        height: 350px;
    }
}