@charset "utf-8";
body {
    background-color: #f5f5f5;
}




.list_box {
    display: flex;
    
    flex-wrap: wrap;
    padding-bottom: 20px;
}

.list_box_item {
    width: 30%;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 1%;
    margin-bottom: 45px;
    transition: all .4s;
}

.list_box_item:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .2);
}

.list_box_itemimg {
    position: relative;
    overflow: hidden;
}

.list_box_itemimgdw {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 18px;
    color: #000;
}

.list_box_itemimg img {
    width: 100%;
    transition: all .4s;
}

.list_box_itemtxt {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-top: 1px solid #d9d9d9;
}

.list_itemtxt_exp div {
    font-size: 15px;height:28px;line-height:28px;
    color: #555;
}
.list_itemtxt_exp span {   
    color: #aaa;
}

.list_itemtxt_icon i {
    font-size: 16px;
    color: #d54d7a;
}

.list_box_item:hover img {
    transform: scale(1.1);
}

@media screen and (max-width: 992px) {
    .list_box_item {
        width: 48.5%;
    }
    .list_box {
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 768px) {
    .list_box_item {
        width: 95%;
    }
}