@charset "UTF-8";

/** 媒体查询 */

/** 布局 */

.banner-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.banner-text h1 {
  font-weight: bold;
  font-size: 2.5rem;
  color: #D5DD23;
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}

.banner-text .banner-btn {
  padding: 1.25rem 1.875rem;
  font-weight: bold;
  font-size: 1.75rem;
  color: #FFFFFF;
  border-radius: 1.25rem;
  border: 0.125rem solid #FFFFFF;
  transition: all 0.3s ease;
  background-color: transparent;
  white-space: nowrap;
  z-index: 10;
}

.banner-text .banner-btn:hover {
  background-color: #FFFFFF;
  color: #333;
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.625rem 1.25rem rgba(0, 0, 0, 0.15);
}

@media (max-width: 800px) {
  .banner-text > div {
    gap: 0.625rem;
    flex-direction: column;
    justify-content: center;
  }

  .banner-text h1 {
    position: static;
    font-size: 1.25rem;
  }

  .banner-text .banner-btn {
    padding: 0.625rem 0.9375rem;
    font-size: 1rem;
  }
}

.container {
  margin: 5rem 0 3.75rem;
  border-top: 0.0625rem solid #666666;
}

.container .list {
  padding-bottom: 12.5rem;
}

.container .list .item {
  gap: 6.25rem;
  padding: 2.5rem 0;
  border-bottom: 0.0625rem solid #666666;
}

.container .list .item .box {
  width: 100%;
  max-width: 14.0625rem;
  height: 16.875rem;
  max-height: 18.75rem;
  background: #E6E7E8;
  border-radius: 2.25rem;
  gap: 0.3125rem;
  overflow: hidden;
}

.container .list .item .box .title {
  padding: 0 0.625rem;
  font-weight: bold;
  font-size: 1.25rem;
  color: #000000;
  text-align: center;
}

.container .list .item .box > img {
  max-width: 7.5rem;
  margin-top: 1.25rem;
}

.container .list .item > p {
  flex: 1;
  font-size: 1.75rem;
  color: #000000;
}

@media (max-width: 800px) {
  .container {
    margin: 2.5rem 0 1.875rem;
  }

  .container .list {
    padding-bottom: 6.25rem;
  }

  .container .list .item {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.875rem 0;
  }

  .container .list .item .box {
    max-width: 12.5rem;
    height: 15.625rem;
  }

  .container .list .item .box .title {
    font-weight: bold;
    font-size: 1.125rem;
  }

  .container .list .item > p {
    font-size: 1rem;
  }
}