.shop01-template-02 {
    position: relative;
    display: block;
    overflow: hidden;
}

.shop01-template-02::after {
    content: "";
    display: block;
    clear: both;
}

.shop01-template-02 > .bg {
    width: 50%;
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.shop01-template-02 .shop01-template-02__swiper {
    width: 100%;
    display: block;
    position: relative;
    overflow: visible;
}

.shop01-template-02.show::after {
    height: 100%;
    transition: all 1.2s ease;
}

.shop01-template-02 .container {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
}

.shop01-template-02 .swiper-slide {
    /* opacity: 0;
    visibility: hidden; */
}

.shop01-template-02 .swiper-slide.swiper-slide-active {
    opacity: 1;
    visibility: visible;
}

.shop01-template-02 .slide-img-box {
    position: relative;
    display: block;
    align-items: center;
    width: 100%;
    padding-top: 0;
}

.shop01-template-02 .slide-img-box .imgs {
    position: relative;
    display: block;
    z-index: 5;
    height: 47vw;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
    left: 0;
    top: 0;
    transform: scale(1.1);
    transition: all 0.6s ease;
}

.shop01-template-02 .swiper-slide-active .slide-img-box .imgs {
    transform: scale(1.01);
    transition: all 1s ease;
}

.shop01-template-02 .slide-img-box .img {
    opacity: none;
}

.shop01-template-02.show .slide-img-box .imgs .img {
    /* opacity: 1; */
}

.shop01-template-02 .swiper-slide .slide-img-box .box {
    position: relative;
    display: block;
    width: 100%;
}

.shop01-template-02 .slide-img-box .main_txt {
    color: white;
    position: absolute;
    display: block;
    z-index: 5;
    width: 85%;
    max-width: 1400px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.shop01-template-02 .slide-img-box .main_txt .type {
    font-size: 1vw;
    font-weight: bold;
    position: relative;
    padding-left: 6px;
    margin-bottom: 2vw;
    transform: translateY(50px);
    transition: all 1.2s ease;
    opacity: 0;
}

.shop01-template-02 .swiper-slide-active .slide-img-box .main_txt .type {
    opacity: 1;
    transform: translateY(0);
}

.shop01-template-02 .slide-img-box .main_txt .title {
    font-size: 7vw;
    letter-spacing: 2px;
    line-height: 7vw;
    margin-top: 35px;
    position: relative;
    font-family: "Lexend Deca", "Microsoft JhengHei", sans-serif;
    color: #ff0000;
    transform: translateY(50px);
    transition: all 1.2s ease 0.5s;
    opacity: 0;
    font-weight: bold;
}

.shop01-template-02 .swiper-slide-active .slide-img-box .main_txt .title {
    opacity: 1;
    transform: translateY(0);
}

.shop01-template-02 .shop01-template-02__swiper-bottom {
}

.shop01-template-02 .shop01-template-02__swiper-pagination {
    position: absolute;
    top: 50%;
    right: 5%;
    z-index: 20;
    margin-left: 0;
    font-size: 15px;
    letter-spacing: 2px;
    width: 20px;
    left: auto;
    display: block;
    height: auto;
    bottom: auto;
    transform: translateY(-50%);
    /* opacity: 0;
    transform: translateY(10px); */
}

.shop01-template-02.show .shop01-template-02__swiper-pagination {
    transition: all 0.8s ease 1.5s;
    opacity: 1;
    transform: translateY(0);
}

.shop01-template-02 .shop01-template-02__swiper-pagination .swiper-pagination-bullet {
    border: 1px solid white;
    width: 10px;
    height: 10px;
    background-color: transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
    margin: 30px auto;
    position: relative;
    display: block;
}

.shop01-template-02 .shop01-template-02__swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ff0000;
    border-color: #ff0000;
    opacity: 1;
}

.shop01-template-02 .scroll {
    position: absolute;
    z-index: 10;
    color: white;
    height: 120px;
    cursor: pointer;
    font-weight: bold;
    left: 2vw;
    bottom: 5vw;
    transform: translateY(0);
    transition: all 1s ease 1.5s;
}

.shop01-template-02.show .scroll {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.shop01-template-02 .scroll i {
    content: "";
    display: block;
    margin: 0 auto 3px;
    width: 1px;
    position: relative;
    top: 55px;
    left: -2px;
    height: 60px;
    background: #909090;
    -webkit-animation: draw 2s linear infinite;
    animation: draw 2s linear infinite;
}

@-webkit-keyframes draw {
    0%,
    to {
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
    49.9% {
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    50% {
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    99.9% {
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@keyframes draw {
    0%,
    to {
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
    49.9% {
        -webkit-transform-origin: 50% 0;
        transform-origin: 50% 0;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    50% {
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }
    99.9% {
        -webkit-transform-origin: 50% 100%;
        transform-origin: 50% 100%;
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

.shop01-template-02 .scroll .scroll-text {
    font-size: 16px;
    color: #ff0000;
    font-family: "Lexend Deca", sans-serif;
    position: relative;
    transform: rotate(-90deg);
}

.shop01-template-02 .thumbs_box {
    width: 85%;
    max-width: 1400px;
    position: absolute;
    z-index: 50;
    bottom: 4vw;
    color: white;
    transform: translateX(-50%);
    left: 50%;
}

.shop01-template-02 .shop01-template-02-thumbs {
    border-bottom: 1px solid #ff0f17;
    width: 1150px;
    margin-left: 0;
    padding-bottom: 4vw;
    transition: all 0.8s ease 0.8s;
    transform: translateY(50px);
    opacity: 0;
}

.shop01-template-02 .shop01-template-02-thumbs.show {
    transform: translateY(0);
    opacity: 1;
}

.shop01-template-02-thumbs .swiper-slide {
    cursor: pointer;
}

.shop01-template-02-thumbs .main_txt {
    font-family: "Lexend Deca", "Microsoft JhengHei", sans-serif;
    position: relative;
    display: block;
}

.shop01-template-02-thumbs .main_txt::after {
    content: "";
    background-color: white;
    position: absolute;
    left: 0;
    width: 0%;
    bottom: -6px;
    height: 1px;
    transition: all 0.5s ease;
}

.shop01-template-02-thumbs .swiper-slide-thumb-active .main_txt::after {
    width: 100%;
}

.shop01-template-02-thumbs .main_txt .num {
    font-size: 18px;
}

.shop01-template-02-thumbs .main_txt .type {
    font-size: 20px;
    font-weight: bold;
}

@media (max-width: 1650px) {
    .shop01-template-02 .slide-img-box .main_txt .title {
        font-size: 5vw;
        letter-spacing: 2px;
        line-height: 5vw;
        margin-top: 15px;
    }
    .shop01-template-02 .slide-img-box .main_txt .type {
        font-size: 14px;
    }
    .shop01-template-02 .scroll {
        left: 0;
    }
}

@media (min-width: 1199px) {
    .shop01-template-02 .video_link:hover {
        background-color: #f2583b;
        border-color: #f2583b;
    }
    .shop01-template-02 .video_link:hover span {
        border-color: transparent transparent transparent #fff;
    }
}

/*pad*/

@media (max-width: 1200px) {
    .shop01-template-02 .shop01-template-02-thumbs {
        width: 95%;
    }
    .shop01-template-02 .scroll .scroll-text {
    }
    .shop01-template-02 .scroll {
        left: 0;
        transform: translateX(-15px) scale(0.8);
        bottom: 22px;
    }
    .shop01-template-02-thumbs .main_txt .type {
        font-size: 16px;
        font-weight: bold;
    }
    .shop01-template-02-thumbs .main_txt .num {
        font-size: 14px;
    }
    .shop01-template-02 .slide-img-box .imgs {
        height: 100%;
    }
}

@media (max-width: 1000px) {
    .shop01-template-02 .scroll {
        display: none;
    }
    .shop01-template-02 .thumbs_box {
        width: 90%;
        left: 5%;
        transform: none;
    }
    .shop01-template-02 .slide-img-box .main_txt {
        transform: translateY(-50%);
        left: 5%;
    }
}

@media (max-width: 700px) {
    .shop01-template-02 .scroll {
        height: 29px;
        left: 50%;
        transform: translateX(-50%);
        display: block;
    }
    .shop01-template-02 .scroll .scroll-text {
        transform: scale(1);
        color: white;
        font-size: 14px;
    }
    .shop01-template-02 .scroll i {
        top: 3px;
        height: 20px;
    }
    .shop01-template-02 .thumbs_box {
        bottom: 75px;
    }
    .shop01-template-02 .slide-img-box .main_txt {
        transform: translateY(-50%);
        left: 5%;
        position: absolute;
        bottom: 100px;
        top: auto;
    }
    .shop01-template-02 .slide-img-box .imgs {
        display: block;
        width: 100%;
        background-repeat: no-repeat;
        /* height: 100vh; */
        height: auto;
        background-size: cover;
        background-position: center;
    }
    .shop01-template-02-thumbs .main_txt .type {
        font-size: 16px;
    }
    .shop01-template-02-thumbs .swiper-slide {
        width: 100px;
    }
    .shop01-template-02 .shop01-template-02-thumbs {
        width: 100%;
    }
    .shop01-template-02 .shop01-template-02__swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 20px auto;
    }
    .shop01-template-02 .slide-img-box .main_txt .title {
        font-size: 40px;
        letter-spacing: 2px;
        line-height: 45px;
        margin-top: 15px;
        font-weight: bold;
    }
    .shop01-template-02 .slide-img-box .main_txt .type {
        font-size: 14px;
        padding-left: 0;
        margin-bottom: 0;
    }
}

/* 額外影片 */
.shop01-template-02 .slide-img-box .video-first {
    position: absolute;
    display: block;
    z-index: 5;
    height: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100%;
    left: 0;
    top: 0;
    transform: scale(1.1);
    transition: all 0.6s ease;
    display: none;
}

.shop01-template-02 .slide-img-box .video-first .shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.shop01-template-02 .slide-img-box .video-first video {
    position: relative;
    width: 100%;
    object-fit: cover;
    top: 0;
    z-index: -1;
    height: 56.6vw;
    min-height: 400px;
}
