* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  height: 100%;
  font-size: 16px;
}

html,
body,
div,
p,
strong,
span,
a,
b,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
form,
del,
img,
i,
em,
select,
button,
textarea,
input {
  margin: 0;
  padding: 0;
}

/*body{-webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none;}*/
body {
  background: #fff;
  font-family: 'MiSans-Regular', "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Heiti SC", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  color: #333;
  position: relative;
  min-height: 100%;
}

a,
img,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

input[type="text"],
input[type="hidden"],
input[type="password"],
button,
textarea,
select {
  outline: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  font-family: 'MiSans-Regular', "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Heiti SC", sans-serif;
}

select::-ms-expand {
  display: none;
}

input::-ms-clear {
  display: none;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  color: #333;
}

a:hover {
  text-decoration: none;
}

a:focus,
button:focus {
  text-decoration: none;
  outline: none;
  border: none;
}

li {
  list-style: none;
}

img {
  vertical-align: middle;
  border: none;
}

img:not([src]),
img[src=""] {
  visibility: hidden;
  display: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  clear: both;
}

.hidden {
  overflow: hidden;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: normal;
}

/* Container 响应式断点 */
/* 超小屏幕 (<576px) - 使用100%宽度 */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

/* 小屏幕 (≥768px) */
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  /*scroll*/
  ::-webkit-scrollbar {
    width: 4px;
    height: 4px
  }

  ::-webkit-scrollbar-button:vertical {
    display: none
  }

  ::-webkit-scrollbar-corner,
  ::-webkit-scrollbar-track {
    background-color: #ffffff;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #3c87c4;
  }

  ::-webkit-scrollbar-thumb:vertical:hover {
    background-color: #3c87c4;
  }

  ::-webkit-scrollbar-thumb:vertical:active {
    background-color: #3c87c4;
  }
}

/* 中等屏幕 (≥992px) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

/* 大屏幕 (≥1200px) - 不超过1030px */
@media (min-width: 1200px) {
  .container {
    max-width: 1010px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1030px;
  }
}

@media (max-width: 1125px) {
  .container {
    max-width: 1010px;
  }
}