.newsnav{
    width: 100%;
    height: 67px;
    background: #ca0000;
    text-align: center;
    margin-bottom: 80px;
}
.newsnav>ul{
    height: 67px; line-height: 67px; margin:0 auto;
    display: flex;
    justify-content: center;
}
.newsnav>ul>li{
    width:162px;
    height: 67px;
    position: relative;
    border-right:1px solid #ffffff;
}
.newsnav>ul>li:last-child{ border-right:0px; }
.newsnav>ul>li::before{ 
    content:'▶';
    color: #ffffff;
    font-size: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    line-height: 10px;
    transform: translateY(-50%);
    z-index:2;
}

.newsnav>ul>li:hover::before{
    content:'▶';
    color: #ffffff;
    font-size: 10px;
    position: absolute;
    top: 50%;
    right: 20px;
    width: 10px;
    height: 10px;
    line-height: 10px;
    transform: translateY(-50%) rotate(90deg);
    z-index:2;
}

.newsnav>ul>li>a{
    font-size: 14px;
    line-height: 1.5;
    color:#ffffff;
}

.newsnav>ul>li>.sub-nav{    
    width:240px;
    padding: 25px;
    background: #ffffff;
    position: absolute;
    top:67px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    z-index: 10;
    text-align: left;
}
.newsnav>ul>li:hover>.sub-nav{
    display: block;
}
.newsnav>ul>li>.sub-nav a{
    display: block;
    color:#797979;
    line-height: 41px;
    border-bottom: 1px solid #8b8b8b;
}
.newsnav>ul>li>.sub-nav a:hover{
    display: block;
    color: #cd1010;
    border-bottom: 1px solid #d12222;
}

.lists{
    display:flex;
    flex-wrap: nowrap;
    flex-direction: column;

} 
.lists li{
   width:100%;
   height: 206px;
   display: flex;
   background: #fafafa;
   margin-bottom: 21px;
}
.lists li img{
    width: 354px;
    height: 199px;
}
.lists li div.text{
    width:calc(995px - 70px);
    padding:40px 35px 40px;
}
.lists li div.text h3{ color:#2e2e2e; font-size: 24px; line-height: 35px; margin-bottom: 20px; }
.lists li div.text h3 a{ color:#2e2e2e;}
.lists li div.text p{ font-size:14px; color:#797979; }

.lists li:hover div.text h3 a{
    color: #ca0000;
}
.lists li div.time{ 
    width: 205px;
    color: #2e2e2e;
    padding-left:45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(/images/clock.png) no-repeat;
    background-size: 36px;
    position: relative;
}
.lists li div.time::before{ 
    content:'▶';
    position: absolute;
    top: 50%;
    right: 20px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    z-index:2;
}
.lists li div.time::after{
    content:'';
    width: 1px;
    height:166px;
    background: #e1e1e1;
    position: absolute;
    top: 20px;
    left: 1px;
    z-index: 2;
}
.lists li div.time span{
    display: block;
    font-size:18px;
}
.lists li div.time b{
    display: block;
    font-size:36px;
}
.lists li:hover div.time{ 
    color: #ca0000;
}



/* 媒体查询 */
@media screen and (max-width: 1538px) {
    
    .lists li img{height:207px; }
}

@media screen and (max-width: 1480px) {
    
    .lists li img{height:205px; }
}

@media screen and (max-width: 1366px) {
    
    .lists li img{height:205px;}
}

@media screen and (max-width: 1280px) {
    
    .lists li img{width:250px; height:205px;}
    .lists li div.time{
        width: 240px;
        padding-left: 20px;
    }

}

@media only screen and (max-width: 1024px) {
    .newsnav{
        margin-bottom: 10px;
    }
    .newsnav>ul>li::before{
        content:'';
        top:70%;
        right:50%;
        transform: translate(50%, -50%);
    }
    .newsnav>ul>li:hover::before{
        top:70%;
        right:50%;
        transform: translate(50%, -50%) rotate(90deg);
    }

   
    .lists li{
        width:100%; height:auto;
        display: flex;
        justify-content: space-between;
    }
    .lists li>a{ width:160px;}
    .lists li>a>img{width:100%; height:90px;}

    .lists li div.text {
        width: calc(100% - 250px);
        padding: 10px 10px 10px;
    }
    .lists li div.text h3{ 
        margin-bottom: 0;
        line-height: 1;
    }
    .lists li div.text h3 a{
        font-size: 0.6rem;
        line-height: 1;
    }

    .lists li div.time {
        width: 55px;
        height: 100px;
        padding-left: 10px;
    }
    .lists li div.time::before{
        top: 73%;
        right: 25px;
        width: 10px;
        height: 10px;
        transform: translateY(0%);
    }
    .lists li div.time::after {
        content: '';
        width: 1px;
        height: 80px;
        background: #e1e1e1;
        position: absolute;
        top: 10px;
        left: 1px;
        z-index: 2;
    }

    .lists li div.time b{
        font-size: 0.8rem;
    }
    .lists li div.time span{
        font-size: 0.6rem;
    }

}