@charset "UTF-8";
.section-service {
  background-color: #fff;
}

.section-service .list {
  display: grid;
  grid: auto/repeat(3, 1fr);
  align-items: start;
  justify-items: center;
  justify-content: center;
  gap: 2.5rem;
  text-align: center;
}

.section-service .list .item {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.section-service .list .item svg {
  color: rgb(99, 158, 198);
}

.section-service .list .item .title {
  font-size: 1.25rem;
}

/* 如何使用 */
.section-howtouse {
  background: rgb(215, 221, 235);
  /* background-color: #fff; */
}

.section-howtouse .main-title {
  font-size: 3rem;
  padding: 1.5rem 0 3rem;
  font-weight: 700;
}

/* .section-howtouse .list {
  display: grid;
  gap: 3rem;
  grid:auto / auto-flow minmax(0, 1fr);
} */
.section-howtouse .list {
  display: grid;
  gap: 3rem;
  grid: auto/repeat(4, minmax(260px, 1fr));
}

.section-howtouse .list .item {
  background-color: #fff;
  border-radius: 10px;
}

.section-howtouse .img-container {
  height: 300px;
  /* border-radius: 10px; */
  overflow: hidden;
  position: relative;
}

.section-howtouse .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-howtouse .img-container .cover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fff;
}

.section-howtouse .img-container:hover img {
  /* display: none; */
}

.section-howtouse .img-container:hover img.cover {
  display: block;
}

.section-howtouse .info-wrap {
  padding: 24px;
}

.section-howtouse .info-wrap .title {
  /* margin-bottom: 16px; */
  /* margin-bottom: 6px; */
}

.section-howtouse .info-wrap .desc {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-howtouse .stars-svg {
  color: #9ac440;
  display: flex;
}

/* 下拉内容 */
.pulldown-content-wrap {
  /* width: 60%; */
  box-sizing: border-box;
  padding: 1.25rem 3rem;
  background-color: rgb(41, 57, 92);
  border-radius: 0.88rem;
  color: #fff;
}

.pulldown-content-wrap .question-list .item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pulldown-content-wrap .question-list .action-wrap {
  justify-content: space-between;
  padding: 1.25rem 0;
}

.pulldown-content-wrap .question-list .action-wrap .title {
  font-weight: bold;
  text-align: left;
}

.pulldown-content-wrap .question-list .action-wrap .svg-wrap {
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.pulldown-content-wrap .question-list .accordion__content {
  margin: 0 0 1.25rem 0;
  display: none;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
}

.pulldown-content-wrap .question-list .accordion__content li {
  margin-bottom: 0.6rem;
}

/* 移动端 */
@media (min-width: 320px) and (max-width: 768px) {
  .section-service .list {
    grid: auto/repeat(1, 1fr);
  }
}