@charset "utf-8";

/* CSS Document */
.wad_1 {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.con_box {
    width: 14.66rem;
    margin: 0 auto;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}

.content {
    position: relative;
    display: flex;
}

.list_box {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
}
.list_box .item {
    position: relative;
}
.list_box .item .red_hover {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.img_box {
    width: 2.8rem;
    height: 1.88rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
}
.img_box img {
    display: block;
    width: auto;
    height: 100%;
    transition: all 0.2s ease-in-out;
}
.list_box .item:hover .red_hover .img_box img{
    transform: scale(1.05);
    transition: all 0.2s ease-in-out;
}

.list_box .item .red_hover .con_1 {
    padding-left: 0.35rem;
    width: 80%;
}
.list_box .item .red_hover .title {
    font-size: 0.26rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #000;
    margin: 0.3rem 0;
    transition: all 0.2s ease-in-out;
}
.list_box .item:hover .red_hover .title {
    color: #004077;
    transition: all 0.2s ease-in-out;
}
.list_box .item .red_hover .text_box {
    font-size: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 0.24rem;
    color: #787878;
    margin: 0.3rem 0;
    min-height: 0.48rem;
}
.list_box .item .red_hover .date {
    font-size: 0.2rem;
    color: #707070;
    margin: 0.3rem 0;
}