.slider {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
  }
/* @media screen and (max-width: 1900px) {
	.banner-slider {
		height: 800px;
	}
}
@media screen and (max-width: 1860px) {
	.banner-slider {
		height: 750px;
	}
}
@media screen and (max-width: 1760px) {
	.banner-slider {
		height: 720px;
	}
}
@media screen and (max-width: 1680px) {
	.banner-slider {
		height: 700px;
	}
}
@media screen and (max-width: 1640px) {
	.banner-slider {
		height: 680px;
	}
}
@media screen and (max-width: 1600px) {
	.banner-slider {
		height: 660px;
	}
}
@media screen and (max-width: 1550px) {
	.banner-slider {
		height: 640px;
	}
}
@media screen and (max-width: 1500px) {
	.banner-slider {
		height: 600px;
	}
}
@media screen and (max-width: 1410px) {
	.banner-slider {
		height: 580px;
	}
}
@media screen and (max-width: 1360px) {
	.banner-slider {
		height: 560px;
	}
}
@media screen and (max-width: 1320px) {
	.banner-slider {
		height: 540px;
	}
}
@media screen and (max-width: 1280px) {
	.banner-slider {
		height: 520px;
	}
}
@media screen and (max-width: 1220px) {
	.banner-slider {
		height: 500px;
	}
}*/
.slider .slider-pointer {
    position: absolute;
    bottom: 20px;
    color: #fff;
    list-style: none;
    padding: 0;
    z-index: 999;
  }
  .slider .slider-pointer li {
    display: inline-block;
    margin: 0 15px;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    background-color: #ffffff;
    opacity: 0.85;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.5);
    transition: all 320ms ease;
  }
  .slider .slider-pointer li:hover {
    background-color: #cd0029;
  }
  .slider .slider-pointer li.active {
    background-color: #cd0029;
  }
  .slider .slider-inner {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .slider .slider-inner .item {
    width: 100%;
    height: 100%;
    float: left;
  }
  .slider .slider-inner .img {
    background-position: center center !important;
	background-size: cover !important;
    width: 100%;
    height: 100%;
  }
  .slider .slider-control {
    position: absolute;
    width: 30px;
    height: 30px;
    z-index: 999;
    border-radius: 30px;
    text-align: center;
    font-weight: 900;
    font-size: 20px;
    line-height: 30px;
    background-color: #ffffff;
    opacity: 0.5;
    cursor: pointer;
    top: 50%;
	margin-top: -15px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.5);
    transition: all 320ms ease;
	font-family: fangsong;
  }
  .slider .slider-control:hover {
    opacity: 0.65;
    background-color: #009a44;
  }
  .slider .slider-control:active {
    opacity: 0.85;
  }
  .slider .slider-control.prev {
    display: none;
    left: 20px;
  }
  .slider .slider-control.next {
    display: none;
    right: 20px;
  }
  .slider:hover .slider-control.prev {
    display: block;
    left: 20px;
  }
  .slider:hover .slider-control.next {
    display: block;
    right: 20px;
  }