html,
body {
    font-family: Script, 'Microsoft YaHei', sans-serif;;
    /*height: 100vh;*/
    position: relative;
    padding: 0;
}

a {
    text-decoration: none;
}

a:link {
    text-decoration: none;
    /*color: #auto;*/
}

a:hover {
    text-decoration: none;
    /*color: #auto; !* 鼠标悬停时修改字体颜色 *!*/
}

a:visited {
    text-decoration: none;
    /*color: #auto; !* 已访问链接的字体颜色 *!*/
}

a:active {
    text-decoration: none;
    /*color: auto; !* 点击后的字体颜色 *!*/
}

html {
    background-color: #fff;
    margin: 0;
}

body {
    /*-webkit-overflow-scrolling: touch;*/
    /*overflow-scrolling: touch;*/
    /*-webkit-user-select: none;*/
    /*cursor: pointer;*/
    /*-webkit-appearance: none;*/
}

img {
    pointer-events: none;
}

@media screen and (min-width: 450px) {
    body {
        width: 450px;
        margin: 0 auto;
    }

    .pop,
    header,
    footer {
        width: 450px;
    }
}

@media screen and (max-width: 450px) {
    body {
        width: 450px;
        margin: 0 auto;
    }

    .pop,
    header,
    footer {
        width: 450px;
    }
}

@media only screen and (pointer: coarse) {

    /* 在这里编写手机屏幕下的样式 */
    body {
        width: 100vw;
        margin: 0 auto;
    }

    .pop,
    header,
    footer {
        width: 100vw;
    }
}

header {
    position: fixed;
    top: 0;
    background-color: #f66337;
    z-index: 99;
    height: 44px;
}

.header {
    height: 44px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    color: #fff;
}

footer {
    position: fixed;
    bottom: 0;
    background-color: #f8f8f8;
    z-index: 99;
    box-shadow: 0 0 5px 0 #ccc;
    height: 60px;
}

.footer {
    height: 60px;
    width: 100%;
}

.page {
    border: none;
    border-radius: 2px;
    line-height: 28px;
    font-size: 14px;
    color: #000;
    padding: 0 10px;
    margin: 0 4px;
}