.slide {
  position: relative;
  margin: 0px auto;
  width: 100%;
  height: 360px;
  background: #ccc;
  float:right;
}

.slide ul li {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  list-style: none;
}

.slide .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  width: 15%;
  z-index: 3;
  text-align: center;
  margin: 0 auto;
}

.slide .dots li {
  display: inline-block;
  margin: 0 2px;
	width: 15px;
	height: 15px;
	border: 2px solid #FF782F;
	border-radius: 50%;
  opacity: 0.4;
	cursor: pointer;
	transition: background .5s, opacity .5s;
  list-style: none;
}

.slide .dots li.active {
  background: #9D0101;
	opacity: 1;
}

.slide .arrow {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: background .5s, opacity .5s;
}

.slide .arrow .arrow-left,
.slide .arrow .arrow-right {
  position: absolute;
  top: 50%;
  margin-top: -25px;
  display: block;
  width: 50px;
  height: 50px;
  cursor: pointer;
  opacity: 0.5;
	transition: background .5s, opacity .5s;
}

.slide .arrow  .arrow-left:hover,
.slide .arrow  .arrow-right:hover {
  opacity: 1;
}

.slide .arrow .arrow-left {
  left: 20px;
  background: url("../img/arrow-left.png");
}

.slide .arrow .arrow-right {
  right: 20px;
  background: url("../img/arrow-right.png");
}
@media screen and (max-width: 420px) and (min-width: 320px) {
.slide { width: 100%;  height: 96px;}
.slide .dots {width: 55%; bottom: 10px;}
}
@media screen and (max-width: 520px) and (min-width: 420px) {
.slide { width: 100%;  height: 116px;}
.slide .dots {width: 55%; bottom: 10px;}
}
@media screen and (max-width: 580px) and (min-width: 520px) {
.slide { width: 100%;  height: 160px;}
.slide .dots {width: 40%; bottom: 10px;}
}
@media screen and (max-width: 780px) and (min-width: 580px) {
.slide { width: 100%;  height: 180px;}
.slide .dots {width: 35%; bottom: 10px;}
}