body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
legend,
button,
input,
textarea,
th,
td {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
}
body,
button,
input,
select,
textarea {
  font-size: 16px;
  font-family: 'Microsoft Yahei', arial;
}
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
em,
strong,
th,
i {
  font-style: normal;
  font-weight: normal;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}
a {
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ol,
ul,
li {
  list-style: none;
}
fieldset,
img {
  border: 0;
}
.clearfix:after {
  content: '.';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
}
.clearfix {
  *zoom: 1;
}
* {
  box-sizing: border-box;
}

::-webkit-scrollbar {
  /*改变纵向滚动条宽度*/
  width: 0;
}

::-webkit-scrollbar-track {
  /*改变滚动条轨道颜色*/
  border-radius: 0;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  /*改变滚动条滑轨相关的样式*/
  background-color: transparent;
}
/* 移入鼠标效果 */
::-webkit-scrollbar-thumb:hover {
  background-color: transparent;
}

input[type="number"]::-webkit-inner-spin-button{
  /* webkit内核input[number]默认箭头样式 */
  -webkit-appearance: none !important;
  margin: 0;
  -moz-appearance: textfield;
  /* molilla内核input[number]默认箭头样式 */
  -moz-appearance: textfield;
}

[v-cloak]{
  display: none;
}
/*
 移动端 ipad以上是pc

 设计稿 w:750
 目标: 1rem = 100px
 7.5rem=100vw
 base font-size = 100 / 7.5 vw = 13.33333333vw = 1rem
 */
@media screen and (max-width: 750px) {
  html {
    font-size: 13.33333333vw !important;
  }
}

/*
     pc端 ipad以上是pc
     设计稿 w:1920
     目标: 1rem = 100px
     19.2rem=100vw
     base font-size = 100 / 19.2 vw = 5.20833333vw = 1rem
     */
@media screen and (min-width: 750px) {
  html {
    font-size: 5.2083333vw !important;
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size:100px !important;
  }
}
