@charset "utf-8";

/* CSS Document */
.wad_1 {
    max-width: 100%;
    margin: 0 0.2rem;
    display: flex;
    align-items: center;
}

.con_box {
    width: 100%;
    margin: 0 auto;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}

.content {
    position: relative;
    display: flex;
}

.img_list_box {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
    flex-wrap: wrap;
}

.list_slide {
    flex-shrink: 0;
    width: 50%;
    padding: 0.8%;
    position: relative;
    transition-property: transform;
    transition: all .5s ease-in-out;
}

.list_slide .item {
    position: relative;
    display: block;
    height: auto;
    transition: all .5s ease-in-out;
    background: #fff;
}
.list_slide .item:hover{
    box-shadow:  0 3px 5px rgb(0 0 0 / 10%);;
}
.list_slide .item .img_box {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    text-align: -webkit-center;
}

.list_slide .item .img_box .img img {
    display: block;
    width: 100%;
    min-height: 1.87rem;
    transform: scale(1);
    transition: all .5s ease-in-out;
}

.list_slide:hover .item .img_box .img img {
    transform: scale(1.05);
}

.list_slide .item .title {
    font-size: 0.28rem;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin: 0.15rem;
    color: #000;
    text-align: center;
}

.list_slide:hover .item:hover .title {
    color: #f8b62c;
    transition: all .5s ease-in-out;

}

.list_slide .item .more {
    font-size: 0.2rem;
    color: #787878;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.15rem 0.1rem;
    bottom: 0;
    width: 100%;
}