.carousel {
  position: relative;
  width: 100%;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.4); */
  /* background: #f6f6f6; */
  background: #ddd;
}

.carousel-window {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
    /* min-width: 100%;
    height: 400px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem; */
    min-width: 100%;
    height: 400px;
    display: flex;
    /* align-items: center; */
    align-items: flex-start;
    /* justify-content: center; */
    justify-content: flex-start;
    font-size: 2rem;
}

.slide-mask {
    height: 400px;
    overflow: hidden;
    padding: 0 50px 50px 50px;
}

.slide-header {
    display: flex;
    gap: 30px;
    padding: 10px 0 ;
}


.slide-title {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
    text-align: left;
}

.slide-message {
    font-size: 16px;
    font-weight: bold;
    color: #000;
    white-space: nowrap;
    text-align: left;
}

.sizeadjust-slide {
    transform: scale(0.6);
    transform-origin: top left;
    /* transform-origin: top center; */
    width: 166.66%;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.carousel-indicators {
  text-align: center;
  margin-top: 10px;
}

.carousel-indicators button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  background: #bbb;
  margin: 0 4px;
  cursor: pointer;
}

.carousel-indicators button.active {
  background: #333;
}
