:root {
  --RWDWidth: 1024px;
}

.banner {
  position: relative;
  isolation: isolate;
  z-index: 2;
}
.banner .swiper {
  margin-bottom: 20px;
}
.banner .swiper-wrapper {
  align-items: stretch;
}
.banner .swiper-wrapper .swiper-slide {
  height: unset;
}
.banner .swiper-wrapper .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.5;
  transition: all 0.3s ease;
  pointer-events: none;  
}
.banner .swiper-wrapper .swiper-slide.swiper-slide-active::before {
  opacity: 0;
}
.banner[data-swiper-auto-play=true] .swiper-pagination .swiper-pagination-bullet-active .circlePagination svg {
  display: block;
}
.banner[data-swiper-auto-play=true] .swiper-pagination .swiper-pagination-bullet-active .circlePagination svg circle {
  animation: 4s linear forwards circle;
}
.banner .swiper-pagination {
  width: auto;
  display: flex;
  position: relative;
  bottom: auto;
  gap: 5px;
}
.banner .swiper-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 26px;
  position: relative;
  margin: 0;
  background: none;
}
.banner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .circlePagination::before {
  background: #000;
}
.banner .swiper-pagination .swiper-pagination-bullet .circlePagination {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.banner .swiper-pagination .swiper-pagination-bullet .circlePagination::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background-color: #9d9d8f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.banner .swiper-pagination .swiper-pagination-bullet .circlePagination svg {
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  display: none;
}
.banner .swiper-pagination .swiper-pagination-bullet .circlePagination circle {
  fill: transparent;
  stroke: #9d9d8f;
  stroke-width: 1.5;
}
@keyframes circle {
  0% {
    stroke-dasharray: 0, 69;
  }
  100% {
    stroke-dasharray: 69, 69;
  }
}
.banner .controlBox {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  padding: 0 20px;
  max-width: 1920px;
  margin: 0 auto;
}
.banner .controlBtn {
  width: 26px;
  height: 26px;
  border: none;
  background: url("../images/icon/icon_stop.svg") center no-repeat;
}
.banner .controlBtn.active {
  background: url("../images/icon/icon_play.svg") center no-repeat;
}

.moreBox {
  max-width: 1150px;
  margin: 0 auto;
}
@media screen and (max-width: 1330px) {
  .moreBox {
    max-width: 1062px;
  }
}
.moreBox a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 16px;
  color: #000;
}
.moreBox a:hover .icon {
  background: #5d5d5d;
}
.moreBox a .icon {
  width: 40px;
  height: 40px;
  background: #000;
  border-width: 1px;
  border-style: solid;
  -o-border-image: initial;
     border-image: initial;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.moreBox a .icon::before {
  content: "";
  width: 15px;
  height: 15px;
  -webkit-mask: url("../images/icon/icon_arrow.svg") center no-repeat;
          mask: url("../images/icon/icon_arrow.svg") center no-repeat;
  background: #fff;
}

section {
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 30px 0;
  }
}
section .blockTitle {
  color: #222222;
  font-weight: 400;
  line-height: 1;
  font-size: var(--clamp38);
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  section .blockTitle {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  section .blockTitle {
    margin-bottom: 20px;
  }
}
section .blockTitle span {
  color: #000;
  font-weight: 400;
}
section .contentBox {
  max-width: 1150px;
  margin: 0 auto;
}
@media screen and (max-width: 1330px) {
  section .contentBox {
    max-width: 1062px;
  }
}

.productBox {
  position: relative;
}
.productBox .waveBg {
  position: absolute;
  width: 100%;
  height: 550px;
  overflow: hidden;
  bottom: 0;
}
.productBox .waveBg .wave {
  position: absolute;
  top: 130px;
  width: 6400px;
  height: 560px;
  animation: waveUse 35s cubic-bezier(0.36, 0.45, 0.63, 0.53) infinite, waveUse2 30s ease infinite;
  background: url("../images/index/wave.svg");
}
.productBox .waveBg .wave:nth-of-type(2) {
  top: 116px;
  opacity: 0.5;
  animation: waveUse 29s cubic-bezier(0.36, 0.45, 0.63, 0.53) -1s infinite, waveUse2 29s ease infinite;
}
.productBox .waveBg .wave:nth-of-type(3) {
  top: 0;
  opacity: 0.3;
  animation: waveUse 30s cubic-bezier(0.36, 0.45, 0.63, 0.53) -2s infinite;
}
@keyframes waveUse {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: -1600px;
  }
}
@keyframes waveUse2 {
  0%, 100% {
    transform: translate3d(0, -20px, 0);
  }
  50% {
    transform: translateZ(0);
  }
}
.productBox .listBox {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .productBox .listBox {
    flex-direction: column;
  }
}
.productBox .listBox .box {
  width: calc((100% - 20px * (2 - 1)) / 2);
}
@media screen and (max-width: 1024px) {
  .productBox .listBox .box {
    width: 100%;
  }
}
.productBox .listBox .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}
.productBox .listBox .card .tag {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: #2680ff;
  letter-spacing: 1px;
  border: 1px solid #2680ff;
  border-radius: 50px;
}
@media screen and (max-width: 1200px) {
  .productBox .listBox .card .tag {
    font-size: 0.8125rem;
  }
}
.productBox .listBox .card .pic {
  max-width: 315px;
  position: relative;
}
.productBox .listBox .card .infoBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.productBox .listBox .card .title {
  height: 32px;
  /* overflow: hidden; */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.productBox .listBox .card .title img {
  -o-object-fit: contain;
     object-fit: contain;
}
.productBox .listBox .card p {
  margin: 16px 0 0;
}
.productBox .listBox .card img {
  height: 100%;
}
.productBox .listBox .btnBox {
  width: 100%;
  margin: 30px auto 0;
  display: flex;
  gap: 20px;
}
.productBox .listBox .btnBox a {
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  padding: 8px 15px 6px;
  font-size: 13px;
  white-space: nowrap;
}
.productBox .listBox .btnBox a:nth-of-type(1) {
  border: 1px solid #000;
  background: #fff;
}
.productBox .listBox .btnBox a:nth-of-type(2) {
  background: #000;
  color: #fff;
}
.productBox .listBox .cardBox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
}
.productBox .listBox .cardBox .card {
  width: calc((100% - 10px * (2 - 1)) / 2);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1330px) {
  .productBox .listBox .cardBox .card {
    gap: 10px;
  }
}
.productBox .listBox .cardBox .card:nth-of-type(1) {
  width: 100%;
  max-width: none;
  display: flex;
  gap: 10px;
  flex-direction: row;
}
.productBox .listBox .cardBox .card:nth-of-type(1) .pic {
  width: 42%;
}
@media screen and (max-width: 550px) {
  .productBox .listBox .cardBox .card:nth-of-type(1) .pic {
    width: 45%;
  }
}
.productBox .listBox .cardBox .card:nth-of-type(1) .infoBox {
  width: 58%;
  padding: 30px 0;
  align-items: flex-start;
}
@media screen and (max-width: 550px) {
  .productBox .listBox .cardBox .card:nth-of-type(1) .infoBox {
    width: 55%;
  }
}
.productBox .listBox .cardBox .card:not(:nth-of-type(1)) .title {
  height: 16px;
}
.productBox .listBox .cardBox .card:not(:nth-of-type(1)) .pic {
  max-width: 144px;
  padding: 0 10px;
}
.productBox .listBox .cardBox .card .btnBox {
  gap: 5px;
}
@media screen and (max-width: 1200px) {
  .productBox .listBox .cardBox .card .btnBox {
    flex-direction: column;
    margin-top: 15px;
  }
  .productBox .listBox .cardBox .card .btnBox a {
    padding: 4px 15px 2px;
  }
}

.newsBox {
  background: linear-gradient(0deg, #fff 33.91%, #ececec);
}
.newsBox .listBox {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
.newsBox .listBox .item {
  width: calc((100% - 15px * (3 - 1)) / 3);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 550px) {
  .newsBox .listBox .item {
    width: calc((100% - 15px * (1 - 1)) / 1);
  }
}
.newsBox .listBox .tag {
  display: block;
  width: 60px;
  height: 30px;
  background: #b42222;
  color: white;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.newsBox .listBox .infoBox {
  padding: 30px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.newsBox .listBox .title {
  font-size: 20px;
  line-height: 24px;
  height: 48px;
  color: black;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.newsBox .listBox p {
  font-size: 16px;
  line-height: 22px;
  height: 44px;
  color: black;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.informationBox {
  display: flex;
  flex-direction: column;
}
.informationBox .list {
  border-bottom: 1px solid rgba(78, 132, 196, 0.3);
  transition: all 0.3s ease;
}
.informationBox .list:first-child {
  border-top: 1px solid rgba(78, 132, 196, 0.3);
}
.informationBox .list:hover {
  background: rgb(78, 132, 196);
}
.informationBox .list:hover .title {
  color: #fff;
}
.informationBox .list:hover a,
.informationBox .list:hover button {
  color: #fff;
}
.informationBox .contentBox {
  padding: 30px 0 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 550px) {
  .informationBox .contentBox {
    flex-direction: column;
    gap: 10px;
  }
}
.informationBox .title {
  min-width: 360px;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: var(--clamp38);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 1024px) {
  .informationBox .title {
    min-width: 300px;
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .informationBox .title {
    min-width: auto;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.informationBox .title .pic {
  max-width: 110px;
  line-height: 0;
}
@media screen and (max-width: 1024px) {
  .informationBox .title .pic {
    max-width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .informationBox .title .pic {
    max-width: 50px;
  }
}
.informationBox .title p {
  margin: 0;
  font-size: var(--clamp30);
}
.informationBox .listBox {
  flex-grow: 1;
}
.informationBox .listBox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.informationBox .listBox ul li {
  display: flex;
  flex-wrap: wrap;
}
.informationBox .listBox ul li a,
.informationBox .listBox ul li button {
  font-size: var(--clamp17);
}
.informationBox .listBox ul li a:hover,
.informationBox .listBox ul li button:hover {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

body > [id^=LB] {
  display: none;
}
img.mfp-img{
    max-height:90vh !important;
}