/*通用设置*/
@media screen
and (min-width: 320px)
and (max-width: 360px) {
    html {
        font-size: 60%
    }
}

@media screen
and (min-width: 361px)
and (max-width: 400px) {
    /*html{font-size:14px;}*/
    html {
        font-size: 62.5%
    }
}

@media screen
and (min-width: 401px)
and (max-width: 500px) {
    html {
        font-size: 69%
    }
}

@media screen
and (min-width: 500px) {
    html {
        font-size: 75%
    }
}

* {
    margin: 0;
    padding: 0;
    max-height: 999999px;
}

html, body, section {
    width: 100%;
    height: 100%;
    text-align: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: "Microsoft YaHei", Arial, Roboto, ”Droid Sans”, ”Helvetica Neue”, ”Droid Sans Fallback”, ”Heiti SC”, sans-self, Tahoma;
}

body {
    font-size: 1.4rem;
}

img {
    border: 0;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    outline: 0;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

section {
    position: absolute;
    left: 0;
    top: 0;
    text-align: center;
    overflow: hidden;
    display: none;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

div {
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

input, textarea {
    font-family: "Microsoft YaHei", Arial, Roboto, ”Droid Sans”, ”Helvetica Neue”, ”Droid Sans Fallback”, ”Heiti SC”, sans-self, Tahoma;
}

.circle {
    border-radius: 50% 50%;
}

.center {
    margin-left: auto;
    margin-right: auto;
}

/*提示页*/
.turning {
    background-color: #000000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.turning .img {
    position: relative;
    left: 30%;
    top: 10%;
    width: 40%;
    height: 90%;
    background-image: url("//cdn.xshelly.com/images/turning.png");
    background-repeat: no-repeat;
    background-size: contain;
}