html {
  font-size: 100px;
  -webkit-backface-visibility: hidden;
}
html body {
  -webkit-backface-visibility: hidden;
  font-size: 12px;
  font-family: "Microsoft yahei", "Regular";
}
html * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html ul,
html li {
  list-style-type: none;
}
html a,
html a:hover,
html a:visited {
  text-decoration: none;
  color: inherit;
}
html .bf {
  background: #fff;
}
html .b0 {
  background: #000;
}
html .mask-bg {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
}
html .img-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
html .ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
html .breakWord {
  word-wrap: break-word;
}
html .breakAll {
  word-break: break-all;
}
html .nowraps {
  white-space: nowrap;
}
html .wraps {
  white-space: pre-wrap;
}
html .lineN {
  line-height: normal;
}
html .lineH {
  line-height: 1;
}
html .lineH12 {
  line-height: 1.2;
}
html .lineH14 {
  line-height: 1.4;
}
html .lineH16 {
  line-height: 1.6;
}
html .lineH18 {
  line-height: 1.8;
}
html .bolds {
  font-weight: bold;
}
html .indents {
  text-indent: 2em;
}
html .lettersp {
  letter-spacing: 1px;
}
html .wordsp {
  word-spacing: 1px;
}
html .overflows {
  overflow: hidden;
}
html .pointers {
  cursor: pointer;
}
html .autos {
  margin: 0 auto;
}
html .middles {
  vertical-align: middle;
}
html .starts {
  text-align: start;
}
html .centers {
  text-align: center;
}
html .ends {
  text-align: end;
}
html .widths {
  width: 100%;
}
html .heights {
  height: 100%;
}
html .minW {
  min-width: 100%;
}
html .minH {
  min-height: 100%;
}
html .maxW {
  max-width: 100%;
}
html .maxH {
  max-height: 100%;
}
html .opacity0 {
  opacity: 0;
}
html .opacity1 {
  opacity: 0.1;
}
html .opacity2 {
  opacity: 0.2;
}
html .opacity3 {
  opacity: 0.3;
}
html .opacity4 {
  opacity: 0.4;
}
html .opacity5 {
  opacity: 0.5;
}
html .opacity6 {
  opacity: 0.6;
}
html .opacity7 {
  opacity: 0.7;
}
html .opacity8 {
  opacity: 0.8;
}
html .opacity9 {
  opacity: 0.9;
}
html .opacity1 {
  opacity: 1;
}
html .radius {
  border-radius: 50%;
}
html .radius2 {
  border-radius: 2px;
}
html .radius4 {
  border-radius: 4px;
}
html .radius6 {
  border-radius: 6px;
}
html .radius8 {
  border-radius: 8px;
}
html .radius10 {
  border-radius: 10px;
}
html .clear::after {
  content: '';
  height: 0;
  visibility: hidden;
  clear: both;
  display: block;
}
html .clearLeft::after {
  content: '';
  height: 0;
  visibility: hidden;
  clear: left;
  display: block;
}
html .clearRight::after {
  content: '';
  height: 0;
  visibility: hidden;
  clear: right;
  display: block;
}
html .flex {
  display: -webkit-flex !important;
  display: flex !important;
}
html .inlineFlex {
  display: -webkit-inline-flex !important;
  display: inline-flex !important;
}
html .flexRow {
  -webkit-flex-direction: row;
  flex-direction: row;
}
html .flexRow-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
html .flexColumn {
  -webkit-flex-direction: column;
  flex-direction: column;
}
html .flexColumn-reverse {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
html .flexWrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
html .flexNowrap {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
html .flexWrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
html .justifyStart {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
html .justifyCenter {
  -webkit-justify-content: center;
  justify-content: center;
}
html .justifyEnd {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
html .justifyBetween {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
html .justifyAround {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
html .itemsStart {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
html .itemsCenter {
  -webkit-align-items: center;
  align-items: center;
}
html .itemsEnd {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
html .itemsBaseline {
  -webkit-align-items: baseline;
  align-items: baseline;
}
html .itemsStretch {
  -webkit-align-items: stretch;
  align-items: stretch;
}
html .contentStart {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
html .contentCenter {
  -webkit-align-content: center;
  align-content: center;
}
html .contentEnd {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
html .contentBaseline {
  -webkit-align-content: baseline;
  align-content: baseline;
}
html .contentStretch {
  -webkit-align-content: stretch;
  align-content: stretch;
}
html .flexShrink {
  flex: 1, 1, auto;
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: auto;
}
html .flexGrow {
  flex: 0, 0, auto;
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: auto;
}
html .shrinks {
  flex-shrink: 1;
}
html .selfAuto {
  -webkit-align-self: auto;
  align-self: auto;
}
html .selfStart {
  -webkit-align-self: start;
  align-self: start;
}
html .selfCenter {
  -webkit-align-self: center;
  align-self: center;
}
html .selfEnd {
  -webkit-align-self: end;
  align-self: end;
}
html .selfBaseline {
  -webkit-align-self: baseline;
  align-self: baseline;
}
html .selfStretch {
  -webkit-align-self: stretch;
  align-self: stretch;
}
html .static {
  position: static;
}
html .relative {
  position: relative;
}
html .absolute {
  position: absolute;
}
html .fixed {
  position: fixed;
}
html .none {
  display: none;
}
html .inlineBlock {
  display: inline-block;
}
html .block {
  display: block;
}
html .nones {
  display: none !important;
}
html .inlineBlocks {
  display: inline-block !important;
}
html .blocks {
  display: block !important;
}
html .index-1 {
  z-index: -1;
}
html .index0 {
  z-index: 0;
}
html .index10 {
  z-index: 10;
}
html .index20 {
  z-index: 20;
}
html .index30 {
  z-index: 30;
}
html .index40 {
  z-index: 40;
}
html .index50 {
  z-index: 50;
}
html .index100 {
  z-index: 100;
}
html .index101 {
  z-index: 2;
}
html .width50 {
  width: 50%;
}
html .width3 {
  width: 3%;
}
html .width4 {
  width: 4%;
}
html .width5 {
  width: 5%;
}
html .width6 {
  width: 6%;
}
html .width7 {
  width: 7%;
}
html .width8 {
  width: 8%;
}
html .width9 {
  width: 9%;
}
html .width10 {
  width: 10%;
}
html .width11 {
  width: 11%;
}
html .width12 {
  width: 12%;
}
html .width13 {
  width: 13%;
}
html .width14 {
  width: 13%;
}
html .width15 {
  width: 15%;
}
html .width16 {
  width: 16%;
}
html .width17 {
  width: 17%;
}
html .width18 {
  width: 18%;
}
html .width19 {
  width: 19%;
}
html .width20 {
  width: 20%;
}
html .width21 {
  width: 21%;
}
html .width22 {
  width: 22%;
}
html .width23 {
  width: 23%;
}
html .width24 {
  width: 24%;
}
html .width25 {
  width: 25%;
}
html .width26 {
  width: 26%;
}
html .width27 {
  width: 27%;
}
html .width28 {
  width: 28%;
}
html .width29 {
  width: 29%;
}
html .width30 {
  width: 30%;
}
html textarea {
  -webkit-appearance: none;
  outline: none;
  resize: none;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: 10px;
}
html textarea::-webkit-input-placeholder {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}
html input {
  -webkit-appearance: none;
  outline: none;
}
html input[type="text"] {
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  padding: 0 10px;
}
html input[type="text"] ::-webkit-input-placeholder {
  font-size: 12px;
  font-weight: 400;
  color: #999999;
}
html input[type="number"] {
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  padding: 0 0 0 10px;
}
html input[type="checkbox"] {
  background: #fff;
  border: 1px solid #e5e5e5;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 4px;
  position: relative;
}
html input[type="checkbox"]:checked::after {
  content: '';
  top: 6px;
  left: 4px;
  position: absolute;
  background: transparent;
  border: #999999 solid 2px;
  border-top: none;
  border-right: none;
  height: 6px;
  width: 12px;
  transform: rotate(-45deg);
}
html input[type="radio"] {
  background: #fff;
  border: 1px solid #e5e5e5;
  width: 12px;
  height: 12px;
  position: relative;
  border-radius: 50%;
}
html input[type="radio"]:checked::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #999999;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
html .delay02 {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
html .delay04 {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
html .delay06 {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}
html .delay08 {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
html .delay10 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
html .delay12 {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
html .delay14 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
html .delay16 {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}
html .delay18 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
html .delay20 {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
.img-previews .img-layer {
  display: none;
}
