@charset "UTF-8";

*,:before,:after {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  /* word-break: break-all; */
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  background: #fff;
}

.container{
  width: 1200px;
  margin: 0 auto;
}

body,button,input,select,textarea{
  font-size: 14px;
  line-height: 1.6;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

small {
  font-size: 12px;
}

ul,ol {
  list-style: none;
}

h1,h2,h3,h4,h5,h6{
  font-size: 100%;
  font-weight: normal;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
  display: block;
}

li {
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

table{
  border-collapse: collapse;
  border-spacing: 0;
}

textarea{
  resize:none;
}

::selection {
  color: #fff;
  background-color: #045478;
}

::placeholder {
  color: #c6c6c6;
}

::-moz-selection {
  color: #fff;
  background-color: #045478;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar{
  width: 7px;
  height: 7px;
  background-color: #F5F5F5;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

/*定义滑块 内阴影+圆角*/
::-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: rgba(24, 122, 251, .6);
}
