/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    line-height: 1.6;
    color: #333;
}

/* 头部样式 */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo {
    float: left;
}

.logo img {
    height: 50px;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e74c3c;
}

/* 主要内容区域 */
main {
    margin-top: 80px;
    padding: 2rem 5%;
}

/* 轮播图区域 */
.banner {
    width: 100%;
    margin-bottom: 3rem;
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* 最新动态区域 */
.news {
    margin-bottom: 3rem;
}

.news h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.news-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-item h3 {
    padding: 1rem;
    color: #333;
}

.news-item p {
    padding: 0 1rem 1rem;
    color: #666;
}

/* 音乐作品展示区域 */
.music-preview {
    margin-bottom: 3rem;
}

.music-preview h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.music-item {
    text-align: center;
    transition: transform 0.3s;
}

.music-item:hover {
    transform: scale(1.05);
}

.music-item img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.music-item h3 {
    margin-top: 1rem;
    color: #333;
}

/* 页脚样式 */
footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 5%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-logo img {
    height: 40px;
}

.footer-links h4 {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #e74c3c;
}

.footer-info {
    text-align: right;
}

/* 清除浮动 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* 音乐作品页面样式 */
.albums {
    margin-bottom: 4rem;
}

.albums h2,
.singles h2,
.music-videos h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 0 10%;
}

.album-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.album-item:hover {
    transform: translateY(-10px);
}

.album-item img {
    width: 100%;
    height: auto;
    display: block;
}

.album-info {
    padding: 1.5rem;
    text-align: center;
}

.album-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.album-info p {
    color: #666;
    margin-bottom: 1rem;
}

.play-btn {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.play-btn:hover {
    background-color: #c0392b;
}

/* 热门单曲区域 */
.singles {
    margin-bottom: 4rem;
    padding: 0 10%;
}

.song-list {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.song-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.song-item:last-child {
    border-bottom: none;
}

.song-item:hover {
    background-color: #f9f9f9;
}

.song-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.song-info p {
    color: #666;
    font-size: 0.9rem;
}

/* 音乐视频区域 */
.music-videos {
    padding: 0 10%;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.video-item:hover {
    transform: scale(1.03);
}

.video-item img {
    width: 100%;
    height: auto;
    display: block;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #666;
    font-size: 0.9rem;
}

/* 演出资讯页面样式 */
.tour-preview {
    margin-bottom: 4rem;
    padding: 0 10%;
}

.tour-preview h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.tour-banner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.tour-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.tour-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.tour-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.ticket-btn {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 1rem;
}

.ticket-btn:hover {
    background-color: #c0392b;
}

/* 演出日程区域 */
.schedule {
    margin-bottom: 4rem;
    padding: 0 10%;
}

.schedule h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.schedule-list {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.schedule-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s;
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item:hover {
    background-color: #f9f9f9;
}

.date {
    text-align: center;
    margin-right: 2rem;
    min-width: 80px;
}

.date .month {
    display: block;
    font-size: 1.2rem;
    color: #666;
}

.date .day {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
}

.show-info {
    flex-grow: 1;
}

.show-info h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.show-info p {
    color: #666;
    margin-bottom: 0.3rem;
}

/* 演出回顾区域 */
.past-shows {
    padding: 0 10%;
}

.past-shows h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.shows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.show-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.show-item:hover {
    transform: translateY(-10px);
}

.show-item img {
    width: 100%;
    height: auto;
    display: block;
}

.show-item .show-info {
    padding: 1.5rem;
}

.show-item .show-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.show-item .show-info p {
    color: #666;
    font-size: 0.9rem;
}

/* 个人简介页面样式 */
.profile {
    margin-bottom: 4rem;
}

.profile-header {
    position: relative;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.profile-header img {
    width: 100%;
    height: auto;
    display: block;
}

.profile-header h1 {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.profile-header .subtitle {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.profile-content {
    padding: 0 10%;
}

.bio {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bio h2 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.bio p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* 音乐历程时间线 */
.timeline {
    padding: 0 10%;
    margin-bottom: 4rem;
}

.timeline h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #333;
}

.timeline-items {
    position: relative;
    padding-left: 2rem;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e74c3c;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background-color: #e74c3c;
    border-radius: 50%;
}

.timeline-item .year {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.timeline-item .content h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.timeline-item .content p {
    color: #666;
}

/* 荣誉成就区域 */
.achievements {
    padding: 0 10%;
}

.achievements h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.achievement-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.achievement-item:hover {
    transform: translateY(-10px);
}

.achievement-item img {
    width: 100%;
    height: auto;
    display: block;
}

.achievement-info {
    padding: 1.5rem;
    text-align: center;
}

.achievement-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.achievement-info p {
    color: #666;
    font-size: 0.9rem;
}

/* 粉丝互动页面样式 */
.fan-community {
    margin-bottom: 4rem;
}

.community-header {
    position: relative;
    text-align: center;
    color: #fff;
    margin-bottom: 3rem;
}

.community-header img {
    width: 100%;
    height: auto;
    display: block;
}

.community-header h1 {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.community-header .subtitle {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* 社交媒体区域 */
.social-media {
    padding: 0 10%;
    margin-bottom: 4rem;
}

.social-media h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.social-item {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.social-item:hover {
    transform: translateY(-10px);
}

.social-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.social-item h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.social-item p {
    color: #666;
    margin-bottom: 1rem;
}

.follow-btn {
    display: inline-block;
    background-color: #e74c3c;
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.follow-btn:hover {
    background-color: #c0392b;
}

/* 粉丝活动区域 */
.fan-activities {
    padding: 0 10%;
    margin-bottom: 4rem;
}

.fan-activities h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.activity-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.activity-item:hover {
    transform: translateY(-10px);
}

.activity-item img {
    width: 100%;
    height: auto;
    display: block;
}

.activity-info {
    padding: 1.5rem;
    text-align: center;
}

.activity-info h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.activity-info p {
    color: #666;
    margin-bottom: 1rem;
}

.join-btn {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.join-btn:hover {
    background-color: #c0392b;
}

/* 留言板区域 */
.message-board {
    padding: 0 10%;
    margin-bottom: 4rem;
}

.message-board h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.message-form {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.message-form textarea {
    width: 100%;
    height: 100px;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 1rem;
    resize: none;
    font-family: inherit;
}

.submit-btn {
    background-color: #e74c3c;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #c0392b;
}

.message-list {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.message-item {
    display: flex;
    align-items: start;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.message-item:last-child {
    border-bottom: none;
}

.message-avatar {
    margin-right: 1rem;
}

.message-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.message-content h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.message-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.message-time {
    color: #999;
    font-size: 0.9rem;
} 