/* 轮播图--banner */
/* 修改指示符为圆点 */
.carousel-indicators li {
  width: 12px; /* 调整圆点大小 */
  height: 12px; /* 调整圆点大小 */
  background-color: rgba(0, 0, 0, 0.8); /* 设置圆点的颜色 */
  border-radius: 50%; /* 使指示符变为圆形 */
}

.carousel-indicators .active {
  background-color: rgb(71, 158, 131); /* 设置活动状态的圆点颜色 */
}
.carousel-indicators{
  bottom: 5%;
}

.carousel{
  overflow: hidden;
}
.carousel-indicators li {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  margin-left: 10px;
}
.carousel-inner img {
  width: 100%;
  height: 1000px;
}

i.fas.fa-chevron-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(19, 15, 38);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  width: 80px;
  height: 80px;
  font-size: 50px;
  border-width: initial;
  border-style: none;
  border-color: initial;
  border-image: initial;
  padding: 10px;
  border-radius: 50%;
  transition: background-color 0.3s;
}

i.fas.fa-chevron-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgb(19, 15, 38);
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  color: white;
  width: 80px;
  height: 80px;
  font-size: 50px;
}
.background-video{
  height: 1000px;
  width: 100%;
  object-fit: cover;
}