/* 联系我们页面样式 */
.contact-container {
    padding: 15px;
}

/* 地图区域 */
.map-section {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#map {
    width: 100%;
    height: 250px;
}

/* 联系信息样式 */
.contact-info {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    border-bottom: none;
}

.icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon.location {
    background-image: url('_Index_/images/location.png');
}

.icon.phone {
    background-image: url('_Index_/images/phone.png');
}

.icon.email {
    background-image: url('_Index_/images/email.png');
}

.info-content h3 {
    font-size: 15px;
    color: #333;
    margin: 0 0 5px;
}

.info-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* 留言表单样式 */
.message-form {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.message-form h2 {
    font-size: 18px;
    color: #333;
    margin: 0 0 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 120px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #c91023;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #c91023;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:active {
    background: #a80a1b;
}

/* 适配大屏幕 */
@media screen and (min-width: 768px) {
    .contact-container {
        padding: 20px;
    }

    #map {
        height: 300px;
    }

    .message-form {
        padding: 25px;
    }
}

/* 适配小屏幕 */
@media screen and (max-width: 320px) {
    .contact-container {
        padding: 10px;
    }

    .info-content h3 {
        font-size: 14px;
    }

    .info-content p {
        font-size: 13px;
    }
} 