#carousel,
#imgCon img {
  width: 100vw;
  height: 600px;
}
#carousel {
  position: relative;
  margin: auto;
  overflow: hidden;
}
#carousel:hover #leftBn,
#carousel:hover #rightBn {
  opacity: 1;
}
#carousel img {
  display: inline;
  margin-bottom: auto;
}
#carousel #imgCon {
  width: 60000px;
  height: 600px;
  position: absolute;
  left: 0;
  font-size: 0;
  transition: all 1s;
}
#carousel #leftBn,
#carousel #rightBn {
  position: absolute;
  top: 170px;
}
#carousel #leftBn {
  left: 20px;
  width: 30px;
  height: 69px;
  font-size: 30px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  line-height: 69px;
  padding-left: 5px;
  z-index: 10;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-60%);
  cursor: pointer;
  opacity: 0;
}
#carousel #rightBn {
  right: 20px;
  width: 26px;
  height: 69px;
  font-size: 30px;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  line-height: 69px;
  padding-left: 5px;
  z-index: 10;
  position: absolute;
  right: 10px;
  top: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-60%);
}
#carousel ul {
  position: absolute;
  bottom: 20px;
  list-style: none;
  margin: auto;
  left: 45%;
}
#carousel li {
  width: 20px;
  height: 20px;
  border: 1px solid #703b13;
  border-radius: 10px;
  float: left;
  text-align: center;
  color: white;
  cursor: default;
  line-height: 20px;
  font-size: 12px;
  margin-left: 8px;
}
