
.container {
  max-width: 480px;
  width: 90%;
  overflow: hidden;
  margin-left:5%;
}

/* 上半部分：图文展示 */
.top-section {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text-block {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #048646ad;
  color: white;
  padding: 10px 15px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.6;
}

.text-block h3 {
  margin: 0px 0px 5px;
  font-size: 16px;
}

/* 下半部分：按钮列表 */
.bottom-section {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
  gap: 10px;
  padding: 0 30px 20px;
}

.advantage {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 10px 15px;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
}

.advantage.active {
  background: #048646;
  border-color: #048646;
  color: #fff;
}

.advantage.active span{
  color: #fff;
}

.icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eee;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.advantage.active .icon {
  background: white;
  color: #00974a;
}

.advantage span {
  font-weight: bold;
  flex-shrink: 0;
  width: 90px;
  color:#048646;
  font-size:17px;
}

.advantage p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  text-align: left;
}