
/* 主体 */

.byz-list-main {
    display: flex;
    gap: 20px;
}
.byz-list-left {
    width: 880px;
}
.byz-list-right {
    width: 300px;
}
/* 新闻列表 */

.news-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.news-list li {
    background: #fff;
    box-shadow: 0 0 0 1px #f1f1f1;
    padding: 26px;
    margin-bottom: 20px;
    transition: .25s;
}
.news-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
}
.news-inner {
    display: flex;
    align-items: flex-start;
}
.news-thumb {
    width: 180px;
    height: 120px;
    overflow: hidden;
    border-radius: 6px;
    margin-right: 20px;
    flex-shrink: 0;
}
.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-content {
    flex: 1;
    min-width: 0;
}
.news-title {
    margin-bottom: 10px;
    line-height: 1.5;
}
.news-title a {
    font-size: 19px;
    font-weight: 700;
    color: #131715;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-title a:hover {
    color: #23c268;
}
.news-meta {
    color: #a7a8a7;
    font-size: 13px;
    margin-bottom: 12px;
}
.news-desc {
    color: #7f8381;
    font-size: 14px;
    line-height: 1.8;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.no-thumb .news-inner {
    display: block;
}
.no-thumb .news-title {
    margin-bottom: 12px;
}
.no-thumb .news-desc {
    margin-top: 10px;
}

/* 右侧模块 */

.right-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 0 1px #f1f1f1;
}
.byz-home-topic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.byz-home-module-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}
.byz-home-more {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #999;
    font-size: 14px;
}
.byz-home-more:hover {
    color: #08c26e;
}
.byz-home-more i {
    font-size: 12px;
}
/* 栏目导航 */

.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.category-nav a {
    width: calc(50% - 5px);
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #f7f8f9;
    border-radius: 6px;
    color: #555;
    transition: .2s;
    font-size: 14px;
}
.category-nav a:hover {
    background: #08c26e;
    color: #fff;
}
/* 热门文章 */
.hot-news{
    margin:0;
    padding:0;
}

.hot-news li{
    padding-bottom:14px;
    margin-bottom:14px;
    border-bottom:1px solid #f3f3f3;
}

.hot-news li:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.hot-title{
    display:block;
    color:#333;
    font-size:15px;
    line-height:1.7;
    margin-bottom:6px;
}

.hot-title:hover{
    color:#08c26e;
}

.hot-meta{
    display:flex;
    align-items:center;
    gap:12px;
    color:#b3b3b3;
    font-size:12px;
}

.hot-meta i{
    margin-right:3px;
}
/* 标签 */

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag-cloud a {
    background: #f7f8f9;
    color: #666;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
}
.tag-cloud a:hover {
    background: #08c26e;
    color: #fff;
}

/* 手机 */

@media(max-width:768px) {
.byz-list-main {
    flex-direction: column;
}
.byz-list-left, .byz-list-right {
    width: 100%;
}
.news-inner {
    flex-direction: column;
}
.news-thumb {
    width: 100%;
    height: 220px;
    margin-right: 0;
    margin-bottom: 15px;
}
}