/* 联系我们页面样式 */
.breadcrumb {
    padding: 15px 0;
    color: #666;
    font-size: 14px;
}

.breadcrumb a {
    color: #666;
}

.breadcrumb a:hover {
    color: #e4393c;
}

.breadcrumb .separator {
    margin: 0 8px;
}

.contact-page {
    margin-bottom: 50px;
}

.contact-banner {
    position: relative;
    height: 250px;
    background-color: #f5f5f5;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
}

.contact-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-banner-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    text-align: center;
    padding: 20px;
}

.contact-banner-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-banner-subtitle {
    font-size: 18px;
    max-width: 600px;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-form-container {
    flex: 0 0 calc(60% - 15px);
}

.contact-info-container {
    flex: 0 0 calc(40% - 15px);
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }
    
    .contact-form-container,
    .contact-info-container {
        flex: 0 0 100%;
    }
}

.section-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e4393c;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: #e4393c;
}

.contact-form-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #e4393c;
    box-shadow: 0 0 5px rgba(228, 57, 60, 0.3);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.btn-submit {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e4393c;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #c7222a;
}

.contact-info-box {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.info-item {
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.info-title i {
    font-size: 20px;
    color: #e4393c;
    margin-right: 10px;
}

.info-content {
    color: #666;
    line-height: 1.6;
    padding-left: 30px;
}

.info-content a {
    color: #666;
    transition: color 0.3s;
}

.info-content a:hover {
    color: #e4393c;
}

.social-media {
    margin-top: 20px;
    padding-left: 30px;
}

.social-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f5f5f5;
    color: #666;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #e4393c;
    color: #fff;
}

.map-container {
    margin-top: 40px;
}

.map-box {
    height: 400px;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.faq-section {
    margin-top: 40px;
}

.faq-list {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 20px;
    font-size: 16px;
    font-weight: 700;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question:after {
    content: '+';
    font-size: 20px;
    color: #e4393c;
}

.faq-item.active .faq-question:after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease-out;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 500px;
} 