
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  /*display: flex;*/
  /*justify-content: center;*/
  /* align-items: center; */
  min-height: 100vh;
  background-color: #f5f5f5;
}

/* 主容器 */
.carousel-wrapper_small {
  width: 800px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* 图片轮播部分 */
.carousel-container_small {
  width: 100%;
  padding: 12px;
  background: white;
  position: relative;
}

.carousel_small {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.carousel-inner_small {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-item_small {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-item_small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 悬浮在图片上的指示器 */
.carousel-indicators_small {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 20px;
}

.indicator_small {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.indicator_small.active_small {
  background: white;
  transform: scale(1.2);
}

/* 底部信息区域 - 全宽背景 */
.carousel-footer_small {
  width: 100%;
  background: url(../images/psks0ha6nqep9oaf5jd2ej6n47mso8z612f94c4d9f8-bc3b-43e3-8431-4c01aaae7513.png)
  100% no-repeat;
  background-size: cover;
  padding: 30px 0;
}

.footer-content_small {
  width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.caption-text_small {
  flex: 1;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.caption-text_small h3 {
  font-size: 22px;
  margin-bottom: 5px;
}

.caption-text_small p {
  font-size: 14px;
  line-height: 1.4;
}

/* 导航区域 - 中间带logo */
.carousel-nav_small {
  display: flex;
  align-items: center;
  gap: 12px;
}

.carousel-arrow_small {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  font-size: 20px;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.carousel-arrow_small:hover {
  color: #fff;
}

.carousel-logo_small {
  width: 55px;
  height: 55px;
  border: 1px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background: rgba(255, 255, 255, 0.2); */
}

.carousel-logo_small img {
  width: 50%;
  height: 50%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}