/* 51黑料每日大赛 - 新闻杂志风格 */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Georgia', 'SimSun', serif;
    background: #f5f5f0;
    color: #333;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 报头 */
.news-header {
    background: #1a1a1a;
    color: #fff;
    padding: 25px 0 0;
}

.news-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.news-date {
    font-size: 0.85rem;
    color: #999;
}

.news-subscribe a {
    color: #ff4444;
    text-decoration: none;
    font-size: 0.9rem;
}

.news-title-main {
    text-align: center;
    padding: 30px 0;
    border-bottom: 2px solid #333;
}

.news-title-main h1 {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 5px;
}

.news-title-main .sub {
    color: #999;
    font-size: 1rem;
    letter-spacing: 8px;
}

/* 导航栏 */
.news-nav {
    background: #fff;
    border-bottom: 3px solid #1a1a1a;
}

.news-nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.news-nav li a {
    display: block;
    padding: 14px 25px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.2s;
}

.news-nav li a:hover,
.news-nav li a.active {
    background: #1a1a1a;
    color: #ff4444;
}

/* 主要内容区 */
.news-main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    padding: 40px 0;
}

/* 头条新闻 */
.featured-story {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    margin-bottom: 30px;
}

.featured-story .category {
    display: inline-block;
    background: #ff4444;
    color: #fff;
    padding: 4px 12px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.featured-story h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.featured-story .meta {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.featured-story p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 1rem;
}

.featured-story .read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ff4444;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #ff4444;
    padding-bottom: 2px;
}

/* 新闻列表 */
.news-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.news-item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 25px;
    transition: border-color 0.2s;
}

.news-item:hover {
    border-color: #ff4444;
}

.news-item .cat {
    display: inline-block;
    color: #ff4444;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.news-item h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-item .meta {
    color: #999;
    font-size: 0.8rem;
    margin-bottom: 12px;
}

.news-item p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* 侧边栏 */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: #fff;
    border: 1px solid #ddd;
}

.sidebar-title {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 20px;
    font-weight: bold;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.sidebar-title span {
    color: #ff4444;
}

.sidebar-content {
    padding: 20px;
}

/* 排行榜 */
.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    gap: 12px;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-num {
    width: 28px;
    height: 28px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.sidebar-list li:nth-child(1) .sidebar-num { background: #ff4444; }
.sidebar-list li:nth-child(2) .sidebar-num { background: #ff8844; }
.sidebar-list li:nth-child(3) .sidebar-num { background: #ffcc44; color: #1a1a1a; }

.sidebar-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sidebar-list a:hover {
    color: #ff4444;
}

/* 标签云 */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background: #f5f5f0;
    color: #666;
    text-decoration: none;
    font-size: 0.85rem;
    border: 1px solid #ddd;
    transition: all 0.2s;
}

.tag-cloud a:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* 赛事表格 */
.match-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    margin-bottom: 30px;
}

.match-table th {
    background: #1a1a1a;
    color: #fff;
    padding: 12px;
    text-align: left;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.match-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.match-table tr:hover {
    background: #f5f5f0;
}

.match-result {
    font-weight: bold;
    color: #ff4444;
}

.match-win { color: #44aa44; }
.match-lose { color: #ff4444; }
.match-draw { color: #888; }

/* 专栏文章 */
.column-article {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #ff4444;
}

.column-article .column-tag {
    display: block;
    color: #ff4444;
    font-size: 0.85rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.column-article h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.column-article p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
    font-size: 1rem;
    text-indent: 2em;
}

/* 统计数据 */
.stats-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-block h3 {
    font-size: 2.5rem;
    color: #ff4444;
    margin-bottom: 5px;
}

.stat-block p {
    color: #999;
    font-size: 0.9rem;
}

/* 页脚 */
.news-footer {
    background: #1a1a1a;
    color: #999;
    margin-top: 60px;
    padding: 50px 0 25px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-top h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.footer-top p {
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-top ul {
    list-style: none;
}

.footer-top li {
    margin-bottom: 10px;
}

.footer-top a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-top a:hover {
    color: #ff4444;
}

.footer-bottom {
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
}

/* 响应式 */
@media (max-width: 1024px) {
    .news-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .news-title-main h1 { font-size: 2rem; }
    .news-list { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .news-nav li a { padding: 10px 15px; font-size: 0.85rem; }
    .featured-story h2 { font-size: 1.5rem; }
}
