@import './reset-mo.css';
/* @import './ani.css'; */
@import './index.css?v0.0.5';
@import './footer.css';
@import './cookie.css';

body::-webkit-scrollbar {
    display: none;
}

.rule_box::-webkit-scrollbar,
.rule_box1::-webkit-scrollbar {
    width: .05rem;
}

/* 滚动条的轨道 */
.rule_box::-webkit-scrollbar-track,
.rule_box1::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}

/* 滚动条滑块 */
.rule_box::-webkit-scrollbar-thumb,
.rule_box1::-webkit-scrollbar-thumb {
    background: #02eff8;
    border-radius: 6px;
}

.hide {
    display: none;
}

.show {
    opacity: 1;
    z-index: 1;
}

.imgList .show {
    opacity: 1;
    z-index: 1;
}

body {
    background-color: #fff;
    font-size: .18rem;
    overflow: auto;
}

/* 页面loading */
.page-loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background: #fff;
}

.page-loading::after {
    content: 'loading . . .';
    animation: ani-jx3-loading 2s 0s both infinite;
    white-space: nowrap;
    display: block;
    flex-shrink: 0;
    width: 1.2rem;
    overflow: hidden;
    font-size: .24rem;
    color: #bbb;
}

@keyframes ani-jx3-loading {
    0% {
        width: 1.2rem;
    }

    100% {
        width: 1.8rem;
    }
}

.page-loading img {
    width: 2rem;
}