/* 艺术殿堂页面样式 */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.art-section {
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.art-section h2 {
    color: #CC0000;
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.art-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #FFD700;
}

/* 艺术介绍区域 */
.art-intro {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.art-intro img {
    width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.art-intro img:hover {
    transform: scale(1.02);
}

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.intro-text p {
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

/* 名家展示区域 */
.masters {
    margin-bottom: 40px;
}

.masters h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.master-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.master-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.master-card:hover {
    transform: translateY(-5px);
}

.master-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.master-card h4 {
    padding: 15px;
    color: #CC0000;
    font-size: 20px;
}

.master-card p {
    padding: 0 15px 15px;
    color: #666;
    line-height: 1.6;
}

/* 技法展示区域 */
.techniques h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
}

.technique-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.technique-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.technique-item:hover {
    transform: translateY(-5px);
}

.technique-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.technique-item h4 {
    padding: 15px;
    color: #CC0000;
    font-size: 20px;
}

.technique-item p {
    padding: 0 15px 15px;
    color: #666;
    line-height: 1.6;
}

/* 国画展示区域 */
.painting-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.showcase-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.showcase-item:hover {
    transform: translateY(-5px);
}

.showcase-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.showcase-item h4 {
    padding: 15px;
    color: #CC0000;
    font-size: 20px;
}

.showcase-item p {
    padding: 0 15px 15px;
    color: #666;
    line-height: 1.6;
}

/* 戏曲展示区域 */
.opera-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.opera-type {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.opera-type:hover {
    transform: translateY(-5px);
}

.opera-type img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.opera-type h4 {
    padding: 15px;
    color: #CC0000;
    font-size: 20px;
}

.opera-type p {
    padding: 0 15px 15px;
    color: #666;
    line-height: 1.6;
} 