 



/* 轮播结构样式使用 common.css 统一规则 */


.banner-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 20px;
    opacity: 0.95;
}

/* 轮播图控制按钮（统一于 common.css） */

/* 指示点样式使用 common.css 统一规则 */

/* 主要内容区域 */
.main-content {
    margin: 0 auto;
}

/* 留言表单区域 */
.contact-section {
    background-image: url('../images/bg1.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    padding-bottom: 50px;
}


.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}



.contact-form {
    background: white;
    padding: 40px;
    border-radius: 5px;
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E6D7C7;
    border-radius: 5px;
    font-size: 14px;
    background: #F8F8F8;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #D2691E;
    background: white;
}

.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E6D7C7;
    border-radius: 5px;
    font-size: 14px;
    background: #F8F8F8;
    cursor: pointer;
}

.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E6D7C7;
    border-radius: 5px;
    font-size: 14px;
    background: #F8F8F8;
    resize: vertical;
    min-height: 120px;
}

.form-textarea:focus {
    outline: none;
    border-color: #D2691E;
    background: white;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.submit-btn {
    background: #D2691E;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #B8541A;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(210, 105, 30, 0.3);
}

/* 联系方式卡片 */
.contact-cards {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
    gap: 24px;
    margin-top: 60px;
    align-items: stretch;
}

.contact-card {
    background: rgba(255, 253, 248, 0.94);
    padding: 30px 20px;
    border: 1px solid rgba(181, 90, 75, 0.16);
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(48, 32, 20, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(181, 90, 75, 0.45);
    box-shadow: 0 0 20px rgba(181, 90, 75, 0.28), 0 18px 38px rgba(48, 32, 20, 0.13);
}

.profile-contact-layout .contact-profile-card {
    order: 1;
    grid-row: span 2;
    display: grid;
    grid-template-columns: minmax(260px, 46%) minmax(0, 1fr);
    gap: 0;
    min-height: 360px;
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.profile-media {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #eadfcd;
}

.profile-media img,
.profile-media video,
.profile-media iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    object-fit: cover;
    display: block;
    transition: transform 0.9s ease, filter 0.45s ease;
}

.profile-contact-layout .contact-profile-card:hover .profile-media img,
.profile-contact-layout .contact-profile-card:hover .profile-media video {
    transform: scale(1.05);
    filter: saturate(1.08);
}

.profile-media::after {
    content: "后台可替换图文或视频";
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 7px 12px;
    border-radius: 4px;
    color: #fff;
    background: rgba(38, 25, 18, 0.62);
    font-family: "STKaiti", "KaiTi", serif;
    font-size: 13px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.contact-profile-card:hover .profile-media::after {
    opacity: 1;
    transform: translateY(0);
}

.profile-copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.profile-copy::before {
    content: "";
    width: 42px;
    height: 4px;
    margin-bottom: 22px;
    background: #B55A4B;
}

.profile-kicker {
    margin: 0 0 10px;
    color: #B55A4B !important;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.profile-copy h3 {
    margin: 0 0 16px;
    color: #3b2922;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.2;
}

.profile-copy p {
    color: #5f5148;
    font-size: 15px;
    line-height: 1.9;
}

.profile-link {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 20px;
    color: #7c4b1d;
    font-weight: 800;
    text-decoration: none;
}

.contact-info-card {
    order: 2;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-navigation-card {
    cursor: pointer;
}

.map-action-link {
    display: inline-flex;
    align-self: center;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: #B55A4B;
    font-weight: 800;
    text-decoration: none;
}

.map-action-link::before {
    content: "\eecb";
    font-family: "remixicon";
    font-weight: 400;
}

.map-navigation-card:hover .map-action-link {
    color: #7c4b1d;
}

.profile-contact-layout > .module-detail-card {
    order: 3;
    grid-column: 1 / -1;
    margin: 10px 0 6px;
    text-align: left;
    background:
        linear-gradient(120deg, rgba(255, 253, 248, 0.96), rgba(246, 221, 139, 0.18)),
        #fffdf8;
}

.profile-contact-layout > .module-detail-card:first-of-type {
    grid-column: 1 / -1;
}

.profile-contact-layout > .module-detail-card .module-detail-inner {
    grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
}

.profile-contact-layout > .module-detail-card .module-detail-body {
    padding: 34px 40px;
}

.profile-contact-layout > .module-detail-card .module-detail-kicker {
    color: #B55A4B;
}

.profile-contact-layout > .module-detail-card h3 {
    font-size: clamp(24px, 3vw, 34px);
}

.profile-contact-layout > .module-detail-card p:not(.module-detail-kicker) {
    max-width: 680px;
}

.profile-contact-layout .module-detail-media video {
    cursor: pointer;
}

.contact-icon {
    font-size: 48px;
    color: #D2691E;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 18px;
    color: #8B4513;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 常见问题区域 */
.faq-section {
    background-image: url('../images/bg2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-bottom: 50px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}



.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #F8F8F8;
}

.faq-answer {
    padding: 0 30px 20px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}




/* 响应式设计 */
@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .profile-contact-layout .contact-profile-card {
        grid-row: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .profile-contact-layout .contact-profile-card {
        grid-template-columns: 1fr;
    }

    .profile-media img,
    .profile-media video,
    .profile-media iframe {
        min-height: 260px;
    }

    .profile-copy {
        padding: 28px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}
