@charset "UTF-8";

.slider-banner {
    position: relative;
}

.slider-banner-list {
    width: 100%;
    height: 300px;
    position: relative;
}

.slider-banner-list>img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    cursor: -moz-zoom-in;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.slider-dot-list {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.slider-dot-list>li {
    color: #1D2129;
    background-color: #fff;
    padding: 3px 20px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.slider-dot-list>li+li {
    margin-left: 16px;
}

.slider-dot-list>li.current {
    background-color: #165DFF;
    color: #fff;
}

.account-layer {
    width: 100%;
    height: 100%;
    background: rgba(29, 33, 41, 0.50);
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000000;
}

.arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    transform: translate(-700px, -50%);
    z-index: 1000000;
}

.arrow-right {
    right: 50%;
    transform: translate(600px, -50%) rotate(180deg);
}

.arrow>img {
    width: 100%;
    cursor: pointer;
}

.account-layer>img {
    max-width: 1200px;
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.img-area {
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-area img {
    max-width: 100%;
}

@media screen and (max-width:767px) {

    .slider-banner {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }


    .slider-banner-list {
        width: 100%;
        height: 10rem;
    }

    .slider-banner-list>img {
        width: 100%;
        height: 10rem;
    }

    .slider-dot-list {
        margin-top: 1rem;
    }

    .slider-dot-list>li {
        padding: 3px 10px;
        font-size: 12px;
    }

    .slider-dot-list>li+li{
        margin-left: 5px;
    }

    .account-layer>img {
        max-width: 96%
    }

    .arrow {
        display: none;
    }

}