.banner-wrap img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.banner-wrap .swiper-slide {
  position: relative;
}
.banner-wrap .swiper-slide .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.banner-wrap .swiper-slide .hover h2 {
  font-size: 72px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 20px;
  letter-spacing: 4px;
}
.banner-wrap .swiper-slide .hover small {
  font-size: 24px;
  color: #FFFFFF;
  letter-spacing: 15px;
}
.banner-wrap .swiper-pagination {
  bottom: 120px;
}
.banner-wrap .swiper-pagination-bullet {
  width: 24px;
  height: 6px;
  background: #FFFFFF;
  opacity: 0.5;
  border-radius: 5px;
  transition: all .3s ease;
}
.banner-wrap .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 48px;
  height: 6px;
  background: #FFFFFF;
  opacity: 1;
}
@media screen and (max-width: 640px) {
  .banner-wrap {
    height: 240px;
    min-height: unset;
  }
  .banner-wrap img {
    height: 100%;
    object-fit: cover;
  }
  .banner-wrap .swiper-slide .hover h2 {
    font-size: 15px;
    margin-bottom: 10px;
    text-align: center;
    padding: 0 30px;
    line-height: 1.6;
  }
  .banner-wrap .swiper-slide .hover small {
    font-size: 12px;
    letter-spacing: 8px;
  }
  .banner-wrap .swiper-pagination {
    bottom: 20px;
  }
}


.module-wrap {
  padding: 80px 0;
}
.module-wrap > header {
  padding-bottom: 26px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 42px;
}
.module-wrap .module-title {
  margin: 0;
  position: relative;
}
.module-wrap .module-title::after {
  content: "";
  width: 98px;
  height: 8px;
  border-radius: 4px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -4px;
}
.module-wrap .module-title small {
  display: block;
  font-size: 36px;
  font-weight: 400;
  color: #E6E6E6;
  white-space: nowrap;
}
.module-wrap .module-title span {
  position: relative;
  z-index: 1;
  margin-top: -20px;
  display: block;
}


.news-wrap {
  background: url(/images/home/bg0.png) no-repeat center;
  background-size: cover;
}
.news-wrap .module-title::after {
  left: unset;
  right: 0;
}
.news-wrap header .container {
  display: flex;
  justify-content: space-between;
  align-items:end;
}
.news-wrap header .tab-wrap {
  display: flex;
}
.news-wrap header .tab-wrap li {
  font-size: 18px;
  color: #333333;
  cursor: pointer;
  position: relative;
}
.news-wrap header .tab-wrap li::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform .3s ease;
  width: 60px;
  height: 3px;
  background: var(--main-color);
}
.news-wrap header .tab-wrap li:hover,
.news-wrap header .tab-wrap li.active {
  color: var(--main-color);
}
.news-wrap header .tab-wrap li:hover::after,
.news-wrap header .tab-wrap li.active::after {
  transform: translateX(-50%) scale(1);
}
.news-wrap header .tab-wrap li + li {
  margin-left: 6.25vw;
}
.news-wrap header .module-title {
  text-align: right;
}
.news-wrap .tab-panel-wrap {
  display: none;
}
.news-wrap .tab-panel-wrap.active {
  display: flex;
}
.news-wrap .tab-panel-wrap.module-video-wrap.active {
  display: block;
}
.news-wrap .tab-panel-wrap .cover-wrap {
  display: block;
  width: 600px;
}
.news-wrap .tab-panel-wrap .cover-wrap:hover img {
  transform: scale(1.1);
}
.news-wrap .tab-panel-wrap .cover-wrap .cover {
  height: 368px;
  border-radius: 8px;
  overflow: hidden;
}
.news-wrap .tab-panel-wrap .cover-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.news-wrap .tab-panel-wrap .cover-wrap p {
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
  margin: 10px;
}
.news-wrap .tab-panel-wrap ul {
  flex: 1;
  width: 0%;
  margin-left: 4.6875vw;
}
.news-wrap .tab-panel-wrap ul li + li {
  margin-top: 37px;
}
.news-wrap .tab-panel-wrap ul a {
  display: block;
}
.news-wrap .tab-panel-wrap ul .timer {
  display: block;
  font-size: 18px;
  color: #999999;
  transition: color .3s ease;
}
.news-wrap .tab-panel-wrap ul .title {
  display: block;
  font-size: 18px;
  color: #333333;
  margin: 15px 0;
  transition: color .3s ease;
}
.news-wrap .tab-panel-wrap ul p {
  font-size: 14px;
  color: #333333;
  margin: 0;
  line-height: 1.6;
  transition: color .3s ease;
}
.news-wrap .tab-panel-wrap ul li:hover .timer,
.news-wrap .tab-panel-wrap ul li:hover .title,
.news-wrap .tab-panel-wrap ul li:hover p {
  color: var(--main-color);
}



.business-wrap .list-wrap li {
  width: 20%;
  float: left;
  position: relative;
  overflow: hidden;
}
.business-wrap .list-wrap li:hover > img {
  transform: scale(1.1);
}
.business-wrap .list-wrap li > img {
  display: block;
  width: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}
.business-wrap .list-wrap li .hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.business-wrap .list-wrap li .hover h3 {
  font-size: 20px;
  color: #fff;
}
.business-wrap .list-wrap .icon {
  width: 60px;
  height: 60px;
  transition: all .3s ease;
}
.business-wrap .list-wrap .icon img {
  width: 100%;
  height: 100%;
}
.business-wrap .list-wrap li:hover .icon {
  width: 0;
  height: 0;
  transform: scale(0);
  opacity: 0;
}
.business-wrap .list-wrap .rich-text {
  color: #fff;
  margin: 0 30px 20px;
  line-height: 1.8;
  font-size: 13px;
  height: 0;
  transform: scale(0);
  opacity: 0;
  transition: all .3s ease;
}
.business-wrap .list-wrap .rich-text p:first-child {
  margin: 0;
}
.business-wrap .list-wrap .rich-text::-webkit-scrollbar-track-piece {
  background-color: transparent;
}
.business-wrap .list-wrap .rich-text::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.business-wrap .list-wrap .rich-text::-webkit-scrollbar-thumb {
  background-color: #fff;
  background-clip: padding-box;
  border-radius: 5px;
}
.business-wrap .list-wrap .rich-text::-webkit-scrollbar-thumb:hover {
  background-color: #bbb;
}
.business-wrap .list-wrap li:hover .rich-text {
  height: 11.7708vw;
  transform: scale(1);
  opacity: 1;
  overflow-y: auto;
}

.business-wrap .list-wrap a {
  display: block;
  width: 78px;
  height: 26px;
  line-height: 22px;
  border-radius: 30px;
  border: 1px solid #CCCCCC;
  text-align: center;
  font-size: 12px;
  color: #fff;
  transition: all .3s ease;
  transform: scale(0);
  opacity: 0;
}
.business-wrap .list-wrap a:hover {
  background: rgba(255, 255, 255, 0.3);
}
.business-wrap .list-wrap li:hover a {
  width: 78px;
  height: 26px;
  line-height: 22px;
  transform: scale(1);
  opacity: 1;
}


.construct-wrap header .container {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.construct-wrap header .tab-wrap {
  display: flex;
}
.construct-wrap header .tab-wrap li {
  font-size: 18px;
  color: #333333;
  cursor: pointer;
  position: relative;
}
.construct-wrap header .tab-wrap li::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform .3s ease;
  width: 60px;
  height: 3px;
  background: var(--main-color);
}
.construct-wrap header .tab-wrap li:hover,
.construct-wrap header .tab-wrap li.active {
  color: var(--main-color);
}
.construct-wrap header .tab-wrap li:hover::after,
.construct-wrap header .tab-wrap li.active::after {
  transform: translateX(-50%) scale(1);
}
.construct-wrap header .tab-wrap li + li {
  margin-left: 6.25vw;
}
.construct-wrap .tab-panel-wrap {
  display: none;
}
.construct-wrap .tab-panel-wrap.active {
  display: block;
}
.construct-wrap .row {
  margin: 0 -15px;
}
.construct-wrap .col:hover h3 {
  color: var(--main-color);
}
.construct-wrap .col:hover p {
  color: var(--main-color);
}
.construct-wrap .col:hover img {
  transform: scale(1.1);
}
.construct-wrap .list-wrap .cover {
  height: 20.2083vw;
  overflow: hidden;
  border-radius: 5px;
}
.construct-wrap .list-wrap .cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.construct-wrap .list-wrap h3 {
  color: #333;
  line-height: 1.4;
  margin: 15px 0;
  height: 52px;
}
.construct-wrap .list-wrap p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}



.server-wrap .module-title {
  margin-bottom: 6.7708vw;
}
.server-wrap .row {
  margin: 0 -15px;
}
.server-wrap .left h3 {
  font-size: 18px;
  font-weight: 400;
  color: #333333;
  margin: 0;
}
.server-wrap .left h3 span {
  font-size: 2.5vw;
  color: #00579E;
  margin-right: 10px;
}
.server-wrap .left li small {
  display: block;
  margin-top: 10px;
  margin-bottom: 55px;
  font-size: 14px;
  color: #333333;
}
.server-wrap .left a {
  display: block;
  width: 180px;
  height: 60px;
  line-height: 58px;
  border: 1px solid #CCCCCC;
  font-size: 16px;
  color: #999999;
  border-radius: 30px;
  text-align: center;
  transition: all .3s ease;
}
.server-wrap .left a:hover {
  background: var(--main-color);
  border-color: var(--main-color);
  color: #fff;
}
.server-wrap .map {
  height: 42.1875vw;
}


@media screen and (max-width: 640px) {
  .module-wrap {
    padding: 50px 0;
  }
  .module-wrap > header {
    padding: unset;
    margin-bottom: 24px;
  }
  .module-wrap .module-title small {
    display: none;
  }
  .module-wrap > header .module-title {
    padding-bottom: 20px;
  }
  .module-wrap .module-title::after {
    bottom: 20px;
  }


  .module-wrap.news-wrap {
    padding: 30px 0 50px;
  }
  .news-wrap header .tab-wrap {
    flex: 1;
    width: 0%;
    display: block;
    overflow-x: auto;
    margin-right: 20px;
    white-space: nowrap;
  }
  .news-wrap header .tab-wrap li {
    font-size: 18px;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    height: 60px;
    line-height: 60px;
  }
  .news-wrap header .tab-wrap li::after {
    bottom: 0;
  }
  .news-wrap header .tab-wrap li + li {
    margin-left: 10px;
  }
  .news-wrap .tab-panel-wrap .cover-wrap {
    display: none;
  }
  .news-wrap .tab-panel-wrap.active {
    display: block;
  }
  .news-wrap .tab-panel-wrap ul {
    width: unset;
    margin: unset;
  }
  .news-wrap .tab-panel-wrap ul .title {
    margin: 10px 0 6px;
  }
  .news-wrap .tab-panel-wrap ul .timer {
    font-size: 14px;
  }
  .news-wrap .tab-panel-wrap ul p {
    font-size: 12px;
    font-weight: 300;
  }
  .news-wrap .tab-panel-wrap ul li + li {
    margin-top: 20px;
  }

  .business-wrap .list-wrap li {
    width: 100%;
  }
  .business-wrap .list-wrap li:hover .rich-text {
    height: 300px;
  }


  .server-wrap {
    background: rgba(239, 239, 239, 0.3);
  }
  .server-wrap ul {
    overflow: hidden;
  }
  .server-wrap ul li {
    width: 25%;
    float: left;
    text-align: center;
  }
  .server-wrap .left h3 span {
    font-size: 18px;
    font-weight: 700;
    margin-right: 5px;
  }
  .server-wrap .left h3 {
    font-size: 12px;
  }
  .server-wrap .left small {
    font-size: 12px;
    margin: 10px 0 20px;
  }
  .server-wrap .module-title::after {
    bottom: 0;
  }
  .server-wrap .left a {
    width: 100px;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
    margin: 0 auto;
  }
  .server-wrap .map {
    height: 280px;
  }


  .construct-wrap .tab-panel-wrap a {
    display: block;
  }
  .construct-wrap .list-wrap .cover {
    height: unset;
  }
  .module-wrap.construct-wrap {
    padding: 30px 0 50px;
  }
  .construct-wrap header .tab-wrap {
    flex: 1;
    width: 0%;
    display: block;
    overflow-x: auto;
    margin-left: 20px;
    white-space: nowrap;
    text-align: right;
  }
  .construct-wrap header .tab-wrap li {
    font-size: 18px;
    display: inline-block;
    white-space: nowrap;
    position: relative;
    height: 60px;
    line-height: 60px;
  }
  .construct-wrap header .tab-wrap li::after {
    bottom: 0;
  }
  .construct-wrap header .tab-wrap li + li {
    margin-left: 10px;
  }
  .construct-wrap .list-wrap h3 {
    font-size: 18px;
    line-height: 1.6;
    margin: 15px 0 10px;
  }
  .construct-wrap .list-wrap p {
    font-size: 14px;
  }
  .construct-wrap .list-wrap .wrap {
    padding-bottom: 30px;
  }
}
