/* 页面banner */
.page-banner {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/contact-banner.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    margin-bottom: 40px;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ffd700;
}

/* 联系布局 */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-bottom: 60px;
}

/* 联系表单 */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.contact-form h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 3px;
    background: #c00;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c00;
    box-shadow: 0 0 5px rgba(204,0,0,0.2);
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #c00;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #a00;
}

/* 联系信息 */
.contact-info > div {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 20px;
    position: relative;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 2px;
    background: #c00;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    font-size: 24px;
    color: #c00;
}

.info-list .text h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.info-list .text p {
    color: #666;
    line-height: 1.6;
}

/* 社交媒体 */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.social-item {
    text-align: center;
}

.social-item img {
    width: 120px;
    height: 120px;
    margin-bottom: 10px;
}

.social-item p {
    color: #666;
    font-size: 14px;
}

/* 地图区域 */
.map-section {
    margin-bottom: 60px;
}

.map-section h2 {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.map-section h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #c00;
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.map-container {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-block {
    margin-bottom: 20px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

.info-block p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
} 