.newsList_right_title-img {
    width: 3.9063vw;
    height: 7.6852vh;
    background-image: url('../blueimages/newsList_right_title.png');
    background-size: 100% 100%;
}
.newsList{
    width: 83.3333vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-top: 6vh;
}
.newsList_left{
    width: 65vw;
}
.newsList_list{
    display: flex;
    padding: 2.7778vh 0;
    border-bottom: 1px solid rgba(198, 191, 180, .3);
    cursor: pointer;
}
.newsList_list_time{
    width: 4vw;
    text-align: center;
    color: #18488C;
}
.newsList_list_time p{
    font-size: 1.8750vw;
    font-weight: bold;
}
.newsList_list_time span{
    display: block;
    font-size: 0.8333vw;
}
.newsList_list_con{
    width: 61vw;
    padding: 0 2.7778vh;
    box-sizing: border-box;
    border-left: 1px solid #DAD5CB;
}
.newsList_list_con_title{
    color: #333;
    font-weight: bold;
    font-size: 1.2500vw;
    margin-bottom: 1.8519vh;
}
.newsList_list_con_text{
    color: #666;
    font-size: 0.9375vw;
    line-height: 3vh;
    overflow:hidden;
    text-overflow:ellipsis;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}
.newsList_list_con_details{
    width: 2.1354vw;
    height: 2.1354vw;
    background-image: url('../blueimages/newsList_li.png');
    background-size: 100% 100%;
    margin-top: 2vh;
}
/* 鼠标悬停样式 */
.newsList_list:hover {
    border-bottom: 1px dashed #555; /* 修改边框颜色为深红色 */
}

.newsList_list:hover .newsList_list_con_title {
    color: #18488C; /* 修改标题颜色为深红色 */
}

.newsList_list:hover .newsList_list_con_details {
    background-image: url('../blueimages/newsList_li_avtive.png'); /* 更换背景图片 */
    background-size: 100% 100%;
}
.newsList_right{
    width: 16.1979vw;
    height: 52.8704vh;
    background-image: url('../blueimages/newsList_right_bg.png');
    background-size: 100% 100%;
    overflow: hidden;
}
.newsList_right_title{
    display: flex;
    /* align-items: center; */
}
.newsList_right_title img{
    width: 3.9063vw;
    height: 7.6852vh;
}
.newsList_right_title p{
    font-size: 1.3542vw;
    color: #333;
    margin-top: 1vh;
    margin-left: 0.5vw;
}
.newsList_right_list{
    width: 15vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-bottom: 1.8519vh;
    cursor: pointer;
}
.newsList_right_list span{
    width: 0.2083vw;
    height: 0.2083vw;
    background: #18488C;
    border-radius: 50%;
    display: block;
    margin-right: 0.5vw;
}
.newsList_right_list p{
    font-size: 0.9375vw;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.newsList_right_list:hover p {
    color: #18488C; /* 修改标题颜色为深红色 */
}
/* 分页 */
.newsList_page{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5vh 0;
}