@charset "utf-8";
.banner{
    width: 100%;
    height: 350px;
    background: url(../images/news_ban.png) no-repeat center center;
    background-size: cover;
    position: relative;
    margin-top: 80px;
    margin-bottom: 74px;
}
.list:after{
    content: "";
    display: block;
    width: 384px;
    height: 0;
}
.list li{
    position: relative;
    overflow: hidden;
    width: 384px;
    height: 360px;
    background: #FFFFFF;
    border-radius: 4px;
    margin-bottom: 60px;
}
.list li:after{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(26,181,255,0.15);
    border-radius: 2px;
    position: absolute;
    z-index: 20;
    left: 0;
    bottom: 0;
    transition: all .3s;
}
.list li:hover:after{
    background: #1AB5FF;
}
.page a,.page span{
    display: block;
    height: 32px;
    line-height: 32px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    text-align: center;
    padding: 0 12px;
    border-radius: 6px;
    font-size: 14px;
    transition: all .3s;
    -webkit-transition: all .3s;
    margin: 0 5px;
}
.page a{
    border: 1px solid #ddd;
    color: #666666;
    background: #fff;
}
.page span,.page a:hover{
    color: #fff;
    background: #1AB5FF;
    border-color: #1AB5FF;
}