/* Index Page */
.page-index .index-section:not(.banner-section) {
    padding-top: 150px;
}

.page-index .index-section.product-section {
    padding-top: 160px;
}

.page-index .more-section {
    padding-bottom: 30px;
}

.page-index .index-section.product-section .goods_list_tit{
    padding: 0;
    border: 0;
}

@media (max-width: 767px) {
    .page-index .index-section:not(.banner-section) {
        padding-top: 60px;
    }

    .page-index .more-section {
        padding-bottom: 20px;
    }
}

.page-index .banner-section {
    position: relative;
}

.page-index .banner-section .banner-list {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.page-index .banner-section .banner-item {
    flex: 1 0 auto;
    position: relative;
    height: 100vh;
}

.page-index .banner-section .banner-item.type-image {
    background-color: #000;
}

.page-index .banner-section .banner-item > a:not(.video-wrapper) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.page-index .banner-section .banner-item a .banner-title,
.page-index .banner-section .banner-item a .banner-desc {
    transition: color 0.3s;
}

.page-index .banner-section .banner-item a.text-white {
    color: var(--white);
}

.page-index .banner-section .banner-item a.text-black {
    color: var(--black);
}

.page-index .banner-section .banner-item a .banner-desc {
    position: absolute;
    width: 100%;
    bottom: 52px;
    padding: 0 16px;
}

.page-index .banner-section .banner-item .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 0.3s;
}

.page-index .banner-section .banner-item .video-wrapper{
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 0;
    display: block;
}

.page-index .banner-section .banner-item .video-wrapper iframe, .page-index .banner-section .banner-item .video-wrapper .video-bg-image-wrapper, .iframe-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.iframe-overlay{
    z-index: 3;
}

.video-bg-image-wrapper{
    z-index: 2;
}

.video-bg-image-wrapper img, .video-bg-image-wrapper a{
    display: block;
    width: 100%;
}

.video-bg-image-wrapper.mo{
    display: none;
}

@media (max-width: 767px) {
    .video-bg-image-wrapper.mo{
        display: block;
    }

    .video-bg-image-wrapper.pc{
        display: none;
    }

    .page-index .banner-section .banner-list {
        height: 90vh;
        flex-direction: column-reverse;
    }

    .page-index .banner-section .banner-item {
        height: auto;
    }

    .page-index .banner-section .banner-item:first-child {
        flex: 1 0 auto;
    }

    .page-index .banner-section .banner-item:nth-child(1) {
        flex: 0 0 calc(50% - 30px);
    }

    .page-index .banner-section .banner-item a .banner-desc {
        bottom: 20px;
    }

    .page-index .banner-section .banner-item .banner-bg {
        opacity: 0.7;
    }

    .page-index .banner-section .banner-item .video-wrapper{
        padding-bottom: 177.86666666666667%;
    }
}

.page-index .more-section .more-title {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 40px;
}

.page-index .more-section .more-item {
    align-items: center;
    border-bottom: 1px solid #000;
    transition: color 0.3s;
    cursor: pointer;
}

.page-index .more-section .more-item:last-child {
    border-bottom: none;
}

.page-index .more-section .more-item .title,
.page-index .more-section .more-item .desc {
    padding: 40px 20px;
    color: #000;
}

.page-index .more-section .more-item *{
    transition: color 0.3s;
}

.page-index .more-section .more-item:hover *{
    color: #fff;
}

@media (hover: hover) {
    .page-index .more-section .more-item:hover {
        color: #fff;
    }
}

@media (max-width: 767px) {
    .page-index .more-section .more-title {
        font-size: 20px;
        line-height: 24px;
    }

    .page-index .more-section .more-item .title {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .page-index .more-section .more-item .desc {
        padding-top: 0;
        padding-bottom: 20px;
    }
}

.page-index .product-list ul li {
    width: 25% !important;
}

.goods_text_card a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0;
    padding-bottom: 100%;
    background-color: var(--green-1);
}

.goods_text_card a .inner {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px;
}

.goods_text_card a .icon {
    width: 35px;
    height: 35px;
    background-image: url('../images/icon_seasonal_banner_arrow.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    transition: all 0.3s;
}

.goods_text_card p {
    font-size: var(--body-font-size);
    line-height: var(--body-line-height);
    margin-top: 10px;
    transition: all 0.3s;
}

.goods_text_card a:hover .icon{
    -webkit-filter: invert(100%); /* Safari/Chrome */
    filter: invert(100%);
}

.goods_text_card a:hover p{
    color: #fff;
}

@media (max-width: 767px) {
    .page-index .product-list ul li {
        width: 50% !important;
    }

    .goods_text_card a:hover{
        color: #000;
    }

    .goods_text_card a:hover .icon{
        -webkit-filter: none; /* Safari/Chrome */
        filter: none;
    }
    
    .goods_text_card a:hover p{
        color: #000;
    }
    
}

.page-index .review-item-wrap {
    height: auto;
}

.page-index .review-item .star {
    position: relative;
    width: 110px;
    height: 20px;
    background-image: url('../images/icon_rating_off.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    margin-bottom: 10px;
}

.page-index .review-item .star-bg {
    width: 128px;
    height: 20px;
    background-image: url('../images/icon_rating_on.png');
    background-size: auto 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 767px) {
    #swiper-review {
        width: 100%;
        margin-left: 0;
        overflow: scroll;
    }

    #swiper-review::-webkit-scrollbar{
        display: none;
    }

    #swiper-review .review-item-wrap{
        width: 80%;
    }
}

#scroll_right {
    display: none !important;
}

.page-index .review-section .section-title {
	border-bottom: 1px solid #000 !important;
	margin-bottom: 0.8rem;
}