/* .con_left{
    float: left;
    width: 20%;
    padding: 0 0 .5rem .5rem;
} */
.con_left ul{
    display: flex;
    justify-content: space-around;
    padding:0 0 .6rem;
}
.con_title{
    font-size:.35rem;
    font-family:Microsoft YaHei;
    font-weight:bold;
    color:rgba(13,33,70,1);
    text-align: center;
}
.con_tab{
    text-align: center;
    font-size: 0.18rem;
    color: #0D2146;
    cursor: pointer;
    height: .5rem;
    width: 20%;
    border-radius: .5rem;
    background: #F8F8F8;
    line-height: .5rem;
}
.con_right{
    display: flex;
    flex-wrap: wrap;
}
.msg_title{
    font-size: 0.16rem;
    color: #666666;
    border-bottom: .01rem dashed #cccccc;
}
.con_msg{
    display: none;
    /* padding: 0 .3rem .5rem .1rem; */
}
.on{
    background-color: #345eda;
    color: #fff;
}
.con-active{
    display: block;
}

.new_item{
    width: 23.5%;
    height:3.06rem;
    margin: 0 1.5% 3.5% 0;
    text-align: center;
    border: .01rem solid  #eeeeee;
    cursor: pointer;
    box-shadow:0px 6px 20px rgba(15,62,142,0.1);
    border-radius:10px;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transition: all 1.5s; 
    overflow: hidden;
}
.new_item:hover{
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    transition: all 1.5s; 
}
.new_item:hover .new_msg{
    background: #345eda;
}
.new_item:hover .new_title{
    color: #fff;
}
.new_item:hover div{
    color: #fff;
}
/* .new_cover{
    float: left;
    width: 28%;
} */
.new_cover img{
    width: 100%;
    height: 100%;
    border-radius: 10px 10px 0 0;
}
.new_cover{
    height: 50%;
}
.new_msg{
    height: 50%;
    padding: .1rem;
    box-sizing: border-box;
}
.new_title{
    font-size: 20px;
    color: #0D2146;
    text-overflow:ellipsis;
    white-space:nowrap;
    overflow: hidden;
    font-weight: bold;
    text-align: left;
}
.new_time{
    font-size: 16px;
    color: #747C8F;
    text-align: left;
}
.new_shortDes {
    margin-top: 0.05rem;
    font-size: 14px;
    color: #747C8F;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp:3;
    word-break:break-all;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    text-align: left;
}
@media (max-width: 1222px){
    .new_item{
        align-items: center;
        width: 30%;
        margin: 0 1.5% .5rem;
        border: 1px solid #eee;
        border-radius: 0.2rem;
    }
}
@media (max-width: 768px) {
    .new_item{
        width: 47%;
        margin: 0 1.5% .5rem ;
    }
    .new_title{
        font-size: 18px;
    }
    .con_tab{
        width: 25%;
    }
    .new_time{
        font-size: 14px;
    }
    
}
@media (max-width: 550px){
    .new_shortDes{
        -webkit-line-clamp:2;
        }
}
@media (max-width: 414px) {
    .new_shortDes{
        -webkit-line-clamp : 2;
    }
    .new_time{
        font-size: 12px;
    }
    .new_shortDes{
        -webkit-line-clamp:2;
        font-size: 12px;
        }
        .new_title{
            font-size: 14px;
        }
}