/*----------------new_list----------------*/
.newsList{
    width: 90%;
    margin: 0 auto; 
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    border-radius: 7px;
    padding: 5px;
    margin-top: 15px;
    margin-bottom: 15px;
}
.newsList:nth-last-child(2){
    margin-bottom: 150px;
}
.newsimg{
    border-radius: 7px;
    height: 95px;
    background: 0 0 no-repeat;
    background-size: cover;
    background-position: center center;
    flex: 1;
    flex-grow:1;
}
.newsContent{
    padding: 0 0 0 5px;
    flex: 1;
    flex-grow:2;
}
.newsContent time{
    position: relative;
    font-size: 12px;
}
.newsList.active{
    background-color: #75d3f5;
    color: #fff;
}
.newsList.active .newsContent time::before{
    background-color: #fff;
}
.newsContent time::before,
.news-main time::before{
    content: "";
    position: absolute;
    top: 115%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #989a98;
}

.newsContent .newsTittle{
    font-weight: 600;
    padding: 10px 0 5px 0;
    line-height: 20px;
}
.newsDetail{
    font-size: 15px;
    line-height: 1em;
    height: 2em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/*----------------new_content----------------*/
.newsBanner{
    width: 100%;
    padding-bottom: 50%;
    background: 0 0 no-repeat;
    background-size: cover;
    background-position: center;
}
.news-main{
    padding: 25px 0 70px;
    width: 85%;
    margin: 0 auto;
}
.news-main time{
    letter-spacing: 1.25px;
    position: relative;
}
.news-FocusTitle{
    font-weight: 600;
    padding: 15px 0;
    font-size: 27.5px;
    line-height: 1.15;
}
.news-EventMessage{
    line-height: 1.45;
    letter-spacing: 0.75px;
    font-size: 16.5px;
}
.news-main .txt-center{
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-main .txt-center a{
    padding: 15px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pretriangle{
    margin-left: 5px;
    border-top: 7.5px solid transparent;
    border-bottom: 7.5px solid transparent;
    border-right: 7.5px solid #73d5f5;
    display:inline-block;
}
.nextriangle{
    margin-right: 5px;
    border-top: 7.5px solid transparent;
    border-bottom: 7.5px solid transparent;
    border-left: 7.5px solid #73d5f5;
    display:inline-block;
}
/*--------------------rwd-------------------*/
@media screen and (min-width: 450px){

.newsimg {
    height: 125px;
}
.newsContent time {
    font-size: 17px;
}
.newsContent .newsTittle {
    font-size: 20px;
}
.newsDetail {
    font-size: 17px;
    line-height: 1em;
    height: 3em;
    -webkit-line-clamp: 3;
}

}
@media screen and (min-width: 500px){

.newsList {
    width: 80%;
}    

.news-EventMessage {
    margin-bottom: 50px;
    line-height: 1.65;
}
.newsContent{
    flex-grow:2.5;
}

}    

@media screen and (min-width: 600px){

.newsList {
    width: 75%;
}
.newsBanner{
    padding-bottom: 45%;
}

}

@media screen and (min-width: 768px){

.newsList.active {
    margin-top: 50px;
}
.newsContent{
    flex-grow:3.5;
}
.newsContent {
    padding: 10px 15px;
}
.newsimg{
    margin-left: 5px;
}
.newsDetail {
    line-height: 1.25em;
    height: 3.75em;
    -webkit-line-clamp: 3;
}
.news-main {
    padding: 70px 0 70px;
}  
.newsBanner{
    padding-bottom: 30%;
}

}

@media screen and (min-width: 1024px){


.newsimg {
    flex-grow: 1.15;
}
.newsContent{
    flex-grow:6.25;
}
.newsList,
.news-main{
    max-width: 1200px;
}
.newsBanner{
    padding-bottom: 25%;
}

}

@media screen and (min-width: 1366px){

.newsContent{
    flex-grow:8;
}
.newsBanner{
    padding-bottom: 19%;
}


}