* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

html {
    height: 100%;
    width: 100%;
    font-family: 'Gill Alt One MT','SimHei','Microsoft YaHei','Hiragino Sans GB',sans-serif;
}

body {
    font-size: 14px;
    background: #fff;
    color: #333;
    height: 100%;
    width: 100%;
}

a {
    text-decoration: none;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

a, a:hover {
    transition: background 0.5s linear;
    -webkit-transition: background 0.5s linear;
    -moz-transition: background 0.5s linear;
    -o-transition: background 0.5s linear;
}

em, i {
    font-style: normal;
}

ul, ol, li {
    list-style: none;
}

img {
    border: none;
}

input, select, textarea, button {
    outline: none;
    border: none;
    background: none;
}

textarea {
    resize: none;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: #aaaaaa;
}

input:-moz-placeholder, textarea:-moz-placeholder {
    color: #aaaaaa;
}

input::-moz-placeholder, textarea::-moz-placeholder {
    color: #aaaaaa;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
    color: #aaaaaa;
}

p {
    line-height: 22px;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
    overflow: hidden;
}

.clearfix:after {
    content: "";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

.disFlex {
    position: relative;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.flexWrap {
    -webkit-flex-wrap: wrap;
    -webkit-box-lines: multiple;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
}

.vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    flex-direction: column;
    -webkit-flex-direction: column;
}

.horizontal {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    flex-direction: row;
    -webkit-flex-direction: row;
}

.alignItemCenter {
    align-items: center;
    -webkit-align-items: center;
    box-align: center;
    -moz-box-align: center;
    -webkit-box-align: center;
}

.justifyContentCenter {
    -webkit-justify-content: center;
    justify-content: center;
    -moz-box-pack: center;
    -webkit--moz-box-pack: center;
    box-pack: center;
}

.justifyContentSpaceAround {
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit--moz-box-pack: space-around;
    box-pack: space-around;
}

.justifyContentSpaceBetween {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit--moz-box-pack: space-between;
    box-pack: space-between;
}

.width100 {
    width: 100%;
}

.flex1 {
    box-flex: 1;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    flex: 1;
    -webkit-flex: 1;
}

.wrap {
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.content {
    overflow-y: auto;
    width: 100%;
    min-height: 100%;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

.pf {
    position: fixed;
}

.mt20 {
    margin-top: 0.2rem;
}

.mb100 {
    margin-bottom: 1rem;
}

span#error {
    background-color: #797979;
    color: #fff;
    padding: 5px;
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    width: 50%;
    margin: auto;
    display: none;
    margin-top: -15px;
    line-height: 20px;
    text-align: center;
    z-index: 999;
}