

.banner .banner_cont{
    margin-bottom: 1.4rem;
}






.list_body{
    padding-top: 1rem;
}
.list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}
.list .list_item{
    width: 48%;
    margin-bottom: 3%;
    box-sizing: border-box;
    padding: 2.5% 3%;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.list .list_item::before {
    content: "";
    position: absolute;
    lefT: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #E8E8E8;
}

.list .list_item:hover::before {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border: 3px solid #02468D;
    box-shadow: 0 0 5px 5px #EBEBEB;
}


.list .list_item .list_icon{
    width: 0.72rem;
    height: 0.72rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.list .list_item .list_icon img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}
.list .list_item .list_fl{
    width: calc(100% - 1rem);
} 
.list .list_item .list_fl .list_title{
    font-size: 0.24rem;
    line-height: 1.4;
    margin-bottom: 5%;
}
.list .list_item .list_fl .list_txt{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.list .list_item .list_fl .list_txt .list_time{
    display: flex;
    align-items: center;
    font-size: 12px;
}
.list .list_item .list_fl .list_txt .list_time i{
    width: 16px;
    height: 16px;
    display: block;
    background: url(../img/time.png) center no-repeat;
    background-size: contain;
    margin-right: 10px;
}
.list .list_item .list_fl .list_txt .list_size{
    float: right;
    padding: 0 15px;
    height: 24px;
    line-height: 24px;
    color: #fff;
    border-radius: 15px;
    background: #666666;
    font-size: 0.16rem;
}









@media only screen and (max-width: 1042px) {
    .list_body{
        padding-top: 80px;
    }
    .list .list_item .list_icon{
        width: 40px;
        height: 40px;
    }
    .list .list_item .list_fl {
        width: calc(100% - 50px);
    }
    .list .list_item .list_fl .list_title{
        font-size: 20px;
    }
    .list .list_item .list_fl .list_txt .list_size{
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .list .list_item{
        width: 100%;
        margin-bottom: 20px;
    }

    .list .list_item .list_icon{
        width: 24px;
        height: 24px;
    }
    .list .list_item .list_fl{
        width: calc(100% - 30px);
    }
    .list .list_item .list_fl .list_title{
        font-size: 16px;
        line-height: 1.8;
    }
    .list .list_item .list_fl .list_txt .list_size{
        font-size: 12px;
    }
}