
.section2{
    width: 100%;
    height: 70px;
    background: #F5F5F5;
}
.section2 .sec2-warp{
    width: 1480px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.section2 .sec2-warp .left{
    display: flex;
    height: 100%;
    align-items: center;
}
.section2 .sec2-warp .left p{
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    height: 100%;
    width: 120px;
    text-align: center;
    line-height: 70px;
    cursor: pointer;
    transition: 0.6s;
    position: relative;
}
.section2 .sec2-warp .left p:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0D6C96;
    transition: 0.6s;
}
.section2 .sec2-warp .left p.sel{
    color: #0D6C96;
}
.section2 .sec2-warp .left p.sel:after{
    width: 100%;
}
.section2 .sec2-warp .left p:hover{
    color: #0D6C96;
}
.section2 .sec2-warp .left p:hover:after{
    width: 100%;
}
.section2 .sec2-warp .left span{
    width: 1px;
    height: 18px;
    background: #CCCCCC;
    margin: 0px 42px;
}
.section2 .sec2-warp .right{
    display: flex;
}
.section2 .sec2-warp .right i{
    color: #0D6C96;
}
.section2 .sec2-warp .right p{
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin: 0px 5px;
}
.section3{
    width: 100%;
    overflow: hidden;
    background: white;
    height: auto;
}
.sec3-warp{
    width: 1480px;
    margin:60px auto;
}
.sec3-warp .news-ab{
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E6E6E6;
}
.sec3-warp .news-ab:hover .data span,.sec3-warp .news-ab:hover .data p,.sec3-warp .news-ab:hover .nr span{
    color: #0D6C96;
}
.sec3-warp .news-ab:hover .img img{
    transform: scale(1.1);
}
.sec3-warp .news-ab .data span{
    font-size: 50px;
    font-weight: bold;
    color: #CCCCCC;
    transition: 0.6s;
}
.sec3-warp .news-ab .data p{
    font-size: 14px;
    font-weight: normal;
    color: #CCCCCC;
    transition: 0.6s;
}
.sec3-warp .news-ab .nr{
    width: 880px;
}
.sec3-warp .news-ab .nr span{
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    transition: 0.6s;
}
.sec3-warp .news-ab .nr p{
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    margin-top: 21px;
    transition: 0.6s;
}
.sec3-warp .news-ab .img{
    width: 360px;
    height: 218px;
    overflow: hidden;
}
.sec3-warp .news-ab .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s;
}
.sec3-warp .page{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}
.sec3-warp .page a{
    display: block;
    width: 36px;
    height: 36px;
    background: #E6E6E6;
    border-radius: 3px;
    text-align: center;
    line-height: 36px;
    margin: 0px 9px;

    font-size: 16px;
    font-weight: 400;
    color: #9A9A9A;
    transition: 0.6s;
}
.sec3-warp .page a.on{
    background: #0D6C96;
    color: white;
}
.sec3-warp .page a:hover{
    background: #0D6C96;
    color: white;
}

@media screen and (max-width: 1366px){
    .section2 .sec2-warp {
        width: 92%;
    }
    .sec3-warp {
        width: 92%;
    }
    .sec3-warp .news-ab .nr {
        width: 64%;
    }
    .sec3-warp .news-ab .img {
        width: 26%;
    }
}


@media screen and (max-width: 768px) {
    .section2 .sec2-warp {
        width: 90%;
    }
    .section2 .sec2-warp .left {
        margin: auto;
    }
    .section2 .sec2-warp .right {
        display: none;
    }
    .sec3-warp {
        width: 92%;
    }
    .sec3-warp .news-ab {
        flex-direction: column;
        padding-bottom: 20px;
        height: auto;
    }
    .sec3-warp .news-ab .data{
        margin-bottom: 20px;
    }
    .sec3-warp .news-ab .data span {
        font-size: 40px;
    }
    .sec3-warp .news-ab .nr {
        width: 90%;
        margin: auto 30px;
    }
    .sec3-warp .news-ab .img {
        width: 360px;
        transform: scale(0.8);
        margin-top: 20px;
    }
}



