/* 音乐舞蹈结合页面特定样式 */
.combination-content {
    padding-top: 60px;
}

/* 艺术融合部分样式 */
.art-fusion {
    padding: 50px 0;
    background-color: #fff;
}

.art-fusion h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.fusion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fusion-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fusion-card:hover {
    transform: translateY(-5px);
}

.fusion-image {
    height: 300px;
    overflow: hidden;
}

.fusion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fusion-card:hover .fusion-image img {
    transform: scale(1.1);
}

.fusion-content {
    padding: 20px;
}

.fusion-content h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.fusion-content p {
    margin-bottom: 15px;
    color: #666;
}

.fusion-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fusion-features li {
    padding: 8px 0;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #eee;
}

.fusion-features li:last-child {
    border-bottom: none;
}

/* 表演形式样式 */
.performance-styles {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.performance-styles h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.styles-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.style-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.style-item:hover {
    transform: translateY(-5px);
}

.style-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.style-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.style-item p {
    color: #666;
}

/* 艺术成就样式 */
.artistic-achievements {
    padding: 50px 0;
    background-color: #fff;
}

.artistic-achievements h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.achievement-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
}

.achievement-image {
    height: 200px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.1);
}

.achievement-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin: 15px 0;
}

.achievement-card p {
    padding: 0 15px 15px;
    text-align: center;
    color: #666;
} 