/* 舞蹈页面特定样式 */
.dance-content {
    padding-top: 60px;
}

/* 舞蹈分类样式 */
.dance-types {
    padding: 50px 0;
    background-color: #fff;
}

.dance-types h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.type-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
}

.type-image {
    height: 250px;
    overflow: hidden;
}

.type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.type-card:hover .type-image img {
    transform: scale(1.1);
}

.type-content {
    padding: 20px;
}

.type-content h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.type-content p {
    margin-bottom: 15px;
    color: #666;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features li {
    padding: 8px 0;
    text-align: center;
    color: #666;
    border-bottom: 1px solid #eee;
}

.features li:last-child {
    border-bottom: none;
}

/* 舞蹈要素样式 */
.dance-elements {
    padding: 50px 0;
    background-color: #f5f5f5;
}

.dance-elements h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.elements-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.element-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;
}

.element-item:hover {
    transform: translateY(-5px);
}

.element-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.element-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.element-item p {
    color: #666;
}

/* 舞蹈服饰样式 */
.dance-costumes {
    padding: 50px 0;
    background-color: #fff;
}

.dance-costumes h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.costumes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.costume-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.costume-card:hover {
    transform: translateY(-5px);
}

.costume-image {
    height: 250px;
    overflow: hidden;
}

.costume-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.costume-card:hover .costume-image img {
    transform: scale(1.1);
}

.costume-card h3 {
    color: var(--primary-color);
    text-align: center;
    margin: 15px 0;
}

.costume-card p {
    padding: 0 15px 15px;
    text-align: center;
    color: #666;
} 