/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
body {
    font-family: "Microsoft YaHei", "SimSun", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* 头部样式 */
header {
    background: linear-gradient(to right, #8B0000, #B22222);
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
}

.language-switch a {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    border: 1px solid transparent;
}

.language-switch a.active {
    border-color: #fff;
    border-radius: 4px;
}

/* 导航样式 */
nav {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #8B0000;
    background-color: #f5f5f5;
}

/* 轮播图样式 */
.slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide-container {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
}

.prev {
    left: 1rem;
}

.next {
    right: 1rem;
}

/* 内容区域样式 */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.featured-content h2 {
    text-align: center;
    color: #8B0000;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.content-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-card h3 {
    color: #8B0000;
    padding: 1rem;
    margin: 0;
}

.content-card p {
    padding: 0 1rem;
    color: #666;
}

.read-more {
    display: inline-block;
    margin: 1rem;
    padding: 0.5rem 1rem;
    background-color: #8B0000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.read-more:hover {
    background-color: #B22222;
}

/* 表单样式 */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-group input[type="radio"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #8B0000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #B22222;
}

/* 底部样式 */
footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

.footer-links a:hover {
    color: #ddd;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #555;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
    }
    
    .main-nav a {
        text-align: center;
    }
    
    .slider {
        height: 300px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 

/* 传统艺术页面样式 */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/art-header-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.art-nav {
    background: #fff;
    padding: 1rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.art-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.art-nav a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.art-nav a:hover,
.art-nav a.active {
    color: #8B0000;
    border-bottom-color: #8B0000;
}

.art-section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.art-section h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.art-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.art-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.art-text h3 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.art-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.art-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 4px;
}

.feature h4 {
    color: #8B0000;
    margin-bottom: 0.5rem;
}

.feature p {
    margin: 0;
    font-size: 0.9rem;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .art-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .art-grid {
        grid-template-columns: 1fr;
    }

    .art-features {
        grid-template-columns: 1fr;
    }

    .art-section {
        padding: 1rem;
    }
} 

/* 传统节日页面样式 */
.festival-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/festival-header-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.festival-nav {
    background: #fff;
    padding: 1rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.festival-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.festival-nav a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.festival-nav a:hover,
.festival-nav a.active {
    color: #8B0000;
    border-bottom-color: #8B0000;
}

.festival-section {
    margin-bottom: 4rem;
    padding: 2rem;
}

.festival-section h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.festival-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8B0000;
    margin: 1rem auto;
}

.festival-grid {
    display: grid;
    gap: 2rem;
}

.festival-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    transition: transform 0.3s ease;
}

.festival-card:hover {
    transform: translateY(-5px);
}

.festival-image {
    height: 100%;
}

.festival-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.festival-info {
    padding: 2rem;
}

.festival-info h3 {
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.festival-date {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

.festival-desc {
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.festival-customs {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
}

.festival-customs h4 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.festival-customs ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.festival-customs li {
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.festival-customs li::before {
    content: '•';
    color: #8B0000;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.festival-topics {
    background: #f9f9f9;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.festival-topics h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* 响应式设计补充 */
@media (max-width: 992px) {
    .festival-card {
        grid-template-columns: 1fr;
    }

    .festival-image {
        height: 300px;
    }

    .festival-customs ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .festival-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .festival-info {
        padding: 1rem;
    }

    .festival-image {
        height: 200px;
    }
} 

/* 传统建筑页面样式 */
.architecture-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/architecture-header-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.architecture-nav {
    background: #fff;
    padding: 1rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.architecture-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.architecture-nav a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.architecture-nav a:hover,
.architecture-nav a.active {
    color: #8B0000;
    border-bottom-color: #8B0000;
}

.architecture-section {
    margin-bottom: 4rem;
    padding: 2rem;
}

.architecture-section h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.architecture-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8B0000;
    margin: 1rem auto;
}

.architecture-showcase {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-content h3 {
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.showcase-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.architecture-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
}

.feature h4 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature ul {
    list-style: none;
}

.feature li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature li::before {
    content: '•';
    color: #8B0000;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.architecture-topics {
    background: #f9f9f9;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.architecture-topics h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* 响应式设计补充 */
@media (max-width: 992px) {
    .architecture-showcase {
        grid-template-columns: 1fr;
    }

    .architecture-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .architecture-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .showcase-content {
        padding: 1rem;
    }

    .feature {
        padding: 1rem;
    }
} 

/* 传统服饰页面样式 */
.costume-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/costume-header-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.costume-nav {
    background: #fff;
    padding: 1rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.costume-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.costume-nav a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.costume-nav a:hover,
.costume-nav a.active {
    color: #8B0000;
    border-bottom-color: #8B0000;
}

.costume-section {
    margin-bottom: 4rem;
    padding: 2rem;
}

.costume-section h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.costume-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8B0000;
    margin: 1rem auto;
}

.costume-showcase {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-content h3 {
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.showcase-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.costume-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
}

.feature h4 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature ul {
    list-style: none;
}

.feature li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature li::before {
    content: '•';
    color: #8B0000;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.costume-topics {
    background: #f9f9f9;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.costume-topics h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* 响应式设计补充 */
@media (max-width: 992px) {
    .costume-showcase {
        grid-template-columns: 1fr;
    }

    .costume-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .costume-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .showcase-content {
        padding: 1rem;
    }

    .feature {
        padding: 1rem;
    }
} 

/* 传统美食页面样式 */
.food-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/food-header-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.food-nav {
    background: #fff;
    padding: 1rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.food-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.food-nav a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.food-nav a:hover,
.food-nav a.active {
    color: #8B0000;
    border-bottom-color: #8B0000;
}

.food-section {
    margin-bottom: 4rem;
    padding: 2rem;
}

.food-section h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.food-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8B0000;
    margin: 1rem auto;
}

.food-showcase {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-content h3 {
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.showcase-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.food-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
}

.feature h4 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature ul {
    list-style: none;
}

.feature li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature li::before {
    content: '•';
    color: #8B0000;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.food-topics {
    background: #f9f9f9;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.food-topics h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* 响应式设计补充 */
@media (max-width: 992px) {
    .food-showcase {
        grid-template-columns: 1fr;
    }

    .food-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .food-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .showcase-content {
        padding: 1rem;
    }

    .feature {
        padding: 1rem;
    }
} 

/* 传统礼仪页面样式 */
.etiquette-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/etiquette-banner.jpg');
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.etiquette-nav {
    background-color: #f8f8f8;
    padding: 20px 0;
    margin-bottom: 40px;
}

.etiquette-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.etiquette-nav ul li {
    margin: 0 20px;
}

.etiquette-nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1.1em;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.etiquette-nav ul li a:hover {
    background-color: #e60012;
    color: #fff;
}

.etiquette-section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.etiquette-section:last-child {
    border-bottom: none;
}

.etiquette-showcase {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-image {
    flex: 1;
}

.showcase-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.showcase-content {
    flex: 1;
}

.showcase-content h3 {
    color: #e60012;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.showcase-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.etiquette-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
}

.feature h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.feature ul {
    list-style: none;
    padding: 0;
}

.feature ul li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.feature ul li::before {
    content: "•";
    color: #e60012;
    position: absolute;
    left: 0;
}

.etiquette-topics {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.etiquette-topics h2 {
    text-align: center;
    margin-bottom: 40px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-card h3 {
    padding: 20px 20px 10px;
    color: #333;
}

.content-card p {
    padding: 0 20px;
    color: #666;
    margin-bottom: 20px;
}

.content-card .read-more {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 20px 20px;
    background-color: #e60012;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.content-card .read-more:hover {
    background-color: #cc0010;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .etiquette-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .etiquette-nav ul li {
        margin: 10px 0;
    }

    .etiquette-showcase {
        flex-direction: column;
    }

    .etiquette-features {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
} 

/* 传统戏曲页面样式 */
.opera-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/opera-header-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.opera-nav {
    background: #fff;
    padding: 1rem 0;
    margin-bottom: 2rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.opera-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.opera-nav a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.opera-nav a:hover,
.opera-nav a.active {
    color: #8B0000;
    border-bottom-color: #8B0000;
}

.opera-section {
    margin-bottom: 4rem;
    padding: 2rem;
}

.opera-section h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
}

.opera-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8B0000;
    margin: 1rem auto;
}

.opera-showcase {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-content h3 {
    color: #8B0000;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.showcase-content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.opera-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
}

.feature h4 {
    color: #8B0000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature ul {
    list-style: none;
}

.feature li {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature li::before {
    content: '•';
    color: #8B0000;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.opera-topics {
    background: #f9f9f9;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.opera-topics h2 {
    color: #8B0000;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* 响应式设计补充 */
@media (max-width: 992px) {
    .opera-showcase {
        grid-template-columns: 1fr;
    }

    .opera-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .opera-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .showcase-content {
        padding: 1rem;
    }

    .feature {
        padding: 1rem;
    }
} 

/* 联系页面样式 */
.contact-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/contact-header-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item h3 {
    color: #8B0000;
    margin-bottom: 1rem;
}

.contact-form-section {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-map {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-media {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 1.5rem;
    background: #f9f9f9;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-5px);
}

.social-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.social-item span {
    font-size: 1.1rem;
}

/* 响应式设计补充 */
@media (max-width: 768px) {
    .contact-container {
        padding: 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
} 