/* 联系我们页面样式 */
.contact-hero {
    background: url('../imgs/banner3.jpg') center center no-repeat;
    background-size: cover;
    padding: 120px 0;
    color: #fff;
    text-align: center;
    position: relative;
}

.contact-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 62, 80, 0.7);
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

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

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

/* 联系信息样式 */
.contact-info {
    padding: 80px 0;
}

.contact-details {
    margin-bottom: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f1f9ff;
    color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-content p {
    color: #7f8c8d;
    margin: 0;
}

/* 联系表单样式 */
.contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    padding: 10px 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    min-height: 150px;
    resize: vertical;
}

/* 地图样式 */
.map-container {
    height: 400px;
    margin-bottom: 60px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* 联系政策样式 */
.contact-policy {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.policy-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.policy-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.policy-item h3 i {
    color: #3498db;
    margin-right: 10px;
}

.policy-item p {
    color: #7f8c8d;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .map-container {
        height: 300px;
    }
}
