.banner-wrap {
  position: relative;
}
.banner-wrap img {
  display: block;
  width: 100%;
}
.banner-wrap .swiper-pagination {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  width: unset;
}
.banner-wrap .swiper-pagination span {
  width: 25px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
}
.banner-wrap .swiper-pagination span.swiper-pagination-bullet-active {
  opacity: 0.9;
}
.banner-wrap .swiper-slide {
  position: relative;
}
.banner-wrap .swiper-slide .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.banner-wrap .swiper-slide .hover .container {
  color: #fff;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.banner-wrap .swiper-slide .hover h2 {
  font-size: 70px;
  color: #fff;
  margin: unset;
}
.banner-wrap .swiper-slide .hover small {
  display: block;
  font-size: 26px;
  opacity: 0.9;
  margin-top: 25px;
}
.banner-wrap .swiper-slide .hover p {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 15px;
  line-height: 1.8;
}
.banner-wrap .swiper-slide .hover a {
  display: flex;
  align-items: center;
  position: relative;
}
.banner-wrap .swiper-slide .hover a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  bottom: -15px;
  transition: width .3s ease;
}
.banner-wrap .swiper-slide .hover a:hover::after {
  width: 110px;
}
.banner-wrap .swiper-slide .hover a img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  transform: translateY(2px);
}
.banner-wrap .swiper-control {
  position: absolute;
  top: 50%;
  left: 38px;
  right: 38px;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.banner-wrap .swiper-control .icon {
  width: 45px;
  height: 45px;
  pointer-events: all;
  cursor: pointer;
  transition: transform .3s ease, opacity .3s ease;
  opacity: 0.8;
}
.banner-wrap .swiper-control .icon:hover {
  opacity: 1;
  transform: scale(1.1);
}
.banner-wrap .swiper-control .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-wrap {
  padding: 60px 0;
}
.about-wrap .rw {
  display: flex;
}
.about-wrap .rw .left {
  margin-right: 30px;
  width: 50%;
}
.about-wrap .rw .left small {
  display: block;
  font-size: 98px;
  color: #000;
  font-weight: 700;
  opacity: 0.05;
  margin: 0;
  line-height: 1;
}
.about-wrap .rw .left h2 {
  font-size: 40px;
  color: #000000;
  margin: 0 0 30px;
  line-height: 1;
}
.about-wrap .rw .left .rich-text {
  color: #454545;
}
.about-wrap .rw .left .rich-text p {
  text-indent: 32px;
  line-height: 1.8;
}
.about-wrap .rw .left a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  padding: 5px 8px 5px 15px;
  line-height: 1;
  color: var(--main-color);
  transition: background .3s ease, color .3s ease;
  margin-top: 25px;
}
.about-wrap .rw .left a:hover {
  background: var(--main-color);
  color: #fff;
}
.about-wrap .rw .left a .icon {
  width: 35px;
  height: 35px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: background .3s ease;
}
.about-wrap .rw .left a:hover .icon {
  background: #fff;
}
.about-wrap .rw .left a .icon path {
  transition: fill .3s ease;
}
.about-wrap .rw .left a:hover .icon path {
  fill: var(--main-color) !important;
}
.about-wrap .rw .left a .icon svg {
  width: 80%;
  height: 80%;
}
.about-wrap .rw .right {
  flex: 1;
  margin-right: -11%;
}
.about-wrap .rw .right img {
  width: 100%;
  display: block;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}


.product-wrap {
  background: url(/images/bg-1.png) no-repeat center;
  background-size: cover;
  padding: 60px 0;
}
.product-wrap .header {
  color: #fff;
}
.product-wrap .header small {
  display: block;
  font-size: 30px;
}
.product-wrap .header h2 {
  font-weight: bold;
  font-size: 40px;
  margin: unset;
  line-height: 1;
  margin: 15px 0 50px;
}
.product-wrap .tabs-wrap ul {
  width: 100%;
  overflow-y: auto;
  white-space: nowrap;
  height: 125px;
}
.product-wrap .tabs-wrap li {
  display: inline-block;
  margin-left: 16px;
  background: #fff;
  padding: 10px 20px 15px;
  width: 10%;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}
.product-wrap .tabs-wrap li::after {
  content: "";
  width: 0;
  height: 0;
  border: 10px solid transparent;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  transition: border-color .3s ease;
}
.product-wrap .tabs-wrap li.active::after {
  border-top-color: #fff;
}
.product-wrap .tabs-wrap li:first-child {
  margin-left: unset;
}
.product-wrap .tabs-wrap li .icon {
  height: 33px;
}
.product-wrap .tabs-wrap li .icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-wrap .tabs-wrap li p {
  margin: 10px 0 0;
}
.product-wrap .tabs-cons {
  margin-top: 15px;
}
.product-wrap .tabs-cons .swiper {
  display: none;
}
.product-wrap .tabs-cons .swiper.active {
  display: block;
}
.product-wrap .tabs-cons .swiper .panel {
  display: block;
  background: #fff;
  border-radius: 6px;
  height: 502px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.product-wrap .tabs-cons .swiper .panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, #CEDDF4, transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.product-wrap .tabs-cons .swiper .panel:hover::before {
  opacity: 1;
}
.product-wrap .tabs-cons .swiper .panel h3 {
  margin: 0 0 20px;
  font-size: 24px;
  color: #333333;
  padding-bottom: 20px;
  border-bottom: 1px solid #666;
  position: relative;
}
.product-wrap .tabs-cons .swiper .panel .desc {
  height: 180px;
  font-size: 14px;
  color: #646464;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}
.product-wrap .tabs-cons .swiper .panel .cover {
  height: 130px;
}
.product-wrap .tabs-cons .swiper .panel .cover img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-wrap .tabs-cons .swiper .panel .link {
  display: flex;
  align-items: center;
  justify-content: right;
  color: var(--main-color);
  margin-top: 15px;
  font-size: 18px;
}
.product-wrap .tabs-cons .swiper .panel .link img {
  display: block;
  width: 30px;
  height: 30px;
  transform: translateY(2px);
  margin-left: 5px;
}


.industry-wrap {
  background: url(/images/bg-2.png) no-repeat center;
  background-size: cover;
  padding: 60px 0;
}
.industry-wrap .header {
  color: #333333;
}
.industry-wrap .header small {
  display: block;
  font-size: 30px;
}
.industry-wrap .header h2 {
  font-weight: bold;
  font-size: 40px;
  margin: unset;
  line-height: 1;
  margin: 15px 0 50px;
}
.industry-wrap .row .left .desc {
  font-size: 16px;
  color: #454545;
  line-height: 1.8;
  max-width: 661px;
}
.industry-wrap .row .left a {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  padding: 5px 8px 5px 15px;
  line-height: 1;
  color: var(--main-color);
  transition: background .3s ease, color .3s ease;
  margin-top: 25px;
}
.industry-wrap .row .left a:hover {
  background: var(--main-color);
  color: #fff;
}
.industry-wrap .row .left a .icon {
  width: 35px;
  height: 35px;
  background: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: background .3s ease;
}
.industry-wrap .row .left a:hover .icon {
  background: #fff;
}
.industry-wrap .row .left a .icon path {
  transition: fill .3s ease;
}
.industry-wrap .row .left a:hover .icon path {
  fill: var(--main-color) !important;
}
.industry-wrap .row .left a .icon svg {
  width: 80%;
  height: 80%;
}
.industry-wrap .row .right .cover {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}
.industry-wrap .row .right .cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(53, 72, 97, 0.9), rgba(53, 72, 97, 0.1));
  transition: opacity .3s ease;
}
.industry-wrap .row .right .cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(34, 87, 179, 0.6), rgba(53, 72, 97, 0.1));
  opacity: 0;
  transition: opacity .3s ease;
}
.industry-wrap .row .right .cover:hover::after {
  opacity: 1;
}
.industry-wrap .row .right .cover > img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.industry-wrap .row .right .cover .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px;
}
.industry-wrap .row .right .cover .hover .wrap {
  position: relative;
  z-index: 1;
  font-weight: bold;
  font-size: 24px;
  color: #FFFFFF;
}
.industry-wrap .row .right .cover .hover .wrap p {
  margin: 10px 0 0;
  line-height: 1;
}
.industry-wrap .row .right .col {
  padding: 0 20px;
}
.industry-wrap .row .right .col:nth-child(2) {
  margin-top: 56px;
}
.industry-wrap .row .right .col:nth-child(3) {
  margin-top: -16px;
}
.industry-wrap .row .right .col:nth-child(4) {
  margin-top: 40px;
}


.news-wrap {
  background: url(/images/bg-3.png) no-repeat center;
  background-size: cover;
  padding: 60px 0;
}
.news-wrap .header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  color: #333333;
  margin-bottom: 30px;
}
.news-wrap .header small {
  display: block;
  font-size: 30px;
}
.news-wrap .header h2 {
  font-weight: bold;
  font-size: 40px;
  margin: unset;
  line-height: 1;
  margin: 15px 0 0;
}
.news-wrap .header ul {
  display: flex;
}
.news-wrap .header ul li {
  width: 188px;
  height: 47px;
  line-height: 45px;
  background: #FFFFFF;
  border: 1px solid var(--main-color);
  border-radius: 30px;
  cursor: pointer;
  text-align: center;
  color: var(--main-color);
  transition: background .3s ease, color .3s ease;
}
.news-wrap .header ul li.active,
.news-wrap .header ul li:hover {
  background: var(--main-color);
  color: #fff;
}
.news-wrap .header ul li + li {
  margin-left: 30px;
}
.news-wrap .swiper .swiper-slide {
  position: relative;
}
.news-wrap .swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, transparent, transparent, rgba(0, 0, 0, 0.6));
  border-radius: 15px;
}
.news-wrap .swiper .swiper-slide .hover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  padding: 25px;
  z-index: 1;
}
.news-wrap .swiper .swiper-slide .hover h3 {
  margin: unset;
  font-weight: 400;
}
.news-wrap .swiper .swiper-slide .hover p {
  margin: 10px 0 0;
  width: 70%;
  font-size: 14px;
  opacity: 0.9;
}
.news-wrap .swiper .swiper-slide > img {
  display: block;
  width: 100%;
  height: 562px;
  object-fit: cover;
  border-radius: 15px;
}
.news-wrap .swiper .swiper-pagination {
  display: block;
  position: absolute;
  left: unset;
  right: 20px;
  bottom: 25px;
  width: unset;
}
.news-wrap .swiper .swiper-pagination span {
  width: 25px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
}
.news-wrap .list-wrap {
  margin: 0 -7.5px;
  display: none;
}
.news-wrap .list-wrap.active {
  display: block;
}
.news-wrap .list-wrap .col {
  padding: 0 7.5px;
}
.news-wrap .list-wrap a {
  display: flex;
  align-items: center;
  background: #EFEFEF;
  padding: 21px;
  border-radius: 8px;
  transition: box-shadow .3s ease;
}
.news-wrap .list-wrap a:hover {
  box-shadow: 0 0 10px 0 rgba(53, 72, 97, 0.3);
}
.news-wrap .list-wrap a + a {
  margin-top: 12px;
}
.news-wrap .list-wrap a .left {
  width: 90px;
  height: 90px;
  border: 2px solid #C5C5C5;
  border-radius: 8px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: border-color .3s ease;
}
.news-wrap .list-wrap a:hover .left {
  border-color: var(--main-color);
}
.news-wrap .list-wrap a:hover .left span {
  color: var(--main-color);
}
.news-wrap .list-wrap a:hover .left p {
  color: var(--main-color);
}
.news-wrap .list-wrap a .left span {
  font-size: 34px;
  color: #646464;
  line-height: 1;
  transition: color .3s ease;
}
.news-wrap .list-wrap a .left p {
  margin: 8px 0 0;
  font-size: 18px;
  color: #646464;
  opacity: 0.9;
  transition: color .3s ease;
}
.news-wrap .list-wrap a .center {
  flex: 1;
  width: 0%;
  margin: 0 18px;
}
.news-wrap .list-wrap a .center h3 {
  margin: unset;
  font-size: 20px;
  color: #000000;
  transition: color .3s ease;
}
.news-wrap .list-wrap a:hover .center h3 {
  color: var(--main-color);
}
.news-wrap .list-wrap a .center p {
  margin: 10px 0 0;
  font-size: 14px;
  color: #A3A3A3;
  line-height: 1.6;
}
.news-wrap .list-wrap a .right {
  width: 34px;
  height: 34px;
}
.news-wrap .list-wrap a .right svg {
  width: 100%;
  height: 100%;
}
.news-wrap .list-wrap a .right svg path {
  transition: fill .3s ease;
}
.news-wrap .list-wrap a:hover .right path {
  fill: var(--main-color) !important;
}


@media screen and (max-width: 640px) {
  .banner-wrap .swiper-control {
    display: none;
  }
  .banner-wrap .swiper-slide .hover h2 {
    font-size: 20px;
  }
  .banner-wrap .swiper-slide .hover small {
    font-size: 14px;
    margin-top: 15px;
  }
  .banner-wrap .swiper-slide .hover p {
    font-size: 12px;
    margin: 8px 0 0;
  }
  .banner-wrap .swiper-slide .hover a {
    font-size: 14px;
    margin-top: 15px;
  }
  .banner-wrap img {
    height: 280px;
    object-fit: cover;
  }
  .banner-wrap .swiper-slide .hover .container {
    width: 100%;
  }


  .about-wrap {
    padding: 30px 0;
  }
  .about-wrap .rw {
    display: block;
  }
  .about-wrap .rw .left {
    width: 100%;
    margin-right: unset;
  }
  .about-wrap .rw .left small {
    font-size: 30px;
  }
  .about-wrap .rw .left h2 {
    font-size: 24px;
    margin-bottom: 0;
  }
  .about-wrap .rw .left .rich-text p {
    font-size: 14px;
  }
  .about-wrap .rw .left a {
    margin: 20px 0 30px;
  }
  .about-wrap .rw .right {
    margin-right: unset;
    border-radius: 15px;
    overflow: hidden;
  }

  .product-wrap {
    padding: 30px 0;
  }
  .product-wrap .header small {
    font-size: 24px;
  }
  .product-wrap .header h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .product-wrap .tabs-wrap ul {
    height: 93px;
  }
  .product-wrap .tabs-wrap li {
    width: 33.33%;
    padding: 5px 10px 10px;
    margin-left: 10px;
  }
  .product-wrap .tabs-wrap li p {
    font-size: 12px;
    margin-top: 5px;
  }
  .product-wrap .tabs-cons .swiper .panel h3 {
    font-size: 18px;
  }

  .industry-wrap {
    padding: 30px 0;
  }
  .industry-wrap .header small {
    font-size: 24px;
  }
  .industry-wrap .header h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .industry-wrap .row .left .desc {
    font-size: 14px;
  }
  .industry-wrap .row .left a {
    margin: 20px 0 30px;
  }
  .industry-wrap .row .right .cover .hover {
    padding: 15px;
  }
  .industry-wrap .row .right .cover .hover .wrap .icon {
    height: 40px;
  }
  .industry-wrap .row .right .cover .hover .wrap .icon img {
    height: 100%;
    object-fit: contain;
  }
  .industry-wrap .row .right .cover .hover .wrap p {
    font-size: 18px;
  }
  .industry-wrap .row .right .row {
    margin: 0 -10px;
  }
  .industry-wrap .row .right .col {
    padding: 0 10px;
  }
  .industry-wrap .row .right .col:nth-child(2) {
    margin-top: 0;
  }
  .industry-wrap .row .right .col:nth-child(3),
  .industry-wrap .row .right .col:nth-child(4) {
    margin-top: 20px;
  }

  .news-wrap {
    padding: 30px 0;
  }
  .news-wrap .header {
    display: block;
    margin-bottom: 15px;
  }
  .news-wrap .header small {
    font-size: 24px;
  }
  .news-wrap .header h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .news-wrap .header ul li {
    flex: 1;
    width: unset;
    font-size: 14px;
  }
  .news-wrap .header ul li + li {
    margin-left: 15px;
  }
  .news-wrap .swiper .swiper-slide > img {
    height: 240px;
  }
  .news-wrap .swiper .swiper-slide .hover {
    padding: 15px;
  }
  .news-wrap .list-wrap a {
    margin-top: 15px;
    padding: 15px;
  }
  .news-wrap .list-wrap a .left span {
    font-size: 24px;
  }
  .news-wrap .list-wrap a .left p {
    font-size: 14px;
  }
  .news-wrap .list-wrap a .left {
    width: 70px;
    height: 70px;
  }
  .news-wrap .list-wrap a .center {
    margin: 0 10px;
  }
  .news-wrap .list-wrap a .center h3 {
    font-size: 18px;
  }
  .news-wrap .list-wrap a .right {
    width: 25px;
    height: 25px;
  }


  .product-wrap .tabs-wrap ul::-webkit-scrollbar-track-piece {
    background-color: transparent;
  }

  .product-wrap .tabs-wrap ul::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 5px;
  }

  .product-wrap .tabs-wrap ul::-webkit-scrollbar-thumb {
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 5px;
  }

  .product-wrap .tabs-wrap ul::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
  }
}
