/*焦点图*/
.carouselContainer {
  width: 588px;
  margin: 0 auto;
  height: 425px;
  overflow: hidden;
  position: relative;
  background-color: #eee;
}
#carousel {
  display: flex;
}
#carousel a {
  display: block;
}
.carousel-text {
  font-size: 18px;
  text-align: center;
  cursor: default;
  line-height: 42px;
  width: 588px;
  margin: 0px auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dots {
	position: absolute;
	left: 50%;
    transform: translateX(-50%);
	bottom: 64px;
	padding: 3px 5px;
	
}
.dot_t {
  width: 12px;
  height: 12px;
  float: left;
  background-color: #f4f4f4;
  border-radius: 8px;
  margin: 0 8px;
}
.dot_t:hover {
  cursor: pointer;
}
.current {
  background: #e5000d;
}
