@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&family=Roboto:wght@300;400;500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #2196f3; */
  /* background-image:url(../../../images/2023/index/slider/sun-clouds_hoshun.jpg),#2196f3; */
  background: url('../../../images/2023/index/honor/greenSchool/sun-clouds.png') no-repeat 0% 80%/ cover;
  overflow: hidden;
}

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  width: 600px;
height: 800px;
  /* width: 450px;
  height: 600px; */

  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  filter: blur(1px);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
}

.swiper-slide-active {
  filter: blur(0px);
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-slide span {
  text-transform: uppercase;
  color: #fff;
  background: #1b7402;
  padding: 7px 18px 7px 25px;
  display: inline-block;
  border-radius: 0 20px 20px 0px;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-family: "Open Sans", sans-serif;
}

.swiper-slide--one span {
  background: #62667f;
}

.swiper-slide--two span {
  background: #087ac4;
}

.swiper-slide--three span {
  background: #b45205;
}

.swiper-slide--four span {
  background: #087ac4;
}

.swiper-slide h2 {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 15px;
  padding: 25px 45px 0 25px;
}

.swiper-slide p {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0 25px 35px 25px;
  font-size: 25px;
}

.swiper-slide svg {
  color: #fff;
  width: 22px;
  height: 22px;
  margin-right: 7px;
}


.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

/********************************屏幕自適應區域 start********************************/

/*----------------屏幕大小：筆記本電腦（1200<X<1500px）----------------start */
@media (min-width: 1200px) and (max-width: 1500px) {

  .swiper-slide {
  width: 375px;
height: 500px;
  }
  .swiper-slide h2 {
    font-size: 1rem;
  }
}

/*----------------屏幕大小：Ipad打橫（992<X<1200px）----------------start */
@media (min-width: 992px) and (max-width: 1200px) {
  .swiper-slide {
    width: 340px;
  height: 455px;
    }

    .swiper-slide h2 {
      font-size: 12px;
    }
}

/*----------------屏幕大小：iPad打直正常寬度（768<X<992px）----------------start */
@media (min-width: 768px) and (max-width: 992px) {
  .swiper-slide {
    width: 340px;
  height: 455px;
    }

}

/*----------------屏幕大小：手機端 寬度（X<767px）----------------start */
@media (max-width: 767px) {
  .swiper-slide {
    width: 340px;
    height: 455px;
    }

}
/********************************屏幕自適應區域 end********************************/