@charset "utf-8";
::-webkit-scrollbar {
  width: 6px;
  overflow: visible;
  background-color: #FFFFFF;
  border-left: 1px solid #DADCE0;
}
::-webkit-scrollbar-thumb {
  overflow: visible;
  border: solid 1px #C1C1C1;
  background-color: #C1C1C1;
}
::-webkit-scrollbar-thumb:hover {
  border: solid 1px #A8A8A8;
  background-color: #A8A8A8;
}
::-webkit-scrollbar-thumb:active {
  border: solid 1px #787878;
  background-color: #787878;
}
/* HTML5 display-role reset for older browsers */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, main, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
div, article, aside, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, iframe {
  display: block;
}
body {
  line-height: 1;
}
ol, ul, li {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* 普通输入框不要移除原生外观，避免 iOS 上显示异常；改用标准属性并统一圆角 */
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input:focus, textarea:focus {
  outline: none;
}
textarea {
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
/* 仅对按钮类移除原生外观，并补充标准 appearance 与边框圆角重置 */
input[type="button"], input[type="submit"], input[type="reset"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #BBBBBB;
}
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #BBBBBB;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #BBBBBB;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #BBBBBB;
}
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: transparent;
}
input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: transparent;
}
/* 为键盘聚焦（Tab）提供可见焦点样式，兼顾可访问性 */
input:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 2px solid #4A90E2;
  outline-offset: 1px;
}
button, input, optgroup, select, textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  outline: none;
}
img {
  border: 0;
  display: block
}
html, body {
  width: 100%;
  height: 100%;
  min-width: 1240px;
  background-color: #FFFFFF;
}
/* 小屏下取消固定最小宽度，避免移动端强制横向滚动 */
@media (max-width: 1240px) {
  html, body {
    min-width: 0;
  }
}
body, header, nav, main, footer, input, textarea, select {
  font-family: Arial, "微软雅黑", "Microsoft YaHei UI", "PingFang SC";
  font-size: 14px;
  color: #333333;
  line-height: 20px;
}
A:link, A:visited {
  text-decoration: none;
  color: #757575;
}
A:hover {
  /*	-moz-transition: all .5s ease-out;
	-webkit-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
	-ms-transition: all .5s ease-out;
	transition: all .5s ease-out*/
}
h1 {
  font-size: 32px;
  font-weight: normal;
  line-height: 40px;
  margin-bottom: 10px;
}
h2 {
  font-size: 28px;
  font-weight: normal;
  line-height: 36px;
}
h3 {
  font-size: 24px;
  font-weight: normal;
  line-height: 32px;
}
h4 {
  font-size: 20px;
  font-weight: normal;
  line-height: 28px;
}
h5 {
  font-size: 16px;
  font-weight: normal;
  line-height: 24px;
}
p {
  margin-top: 15px;
  margin-bottom: 15px;
}
strong {
  font-weight: bold;
}
/** {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}*/
.fixed {
  position: fixed;
  z-index: 99;
}
.clearfix::after {
  clear: both;
  content: "";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix {
}
.shadow {
  -webkit-box-shadow: 1px 1px 12px rgba(0, 0, 0, .08);
  -moz-box-shadow: 1px 1px 12px rgba(0, 0, 0, .08);
  box-shadow: 1px 1px 12px rgba(0, 0, 0, .08);
}
.yline:before {
  content: "|";
  margin-left: 10px;
  margin-right: 10px;
}
.imghover {
  overflow: hidden;
}
.imghover img {
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  -o-transition: transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  width: 100%;
}
.imghover:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}