/* Banner*/
.home_ban {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.home_ban .ul {
  overflow: hidden;
  position: relative;
}

.home_ban .ul li {
  float: left;
  height: 600px;
}

.home_ban .ul li a {
  display: block;
  width: 100%;
  height: 600px;
}

.home_ban .ul li img {
  display: none;
}

.home_ban .prev,
.home_ban .next {
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 3;
  width: 20%;
}

.home_ban .prev {
  left: 0;
  background: url(/static/image/ban_prev.png) no-repeat center center;
}

.home_ban .prev:hover {
  background: url(/static/image/ban_prev_hover.png) no-repeat center center;
}

.home_ban .next {
  right: 0;
  background: url(/static/image/ban_next.png) no-repeat center center;
}

.home_ban .next:hover {
  background: url(/static/image/ban_next_hover.png) no-repeat center center;
}

.tabList {
  position: absolute;
  bottom: 14px;
  width: 100%;
  text-align: center;
}

.tabList ul {
  margin: 0 auto;
}

.tabList ul li {
  width: 12px;
  height: 12px;
  margin: 0 3px;
  cursor: pointer;
  display: inline-block;
}

.tabList ul li span {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(/static/image/bg4.png) no-repeat;
}

.tabList ul li:hover span,
.tabList ul li.on span {
  background: url(/static/image/bg5.png) no-repeat;
}

/*Banner*/