.top{
    width: 100%;
    height: 120px;
    background-color: deepskyblue;
    margin: 0 auto;
}
.top_img{
    width: 100%;
}
.top_img img{
    width: 100%;

}

/*列表页主体部分*/
.content{
    width: 1200px;
    margin: 0 auto;
    min-height: 400px;
    padding-bottom: 60px;
}

/*左边栏目导航*/
.content_l{
    float: left;
    width: 150px;
    min-height:50px;
    background-color: #e6e6e6;
    text-align: center;
    align-items: center;
    line-height: 50px;

}
.content_l_top{
    color: #0079c0;
    font-size: 22px;
    font-weight: bold;
}
.content_l_content{
    background-color: #e6e6e6;
    text-align: center;
    align-items: center;
    font-size: 18px;

}
.content_l_content ul li:hover{
    background-color: whitesmoke;
    cursor: pointer;
}

/*右边主体列表*/
/* 修正右侧容器宽度 */
.content_r {
    margin-left: 30px;
    float: left;
    margin-top: 20px;
    width: calc(100% - 180px); /* 1200px - 100px - 30px */
    box-sizing: border-box;
}

/* 更新栏目名称样式 */
/* 修改右侧栏目名称样式 */
.content_r_top {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    font-weight: bold;
    font-size: 22px;
    color: #0079c0;
}
/* 添加自适应横线 */
.content_r_top::after {
    content: "";
    flex: 1;
    height: 3px;
    background: #0079c0;
    margin-top: 2px; /* 微调垂直位置 */
}

.content_r_li{
    margin-top: 20px;
    color: #423f3f;
    font-size: 16px;
    margin-bottom: 50px;
}
.content_r_li span{
    float: right;
}


.content_r_li li {
    min-height: 20px;
    /* 增加行高 */
    line-height: 1.8;
    /* 添加垂直间距 */
    padding: 5px 0;
    /* 添加底部边框分隔线 */
    border-bottom: 1px solid #eee;
    /* 清除浮动 */
    overflow: hidden;
    /* 使用Flex布局替代浮动 */
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative; /* 为伪元素定位提供基准 */
}
/* 优化日期显示 */
.content_r_li span {
    /* 替换浮动为Flex自动布局 */
    font-size: 15px;
    color: #666;
    /* 添加左边距 */
    margin-left: 20px;
    /* 防止文字挤压 */
    flex-shrink: 0;
}
/*!* 添加悬停效果 *!*/
/*.content_r_li li:hover::after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: -1px; !* 对齐原边框位置 *!*/
/*    width: 100%;*/
/*    height: 3px;*/
/*    background: #0079c0;*/
/*    transform-origin: left center;*/
/*    animation: lineExpand 1s ease-in-out forwards;*/
/*}*/
/*@keyframes lineExpand {*/
/*    from {*/
/*        transform: scaleX(0);*/
/*        opacity: 0;*/
/*    }*/
/*    to {*/
/*        transform: scaleX(1);*/
/*        opacity: 1;*/
/*    }*/
/*}*/
/*!* 调整原有悬停效果 *!*/
/*.content_r_li li:hover {*/
/*    background: #f8f9fa;*/
/*    transform: translateX(5px);*/
/*    transition:*/
/*            transform 0.3s ease,*/
/*            background 0.3s ease; !* 分离过渡属性 *!*/
/*}*/

/*使用clearfix清除浮动*/
.content_r_li li:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.content::after {
    content: "";
    display: table;
    clear: both;
}

/*分页*/
/* 分页样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-top: 20px;

}


/*    页脚*/
.foot{
    background-image: url("../img/botton_null.jpg");
    width: 100%;
    height: 287px;
    margin-top: 60px;
}
.foot::after {
    content: "";
    display: table;
    clear: both;
}
.foot_content{
    width: 1200px;
    margin: 0 auto;
}
.foot_content_l{
    float: left;
    color: white;
    margin-top: 50px;

}
.foot_content_l div{
    margin-top: 10px;
}
.foot_content_r{
    float: right;
    color: white;
    margin-top: 60px;
    margin-right: 30px;
    font-size: 18px;
}
.foot_content_r img{
    width: 78px;
    margin-top: 5px;
    margin-right: 3px;
}