
/* .aboutBtn ul li{
    width: 25%;
} */
.newsContent{margin: 50px auto 70px;}
.newsList{
    border: 1px solid #ebebeb;
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.newsList:hover{box-shadow: 0 0 14px rgba(0,0,0,0.08);}
.listLeft{
    display: flex;
    align-items: center;
    width: calc(100% - 50px);
}
.listLeftBox {
    width: 148px;
    text-align: center;
    color: #0f3363;
}
.listCon {
    border-left: 1px solid #ebebeb;
    padding-left: 40px;
    flex: 1;
    padding-right: 10px;
}
.listRight {
    width: 50px;
    min-height: 168px;
    display: flex;
    align-items: center;
    transition-duration: 0.5s;
}
.ellipsisBg{
    width: 4px;
    height: 28px;
    background: url("../images/news/ellipsi.png");
    margin: 0 auto;
}
.newsday{
    font-size: 50px;
    font-family: "Arial";
    font-weight: 500;
}
.newsTime{
    font-size: 22px;
    font-family: "Arial";
}
.newsTitle{
    margin-bottom: 16px;
    font-size: 18px;
    color: #333;
    transition-duration: 0.5s;
}
.newsDate{
    display: none;
    color: #004990;
    margin-top: 10px;
    font-family: "Arial";
}
.newsText{
    margin-top: 10px;
    color: #666666;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.newsList:hover .listRight{
    background: #0b4da2;
}
.newsList:hover .ellipsisBg{
    background: url("../images/news/ellipsis.png");
}
.newsList:hover .newsTitle{
    color: #0c4da0;
}