html {
  font-size: 0.59px;
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  html {
    font-size: 0.6px
  }
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  html {
    font-size: 0.8px
  }
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 1px
  }
  .wrap {
    width: 1170px;
  }
}
@media (min-width: 1600px) {
  .container {
    width: 1400px;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

* {box-sizing: border-box; -webkit-box-sizing: border-box; outline: none;}
html {scroll-behavior: initial;}
html, body {-webkit-text-size-adjust: none;  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
html, body, input, select, input, textarea, button{font-weight: normal; font-family: 'PingFang SC Regular', 'PingFang SC', 'Microsoft Yahei', 'Arial';}
body {font-size: 16px; line-height: 1.5; color: #333; background-color: #fff; -webkit-overflow-scrolling: touch; }
h1, h2, h3, h4, h5, h6 {margin: 0; font-weight: 500;}
ul, dl, dd, p {margin: 0; padding: 0;}
ul {list-style: none;}
small {display: block;}
::-ms-clear, ::-ms-reveal, select::-ms-expand {display: none; } 
input, textarea, button {border: 0;}
select:focus, textarea:focus, input:focus {outline: none;}
textarea {resize: none;}
a {color: inherit; transition: all .3s;}
a:hover, a:active, a:link, a:visited, a:focus {text-decoration: none;}
a:focus, input:focus, p:focus, div:focus {-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
img {display: block; max-width: 100%;}
i,
em{
	font-style: unset;
}


/* 定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
  ::-webkit-scrollbar{
    width: 5px;
    height: 5px;
    background-color: #f2d6d8;
    border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(80,80,80,0.2);
	-webkit-box-shadow: inset 0 0 6px rgba(80,80,80,0.2);
  }

  /*定义滚动条轨道 内阴影+圆角*/
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(80,80,80,0.2);
    -webkit-box-shadow: inset 0 0 6px rgba(80,80,80,0.2);
    border-radius: 10px;
    background-color: #f2d6d8;
  }

  /*定义滑块 内阴影+圆角*/
  ::-webkit-scrollbar-thumb{
    border-radius: 10px;
     box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .1); 
    background-color: #d70c1e;
	cursor: pointer;
  } 