@charset "utf-8";
body {
    background-color: #f5f5f5;
}


/* 
.list_tab {
    padding: 80px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_tab .list_tab_item {
    width: 8%;
    height: 62px;
    line-height: 62px;
    text-align: center;
    border-radius: 31px;
    background-color: #efefef;
    font-size: 16px;
    color: #777;
    margin: 0 8px;
    transition: all .4s;
}

.list_tab .list_tab_item.on {
    background: linear-gradient(to right, #f2a973, #d64e7a);
    color: #fff;
}

.list_tab .list_tab_item:hover {
    background: linear-gradient(to right, #f2a973, #d64e7a);
    color: #fff;
} */

.list_box {
    display: flex;
    /* justify-content: space-around; */
    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: 14px;
    color: #777;
}

.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%;
    }
}