@charset "UTF-8";

/*样式重置*/
* {
  margin: 0;
  padding: 0;
}

#app {
  opacity: 0.01;
  -moz-transition: opacity 0.25s linear;
  -webkit-transition: opacity 0.25s linear;
  -o-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}

@font-face {
  font-family: 'Arial';
  src: url('../fonts/Arial.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Arial Black';
  src: url('../fonts/Arial Black.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeueLTPro Roman';
  src: url('../fonts/HelveticaNeueLTPro-Roman.otf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Bell MT Bold';
  src: url('../fonts/BELLB.TTF');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AdobeHeitiStd-Regular";
  src: url("../fonts/AdobeHeitiStd-Regular/AdobeHeitiStd-Regular.woff2") format("woff2"),
    url("../fonts/AdobeHeitiStd-Regular/AdobeHeitiStd-Regular.woff") format("woff"),
    url("../fonts/AdobeHeitiStd-Regular/AdobeHeitiStd-Regular.ttf") format("truetype"),
    url("../fonts/AdobeHeitiStd-Regular/AdobeHeitiStd-Regular.eot") format("embedded-opentype"),
    url("../fonts/AdobeHeitiStd-Regular/AdobeHeitiStd-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

html {
  font-size: 16px;
}

a, img {
  display: block;
}

a, a:hover, a:focus, a:active, a:visited {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

li {
  list-style-type: none;
}

body {
  font-size: 100%;
  /*html默认字体大小为16px*/
  font-family: Arial, "MicrosoftYaHeiUI Bold";
  color: #757575;
  -webkit-text-size-adjust: none;
}

div {
  margin: 0 auto;
}

em, i {
  font-style: normal;
  display: inline-block;
}

img {
  border: 0;
  display: inline-block;
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

input, textarea {
  outline: none;
}

textarea {
  resize: none;
  overflow: auto;
}

label {
  font-weight: normal;
  margin-bottom: 0
}

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

/*公共样式*/
.fl {
  float: left;
}

.fr {
  float: right;
}

/*清除浮动   *有浮动的地方它的父元素需要清浮动*    */
.clear {
  zoom: 1;
}

/*照顾IE浏览器*/
.clear::after {
  content: "";
  height: 0;
  clear: both;
  visibility: hidden;
  display: block;
}

/*一般浏览器*/