@charset "UTF-8";

/** 媒体查询 */

/** 布局 */

.banner {
  color: #FFFFFF;
}

.banner .text {
  padding: 120px 0;
}

.banner .t1 {
  font-size: 1.25rem;
  margin-bottom: 1.875rem;
}

.banner .t2 {
  font-weight: bold;
  font-size: 3.125rem;
  margin: 0.3125rem 0;
}

.banner .btn {
  margin-top: 6.25rem;
}

.btns {
    display: none;
}

.btnActive {
    display: block;
}

@media (max-width: 800px) {
  .banner .text {
    padding: 90px 0;
  }

  .banner .t1 {
    font-size: 1rem;
    margin-bottom: 0.9375rem;
  }

  .banner .t2 {
    font-size: 1.5rem;
  }

  .banner .btn {
    margin-top: 1.875rem;
  }
}

.product {
  background-image: url("../assets/home/bg1.png");
  background-size: cover;
  padding: 6.25rem 0 5rem;
}

.product .product-box {
  margin-top: 3.75rem;
}

.product .product-box:not(.active) {
  display: none;
}

.product .product-box.active {
  animation: myFadeInUp 0.3s;
}

.product .product-box .text {
  width: 26.25%;
  position: relative;
  z-index: 11;
}

.product .product-box .text .t1 {
  font-weight: bold;
  font-size: 2.5rem;
  color: #01BE80;
}

.product .product-box .text .t2 {
  font-size: 1.25rem;
  color: #707070;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.product .product-box .product-swiper {
  width: 58.2%;
}

.product .product-box .product-swiper .default-product-item {
  width: 18.75rem;
}

.product .types-swiper {
  margin-top: 10rem;
}

.product .types-swiper .item {
  width: auto;
  display: inline-block;
  padding: 0 2.75rem;
  height: 5rem;
  line-height: 5rem;
  background: #FFFFFF;
  font-size: 1rem;
  color: #999999;
  cursor: pointer;
  transition: background-color, color 0.3s;
}

.product .types-swiper .item.active,
.product .types-swiper .item:hover {
  background: #01BE80;
  color: #FFFFFF;
}

.product .types-swiper .types-swiper-next {
  position: absolute;
  z-index: 11;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 2.5rem;
  cursor: pointer;
}

@media (max-width: 800px) {
  .product {
    padding: 3.125rem 0 2.5rem;
  }

  .product .product-box {
    margin-top: 1.875rem;
    gap: 1.25rem;
  }

  .product .product-box .text {
    width: 100%;
  }

  .product .product-box .text .t1 {
    font-size: 1.5rem;
  }

  .product .product-box .text .t2 {
    font-size: 1rem;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }

  .product .product-box .product-swiper {
    width: 95%;
  }

  .product .product-box .product-swiper .default-product-item {
    width: 15.625rem;
  }

  .product .types-swiper {
    margin-top: 3.125rem;
  }

  .product .types-swiper .item {
    padding: 0 1.375rem;
    height: 2.5rem;
    line-height: 2.5rem;
    font-size: 0.75rem;
  }

  .product .types-swiper .types-swiper-next {
    width: 1.875rem;
  }
}

.customized {
  background-image: url("../assets/home/bg2.png");
  background-size: cover;
  background-position: center;
  padding: 6.25rem 0 10rem;
}

.customized .customized-box {
  background-color: #ffffff;
  display: grid;
  grid-template-columns: 36.25% 1fr;
}

.customized .customized-box .text {
  padding: 0 2.5rem 1.875rem 5rem;
  box-sizing: border-box;
}

.customized .customized-box .t1 {
  font-weight: bold;
  font-size: 2.5rem;
  color: #01BE80;
}

.customized .customized-box .t2 {
  font-size: 1.25rem;
  color: #707070;
  margin-top: 2.5rem;
}

.customized .customized-box .btn {
  margin-top: 5rem;
}

@media (max-width: 800px) {
  .customized {
    padding: 3.125rem 0 5rem;
  }

  .customized .customized-box {
    display: flex;
    flex-direction: column-reverse;
  }

  .customized .customized-box .text {
    padding: 1.25rem 1.25rem 1.5625rem 2.5rem;
  }

  .customized .customized-box .t1 {
    font-size: 1.5rem;
  }

  .customized .customized-box .t2 {
    font-size: 1rem;
    margin-top: 1.25rem;
  }

  .customized .customized-box .t2 p {
    margin-bottom: 0.3125rem;
  }

  .customized .customized-box .btn {
    margin-top: 2.5rem;
  }
}

.programme {
  padding-top: 6.25rem;
}

.programme .programme-nav {
  display: flex;
  border-top: 0.0625rem solid #dddddd;
  margin-top: 4.375rem;
  padding-bottom: 1.875rem;
}

.programme .programme-nav .item {
  font-size: 1.25rem;
  color: #666666;
  position: relative;
  padding-top: 1.625rem;
  cursor: pointer;
  text-align: center;
}

.programme .programme-nav .item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0.25rem solid #01BE80;
  background-color: #ffffff;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
}

.programme .programme-nav .item.active {
  font-weight: bold;
  color: #01BE80;
}

.programme .programme-nav .item.active::after {
  opacity: 1;
}

.programme .programme-nav .item:hover {
  color: #01BE80;
}

.programme .programme-box:not(.active) {
  display: none;
}

.programme .programme-box.active-animate .image img {
  animation: myZoomIn2 5s;
}

.programme .programme-box.active-animate .programme-card {
  animation: myFadeInUp 1s;
}

.programme .programme-card {
  padding: 3.125rem 1.875rem 3.75rem 3.125rem;
  background-color: #ffffff;
  box-sizing: border-box;
  width: 45rem;
  min-height: 31.25rem;
}

.programme .programme-card .t1 {
  font-weight: bold;
  font-size: 2.5rem;
  color: #000000;
}

.programme .programme-card .t2 {
  font-size: 1rem;
  max-width: 500px;
  margin-top: 1.875rem;
}

.programme .programme-card .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem;
  margin-top: 1.875rem;
  margin-bottom: 1.875rem;
}

.programme .programme-card .list a {
  display: block;
  font-weight: bold;
  font-size: 1rem;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 0.9375rem;
}

@media (max-width: 800px) {
  .programme {
    padding-top: 3.125rem;
  }

  .programme .programme-nav {
    border-top: 0;
    margin-top: 1.25rem;
    padding-bottom: 0.9375rem;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem 1.25rem;
  }

  .programme .programme-nav .item {
    font-size: 1rem;
    padding-top: 0;
  }

  .programme .programme-nav .item::after {
    display: none;
  }

  .programme .programme-card {
    padding: 1.5625rem 0.9375rem 1.875rem 1.5625rem;
    max-width: 31.25rem;
    width: 100%;
    min-height: 18.75rem;
    margin: 2.5rem 0;
  }

  .programme .programme-card .t1 {
    font-size: 1.375rem;
  }

  .programme .programme-card .t2 {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
  }

  .programme .programme-card .list {
    gap: 0.625rem;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }

  .programme .programme-card .list a {
    font-size: 0.875rem;
    padding-bottom: 0.625rem;
  }
}

.about {
  padding: 6.25rem 0;
}

.about .about-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3.75rem;
  align-items: center;
}

.about .about-box .text {
  padding-bottom: 1.875rem;
  padding-left: 5rem;
  box-sizing: border-box;
}

.about .about-box .t1 {
  font-weight: bold;
  font-size: 2.5rem;
  color: #01BE80;
}

.about .about-box .t2 {
  font-size: 1.25rem;
  color: #707070;
  margin: 3.125rem 0;
}

@media (max-width: 800px) {
  .about {
    padding: 3.125rem 0;
  }

  .about .about-box {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.875rem;
  }

  .about .about-box .text {
    padding-bottom: 0.9375rem;
    padding-top: 0.9375rem;
    padding-left: 0;
  }

  .about .about-box .t1 {
    font-size: 1.5rem;
  }

  .about .about-box .t2 {
    font-size: 1rem;
    margin: 0.9375rem 0 1.5625rem;
  }
}

.news {
  background: #F5F5F5;
  padding: 6.25rem 0;
}

.news .news-swiper {
  margin-top: 3.75rem;
  padding-bottom: 1.875rem;
}

.news .news-swiper .item:hover .image img {
  transform: scale(1.1);
}

.news .news-swiper .item:hover .name {
  color: #01BE80;
}

.news .news-swiper .image img {
  transition: all 0.3s;
}

.news .news-swiper .text {
  padding: 1.875rem 0;
}

.news .news-swiper .time {
  font-size: 1rem;
  color: #999999;
}

.news .news-swiper .name {
  font-weight: bold;
  font-size: 1.5rem;
  transition: all 0.3s;
  color: #000000;
  margin-top: 0.875rem;
}

@media (max-width: 800px) {
  .news {
    padding: 3.125rem 0;
  }

  .news .news-swiper {
    margin-top: 1.875rem;
    padding-bottom: 0.9375rem;
  }

  .news .news-swiper .text {
    padding: 0.9375rem 0 1.875rem;
  }

  .news .news-swiper .time {
    font-size: 0.875rem;
  }

  .news .news-swiper .name {
    font-size: 1.125rem;
    margin-top: 0.625rem;
  }
}