@charset "utf-8";

/* CSS Document */
.wad_1 {
    max-width: 14rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background-size: contain;
}

.con_box {
    width: 100% !important;
    max-width: 14rem;
    margin: 0 auto;
}

.content {
    position: relative;
    display: flex;
}




.list_box{
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    min-height: 6.5rem;
}
.list_box .item{
    position: relative;
}
.list_box .item .red_hover{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 0.3rem;
    margin-bottom: 0.15rem;
    box-shadow: 0px 2px 20px 0px rgb(0 0 0 / 8%);
}
.list_box .item .red_hover .title{
    font-size: 0.18rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #333;
    max-width: 7.8rem;
}
.list_box .item .red_hover .date{
    font-size: 0.16rem;
    color: #707070;
}
.list_box .item .red_hover::after{
    content: '';
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 0;
    left: 0;
    background: #ac0000ed;
    transition: all 0.5s ease-out 0s;
    
}
.list_box .item .red_hover:hover::after{
    width: 100%;
}<!--0.00017881393432617-->