/* 音乐页面样式 */
.page-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.page-desc {
    font-size: 1.1em;
    opacity: 0.9;
}

/* 新闻卡片 */
.news-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #e74c3c;
}

.news-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9em;
}

.news-source {
    color: #e74c3c;
    font-weight: 600;
}

.news-date {
    color: #999;
}

.news-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    line-height: 1.3;
}

.news-content {
    color: #555;
    line-height: 1.8;
}

.news-content p {
    margin-bottom: 12px;
}

.news-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.news-content li {
    margin-bottom: 8px;
}

.source-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.source-link:hover {
    text-decoration: underline;
}

/* 新闻列表 */
.news-list {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-item {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
}

.news-item:last-child {
    border-bottom: none;
}

.item-source {
    background: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8em;
    white-space: nowrap;
}

.item-title {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.item-title:hover {
    color: #e74c3c;
}

/* 来源网格 */
.source-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.source-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.source-card:hover {
    transform: translateY(-3px);
}

.source-card h4 {
    color: #e74c3c;
    margin-bottom: 8px;
}

.source-card p {
    font-size: 0.9em;
    color: #666;
}

/* 内容区块 */
.content-section {
    margin-bottom: 50px;
}

.content-section .section-title {
    border-left-color: #e74c3c;
}

/* 响应式 */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.8em;
    }
    
    .news-header {
        flex-direction: column;
        gap: 5px;
    }
    
    .news-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
