/* 民间音乐页面特定样式 */
.folk-content {
    padding-top: 60px;
}

/* 介绍部分样式 */
.folk-intro {
    padding: 50px 0;
    background-color: #fff;
}

.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.intro-image:hover img {
    transform: scale(1.05);
}

/* 音乐分类样式 */
.music-categories {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.music-categories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin: 15px 0;
}

.category-card p {
    padding: 0 15px 15px;
    text-align: center;
    color: #666;
}

/* 地域特色样式 */
.regional-styles {
    padding: 50px 0;
    background-color: #fff;
}

.regional-styles h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.style-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.style-item {
    background: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.style-item:hover {
    transform: translateY(-5px);
}

.style-item h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 20px;
}

.style-item ul {
    list-style: none;
    padding: 0;
}

.style-item li {
    padding: 8px 0;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.style-item li:last-child {
    border-bottom: none;
}

/* 民间乐器样式 */
.folk-instruments {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.folk-instruments h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.instrument-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.instrument-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.instrument-card:hover {
    transform: translateY(-5px);
}

.instrument-image {
    height: 250px;
    overflow: hidden;
}

.instrument-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instrument-card:hover .instrument-image img {
    transform: scale(1.1);
}

.instrument-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin: 15px 0;
}

.instrument-card p {
    padding: 0 15px 15px;
    text-align: center;
    color: #666;
} 