  /*轮播图模块*/
  .slideBox1 {
  	width: 100%;
  	overflow: hidden;
  	position: relative;
  }

  .slideBox1 .hd {
  	width: 100%;
  	height: 20px;
  	overflow: hidden;
  	position: absolute;
  	left: 0;
  	bottom: 4%;
  	z-index: 1;
  }

  .slideBox1 .hd ul {
  	overflow: hidden;
  	zoom: 1;
  	text-align: center;
  }

  .slideBox1 .hd ul li {
  	text-indent: -10000px;
  	cursor: pointer;
  	width: 10px;
  	height: 10px;
  	display: inline-block;
  	border-radius: 50%;
  	margin: 5px;
  	border: 2px solid #00a0e9;
  }

  .slideBox1 .hd ul li.on {
  	background: #00a0e9;
  }

  .slideBox1 .bd {
  	position: relative;
  	height: 100%;
  	z-index: 0;
  	margin-top: 2px;
  }

  .slideBox1 .bdl {
  	position: relative;
  	display: flex;
  	justify-content: center;
  	align-items: center;
  	width: 100%;
  	height: 100%;
  	z-index: 0;
  	margin-top: 2px;
  	background: url("../images/fa78.png") repeat 100% 100%;
  	height: 350px;
  }

  .slideBox1 h1 {
  	color: white;
  	border: 4px solid rgba(255, 255, 255, .8);
  	padding: 15px;
  	font-size: 32px;
  	font-weight: normal;
  }

  .slideBox1 .bd li {
  	zoom: 1;
  	vertical-align: middle;
  }

  .slideBox1 .bd img {
  	width: 100%;
  	display: block;
  }

  /* 下面是前/后按钮代码，如果不需要删除即可 */
  .slideBox1 .prev,
  .slideBox1 .next {
  	position: absolute;
  	left: 3%;
  	top: 50%;
  	margin-top: -25px;
  	display: block;
  	width: 32px;
  	height: 40px;
  	background: url(../images/slider-arrow.png) -110px 5px no-repeat;
  	filter: alpha(opacity=50);
  	opacity: 0.5;
  }

  .slideBox1 .next {
  	left: auto;
  	right: 3%;
  	background-position: 8px 5px;
  }

  .slideBox1 .prev:hover,
  .slideBox1 .next:hover {
  	filter: alpha(opacity=100);
  	opacity: 1;
  }