.news-list{
    padding: 80px 0;
}

.news-list .news-content{
    position: relative;
}

.news-list .news-list-title{
    text-align: center;
}

.news-list .news-list-title h3{
    font-size: 32px;
    line-height: 48px;
    font-weight: 700;
    color: #33333D;
    margin: 0;
}

.news-list .news-list-title p{
    font-size: 18px;
    margin-top: 10px;
    line-height: 26px;
    font-weight: 400;
    color: #666670;
}

.news-list .news-list-title span{
    display: inline-block;
    width: 80px;
    height: 2px;
    background-color: #3377FF;
    margin-top: 20px;
}

.news-list .news-nav{
    position: absolute;
    top: 0;
    left: 0;
    padding: 2px;
    content: '';
    background-color: #fff;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-left: -230px;
}

.news-list .news-nav li{
    text-align: center;
    margin-top: 2px;
    border-radius: 4px;
}

.news-list .news-nav li:first-child{
    background-color: #EEEEF8;
    border-radius: 8px 8px 4px 4px;
    margin-top: 0;
}

.news-list .news-nav li:first-child a{
    height: 52px;
    line-height: 52px;
    color: #3377FF;
    font-size: 20px;
    font-weight: 700;
}

.news-list .news-nav li a{
    width: 166px;
    height: 44px;
    line-height: 44px;
    display: block;
    font-size: 16px;
    color: #666;
}

.news-list .news-nav li.active a,
.news-list .news-nav li:hover a{
    background-color: #3377FF;
    border-radius: 4px;
    color: #fff;
    font-weight: 700;
}

.news-list .news-nav li:first-child.active a,
.news-list .news-nav li:first-child:hover a{
    border-radius: 8px 8px 4px 4px;
    background-color: #EEEEF8;
    color: #3377FF;
}

.news-wrap{
    margin-top: 40px;
}

.news-wrap .news-items{
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.news-wrap .news-items .news-image{
    overflow: hidden;
}

.news-wrap .news-items .news-image img{
    transition: all 0.5s;
}

.news-wrap .news-article{
    padding: 20px;
}

.news-wrap .news-article h3{
    font-size: 20px;
    line-height: 26px;
    margin: 0;
    color: #333;
    font-weight: 500;
}

.news-wrap .news-article .news-date{
    margin-top: 16px;
}

.news-wrap .news-article .news-date p:first-child{
    float: left;
}

.news-wrap .news-article .news-date p{
    font-size: 16px;
    line-height: 26px;
    float: right;
    color: #666;
}

.news-wrap .news-items:hover{
    box-shadow: 0px 0px 70px rgba(55, 72, 133, 0.2), 0px 0px 10px rgba(0, 0, 0, 0.05);
}

.news-wrap .news-items:hover img{
    transform: scale(1.1);
}

.news-wrap .news-items:hover h3{
    color: #3377FF;
}

@media (max-width: 992px) {
    .news-list{
        padding: 60px 0;
    }
    .news-list .news-list-title h3{
        font-size: 22px;
        line-height: 1.6;
    }
    .news-list .news-list-title p{
        font-size: 16px;
        line-height: 1.6;
    }

    .news-list .news-list-title span{
        margin-top: 10px;
    }

    .position{
        float: left;
    }

    .position-wrap{
        float: left;
    }

    .list-type{
        float: right;
    }
    .list-type p{
        font-size: 16px;
        color: rgba(51,119,255,1);
    }

    .action-sheet{
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        display: none;
        background: #fff;
        width: 100%;
        position: fixed;
        bottom: 0;
        z-index: 11111;
        left: 0;
        padding: 15px 0;
    }
    .action-sheet ul li{
        margin: 0 20px;
        color: #333;
        font-weight: 700;
        font-size: 18px;
        height: 42px;
        text-align: center;
        line-height: 42px;
        border-top: 1px solid #eee;
        overflow: hidden;
    }

    .action-sheet ul li.active a{
        color: #3377FF;
    }

    .action-sheet ul li:first-child{
        border-top: none;
    }
    .scroll-mask{
        height: 100%;
        overflow:scroll;
        overflow-y:hidden;
    }
    .mask{
        position: absolute;
        top: 0;
        display: none;
        height:100vh;
        background: rgba(0,0,0,0.4);
        z-index: 9999;
        width: 100%;
        left: 0;
    }
}