.main_station{
    width: 100%;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
    /* aspect-ratio: 16/9; */
    /* background: #000; */
    /* height: 100vh; */
    background:  rgba(0, 0, 0, 0.50);
    max-height:100vh;
    /* max-height: 800px; */
    position: relative;
    overflow: hidden;
}


.main_station video{
    aspect-ratio: 16/9;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
    object-fit: cover;
}
.hero_txt{
    color: #fff;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.hero_txt>span{
    font-size: 24px;
    color: #E8EEF2;
    line-height: 1.4;
}
.hero_txt>span b{
    font-weight: 600;
}
.hero_txt em{
    font-size: 48px;
    font-weight: 800;
}
.hero_box{
    border-radius: 16px;
    background: rgba(134, 88, 255, 0.70);
    padding: 20px 50px;
    font-size: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
}
.hero_line{
    display: inline-block;
    height: 0.5px;
    width: 100%;
    max-width: 316px;
    background: #ffffff3c;
}
.scroll_wrap{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}
.scroll_wrap svg{
    width: 48px;
    height: 48px;
    fill: #fff;
    animation: scroll 1.5s infinite;
}
@keyframes scroll {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}
/* tit_ani */
.tit_ani {
    transform: translateX(-50%);
    display: block;
    float: left;
    left: 50%;
    position: relative;
}
.tit_ani span {
    display: block;
    float: left;
    min-width: 10px;
    min-height: 10px;
    position: relative;
}
/* .main_station video{width: 100%;height: 100%;
object-fit: cover;} */

/* swiper */
.main_station .swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
    background: #b9b9b9;
}
.main_station .swiper-pagination-bullet-active {
    /* opacity: var(--swiper-pagination-bullet-opacity, 1); */
    background: var(--swiper-pagination-color, #18b7cd);
}
.main_station .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 5%);
    color: #2368c4;
}
.main_station .swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 5%);
    color: #2368c4;
}

/* tour */
.gallery-slider{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}
.gallery-slider img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-slider .gallery-single{
    overflow: hidden;
    margin-bottom: 2px;
}
.gallery-slider .gallery-single .slick-arrow{
    font-size: 0;
    border: none;
    width: 56px;
    height: 56px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    margin-top: 60px;
}
.gallery-slider .gallery-nav .slick-slide{
    height: 99px;
    overflow: hidden;
    background: #000;
    margin-right: 2px;
    cursor: pointer;
}
.gallery-slider .gallery-nav .slick-slide.slick-current img{
    opacity: 1;
}
.gallery-slider .gallery-nav .slick-slide img{
    opacity: .6;
}

/* below 1500 */
@media screen and (max-width: 1500px){

    

}

/* below 1024 */
@media screen and (max-width: 900px){
    
    
}

/* below 768 */
@media screen and (max-width: 768px){

    .hero_txt>span {
        font-size: 3.8vw;
    }
    .tit_ani span {
        min-width: 0.4em;
    }
    .hero_txt em {
        font-size: 6.5vw;
    }
}

/* below 540 */
@media screen and (max-width: 540px){

    .hero_box {
        border-radius: 10px;
        padding: 15px 20px;
        font-size: 3.7vw;
    }
}