/* 联系我们页面特有样式 */

/* 页面标题 */
.page-title {
    text-align: center;
    margin: 20px 0 30px;
    color: #e74c3c;
    font-size: 28px;
}

/* 通用区块样式 */
.contact-section,
.hours-section,
.contact-methods,
.contact-form-section,
.multimedia-section {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 20px;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: #e74c3c;
}

/* 地址列表 */
.address-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.address-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    display: flex;
}

.address-list li:last-child {
    border-bottom: none;
}

.address-list strong {
    min-width: 80px;
    display: inline-block;
}

/* 地图 */
.map-container {
    margin-top: 15px;
    border-radius: 6px;
    overflow: hidden;
}

.store-map {
    width: 100%;
    height: auto;
    display: block;
}

/* 营业时间表格 */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.hours-table th,
.hours-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.hours-table th {
    background-color: #f9f9f9;
    font-weight: 600;
}

.hours-table tr:last-child td {
    border-bottom: none;
}

/* 电话列表 */
.phone-list {
    list-style-type: decimal;
    padding-left: 20px;
    margin-top: 10px;
}

.phone-list li {
    padding: 8px 0;
}

.phone-list strong {
    color: #e74c3c;
}

/* 联系表单 */
.contact-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input {
    margin-right: 5px;
}

.submit-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    display: block;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #c0392b;
}

/* 多媒体区 */
.video-container,
.audio-container {
    margin: 20px 0;
}

video, audio {
    width: 100%;
    border-radius: 6px;
}

audio {
    width: 100%;  /* 让播放器宽度适应容器 */
    min-height: 40px;  /* 确保控件不被压缩 */
    border-radius: 6px;
}

/* 页脚 */
.footer-content {
    padding: 20px;
    text-align: center;
    background-color: #f9f9f9;
    color: #666;
    font-size: 14px;
}

.copyright,
.footer-links,
.legal-info {
    margin-bottom: 10px;
}

/* 响应式设计 */
@media (min-width: 768px) {
    .main-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .contact-section {
        grid-column: 1 / -1;
    }
    
    .multimedia-section {
        grid-column: 1 / -1;
    }
    
    .contact-form {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}