/* 最新文章模块整体 */
.newlist.sports-news{
    background:#1a1a2e;
    padding:40px 30px;
    margin:40px auto;
    border-radius:14px;
    box-shadow:0 8px 25px rgba(0,0,0,0.35);
}

/* 标题 */
.newlist.sports-news .box_title{
    font-size:26px;
    font-weight:600;
    color:#fff;
    margin-bottom:10px;
    display:flex;
    align-items:center;
    gap:10px;
}

.newlist.sports-news .box_title i{
    color:#e94560;
}

/* 简介 */
.newlist.sports-news .intro{
    color:#b8b8d4;
    font-size:15px;
    line-height:1.7;
    margin-bottom:30px;
}

/* 文章列表 */
.newlist_articles_horizontal{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

/* 单个文章卡片 */
.newlist_articles_horizontal li{
    list-style:none;
    overflow:hidden;
    border-radius:12px;
    position:relative;
    background:#16213e;
    transition:all .35s ease;
}

/* hover效果 */
.newlist_articles_horizontal li:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,0.45);
}

/* 图片 */
.newlist_thumb{
    position:relative;
    height:200px;
    overflow:hidden;
}

.newlist_thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s ease;
}

.newlist_articles_horizontal li:hover img{
    transform:scale(1.1);
}

/* 遮罩 */
.newlist_thumb .overlay{
    position:absolute;
    bottom:0;
    left:0;
    right:0;
    padding:18px;
    background:linear-gradient(transparent,rgba(0,0,0,0.85));
    color:#fff;
}

/* 标题 */
.newlist_thumb h3{
    font-size:16px;
    font-weight:600;
    margin-bottom:6px;
}

/* 摘要 */
.newlist_thumb .note{
    font-size:13px;
    color:#cfcfe6;
    line-height:1.5;
}

/* 时间浏览 */
.newlist_thumb .meta{
    margin-top:8px;
    font-size:12px;
    color:#9fa6d3;
    display:flex;
    gap:15px;
}

/* 手机适配 */
@media (max-width:768px){

.newlist.sports-news{
    padding:30px 20px;
}

.newlist_articles_horizontal{
    grid-template-columns:1fr;
}

}
/* 最新文章模块 */
.newlist.sports-news{
    margin:60px auto;
}

/* 文章列表 */
.newlist_articles_horizontal{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    padding:0;
}

/* 文章卡片 */
.newlist_articles_horizontal li{
    list-style:none;
}

/* 图片高度统一 */
.newlist_thumb{
    height:200px;
    overflow:hidden;
    border-radius:10px;
}

/* 图片 */
.newlist_thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* 手机适配 */
@media (max-width:768px){

.newlist_articles_horizontal{
    grid-template-columns:1fr;
}

}
.newlist.sports-news .box_title{
    text-align:center;
    margin-bottom:15px;
}

.newlist.sports-news .intro{
    text-align:center;
    max-width:800px;
    margin:0 auto 35px;
}
/* 新闻模块标题居中 */
.newlist.sports-news .box_title{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    margin-bottom:15px;
}

/* 标题样式 */
.news-title{
    font-size:28px;
    font-weight:700;
    color:#fff;
    margin:0;
}

/* 图标和文字间距 */
.news-title i{
    margin-right:8px;
    color:#e94560;
}
.main-layout{
display:flex;
gap:30px;
margin:40px auto;
}

.content-left{
flex:3;
}

.sidebar{
flex:1;
}

/* 文章内容卡片 */
.article-box {
    background: #1a1a2e;           /* 深蓝背景 */
    color: #eee;                    /* 文字白色 */
    padding: 30px;                  /* 内边距 */
    border-radius: 14px;            /* 圆角更统一 */
    box-shadow: 0 8px 25px rgba(0,0,0,0.35); /* 阴影更明显 */
    margin-bottom: 30px;
}

/* 文章 meta */
.article-meta {
    color: #b8b8d4; /* 浅蓝色 */
    font-size: 14px;
    margin: 10px 0 20px;
}

.article-meta span {
    margin-right: 15px;
}

/* 文章内容文字 */
.article-content {
    line-height: 1.8;
    font-size: 16px;
}

/* 右侧热门文章卡片 */
.sidebar-box {
    background: #1a1a2e;           /* 深蓝背景 */
    color: #eee;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
    margin-bottom: 30px;
}

/* 热门文章标题 */
.sidebar-box h3 {
    margin-bottom: 15px;
    border-left: 3px solid #e94560; /* 红色强调线 */
    padding-left: 10px;
    font-size: 20px;
    font-weight: 600;
}

/* 热门文章列表 */
.sidebar-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #cfcfe6;
    transition: 0.3s;
}

.sidebar-box li a {
    color: #cfcfe6;
    text-decoration: none;
}

.sidebar-box li a:hover {
    color: #e94560;
}

.banner{
    width:100%;
}

.banner-inner{
    max-width:1200px;
    margin:auto;
}
/* 分类头部 */

.category-head{
background:#16213e;
padding:20px;
margin-bottom:20px;
border-radius:10px;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.category-head h2{
font-size:22px;
margin-bottom:8px;
}

.category-desc{
color:#666;
font-size:14px;
}


/* 文章列表 */

.article-list{
background:;
border-radius:10px;
padding:20px;
box-shadow:0 2px 10px rgba(0,0,0,.05);
}

.article-item{
padding:18px 0;
border-bottom:1px solid #eee;
}

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

.article-title{
font-size:18px;
margin-bottom:8px;
}

.article-title a{
color:#222;
text-decoration:none;
}

.article-title a:hover{
color:#e94560;
}

.article-meta{
font-size:13px;
color:#999;
margin-bottom:8px;
}

.article-intro{
font-size:14px;
color:#555;
line-height:1.7;
}
/* 分类文章卡片 */

.article-card{
    background:#16213e; /* 深灰背景 */
    border-radius:10px;
    padding:20px;
    margin-bottom:20px;
    box-shadow:0 4px 12px rgba(0,0,0,0.4);
    transition:all .3s;
    border:1px solid #555;
}

/* 鼠标悬停 */

.article-card:hover{
transform:translateY(-3px);
box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

/* 标题 */

.article-title{
font-size:20px;
margin-bottom:10px;
}

.article-title a{
color:#fff;
text-decoration:none;
}

.article-title a:hover{
color:#e94560;
}

/* meta */

.article-meta{
font-size:13px;
color:#999;
margin-bottom:10px;
display:flex;
gap:15px;
}

/* 摘要 */

.article-intro{
font-size:14px;
line-height:1.7;
color:#555;
margin-bottom:10px;
}

/* 阅读更多 */

.read-more{
font-size:14px;
color:#e94560;
text-decoration:none;
}

.read-more:hover{
text-decoration:underline;
}
/* 整个页面背景 */
body {
    background-color: #1e1e1e;  /* 深灰色背景 */
    color: #eee;               /* 默认文字颜色改浅色 */
}

