/* 首页右侧栏 */
.index-yc .tzgg li{
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
}
.index-yc .tzgg li span{
    font-size: 12px;
    margin-bottom: 4px;
    display: block;
    color: #aaaaaa;
}
.index-yc .tzgg li a {
    color: #666666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    height: 26px;
    display: block;
    line-height: 26px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.index-yc .tzgg li a:hover{
    color: #409EFF;
}
.index-yc .tzgg li:last-child {
    border-bottom: none;
}

.index-yc .zygj{
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.index-yc .zygj a{
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: #ecf5ff;
    border-radius: var(--radius);
    padding: 10px 10px;
    color: #53a8ff;
}
.index-yc .zygj a:hover{
    background-color: #53a8ff;
    color: #ffffff;
}
.index-yc .zygj a i{
    font-size: 14px;
    margin-right: 7px;
}
.index-yc .zygj a span{
    font-size: 14px;
}
.index-yc .yqlj li{
    margin: 3px 0px;
}
.index-yc .yqlj li a{
    color: #666666;
    text-decoration: none;
    padding: 5px 0;
    display: block;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.index-yc .yqlj li a:hover{
    color: #53a8ff;
    border-bottom-color: #53a8ff;
}

.index-yc .sjtj{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.index-yc .sjtj li{
    text-align: center;
    padding: 16px 8px;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ecf5ff;
}
.index-yc .sjtj li i{
    font-size: 20px;
    font-weight: bold;
    color: #53a8ff;
    margin-bottom: 5px;
}
.index-yc .sjtj li span{
    font-size: 14px;
    color: #666666;
}
/* 新闻右侧栏 */
/* 热门新闻 */
.hot-news li{
    margin-bottom: 15px;
}

.hot-news li:last-child{
    margin-bottom: 0;
}

.hot-news li a{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hot-news li a:hover{
    background: #409EFF;
    transform: translateX(5px);
}

.hot-news li a:hover .hot-index,
.hot-news li a:hover .hot-title{
    color: #ffffff;
}

.hot-news .hot-index{
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #53a8ff;
    color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.hot-news li:nth-child(1) .hot-index{
    background: linear-gradient(135deg, #FF5722 0%, #ff784d 100%);
}

.hot-news li:nth-child(2) .hot-index{
    background: linear-gradient(135deg, #ff9800 0%, #ffad33 100%);
}

.hot-news li:nth-child(3) .hot-index{
    background: linear-gradient(135deg, #ffc107 0%, #ffcd3b 100%);
}

.hot-news .hot-title{
    flex: 1;
    font-size: 14px;
    color: #333333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 新闻分类 */
.news-category li{
    margin-bottom: 10px;
}

.news-category li:last-child{
    margin-bottom: 0;
}

.news-category li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.news-category li a span{
    font-size: 14px;
    color: #333333;
}

.news-category li a em{
    font-style: normal;
    font-size: 13px;
    color: #707070;
    background: #e3e3e3;
    padding: 2px 8px;
    border-radius: 10px;
}
.news-category li a:hover{
    background: #409EFF;
}

.news-category li a:hover span{
    color: #ffffff;
}

.news-category li a:hover em{
    background: #ffffff;
    color: #333333;
}
.news-category li a.xz{
    background: #409EFF;
}
.news-category li a.xz span{
    color: #ffffff;
}
.news-category li a.xz em{
    background: #ffffff;
    color: #333333;
}

@media (max-width: 768px){
    .hot-news li a{
        padding: 10px;
    }
    .hot-news .hot-title{
        font-size: 13px;
        -webkit-line-clamp: 1;
    }
}
