/*
 * @Author: MWeiLiu 
 * @Date: 2019-12-17 20:47:57 
 * @Last Modified by: MWeiLiu
 * @Last Modified time: 2020-08-04 16:41:28
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  cursor: default;
}
/* @font-face {
  font-family: 'PingFangR';
  src: url('../fonts/chinese/PINGFANGREGULAR.TTF');
} */

html {
  width: 100%;
  height: 100%;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  /* overflow-y: scroll; */
  /* scrollbar-width: none; 
  -ms-overflow-style: none; */
  overflow-y: auto;
}

body {
  /* width: 100%; */
  height: 100%;
  overflow-x: hidden;
  background-color: #F3F5F7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
}

#app {
  width: 100%;
  height: 100%;
}

.hide {
  display: none !important;
}

.hidden {
  visibility: hidden !important;
}

.bodyPadding {
  padding: 0 .3rem;
}

.background_f {
  background-color: #fff;
}

.mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: .9rem;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

li {
  list-style: none;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder
}

img {
  display: block;
  border-style: none
}

button,
input {
  overflow: visible
}

input {
  border: none;
}

button,
select {
  text-transform: none
}

textarea {
  overflow: auto;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit
}

button {
  border: 0;
  background-color: transparent;
  outline: none;
}


input[type=text]::-ms-clear {
  display: none;
}

input::-ms-clear,
input::-ms-reveal {
  display: none
}

em {
  font-style: normal;
}

a {
  display: block;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  color: #222;
  background: 0 0;
  outline: 0;
  cursor: pointer;
  transition: color .2s ease;
  -webkit-transition: color .2s ease;
  -moz-transition: color .2s ease;
  -ms-transition: color .2s ease;
  -o-transition: color .2s ease;
}

a:active,
a:hover,
a:visited {
  color: #222;
  outline: 0;
  text-decoration: none
}

a[disabled] {
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none
}

html ::-webkit-scrollbar,
body ::-webkit-scrollbar {
  width: 2px;
  background-color: #f2f2f2;
}

html ::-moz-scrollbar,
body ::-moz-scrollbar {
  width: 2px;
  background-color: #f2f2f2;
}

html ::-o-scrollbar,
body ::-o-scrollbar {
  width: 0px;
  background-color: #f2f2f2;
}

html ::-webkit-scrollbar-track,
body ::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0 rgba(0, 0, 0, .1);
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0);
}

html ::-webkit-scrollbar-thumb,
body ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  box-shadow: inset 10px 0 0 rgba(0, 0, 0, 0.1);
  background-color: #999;
}


.clearfix {
  *height: 1%;
}
.clearfix::after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  line-height: 0;
  overflow: hidden;
}