/* 轮播图样式 */
.conterContent {
  margin-top: 80px;
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.conterContent .focus {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.conterContent ul {
  position: absolute;
  width: 300%;
  display: flex;
  transition: transform 0.5s ease;
  transform: translateX(0);
}

.conterContent ul li {
  width: 33.333%;
  flex-shrink: 0;
}

.conterContent ul li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.conterContent ol {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.conterContent ol li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
  margin: 0;
}

.conterContent ol li.current {
  background: #fff;
} 