* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    font-family: 'Microsoft Yahei', Helvetica, Arial, '\5b8b\4f53';
    width: 100%;
    height: 100%;
}

img {
    width: 100%;
    display: block;
}

.box {
    width: 100vw;
    position: relative;
}

.box .go-deeplink {
    width: 36vw;
    height: 13vw;
    position: absolute;
    top: 145vw;
    left: 50%;
    transform: translate(-50%);
    /* border: 1px solid blue; */
}

.mask {
    width: 100vw;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: 0.8;
    z-index: 99;
    display: none;
}

.tip {
    width: 72vw;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 20vw;
    z-index: 100;
    display: none;
}

.html-body-overflow {
    overflow: hidden;
}