body {
    background-color: #f5f5f5;
}
.main-container {
    max-width: 1100px;
    margin: 15px auto !important;
    display: flex;
    gap: 15px;
}
.article-list-wrap{
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
}
.article-list {
    border-radius: 5px;
    flex: 3;
}
.article-list .article-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    margin-bottom: 1px;
    padding: 15px 15px;
    /*border-radius: 6px;*/
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.kw{
    color:#4e6ef2;
}

.empty-articles{
    background: #fff;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:60px;
    color:#999;
}


.article-list .article-item:hover {
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background: rgba(241, 243, 255, 0.46);
}
.article-list .article-item h3 {
    font-size: 16px;
    margin: 0 0 5px;
    color: #333;
}
.article-list .article-item .meta {
    font-size: 13px;
    color: #999;
}
.sidebar {
    max-height: 1755px;
    flex: 1;
    /*background: #fff;*/
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.sidebar .qrcode {
    border-radius: 5px;
    text-align: center;
    margin-bottom: 10px;
}
.sidebar .qrcode img {
    width: 100%;
    border-radius: 4px;
}
.sidebar .recommend-title {
    font-weight: bold;
    margin-bottom: 10px;
}
.sidebar .recommend-list li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}
.layui-laypage {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    text-align: center;
}
.pagination{
    display: flex;
}
.pagination li{
    padding:0 !important;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: #4e6ef2 !important;  /* 当前页高亮 */
}
.layui-laypage a,
.layui-laypage span {
    color: #333;
    padding: 4px 15px;
    border-radius: 4px;
    margin: 0 2px;
    transition: all 0.3s ease;
}

.layui-laypage li.active span{
    background: #4e6ef2;
    color:#fff;
}
.layui-laypage a:hover {
    background-color: #4e6ef2;
    color: #fff;
}
.layui-laypage .layui-laypage-curr em {
    background-color: #4e6ef2;
    color: #fff;
    border-radius: 4px;
}

.info-box{
    box-shadow: none !important;
}

.article-list-header{
    padding:20px;
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px solid #eee;
}
.article-list-header h2{
    font-weight: bold;
}
.article-list-header h3{
    padding:0 20px;
    display: flex;
    gap: 10px;
}

.article-list-header h3 a{
    color:#4e6ef2;
}
.article-list-header h3 a.active{
    color:red;
}

.search-res-title{
    font-size: 16px;
    background: #eee;
    border-bottom: 1px solid #e3e3e3
}
.search-article-item{
    color:#4976ad;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    background: #fff;
    margin-bottom: 1px;
    padding: 15px 15px;
    /*border-radius: 6px;*/
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
    gap: 10px;

}

.search-article-item h3{
    color:#4976ad !important;
}
.search-article-item h3>a{
    color: #4e6ef2 !important;
}

.search-article-item h3>a:hover{
    color: #4e6ef2 !important;
    text-decoration: underline;;
}


.search-article-item .content-sub{
    color:#666;
}
.search-article-item .remark{
    color:rgb(0, 128, 0);
}

.content-sub{
    word-break: break-all;
    word-wrap: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}