.TestMsg {
    background: hsla(0, 0%, 100%, .5);
    min-height: 500px;
    width: 100%
}

.TestMsg, .loader-overlay {
    left: 0;
    position: fixed;
    top: 0;
    z-index: 9999
}

.loader-overlay {
    align-items: center;
    background-color: rgba(0, 0, 0, .2);
    display: flex;
    height: 100vh;
    justify-content: center;
    width: 100vw
}

.loader-overlay .loader {
    animation: loadSpin 2s linear infinite;
    border: 12px solid #f3f3f3;
    border-radius: 50%;
    border-top-color: #00ae02;
    height: 120px;
    width: 120px
}

@keyframes loadSpin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

#unityContainer {
    border-style: unset;
    display: block;
    left: 0;
    position: fixed;
    top: 0
}

.forced-landscape-screen {
    transform: rotate(90deg) translateY(-100%);
    transform-origin: top left
}

.portrait-screen {
    height: 100vw;
    left: 50%;
    margin-left: -50vh;
    margin-top: -50vw;
    position: absolute;
    top: 50%;
    transform: rotate(-90deg);
    transform-origin: center;
    width: 100vh
}

.guide-pop {
    height: 100vh;
    position: fixed;
    width: 100vw;
    z-index: 999
}

.overlay {
    backdrop-filter: blur(5px);
    background-color: rgba(25, 28, 34, .88);
    height: 100vh;
    top: 0;
    width: 100vw
}

.ios-dialog, .overlay {
    display: block;
    left: 0;
    position: fixed;
    z-index: 999
}

.ios-dialog {
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    background: hsla(0, 0%, 100%, .75);
    background-size: cover;
    border-radius: 10px 10px 0 0;
    bottom: 0;
    margin: 0 auto;
    max-width: 500px;
    padding: 10px;
    right: 0
}

.show {
    animation: slideIn .5s forwards
}

.hide {
    animation: slideOut .5s forwards
}

@keyframes slideIn {
    0% {
        transform: translateY(100%)
    }
    to {
        transform: translateY(0)
    }
}

@keyframes slideOut {
    0% {
        transform: translateY(0)
    }
    to {
        transform: translateY(100%)
    }
}

.ios-dialog .dialog-content {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%
}

.ios-dialog .dialog-content .div-info {
    display: flex;
    flex-direction: row;
    margin-left: 10px;
    margin-right: 30px
}

.ios-dialog .div-closeBtn {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAMAAADW3miqAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAABOUExURUxpcYSEhISEhIODg4SEhIWFhYSEhISEhIWFhZSUlIODg4SEhISEhIWFhYWFhf////j4+IeHh9DQ0KGhodbW1p2dnZGRkbW1tezs7P7+/pauRhkAAAAOdFJOUwCmWyPYF5z9ygZI0mztSgIxjgAAAQNJREFUeNqV1NuOwyAMBFAT0pgEGNLtNpf//9FVFqUkk6qo84Z0hP1gW46xwfioGr0JVt6mb5ziFXVNfzVDC0o78Ded4hLtTp/dHN7G3Q6mlOKSL9U7lFDcXrHDh3TZDLnnab7jmHnK3Q//xXJD9yX9HtVPWvKz3Qo2yGhMmyomjfkrNCKyd/3MqpjH3ruIVZAiA7USAFJkgCAGrNjAiAcrNvASwYoNoijOak1pPRsooa2frS9Ckc04sori2TyerLwYNgArI+FiLiqIVTas1Io4MkUhx5VRmdZsilr3USlDh3nZTFHLjH3oyvheU8a3ugjfrFR9OetrXj8Y9dPz7RGrn8M/z0A5i86xAdQAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 15px;
    width: 30px
}

.ios-dialog .dialog-content .line {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAfMAAAACAQMAAAB2eKcAAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAADUExURcnJycGEhgYAAAAMSURBVAjXY2AYWAAAAIAAASUx9UYAAAAASUVORK5CYII=);
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    height: 2px;
    margin-top: 10px;
    width: 95%
}

.ios-dialog .dialog-content .div-info .img-icon {
    height: 70px;
    width: 70px
}

.ios-dialog .dialog-content .div-info .description {
    font-family: Microsoft YaHei UI, serif;
    font-size: 16px;
    font-weight: 700;
    margin-left: 10px
}

.ios-dialog .dialog-content .div-action {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    width: 100%
}

.ios-dialog .dialog-content .div-action .btn-app {
    align-items: center;
    border: 1px solid #1678ff;
    border-radius: 5px;
    color: #1678ff;
    cursor: pointer;
    display: flex;
    font-family: Microsoft YaHei UI, serif;
    font-size: 12px;
    height: 40px;
    justify-content: center;
    position: relative;
    width: 40%
}

.ios-dialog .dialog-content .div-action .btn-app .tips {
    background-color: #ea4e3d;
    border-radius: 10px 10px 10px 0;
    font-size: 10px;
    padding: 4px 10px 5px;
    position: absolute;
    right: -10px;
    top: -15px
}

.ios-dialog .dialog-content .div-action .plain {
    background-color: #1678ff;
    color: #fff
}

.ios-dialog .dialog-content .div-action img {
    height: 21px;
    width: 17px
}

.ios-dialog .dialog-content .div-action .text {
    margin-left: 10px
}

.ios-dialog .dialog-content .div-use-h5 {
    color: #6e6d6d;
    font-family: Microsoft YaHei, serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 30px;
    text-decoration-line: underline
}

.guide-dialog {
    align-items: center;
    background-color: #fff;
    border-radius: 10px 10px 0 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    margin: 0 auto;
    max-height: 80vh;
    max-width: 500px;
    padding: 10px;
    position: fixed;
    right: 0;
    transform: translateX(-50%);
    z-index: 999
}

.guide-dialog .close-btn {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAC8AAAAvBAMAAACBCY6fAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAhUExURUxpcR4eHh0dHR4eHgAAABcXFx0dHR4eHh4eHh8fHx8fH+HY0+kAAAAKdFJOUwBT+rEEK5qGbgg/tt2nAAAA0klEQVR42m3UMUpDQQCE4XloInYP9QJpvYGpIoL1KyVVOttU3sAmx0i6OWUsFn7y49T7LQyzbPL+vURZ/bwkj9tuojz1sstde55zk+m1nbNvuzFoDzkVAugxp0IA5yX7QgCbZF0IYE7ut4MIJB+DCEAEIAYQAYgBBCACMAGIAEQAIgARgAhAREBdnMlXsYMIw0EEIAImDPd8SxiOXfyWRhcDdhGgvgFEAGIAMQgEIAIwWQ0gsuRhAJFj1gOIHDINIDL/HQBALjs+GfLZvuXffP0mV1mA+3jtR6TVAAAAAElFTkSuQmCC);
    background-size: contain;
    cursor: pointer;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 15px;
    width: 20px
}

.guide-dialog .title {
    color: #000;
    font-family: Microsoft YaHei, serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center
}

.guide-dialog .guide-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 80vh;
    overflow-x: hidden;
    overflow-y: overlay;
    padding: 10px 30px
}

.guide-dialog .guide-content img {
    height: auto;
    width: 100%
}

.guide-dialog .guide-content div {
    font-family: Microsoft YaHei, serif;
    font-weight: 500;
    width: 100%
}

.guide-dialog .guide-content .step3 {
    position: relative;
    width: 100%
}

.guide-dialog .guide-content .step3 .background {
    width: 100%
}

.guide-dialog .guide-content .step3 .icon {
    left: 4%;
    position: absolute;
    top: 42%;
    width: 16%
}

.guide-dialog .guide-content .step3 .name {
    left: 24%;
    position: absolute;
    top: 42%
}

.guide-dialog .guide-content .step3 .url {
    left: 24%;
    overflow: hidden;
    position: absolute;
    text-overflow: ellipsis;
    top: 66%;
    white-space: nowrap;
    width: 70%
}

.guide-dialog .guide-content .step1 {
    position: relative;
    width: 100%
}

.guide-dialog .guide-content .step1 .background {
    width: 100%
}

.guide-dialog .guide-content .step1 .icon {
    left: 4%;
    position: absolute;
    top: 42%;
    width: 16%
}

.guide-dialog .guide-content .step1 .name {
    color: #0e0e0e;
    font-family: Microsoft YaHei;
    font-size: 12px;
    font-weight: 700;
    left: 40%;
    position: absolute;
    top: 21%
}

.guide-dialog .guide-content .step1 .url {
    font-size: 8px;
    left: 37%;
    overflow: hidden;
    position: absolute;
    text-overflow: ellipsis;
    top: 44%;
    white-space: nowrap;
    width: 34%
}

.guide-dialog .guide-content .step1 .icon-lock {
    left: 34%;
    position: absolute;
    top: 47%;
    width: 5px
}

.guide-h5 *, .guide-h5 :after, .guide-h5 :before {
    border-style: solid;
    border-width: 0;
    box-sizing: border-box;
    font-family: Roboto, system-ui
}

.guide-h5 a {
    color: inherit;
    text-decoration: inherit
}

.guide-h5 .top-bar {
    height: 1.4rem;
    position: fixed;
    top: 0;
    width: 100%;
    --tw-bg-opacity: 1;
    align-items: center;
    background-color: #000;
    display: flex;
    justify-content: space-around;
    z-index: 100
}

.guide-h5 .top-bar .a-logo {
    height: 100%
}

.guide-h5 .top-bar .a-logo .LazyLoad {
    align-items: center;
    display: flex;
    height: 100%
}

.guide-h5 .top-bar .a-logo .LazyLoad img {
    height: 90%
}

.guide-h5 .top-bar .play-now {
    background: #09c016;
    border-radius: .4rem;
    box-shadow: 5px 5px 10px #000;
    color: #fff;
    font-family: Arial Negreta, Arial Normal, Arial, sans-serif;
    font-size: .4rem;
    font-weight: 700;
    padding: .2rem .8rem;
    text-align: center
}

.guide-h5 .container {
    margin: 1.4rem auto 0;
    width: 100%
}

.guide-h5 .container .module-no-risk {
    align-items: center;
    background: #0a313c;
    display: flex;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1rem;
    padding-top: 1rem;
    position: relative;
    width: 100%;
    z-index: 10
}

.guide-h5 .container .module-no-risk .left {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    justify-content: space-between;
    width: 8rem
}

.guide-h5 .container .module-no-risk .left .title {
    color: #fcfe00;
    font-size: .8rem;
    font-weight: 700
}

.guide-h5 .container .module-no-risk .left .text {
    color: #fff;
    font-size: .34rem;
    line-height: .45rem;
    padding-left: .6rem;
    padding-right: .6rem
}

.guide-h5 .container .module-no-risk .left a {
    color: inherit;
    text-decoration: inherit
}

.guide-h5 .container .module-no-risk .left a div {
    background-color: #09c016;
    border-radius: .6rem;
    box-shadow: 5px 5px 10px #000;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    padding: .2rem .6rem
}

.guide-h5 .container .module-no-risk .right {
    width: 8rem
}

.guide-h5 .container .module-no-risk .right img {
    display: block;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    width: 100%
}

@media screen and (max-width: 768px) {
    .guide-h5 .container .module-no-risk {
        flex-direction: column;
        gap: 4rem;
        padding-bottom: 2rem;
        padding-top: 2rem
    }

    .guide-h5 .container .module-no-risk .left, .guide-h5 .container .module-no-risk .right {
        padding: 0 1rem;
        width: auto
    }

    .guide-h5 .container .module-no-risk .left {
        font-size: 1.6rem
    }

    .guide-h5 .container .module-no-risk .left .btn {
        background-color: #09c016;
        border-radius: .6rem;
        box-shadow: 5px 5px 10px #000;
        color: #fff;
        font-size: 1rem;
        font-weight: 400;
        padding: .2rem .6rem
    }

    .guide-h5 .container .module-no-risk .left .text {
        font-size: .7rem;
        font-weight: 300;
        line-height: .7rem
    }

    .guide-h5 .container .module-no-risk .left .title {
        font-size: 1.6rem
    }
}

.guide-h5 .container .module-swiper {
    background: #06342a;
    padding-top: 1.6rem;
    position: relative;
    width: 100%;
    z-index: 10
}

.guide-h5 .container .module-swiper .split-line {
    position: absolute;
    top: -1px;
    width: 100%
}

.guide-h5 .container .module-swiper .split-line .line {
    width: 100%
}

.guide-h5 .container .module-swiper .split-line .coin {
    left: .4rem;
    position: absolute;
    top: 0;
    width: 1.2rem
}

.guide-h5 .container .module-swiper .title {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    justify-content: space-between;
    padding-top: 1.2rem
}

.guide-h5 .container .module-swiper .title .main {
    color: #0ed01c;
    font-size: .8rem;
    font-weight: 700
}

.guide-h5 .container .module-swiper .title .main span {
    color: #fcfe00
}

.guide-h5 .container .module-swiper .title .sub {
    color: #fff;
    font-size: .6rem
}

.guide-h5 .container .module-swiper .swiper-box {
    padding: .4rem 0
}

.guide-h5 .container .module-swiper .swiper-box .swiper {
    padding: 1.6rem 0
}

.guide-h5 .container .module-swiper .swiper-box .swiper .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    transition: scale .2s ease-in-out
}

.guide-h5 .container .module-swiper .swiper-box .swiper .swiper-wrapper .swiper-slide img {
    height: 4rem;
    width: auto
}

@media screen and (max-width: 768px) {
    .guide-h5 .container .module-swiper .swiper-box .swiper .swiper-wrapper .swiper-slide img {
        height: 6rem
    }
}

.guide-h5 .container .module-swiper .swiper-box .swiper .swiper-wrapper .swiper-slide-active {
    scale: 1.4;
    z-index: 99
}

.guide-h5 .container .module-swiper .btn-box {
    display: flex;
    justify-content: center
}

.guide-h5 .container .module-swiper .btn-box .a-play-for-free {
    color: inherit;
    margin-bottom: .6rem;
    text-decoration: inherit
}

.guide-h5 .container .module-swiper .btn-box .a-play-for-free div {
    background-color: #09c016;
    border-radius: 1rem;
    box-shadow: 5px 5px 10px #000;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    padding: .3rem 1rem
}

.guide-h5 .container .module-player-review {
    background: linear-gradient(45deg, #3b0e50, #140b29 30%, #140b29 50%, #140b29 70%, #3d0d2c);
    padding: 1.6rem .8rem .8rem;
    position: relative;
    width: 100%;
    z-index: 10
}

.guide-h5 .container .module-player-review .split-line {
    left: 0;
    position: absolute;
    top: -1px;
    width: 100%
}

.guide-h5 .container .module-player-review .split-line .line {
    width: 100%
}

.guide-h5 .container .module-player-review .split-line .coin {
    position: absolute;
    right: .4rem;
    top: 0;
    width: 2rem
}

.guide-h5 .container .module-player-review .title {
    color: #19eeaf;
    font-size: .8rem;
    font-weight: 700;
    text-align: center
}

.guide-h5 .container .module-player-review .review-list {
    align-items: center;
    display: flex;
    justify-content: space-evenly;
    margin-top: 1.2rem;
    padding-top: .8rem
}

.guide-h5 .container .module-player-review .review-list .item {
    background: #fceaff;
    border-radius: .1rem;
    display: flex;
    height: 5.6rem;
    position: relative;
    width: 4rem
}

.guide-h5 .container .module-player-review .review-list .item .item-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    justify-content: center;
    position: absolute;
    top: -1.2rem;
    width: 100%
}

.guide-h5 .container .module-player-review .review-list .item .item-content .avatar {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    justify-content: center
}

.guide-h5 .container .module-player-review .review-list .item .item-content .avatar .LazyLoad {
    align-items: center;
    display: flex;
    justify-content: center
}

.guide-h5 .container .module-player-review .review-list .item .item-content .avatar .LazyLoad img {
    width: 70%
}

.guide-h5 .container .module-player-review .review-list .item .item-content .avatar .name {
    color: #4b0b56;
    font-size: .6rem;
    font-weight: 900
}

.guide-h5 .container .module-player-review .review-list .item .item-content .content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    justify-content: center
}

.guide-h5 .container .module-player-review .review-list .item .item-content .content .stars {
    align-items: center;
    display: flex;
    gap: .2rem;
    justify-content: center
}

.guide-h5 .container .module-player-review .review-list .item .item-content .content .stars img {
    width: .4rem
}

.guide-h5 .container .module-player-review .review-list .item .item-content .content .text {
    color: #4b0b56;
    font-size: .29rem;
    font-weight: 700;
    line-height: .35rem;
    padding-left: .2rem;
    padding-right: .2rem
}

@media screen and (max-width: 768px) {
    .guide-h5 .container .module-player-review .review-list .item {
        border-radius: 1rem;
        height: 7rem;
        width: 14rem
    }

    .guide-h5 .container .module-player-review .review-list .item .item-content {
        flex-direction: row;
        height: 100%;
        top: 0
    }

    .guide-h5 .container .module-player-review .review-list .item .item-content .avatar {
        flex: 1
    }

    .guide-h5 .container .module-player-review .review-list .item .item-content .avatar img {
        width: 70%
    }

    .guide-h5 .container .module-player-review .review-list .item .item-content .avatar .name {
        font-size: .8rem
    }

    .guide-h5 .container .module-player-review .review-list .item .item-content .content {
        flex: 1;
        flex-direction: column;
        gap: .4rem
    }

    .guide-h5 .container .module-player-review .review-list .item .item-content .content .stars img {
        width: .8rem
    }

    .guide-h5 .container .module-player-review .review-list .item .item-content .content .text {
        font-size: .5rem;
        line-height: .6rem
    }
}

.guide-h5 .container .module-footer {
    background: #050015;
    padding-bottom: .4rem
}

.guide-h5 .container .module-footer .link-list {
    align-items: center;
    display: flex;
    gap: .4rem;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding: .4rem 0;
    width: 18rem;
    z-index: 10
}

.guide-h5 .container .module-footer .link-list a {
    color: #fceaff;
    font-size: .3rem;
    font-weight: 700;
    text-decoration: inherit
}

.guide-h5 .container .module-footer .age-warn {
    align-items: center;
    display: flex;
    gap: .4rem;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding: .2rem 1rem;
    width: 18rem
}

.guide-h5 .container .module-footer .age-warn .LazyLoad img {
    display: block;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
    width: 1.1rem
}

.guide-h5 .container .module-footer .age-warn .age-warn-text {
    color: #727180;
    font-size: .28rem;
    font-weight: 700
}

@media screen and (max-width: 768px) {
    .guide-h5 .container .module-footer .link-list {
        align-items: flex-start;
        flex-direction: column;
        padding: .4rem 1rem
    }

    .guide-h5 .container .module-footer .link-list a {
        font-size: .5rem
    }

    .guide-h5 .container .module-footer .age-warn .age-warn-text {
        font-size: .6rem
    }

    .guide-h5 .container .module-footer .age-warn .LazyLoad {
        width: 10rem
    }

    .guide-h5 .container .module-footer .age-warn .LazyLoad img {
        display: block;
        height: auto;
        max-width: 100%;
        vertical-align: middle;
        width: 1.6rem
    }
}

.guide-h5 .container .module-footer .company {
    color: #727180;
    font-size: .2rem;
    line-height: 1.5;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: .4rem;
    text-align:center;
}

@media screen and (max-width: 768px) {
    .guide-h5 .container .module-footer .company {
        font-size: .4rem
    }

    .guide-h5 .top-bar {
        height: 3rem
    }

    .guide-h5 .top-bar .play-now {
        border-radius: 1rem;
        cursor: pointer;
        font-size: 1rem
    }

    .guide-h5 .container {
        margin: 3rem auto 0
    }

    .guide-h5 .portrait-flex {
        flex-direction: column;
        gap: .4rem
    }
}

.btn-click {
    animation: breath 1.6s ease-in-out infinite;
    cursor: pointer;
    outline: none;
    position: relative;
    transition: transform .2s ease
}

@keyframes breath {
    0%, to {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
}

.btn-click:active {
    transform: scale(.95)
}

@media screen and (max-width: 768px) {
    /*.banner .banner_content {*/
    /*    width: 100%*/
    /*}*/

    /*.banner .banner_content .close {*/
    /*    height: 12px;*/
    /*    width: 12px*/
    /*}*/
}

@media screen and (min-width: 768px) {
    /*.banner .banner_content {*/
    /*    width: 80%*/
    /*}*/

    /*.banner .banner_content .close {*/
    /*    height: 20px;*/
    /*    width: 20px*/
    /*}*/
}

/*.banner {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-item: center;*/
/*    padding: 20px 0*/
/*}*/

/*.banner .banner_content {*/
/*    cursor: pointer;*/
/*    display: block;*/
/*    position: relative*/
/*}*/

/*.banner .banner_content .close {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*    z-index: 1*/
/*}*/

/*.banner .banner_content img {*/
/*    display: block;*/
/*    height: auto;*/
/*    width: 100%*/
/*}*/

@font-face {
    font-family: swiper-icons;
    font-style: normal;
    font-weight: 400;
    src: url("data:application/font-woff;charset=utf-8;base64, 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")
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1
}

.swiper {
    display: block;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1
}

.swiper-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    box-sizing: content-box;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    width: 100%;
    z-index: 1
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translateZ(0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    display: block;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    transition-property: transform;
    width: 100%
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
    transform-style: preserve-3d
}

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
    content: "";
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
    height: var(--swiper-centered-offset-after);
    min-width: 1px;
    width: 100%
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .5), transparent)
}

.swiper-lazy-preloader {
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid transparent;
    box-sizing: border-box;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transform: translateZ(0);
    transition: opacity .3s;
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    left: 0;
    top: var(--swiper-pagination-top, auto);
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    position: relative;
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    display: inline-block;
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2);
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px))
}

button.swiper-pagination-bullet {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: var(--swiper-pagination-bullet-opacity, 1)
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
    left: var(--swiper-pagination-left, auto);
    right: var(--swiper-pagination-right, 8px);
    top: 50%;
    transform: translate3d(0, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: transform .2s, top .2s
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, left .2s
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform .2s, right .2s
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px)
}

.swiper-pagination-lock {
    display: none
}

a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    border: 0;
    font-size: 100%;
    font: inherit;
    margin: 0;
    padding: 0;
    vertical-align: baseline
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

body, html {
    -webkit-text-size-adjust: none !important;
    -moz-text-size-adjust: none !important;
    -ms-text-size-adjust: none !important;
    text-size-adjust: none !important;
    height: 100%;
    overscroll-behavior: none;
    width: 100%
}

body {
    background-color: #0d1834;
    font-family: inherit;
    /*font-size: 14px;*/
    font-weight: 400;
    height: 100%;
    line-height: 1;
    margin: 0;
    overflow-y: auto;
    position: static
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:after, blockquote:before, q:after, q:before {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

#app, .app-box {
    bottom: 0;
    left: 0;
    min-height: 100%;
    overflow-y: hidden;
    position: relative;
    right: 0;
    top: 0;
    z-index: 1
}

a:active, a:focus, a:hover, a:link, a:visited {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none
}

.center {
    -webkit-justify-content: center;
    justify-content: center
}

.center, .center-space-between {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center
}

.center-space-between {
    -webkit-justify-content: center;
    justify-content: space-between
}

.frm_box {
    background: #fff;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999
}

.frm_box .frm_header {
    background: linear-gradient(180deg, #7241ba, #ab72cf);
    box-shadow: 0 8px 10px rgba(0, 0, 0, .1), 0 8px 20px rgba(0, 0, 0, .1);
    height: 50px;
    width: 100%
}

.frm_box .frm_header .frm_title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-overflow: ellipsis
}

.frm_box .frm_header .frm_close {
    display: inline-block;
    height: 50px;
    position: relative;
    width: 50px
}

.frm_box .frm_header .frm_close .back_icon {
    border-bottom: 4px solid #fff;
    border-left: 4px solid #fff;
    height: 12px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 12px
}

.frm_box .frm_header .frm_more {
    color: #fff;
    font-weight: 700;
    height: 50px;
    line-height: 50px;
    position: relative;
    text-align: center;
    width: 50px
}

.frm_box .box_iframe {
    height: calc(100% - 50px);
    width: 100%
}

.LazyLoad {
    opacity: 0;
    transition: all 1s ease-in-out
}

.is-visible {
    opacity: 1
}

.loader-mask {
    align-items: center;
    background: #0a313c;
    display: flex;
    height: 100vh;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 9999
}

.loaderSvg {
    animation: spin 6s linear infinite;
    height: 80px;
    position: relative;
    width: 80px
}

.loadingIcon {
    height: 100%;
    width: 100%
}

.grass1 {
    animation: fadeIn 1.2s infinite;
    opacity: .1
}

@keyframes fadeIn {
    0%, to {
        opacity: .1
    }
    50% {
        opacity: 1
    }
}

.grass1:first-child {
    animation-delay: 0s
}

.grass1:nth-child(2) {
    animation-delay: .3s
}

.grass1:nth-child(3) {
    animation-delay: .6s
}

.grass1:nth-child(4) {
    animation-delay: .9s
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: italic;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHRiA8.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: italic;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLt_QiA8.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLoHQiA8.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: italic;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLrPQiA8.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: italic;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLmbXiA8.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: italic;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOKCnqEu92Fr1Mu53ZEC9_Vu3r1gIhOszmOClHrs6ljXfMMLijXiA8.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: normal;
    font-weight: 100;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbGmT.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuaabWmT.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmT.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWub2bWmT.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: normal;
    font-weight: 700;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuYjammT.ttf) format("truetype")
}

@font-face {
    font-display: swap;
    font-family: Roboto;
    font-stretch: normal;
    font-style: normal;
    font-weight: 900;
    src: url(https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWuZtammT.ttf) format("truetype")
}

.roboto-thin {
    font-weight: 100
}

.roboto-light, .roboto-thin {
    font-family: Roboto, system-ui;
    font-style: normal
}

.roboto-light {
    font-weight: 300
}

.roboto-regular {
    font-weight: 400
}

.roboto-medium, .roboto-regular {
    font-family: Roboto, system-ui;
    font-style: normal
}

.roboto-medium {
    font-weight: 500
}

.roboto-bold {
    font-weight: 700
}

.roboto-black, .roboto-bold {
    font-family: Roboto, system-ui;
    font-style: normal
}

.roboto-black {
    font-weight: 900
}

.roboto-thin-italic {
    font-weight: 100
}

.roboto-light-italic, .roboto-thin-italic {
    font-family: Roboto, system-ui;
    font-style: italic
}

.roboto-light-italic {
    font-weight: 300
}

.roboto-regular-italic {
    font-weight: 400
}

.roboto-medium-italic, .roboto-regular-italic {
    font-family: Roboto, system-ui;
    font-style: italic
}

.roboto-medium-italic {
    font-weight: 500
}

.roboto-bold-italic {
    font-weight: 700
}

.roboto-black-italic, .roboto-bold-italic {
    font-family: Roboto, system-ui;
    font-style: italic
}

.roboto-black-italic {
    font-weight: 900
}
.links-list{
    /*width:60%;*/
    padding: .2rem 1rem;
    display: block;
    /*flex-direction: row;*/
    /*align-content: center;*/
    /*flex-wrap: wrap;*/
    /*justify-content: flex-end;*/
    /*align-items: center;*/
}
.links-list>a{
    flex:1;
    color: #727180;
    font-size:0.7rem;
    text-decoration: underline;
    margin-right: 0.5rem;
}

