.TOPbanner .swiper-wrapper {
  overflow: hidden;
}
.TOPbanner .swiper-container {
  width: 100%;
  height: 100%;
  margin: 0px auto;
  background-color: #cdd6db;
}
.TOPbanner .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.TOPbanner .swiper-slide img {
  width: 100%;
  margin-left: 0px;
}
.TOPbanner .swiper-slide .img-visible-xs {
  display: none;
}
@media (max-width: 820px) {
  .TOPbanner .swiper-slide .img-hidden-xs {
    display: none;
  }
  .TOPbanner .swiper-slide .img-visible-xs {
    display: block;
  }
}
.TOPbanner .swiper-slide .slide-group {
  display: flex;
  width: 100%;
  max-width: 1084px;
  text-align: left;
  color: #fff;
  letter-spacing: 1px;
  position: absolute;
  transform: translateX(-20%);
  opacity: 0;
  transition: all 0.5s;
  margin-top: 6%;
}
@media (max-width: 820px) {
  .TOPbanner .swiper-slide .slide-group {
    margin-top: 15%;
  }
}
@media (max-width: 480px) {
  .TOPbanner .swiper-slide .slide-group {
    flex-wrap: wrap;
  }
}
.TOPbanner .swiper-slide .slide-group .slideIMG {
  width: 280px;
  height: 280px;
  margin-right: 6%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1280px) {
  .TOPbanner .swiper-slide .slide-group .slideIMG {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 820px) {
  .TOPbanner .swiper-slide .slide-group .slideIMG {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 480px) {
  .TOPbanner .swiper-slide .slide-group .slideIMG {
    width: 100px;
    height: 100px;
  }
}
.TOPbanner .swiper-slide .slide-group .slideIMG img {
  max-width: 280px;
  z-index: 2;
  position: absolute;
}
.TOPbanner .swiper-slide .slide-group .slideIMG .circle {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s;
}
.TOPbanner .swiper-slide .slide-group .slideIMG .circle span {
  background: #fff;
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
}
.TOPbanner .swiper-slide .slide-group .slideIMG .circle span:nth-child(1) {
  transform: scale(1);
  opacity: 0.2;
  transition: all 0.5s;
  animation: bubble01 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.TOPbanner .swiper-slide .slide-group .slideIMG .circle span:nth-child(2) {
  transform: scale(1);
  opacity: 0.3;
  transition: all 0.5s;
  animation: bubble02 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.TOPbanner .swiper-slide .slide-group .slideIMG .circle span:nth-child(3) {
  transform: scale(1);
  opacity: 0.4;
  transition: all 0.5s;
  animation: bubble03 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.TOPbanner .swiper-slide .slide-group .slideIMG .circle span:nth-child(4) {
  transform: scale(1);
  opacity: 0.4;
  transition: all 0.7s;
  animation: bubble04 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.TOPbanner .swiper-slide .slide-group .slide-txt {
  width: 100%;
  max-width: 685px;
}
@media (max-width: 820px) {
  .TOPbanner .swiper-slide .slide-group .slide-txt {
    max-width: 500px;
  }
}
@media (max-width: 480px) {
  .TOPbanner .swiper-slide .slide-group .slide-txt {
    max-width: 375px;
  }
}
.TOPbanner .swiper-slide .slide-group .slide-txt h2 {
  font-size: 56px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 1280px) {
  .TOPbanner .swiper-slide .slide-group .slide-txt h2 {
    font-size: 50px;
  }
}
@media (max-width: 1024px) {
  .TOPbanner .swiper-slide .slide-group .slide-txt h2 {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .TOPbanner .swiper-slide .slide-group .slide-txt h2 {
    font-size: 24px;
  }
}
.TOPbanner .swiper-slide .slide-group .slide-txt p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}
@media (max-width: 480px) {
  .TOPbanner .swiper-slide .slide-group .slide-txt p {
    display: none;
  }
}
.TOPbanner .ani-txt .slide-group {
  transform: translateX(-10%);
  opacity: 1;
}
@media (max-width: 1280px) {
  .TOPbanner .ani-txt .slide-group {
    transform: translateX(5%);
  }
}
.TOPbanner .swiper-button-prev,
.TOPbanner .swiper-button-next {
  width: 40px;
  height: 40px;
}
@media (max-width: 480px) {
  .TOPbanner .swiper-button-prev,
  .TOPbanner .swiper-button-next {
    display: none;
  }
}
.TOPbanner .swiper-button-prev {
  background-image: url("../../images/ChevronLeft.webp");
  background-size: auto;
}
.TOPbanner .swiper-button-next {
  background-image: url("../../images/ChevronRight.webp");
  background-size: auto;
}
.TOPbanner .swiper-pagination {
  bottom: 80px;
}
@media (max-width: 767px) {
  .TOPbanner .swiper-pagination {
    bottom: 10px;
  }
}
.TOPbanner .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
  width: 10px;
  height: 10px;
  margin: 0 5px;
}
.TOPbanner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

.simple-intro {
  position: relative;
  padding: 0;
}
.simple-intro:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #E0E0E0;
  left: 0px;
  bottom: 0;
}
.simple-intro .item {
  padding: 60px;
  min-height: 730px;
}
@media (max-width: 1280px) {
  .simple-intro .item {
    min-height: 645px;
  }
}
@media (max-width: 480px) {
  .simple-intro .item {
    padding: 40px;
    min-height: 300px;
  }
}
.simple-intro .item.active:before {
  content: "";
  position: absolute;
  height: 5px;
  background-color: #124289;
  left: 0px;
  bottom: 0;
  animation: scrollLine 4.5s ease-in-out forwards;
}
.simple-intro .simpleIMG {
  position: relative;
}
@media (max-width: 480px) {
  .simple-intro .simpleIMG {
    display: none;
  }
}
.simple-intro .simpleIMG:before {
  content: "";
  position: absolute;
  width: 43px;
  height: 70px;
  background-color: #124289;
  right: -27px;
  top: 43px;
}
.simple-intro .simpleIMG figure img {
  border: solid 1px #ccc;
}
.simple-intro .simpleIMG figcaption {
  text-align: center;
}
.simple-intro .simpleTXT {
  padding: 40px 60px;
}
@media (max-width: 1280px) {
  .simple-intro .simpleTXT {
    padding: 40px 30px 0px 60px;
  }
}
@media (max-width: 480px) {
  .simple-intro .simpleTXT {
    padding: 0px 30px 40px 30px;
  }
}
.simple-intro .simpleTXT h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.25;
  text-align: left;
}
@media (max-width: 1280px) {
  .simple-intro .simpleTXT h2 {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .simple-intro .simpleTXT h2 {
    font-size: 24px;
  }
}
.simple-intro .simpleTXT h3 {
  color: #124289;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 1280px) {
  .simple-intro .simpleTXT h3 {
    font-size: 26px;
  }
}
@media (max-width: 480px) {
  .simple-intro .simpleTXT h3 {
    font-size: 16px;
  }
}
.simple-intro .simpleTXT p {
  font-size: 20px;
  text-align: left;
  line-height: 1.5;
}
@media (max-width: 1280px) {
  .simple-intro .simpleTXT p {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .simple-intro .simpleTXT p {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
.simple-intro .simpleTXT .simpleBtn {
  width: 150px;
  display: block;
  border: solid 1px rgba(36, 36, 36, 0.5);
  color: rgba(36, 36, 36, 0.8);
  padding: 13px 15px;
  font-size: 16px;
  margin-top: 50px;
  position: relative;
  text-decoration: none;
}
@media (max-width: 480px) {
  .simple-intro .simpleTXT .simpleBtn {
    margin-top: 0px;
  }
}
.simple-intro .simpleTXT .simpleBtn:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url("../../images/simpleBtnRight.webp");
  background-size: auto;
  right: 15px;
  top: 15px;
}

.Controls-button {
  position: absolute;
  bottom: 5px;
  right: 0px;
  display: flex;
}
.Controls-button .slidebtn {
  width: 125px;
}
.Controls-button .slidebtn.right {
  background-color: #F2F2F2;
}
.Controls-button .carousel-control {
  width: 100%;
  padding: 22px 30px;
  top: auto;
  display: flex;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0);
  background: none;
  opacity: 1;
}
.Controls-button .carousel-control img {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}
.Controls-button .carousel-control .control-txt {
  font-size: 16px;
  margin-right: 20px;
  color: rgba(36, 36, 36, 0.7);
}
.Controls-button .carousel-control.left {
  left: auto;
}
.Controls-button .carousel-control.left .control-txt {
  font-size: 16px;
  margin-left: 20px;
}

.HotPD {
  overflow: hidden;
  padding: 4% 15px;
}
.HotPD h2 {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 1280px) {
  .HotPD h2 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .HotPD h2 {
    font-size: 24px;
  }
}
.HotPD .swiper {
  width: 100%;
  height: 100%;
}
.HotPD .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: linear-gradient(-45deg, #F3F3F3, #E1E1E1);
  min-height: 425px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
@media (max-width: 820px) {
  .HotPD .swiper-slide {
    min-height: 325px;
  }
}
.HotPD .swiper-slide:before {
  content: "HOT";
  position: absolute;
  background-color: #49D9A5;
  width: 50px;
  height: 28px;
  border-radius: 0 5px 5px 0;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  left: -12px;
  top: 24px;
  padding-top: 4px;
}
.HotPD .swiper-slide:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0 12px 12px 0;
  border-color: transparent #2BA076 transparent transparent;
  left: -12px;
  top: 52px;
}
.HotPD .swiper-slide a {
  width: 100%;
  overflow: hidden;
}
.HotPD .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.2s ease-in-out;
}
.HotPD .swiper-slide img.MBPIC {
  display: none;
}
@media (max-width: 768px) {
  .HotPD .swiper-slide img.PCPIC {
    display: none;
  }
  .HotPD .swiper-slide img.MBPIC {
    display: block;
  }
}
.HotPD .swiper-slide .idec-titleinfo {
  padding: 0 25px;
}
.HotPD .swiper-slide .idec-titleinfo .maintitle {
  text-align: left;
  transition: all 0.5s ease-in-out;
}
.HotPD .swiper-slide .idec-titleinfo .maintitle a {
  font-size: 20px;
  color: #242424;
  text-decoration: none;
  font-weight: 500;
  border-radius: 8px;
  display: block;
}
.HotPD .swiper-slide .idec-titleinfo .subtitle {
  display: none;
}
.HotPD .swiper-slide .idec-titleinfo .text {
  transition: all 0.5s ease-in;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  position: absolute;
  opacity: 0;
}
.HotPD .swiper-slide .idec-titleinfo .LINKBTN {
  opacity: 0;
  transition: all 0.2s ease-in-out;
  position: absolute;
  width: 90%;
  left: 50%;
  background: linear-gradient(45deg, #1f1f1f, #404040);
  bottom: -50px;
  transform: translateX(-50%);
  padding: 10px;
  color: #fff;
  border-radius: 5px;
}
.HotPD .swiper-slide:hover img {
  transform: scale(1.1);
}
.HotPD .swiper-slide:hover .idec-titleinfo .LINKBTN {
  bottom: 20px;
  opacity: 1;
}
.HotPD .swiper-slide:hover .idec-titleinfo .maintitle {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.HotPD .swiper-slide:hover .idec-titleinfo .text {
  opacity: 1;
  transition: all 0.5s ease-in;
  bottom: 60px;
}
.HotPD .swiper-pagination-bullet-active {
  background-color: #242424;
}/*# sourceMappingURL=banner.css.map */