/* 主容器 */
.anime-main {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* 页面横幅 */
.page-banner {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-banner p {
    font-size: 20px;
    opacity: 0.8;
}

/* 新闻容器布局 */
.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

/* 新闻列表 */
.news-list {
    display: grid;
    gap: 40px;
    margin: 30px 0;
}

/* 新闻卡片 */
.news-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* 新闻图片 */
.news-image {
    position: relative;
    height: 350px;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 新闻标签 */
.news-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #FFD700;
    color: #000;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 16px;
}

/* 新闻信息 */
.news-info {
    padding: 30px;
}

.news-info h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.news-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 14px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.news-meta span {
    display: flex;
    align-items: center;
}

.news-meta i {
    margin-right: 5px;
}

/* 侧边栏 */
.news-sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.hot-topics h3 {
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #FFD700;
    font-size: 20px;
}

.hot-topics ul {
    list-style: none;
}

.hot-topics li {
    margin-bottom: 20px;
}

.hot-topics a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 15px;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 16px;
}

.hot-topics a:hover {
    background: #f5f5f5;
    color: #FFD700;
}

/* 响应式布局 */
@media (max-width: 1024px) {
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .news-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 60px 20px;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
    
    .news-image {
        height: 250px;
    }
}
  </rewritten_file>