@charset "UTF-8";
html {
  /*font-size: 62.5%*/ }

html, body, form, fieldset, p, div, h1, h2, h3, h4, h5, h6 {
  -webkit-text-size-adjust: none; }

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  /*font: inherit;*/
  font-size: 100%;
  vertical-align: baseline;
  -webkit-tap-highlight-color: transparent; }

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; }

a {
  text-decoration: none;
  color: #333; }

a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  outline: 0; }

img {
  display: block;
  width: 100%; }

input,
textarea {
  background: none;
  outline: 0; }

strong, var, em, i {
  font-style: normal;
  font-weight: normal; }

ol, ul, li {
  list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal; }

cite {
  font-style: normal; }

del {
  text-decoration: line-through; }

mark {
  background: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

body {
  /* position: relative; */
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  /*min-width: 320px;*/
  /*max-width: 640px;*/
  font-family: "Microsoft YaHei",Arial,"Helvetica";
  background-color: #f6f6f6;
  color: #333;
  /*font-size: 1.2rem;*/
  font-size: 14px; 
}
button{
  background: content-box;
}





/* 清除浮动 */
.clearfix:after{
    content: ""; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;  
}
.clearfix {
    /* 触发 hasLayout */ 
    zoom: 1; 
}

/* flex布局 */
.flex{
    display: -webkit-box; /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box; /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox; /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex; /* 新版本语法: Opera 12.1, Firefox 22+ */
    /* -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    */
}

/* 错误提示语 */
.ERR-reminder{
  text-align: left;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 400;
  color: #FF1F33;
}