:root {
  --main-color: #009DA0;
  --hover-color: #006163;
}

.page-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  z-index: 1000;
}
.page-header-wrap .menu,
.page-header-wrap .close {
  display: none;
}
.page-header-wrap .container {
  width: unset;
  max-width: 1750px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  transition: width .3s ease;
}
.page-header-wrap .logo-wrap {
  height: 90px;
  position: relative;
  margin: 0;
  transition: all .3s ease;
}
.page-header-wrap .logo-wrap a {
  display: flex;
  height: 90px;
  align-items: center;
  overflow: hidden;
}
.page-header-wrap .logo-wrap span {
  display: block;
  height: 55px;
  text-indent: -9999px;
}
.page-header-wrap .logo-wrap span:nth-child(1) {
  width: 180px;
  background: url("/assets/images/s-logo.png") no-repeat left;
  background-size: contain;
}
.page-header-wrap .logo-wrap span:nth-child(2) {
  width: 163px;
  background: url("/assets/images/logo.png") no-repeat left;
  background-size: contain;
  margin-left: 10px;
  transform: translateY(-5px);
}
.page-header-wrap .nav {
  display: flex;
  align-items: center;
}
.page-header-wrap .nav > li > a {
  display: block;
  padding: 0 20px;
  height: 90px;
  line-height: 90px;
  color: #fff;
}
.page-header-wrap .nav > li {
  position: relative;
}
.page-header-wrap .nav > li:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  transition: background .3s ease;
}
.page-header-wrap.active {
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
}
.page-header-wrap.active .container {
  width: 100%;
  max-width: unset;
  padding: unset;
}
.page-header-wrap.active .logo-wrap {
  background: var(--main-color);
  padding: 0 15px;
}
.page-header-wrap.active .nav a {
  color: #333;
}
.page-header-wrap.active .nav > li:last-child {
  padding-left: 20px;
}
.page-header-wrap.active .nav > li:last-child a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-color);
  width: 90px;
  height: 90px;
}
.page-header-wrap .nav > li:last-child img {
  display: block;
}
.page-header-wrap .nav > li:last-child img:nth-child(2) {
  display: none;
}
.page-header-wrap .nav > li:hover .dropdown-wrap.style1 {
  transform: translate(0);
  opacity: 1;
  pointer-events: all;
}
.dropdown-wrap.style1 {
  position: absolute;

  color: #333;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);

  transform: translateY(100px);
  opacity: 0;

  transition: all .3s ease;
  pointer-events: none;
  z-index: 1;
}
.dropdown-wrap.style1 .rl {
  /* position: relative; */
}
.dropdown-wrap.style1 .rl:hover > a {
  background: #efefef;
}
.dropdown-wrap.style1 .rl > a {
  display: block;
  color: #555;
  padding: 15px 20px;
  border-bottom: 1px solid #efefef;
  cursor: pointer;
  transition: background .3s ease;
  white-space: nowrap;
  font-size: 15px;
}
.dropdown-wrap.style1 .rl:first-child > a {
  border-radius: 5px 5px 0 0;
}
.dropdown-wrap.style1 .rl:last-child > a {
  border-radius: 0 0 5px 5px;
  border-bottom: unset;
}

.dropdown-wrap.style1 .rl:hover .wrap {
  opacity: 1;
  pointer-events: all;
}
.dropdown-wrap.style1 .wrap {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  opacity: 0;
  pointer-events: none;
  height: 100%;
}
.dropdown-wrap.style1 .wrap .dropdown {
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.dropdown-wrap.style1 .dropdown a {
  display: block;
  color: #333;
  padding: 13px 20px;
  border-bottom: 1px solid #efefef;
  cursor: pointer;
  transition: background .3s ease;
  font-size: 14px;
  line-height: 1.6;
  white-space: nowrap;
}
.dropdown-wrap.style1 .dropdown a:hover {
  background: #efefef;
}
.dropdown-wrap.style1 .dropdown.active {
  display: block;
}
@media screen and (max-width: 640px) {
  .page-header-wrap {
    height: 60px;
  }
  .page-header-wrap .container {
    height: 60px;
    line-height: 60px;
    padding: 0;
  }
  .page-header-wrap .logo-wrap {
    height: unset;
  }
  .page-header-wrap .logo-wrap a {
    height: 60px;
  }
  .page-header-wrap.active .logo-wrap {
    padding: unset;
    background: unset;
  }
  .page-header-wrap .logo-wrap span:nth-child(1) {
    display: none;
    width: 143px;
    height: 35px;
  }
  .page-header-wrap .logo-wrap span:nth-child(2) {
    width: 103px;
    height: 35px;
  }
  .page-header-wrap.active span:nth-child(2) {
    background: url("/assets/images/logo-big.png") no-repeat center;
    background-size: contain;
  }
  .page-header-wrap.active .nav > li:last-child a {
    background: transparent;
  }
  .page-header-wrap.active .nav > li:last-child {
    padding-left: unset;
  }
  .page-header-wrap .nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background: #fff;
    padding: 70px 15px 0;
    transition: all .3s ease;
    transform: translateX(200px);
    opacity: 0;
    pointer-events: none;
  }
  .page-header-wrap .nav-wrap.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
  }
  .page-header-wrap .nav {
    display: block;
  }
  .page-header-wrap .nav > li + li {
    border-top: 1px solid #efefef;
  }
  .page-header-wrap .nav > li > a {
    color: #333;
    height: 60px;
    line-height: 60px;
  }
  .page-header-wrap .nav > li:last-child {
    position: absolute;
    top: 0;
    left: 0;
  }
  .page-header-wrap .nav > li:last-child a {
    margin: 0 auto;
  }
  .page-header-wrap .nav > li:last-child img:nth-child(1) {
    display: none;
  }
  .page-header-wrap .nav > li:last-child img:nth-child(2) {
    display: block;
  }
  .page-header-wrap .nav > li:last-child img:nth-child(2) {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
  .page-header-wrap .close {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 20px;
  }
  .page-header-wrap .close img {
    width: 50px;
    height: 50px;
  }
  .page-header-wrap .menu {
    display: block;
    padding: 0 20px;
    display: flex;
    align-items: center;
  }
  .page-header-wrap .menu img {
    width: 35px;
    height: 35px;
  }
  .page-header-wrap .menu img:nth-child(1) {
    display: none;
  }
  .page-header-wrap.active .menu img:nth-child(1) {
    display: block;
  }
  .page-header-wrap .menu img:nth-child(2) {
    display: block;
  }
  .page-header-wrap.active .menu img:nth-child(2) {
    display: none;
  }
  .page-header-wrap .nav > li:hover .dropdown-wrap.style1 {
    height: unset;
  }
  .dropdown-wrap.style1 .rl:hover .wrap {
    height: unset;
  }

  .dropdown-wrap.style1 .wrap {
    position: relative;
    opacity: 1;
    height: 0;
    left: unset;
    overflow: hidden;
  }
  .dropdown-wrap.style1 {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    /*box-shadow: unset;*/
    height: 0;
    overflow: hidden;
  }
  .dropdown-wrap.style1 .rl > a {
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
  }
}




#app {
  width: 100%;
  overflow: hidden;
}



.paging-wrap {
  padding: 68px 0 82px;
}
.paging-wrap {
  text-align: center;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
}
.paging-wrap a {
  display: inline-block;
  height: 32px;
  line-height: 32px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  transition: all .3s ease;
}
.paging-wrap a:not(a.item) {
  padding: 0 13px;
}
.paging-wrap a + a {
  margin-left: 5px;
}
.paging-wrap a.item {
  width: 32px;
}
.paging-wrap a.item.active {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}
.paging-wrap a:hover {
  background: var(--hover-color);
  border-color: var(--hover-color);
  color: #fff;
}


.page-footer-wrap {
  background: #F5F6F6;
}
.page-footer-wrap .swiper {
 width: 90%;
  margin: unset;
}
.page-footer-wrap .desc-wrap {
  width: 100%;
  height: 302px;
  background: url("/assets/images/bg/footer-bg.png") no-repeat center;
  background-size: cover;
  position: relative;
}
.page-footer-wrap .desc-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6);
}
.page-footer-wrap .desc-wrap .rw {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90%;
  margin: 0 auto;
  height: 100%;
  padding: 015px;
  position: relative;
  z-index: 1;
}
.page-footer-wrap .desc-wrap .rw h2 {
  font-size: 32px;
  color: #fff;
  margin: unset;
}
.page-footer-wrap .desc-wrap .rw small {
  font-size: 16px;
  color: #fff;
  letter-spacing: 9px;
  margin-top: 10px;
  display: block;
}
.page-footer-wrap .desc-wrap .rw a {
  width: 250px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  padding: 0 15px;
  box-sizing: border-box;
  border: 2px solid #ffff;
  border-radius: 5px;
  background: transparent;
  transition: background .3s ease;
}
.page-footer-wrap .desc-wrap .rw a:hover {
  background: rgba(0, 0, 0, .1);
}
.page-footer-wrap .container {
  width: unset;
  max-width: 90%;
  padding-top: 36px;
}
.page-footer-wrap .container .rw {
  display: flex;
  justify-content: space-between;
}
.page-footer-wrap .container .rw .left span {
    font-size: 20px;
}
.page-footer-wrap .container .b1 {
  padding-bottom: 27px;
  border-bottom: 1px solid #D6D6D6;
}
.page-footer-wrap .container .b1 .left {
  display: flex;
}
.page-footer-wrap .container .b1 .left dl {
  margin: unset;
  padding: unset;
  max-width: 120px;
}
.page-footer-wrap .container .b1 .left dl + dl {
  margin-left: 32px;
}
.page-footer-wrap .container .b1 .left dt {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  margin-bottom: 10px;
}
.page-footer-wrap .container .b1 .left dd {
  margin: unset;
  padding: unset;
  font-size: 13px;
  font-weight: 400;
  color: #646464;
  line-height: 1.6;
}
.page-footer-wrap .container .b1 .left dd + dd {
  margin-top: 5px;
}
.page-footer-wrap .container .b1 .right {
  text-align: right;
}
.page-footer-wrap .container .b1 .right small {
  font-size: 15px;
  font-weight: 400;
  color: #333;
}
.page-footer-wrap .container .b1 .right h2 {
  margin: 10px 0;
  font-size: 30px;
  font-weight: bold;
  color: #005D5E;
}
.page-footer-wrap .container .b1 .right p {
  margin: unset;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 400;
  color: #646464;
}
.page-footer-wrap .container .b1 .bto {
  display: flex;
  align-items: center;
  margin-top: 39px;
}
.page-footer-wrap .container .b1 .bto ul {
  display: flex;
}
.page-footer-wrap .container .b1 .bto .share-wrap {
  display: flex;
  align-items: center;
}
.page-footer-wrap .container .b1 .bto .share-wrap a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #696969;
  border-radius: 50%;
  transition: all .3s ease;
}
.page-footer-wrap .container .links-wrap {
  margin-right: 30px;
  width: 276px;
  height: 33px;
  background: #fff;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 30px;
  color: #999;
  cursor: pointer;
  position: relative;
}
.page-footer-wrap .container .links-wrap > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 33px;
}
.page-footer-wrap .container .links-wrap .dropdown-wrap {
  position: absolute;
  top: 33px;
  left: 0;
  right: 0;
  height: 100px;
  opacity: 0;
  pointer-events: none;
  padding-top: 10px;
}
.page-footer-wrap .container .links-wrap:hover .dropdown-wrap {
  opacity: 1;
  pointer-events: all;
}
.page-footer-wrap .container .links-wrap .dropdown-wrap .scroll-wrap {
  height: 100%;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px 0;
}
.page-footer-wrap .container .links-wrap .dropdown-wrap a {
  display: block;
  text-align: left;
  line-height: 33px;
  margin: 0 30px;
  font-size: 12px;
  border-bottom: 1px solid #efefef;
}
.page-footer-wrap .container .b1 .bto .share-wrap {
  color: #333;
}
.page-footer-wrap .container .b1 .bto .share-wrap ul {
  margin-left: 15px;
}
.page-footer-wrap .container .b1 .bto .share-wrap li + li {
  margin-left: 10px;
}
.page-footer-wrap .container .b1 .bto .share-wrap a:hover {
  background: rgba(0, 0, 0, .05);
}
.page-footer-wrap .container .b1 .bto .share-wrap a img {
  width: 60%;
  height: 60%;
  display: block;
}
.page-footer-wrap .container .b2 {
  padding: 28px 0;
  font-size: 12px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #646464;
}
.page-footer-wrap .container .b2 .left .l2 {
  margin-top: 6px;
}
.page-footer-wrap .container .b2 .right a {
  display: flex;
  align-items: center;
}
.page-footer-wrap .container .b2 .right a span:nth-child(1) {
  display: block;
  overflow: hidden;
  width: 124px;
  height: 32px;
  background: url("/assets/images/s-logo-color.png") no-repeat left;
  text-indent: -9999px;
}
.page-footer-wrap .container .b2 .right a span:nth-child(2) {
  display: block;
  overflow: hidden;
  width: 96px;
  height: 32px;
  background: url("/assets/images/logo-color.png") no-repeat left;
  text-indent: -9999px;
  margin-left: 15px;
}
.page-mobile-footer-wrap {
  display: none;
}


.page-footer-wrap .container.footer2 {
  padding-bottom: 15px;
}
.page-footer-wrap .container.footer2 .logo {
  width: 180px;
}
.page-footer-wrap .container.footer2 .logo img {
  width: 100%;
  object-fit: contain;
}
.page-footer-wrap .container.footer2 .left p {
  margin: 10px 0 0;
  font-size: 14px;
  color: #555;
}
.page-footer-wrap .container.footer2 .bottom {
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  border-top: 1px solid #d7d7d7;
  font-size: 14px;
  color: #666;
}
.page-footer-wrap .container.footer2 .center {
  flex: 1;
  margin: 0 4vw;
  padding-top: 30px;
}
.page-footer-wrap .container.footer2 .center h2 {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin: 0 0 10px;
}
.page-footer-wrap .container.footer2 .center .swiper-slide {
  width: 160px;
  height: 80px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-footer-wrap .container.footer2 .center .swiper-slide img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}
.page-footer-wrap .container.footer2 .right h2 {
  font-size: 14px;
  color: #555;
  font-weight: 400;
  text-align: center;
  margin: 0 0 10px;
}
.page-footer-wrap .container.footer2 .right ul {
  display: flex;
}
.page-footer-wrap .container.footer2 .right ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-footer-wrap .container.footer2 .right ul li div {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}
.page-footer-wrap .container.footer2 .right ul img {
  width: 120px;
  object-fit: contain;
}

@media screen and (max-width: 640px) {
  .page-footer-wrap {
    padding-bottom: 120px;
  }
  .page-footer-wrap .desc-wrap .rw {
    flex-direction: column;
    justify-content: center;
    align-items: baseline;
    max-width: unset;
  }
  .page-footer-wrap .desc-wrap .rw a {
    width: 160px;
    height: 50px;
    margin-top: 30px;
    line-height: 1;
  }
  .page-footer-wrap .container .b1 {
    display: block;
  }
  .page-footer-wrap .container .b1 .left {
    display: none;
  }
  .page-footer-wrap .container .b1 .right {
    text-align: center;
  }
  .page-footer-wrap .container .b1 .bto {
    display: block;
  }
  .page-footer-wrap .container .links-wrap {
    margin: 0 auto;
    line-height: 1;
  }
  .page-footer-wrap .container .b1 .bto .share-wrap {
    justify-content: center;
    margin-top: 30px;
    display: none;
  }

  .page-footer-wrap .container .b2 {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .page-footer-wrap .container .b2 .right a {
    justify-content: center;
    margin-top: 10px;
  }
  .page-mobile-footer-wrap {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 30px;
    background: #fff;
    z-index: 1000;
  }
  .page-mobile-footer-wrap ul {
    display: flex;
    justify-content: space-between;
  }
  .page-mobile-footer-wrap ul p {
    margin: unset;
    font-size: 14px;
    color: #333;
  }
  .page-mobile-footer-wrap ul .icon {
    margin-bottom: 5px;
  }
  .page-mobile-footer-wrap ul li.active img:nth-child(1) {
    display: none;
  }
  .page-mobile-footer-wrap ul li.active img:nth-child(2) {
    display: block;
  }
  .page-mobile-footer-wrap ul li.active p {
    color: #005D5E;
  }
  .page-mobile-footer-wrap ul img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  .page-mobile-footer-wrap ul img:nth-child(2) {
    display: none;
  }
  .page-footer-wrap .container.footer1 {
    display: block !important;
  }
  .page-footer-wrap .container.footer2 {
    display: none;
  }
  .page-footer-wrap .desc-wrap .rw small {
    font-size: 14px;
    letter-spacing: 7px;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
}
