*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4 {
    margin: 0;
}

img {
    width: 100%;
    vertical-align: top;
}

ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul li {
    padding: 0;
}

ol {
    margin: 0;
    padding: 0 0 0 20px;
}

input,
button {
    font-family: inherit;
}

button {
    color: inherit;
    font: inherit;
    margin: 0;
    border: none;
    text-transform: none;
    -webkit-appearance: button;
}

html {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    color: black;
    background-color: #ffeed5;
    font: normal 12px/1.5 "Helvetica Neue", "Luxi Sans", "DejaVu Sans", Arial, "Hiragino Sans GB", STHeiti, 'Microsoft Yahei', sans-serif;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-text-size-adjust: auto !important;
    overflow: hidden;
}

#app {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    display: none;
}

.hide {
    display: none;
}

.page {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
}

.animate1 {
    width: 100%;
    height: 100%;
    position: absolute;
}

.animate {
    width: auto;
    height: auto;
    position: absolute;
    margin: auto;
}

.lr {
    left: 0;
    right: 0;
}

.page_arrow_bottom {
    position: absolute;
    right: 5%;
    width: 36px;
    height: 36px;
    background-image: url(https://cjzyx.oss-cn-beijing.aliyuncs.com/img/loading/arrow.png);
    -webkit-background-size: 36px;
    background-size: 36px;
    bottom: 45%;
    margin-left: -18px;
    opacity: 0;
    -webkit-animation: page_arrow_bottom 1.5s ease-in-out infinite;
    z-index: 999;
    zoom: 0.8;
}


/* Loader */

.loader {
    position: fixed;
    overflow: hidden;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    color: white;
    z-index: 9999;
    background-color: #000;
}

.load-img {
    position: absolute;
    width: auto;
    height: auto;
    left: 0;
    right: 0;
    top: 31%;
    margin: auto;
    overflow: hidden;
}


.loader__progress {
    overflow: hidden;
    position: absolute;
    color: #d6d6d6;
    text-align: center;
    width: 100%;
    left: 0;
    top: 52%;
    font-size: 30px;
}

/* music */

.music-icon {
    position: fixed;
    width: 7%;
    height: 7%;
    background-image: url(https://cjzyx.oss-cn-beijing.aliyuncs.com/img/loading/music.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    bottom: -3px;
    right: 3px;
    z-index: 10;
}

.music-icon:after {
    position: absolute;
    content: "";
    display: inline-block;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px
}

.music-icon.play {
    -webkit-animation: rotate 2.3s linear infinite
}

/* Animation */

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes page_arrow_bottom {

    0%,
    30% {
        opacity: 0;
        transform: translate(0, 20px)
    }

    60% {
        opacity: 1;
        transform: translate(0, 0)
    }

    100% {
        opacity: 0;
        transform: translate(0, -16px)
    }
}