/* banner */
.image_container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* height: calc(100vh - 109px); */
    object-fit: cover;
}

.banner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease-in-out;
    -webkit-animation: kenburns-top 3s ease-out both;
    animation: kenburns-top 3s ease-out both;
}

@keyframes kenburns-top {
    0% {
        -webkit-transform: scale(1) translateY(0);
        transform: scale(1) translateY(0);
        -webkit-transform-origin: 50% 16%;
        transform-origin: 50% 16%;
    }

    100% {
        -webkit-transform: scale(1.06) translateY(-15px);
        transform: scale(1.06) translateY(-15px);
        -webkit-transform-origin: top;
        transform-origin: top;
    }
}

/* 周边 */
.periphery_container {
    overflow: hidden;
    background-color: #F8F8F8;
}

/* 导航栏 */
.periphery_container {
    box-sizing: border-box;
    padding: 0 20px;
}

.ul_div {
    box-sizing: border-box;
    padding: 0 20px;
    border-bottom: 1px solid rgb(199, 197, 197);
    display: flex;
    align-items: center;
}

.active_txt::after {
    position: absolute;
    top: 92px;
    display: block;
    content: "";
    width: 100%;
    height: 8px;
    border-radius: 2px;
    background-color: #D80C24;
}

.jt_icon {
    display: block;
    width: 22px;
    height: 30px;
}

.tab_ul {
    display: flex;
    overflow-x: auto;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    padding: 70px 0;
    margin: 0 30px;

}

.tab_ul::-webkit-scrollbar {
    display: none;
}


.tab_li {
    display: block;
    width: 300px;
    margin: 0 20px;
    font-size: 30px;
    position: relative;
    color: #CCC;
}



.active_txt {
    color: rgba(216, 12, 36, 1);
}



.commodity_list {
    width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
}



.commodity_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0px 0px 0px 0px;
    overflow: hidden;

}

.img_a {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease-in-out;
    animation-name: appear;
    animation-duration: 0.7s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    background-color: #fff;
    min-height: 400px;

}

.sp_img {
    display: block;
    width: 100%;
    object-fit: cover;
    animation-name: appear;
    animation-duration: 1.7s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes appear {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.app_img {
    position: absolute;
    bottom: 7px;
    right: 5px;
    width: 165px;
    object-fit: contain;
}
.shopping_container {
    position: relative;
    height: 200px;
}

.information {
    width: 280px;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-family: Source Han Sans CN;
    font-size: 26px;
    font-weight: 400;
    text-align: center;
}

.view_more {
    position: absolute;
    top: 30px;
    right: 15px;
    width: 142.737px;
    height: 46.389px;
    line-height: 50px;
    font-size: 18px;
    display: block;
    font-weight: bold;
    color: rgba(216, 12, 36, 1);
    border: 1px solid rgba(216, 12, 36, 1);
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
    border-radius: 5px;

}

.view_more:hover {
    animation: box-shadow-drop-bottom 0.6s both;
    color: #ffffff;
    background-color: rgba(216, 12, 36, 1);
}

@-webkit-keyframes box-shadow-drop-bottom {
    0% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }
}

@keyframes box-shadow-drop-bottom {
    0% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }
}

.more {
    width: 200px;
    height: 65px;
    line-height: 65px;
    font-size: 18px;
    display: block;
    font-weight: bold;
    color: rgba(216, 12, 36, 1);
    border: 1px solid rgba(216, 12, 36, 1);
    margin: 80px auto 60px auto;
    text-align: center;
    transition: all 0.6s;
    cursor: pointer;
    border-radius: 5px;

}

.more:hover {
    animation: box-shadow-drop-bottom 0.6s both;
    color: #ffffff;
    background-color: rgba(216, 12, 36, 1);
}

@-webkit-keyframes box-shadow-drop-bottom {
    0% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }
}

@keyframes box-shadow-drop-bottom {
    0% {
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    }
}

.empty {
    font-size: 18px;
    display: block;
    font-weight: bold;
    color: rgba(216, 12, 36, 1);
    margin: 80px auto 60px auto;
    text-align: center;
}