* {
    padding: 0;
    margin: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    height: 100%;
    /* 375px 下 1rem = 100px */
    font-size: calc(100vw / 3.75);
}

/* 兼容 max-width: 450px */
@media screen and (min-width: 450px) {
    html {
        font-size: 120px;
    }
}

body {
    max-width: 450px;
    margin: 0 auto;
    height: 100%;
}

/* 滚动禁止 */
body.no-scroll {
    overflow: hidden !important;
    width: 100%;
}

.pointnone {
    pointer-events: none;
}

.abs {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

/* 设置鼠标指针样式为手型 */
.pointer {
    cursor: pointer;
}

.featured {
    width: 100%;
    background-color: #000000;
}

.overseasBox {
    width: 100%;
    height: 100%;
}

.flex {
    display: flex;
}

/* 自动换行 */
.overFlow {
    word-wrap: break-word;
    overflow: hidden;
}

/* 超过文本省略 */
.overFlowEllipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.absolute {
    position: absolute;
}

#mainBody {
    position: relative;
    margin: 0 auto;
    overflow-x: hidden;
    background: url(../img/bg.png) no-repeat center/cover;
}

.mainBody-content {
    height: 8.85rem;
    min-height: 106%;
    background: url(../img/bg.png) no-repeat center/cover;
}

.bg {
    width: 100%;
    object-fit: contain;
}

.notLoggedInNone {
    display: none;
}

#zao {
    position: fixed;
    top: 0;
    left: 0;
    background: black;
    width: 100%;
    height: 100%;
    z-index: 103;
    opacity: 0.5;
    display: none;
}

/*  微信浏览器提示 */
.iswx-wrapper {
    content: '';
    width: 100vw;
    height: 100vh;
    position: fixed;
    background-color: rgba(0, 0, 0, .7);
    top: 0;
    z-index: 999;
}

.iswx {
    width: 100vw;
    object-fit: contain;
    position: fixed;
    top: 0;
    z-index: 998;
}