@font-face {
  font-family: "iconfont";
  src: url('../fonts/iconfont.woff2') format('woff2'), 
  url('../fonts/iconfont.woff') format('woff'),
   url('../fonts/iconfont.ttf') format('truetype');
}
@font-face {
  font-family: HarmonyOS_Sans_Light;
  src: url("../fonts/harmonyos_sans_sc_light.ttf");
  font-display: swap;
}
@font-face {
  font-family: HarmonyOS_Sans_Regular;
  src: url("../fonts/harmonyos_sans_sc_regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: HarmonyOS_Sans_Medium;
  src: url("../fonts/harmonyos_sans_sc_medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: HarmonyOS_Sans_Bold;
  src: url("../fonts/harmonyos_sans_sc_bold.ttf");
  font-display: swap;
}
.thin {
  font-family: HarmonyOS_Sans_Thin;
}
.light {
  font-family: HarmonyOS_Sans_Light;
}
.medium {
  font-family: HarmonyOS_Sans_Medium;
}
.bold {
  font-family: HarmonyOS_Sans_Bold;
}
p{
  text-align: justify;
}
.p {
  line-height: 1.8;
  text-align: justify;
  color: #666;
}
body {
  font-family: "HarmonyOS_Sans_Regular", -apple-system, BlinkMacSystemFont, "Source Han Sans CN", "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Helvetica, Arial, "\5b8b\4f53", sans-serif;
  color: #333;
}
img, video {
  pointer-events: none;
  user-select: none;
}
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
::after, ::before {
    box-sizing: content-box;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
  line-height: 1.6;
}
.hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}
.w1440 {
  width: 1440px;
  margin: 0 auto;
}
.header {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con {
  display: flex;
  padding: 0 6%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header .con .logo {
  height: 88px;
  display: flex;
  align-items: center;
}
.header .con .logo a {
  position: relative;
}
.header .con .logo a img {
  height: 51px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .logo a img.hover {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.header .con .nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.header .con .nav > ul {
  display: flex;
}
.header .con .nav > ul > li {
  margin-right: 60px;
  position: relative;
}
.header .con .nav > ul > li h2 {
  position: relative;
}
.header .con .nav > ul > li h2:before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--yellow);
  position: absolute;
  left: 50%;
  bottom: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .nav > ul > li h2 a {
  display: block;
  line-height: 88px;
  color: #fff;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .nav > ul > li .nav-down {
  position: absolute;
  width: 150px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 88px;
  background: #fff;
  display: none;
  border-top: 1px solid #eee;
}
.header .con .nav > ul > li .nav-down ul {
  width: 100%;
  padding: 10px 0;
}
.header .con .nav > ul > li .nav-down ul li a {
  display: block;
  text-align: center;
  line-height: 50px;
  color: #333;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .nav > ul > li .nav-down ul li a:hover {
  color: var(--color);
}
.header .con .nav > ul > li:hover h2:before {
  width: 100%;
  left: 0;
}
.header .con .nav > ul > li:hover h2 a {
  color: var(--color) !important;
}
.header .con .right {
  display: flex;
  align-items: center;
}
.header .con .right .make {
  margin-right: 60px;
}
.header .con .right .make a {
  color: #fff;
  display: block;
  width: 108px;
  height: 30px;
  text-align: center;
  line-height: 34px;
  position: relative;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .right .make a:before {
  content: '';
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  position: absolute;
  left: 0;
  top: 0;
  transform: skewX(-10deg);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  z-index: -1;
}
.header .con .right .make a:hover {
  color: #fff !important;
}
.header .con .right .make a:hover:before {
  border: 1px solid var(--color) !important;
  background: var(--color);
}
.header .con .right .lang {
  position: relative;
  margin-right: 40px;
}
.header .con .right .lang .lang-box {
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .right .lang .lang-box span {
  color: #fff;
  line-height: 88px;
  font-size: 28px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .right .lang ul {
  position: absolute;
  width: 100px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  top: 88px;
  background: #fff;
  display: none;
}
.header .con .right .lang ul li a {
  display: block;
  color: #333;
  line-height: 44px;
  text-align: center;
  letter-spacing: 1px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .right .lang ul li a:hover {
  color: var(--color);
}
.header .con .right .search {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .con .right .search span {
  color: #fff;
  font-size: 24px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .con .right .search:hover span {
  color: var(--color) !important;
}
.header .con .right .mobile-btn {
  display: none;
}
.header .search-list {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  z-index: 1000;
  display: none;
}
.header .search-list .search-box {
  background: #fff;
  padding: 40px 0;
}
.header .search-list .search-box .search-center {
  width: 400px;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}
.header .search-list .search-box .search-center input {
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 1px solid #ccc;
  padding-right: 40px;
  font-size: 16px;
}
.header .search-list .search-box .search-center span {
  position: absolute;
  color: #666;
  font-size: 24px;
  line-height: 40px;
  right: 0;
  cursor: pointer;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.header .search-list .search-box .search-center span:hover {
  color: var(--color);
}
.header:hover {
  background: #fff;
}
.header:hover .con .logo a img.regular {
  opacity: 0;
}
.header:hover .con .logo a img.hover {
  opacity: 1;
}
.header:hover .con .nav > ul > li h2 a {
  color: #333;
}
.header:hover .con .right .make a {
  color: #333;
}
.header:hover .con .right .make a:before {
  border: 1px solid #333;
}
.header:hover .con .right .lang .lang-box span {
  color: #333;
}
.header:hover .con .right .search span {
  color: #333;
}
.header.active {
  background: #fff;
}
.header.active .con .logo a img.regular {
  opacity: 0;
}
.header.active .con .logo a img.hover {
  opacity: 1;
}
.header.active .con .nav > ul > li h2 a {
  color: #333;
}
.header.active .con .right .make a {
  color: #333;
}
.header.active .con .right .make a:before {
  border: 1px solid #333;
}
.header.active .con .right .lang .lang-box span {
  color: #333;
}
.header.active .con .right .search span {
  color: #333;
}
.header.hides {
  top: -100px;
}
.footer {
  background: #000;
  color: #fff;
  overflow: hidden;
  padding: 100px 0 60px;
}
.footer .footer-top {
  display: flex;
  justify-content: space-between;
}
.footer .footer-top .left {
  width: 22%;
}
.footer .footer-top .left .logo {
  width: 79%;
}
.footer .footer-top .left .logo img {
  width: 100%;
}
.footer .footer-top .left ul {
  margin-top: 40px;
}
.footer .footer-top .left ul li {
  display: flex;
  margin-top: 10px;
}
.footer .footer-top .left ul li .icons {
  flex-shrink: 0;
  margin-right: 14px;
  position: relative;
  top: 1px;
}
.footer .footer-top .left ul li p {
  color: #fff;
}
.footer .footer-top .left ul li p a {
  color: #fff;
  white-space: nowrap;
}
.footer .footer-top .left ul li p a:hover {
  text-decoration: underline;
}
.footer .footer-top .left ul li:first-child .icons {
  top: 4px;
}
.footer .footer-top .left ul li:first-child p {
  font-family: HarmonyOS_Sans_Medium;
}
.footer .footer-top .right {
  width: 74%;
  margin-top: 14px;
}
.footer .footer-top .right > ul {
  display: flex;
  justify-content: space-between;
}
.footer .footer-top .right > ul > li h2 a {
  font-family: HarmonyOS_Sans_Medium;
  color: #fff;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.footer .footer-top .right > ul > li ul {
  margin-top: 20px;
}
.footer .footer-top .right > ul > li ul li {
  margin-top: 4px;
}
.footer .footer-top .right > ul > li ul li a {
  color: #fff;
  font-family: HarmonyOS_Sans_Light;
  opacity: 0.7;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.footer .footer-top .right > ul > li ul li a:hover {
  opacity: 1;
}
.footer .footer-middle {
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
}
.footer .footer-middle ul {
  display: flex;
  padding-left: 40px;
}
.footer .footer-middle ul li {
  text-align: center;
}
.footer .footer-middle ul li .tu {
  width: 100px;
}
.footer .footer-middle ul li .tu img {
  width: 100%;
}
.footer .footer-middle ul li h2 {
  margin-top: 8px;
  color: #fff;
  opacity: 0.7;
}
.footer .footer-middle ul li:not(:last-child) {
  margin-right: 20px;
}
.footer .footer-bottom {
  padding-top: 40px;
  display: flex;
  justify-content: center;
}
.footer .footer-bottom ul {
  display: flex;
  display: none;
}
.footer .footer-bottom ul li {
  position: relative;
  overflow: hidden;
}
.footer .footer-bottom ul li .icons {
  position: relative;
}
.footer .footer-bottom ul li .icons img {
  height: 30px;
}
.footer .footer-bottom ul li .erweima {
  position: absolute;
  width: 90px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background: #fff;
  padding: 4px;
  top: -90px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.footer .footer-bottom ul li .erweima img {
  width: 100%;
}
.footer .footer-bottom ul li:not(:last-child) {
  margin-right: 24px;
}
.footer .footer-bottom ul li:hover {
  overflow: inherit;
}
.footer .footer-bottom ul li:hover .erweima {
  opacity: 1;
  top: -100px;
  visibility: visible;
}
.footer .footer-bottom p {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}
.footer .footer-bottom p a {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.footer .footer-bottom p a:hover {
  color: #fff;
}
.ctn-after {
  position: relative;
}
.ctn-after:before {
  content: '';
  width: 100%;
  height: 612px;
  max-height: 50%;
  background: linear-gradient(180deg, rgba(3, 86, 121, 0) 0%, #035679 100%);
  opacity: 0.1;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@keyframes bounces {
  0%,
  15%,
  47%,
  73%,
  89%,
  100% {
    animation-timing-function: ease-out;
    transform: translate3d(0, 0, 0);
  }
  30%,
  32% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -14px, 0);
  }
  60% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -10px, 0);
  }
  82% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -6px, 0);
  }
  94% {
    animation-timing-function: ease-in;
    transform: translate3d(0, -2px, 0);
  }
}

.isFEnv .banner-regular{
  height: 800px;
}

.banner-regular {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 3;
  font-size: 0;
}
.banner-regular img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-regular video{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-regular .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.banner-regular .text .con {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.banner-regular .text .con .txt {
  color: #fff;
  flex-shrink: 0;
}
.banner-regular .text .con .txt h2 {
  margin-top: 10px;
}
.banner-regular .text .con .tu {
  width: 68%;
  height: 320px;
  display: flex;
    justify-content: center;
    align-items: center;
}
.banner-regular .text .con .tu img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.banner-regular .text .con .tu:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.banner-regular .slide-next {
  width: 64px;
  height: 64px;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  cursor: pointer;
}
.banner-regular .slide-next .box {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  animation-name: bounces;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  animation-fill-mode: both;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.banner-regular .slide-next .box span {
  color: #fff;
  font-size: 28px;
}
.banner-regular .slide-next:hover .box {
  border: 1px dashed #ffffff;
}
.inner-banner {
  position: relative;
}
.inner-banner img {
  width: 100%;
}
.inner-banner .text {
  position: absolute;
  width: 100%;
  left: 0;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.inner-banner .text h2 {
  color: #fff;
}
.bread-nav {
  margin-top: 30px;
}
.bread-nav .con {
  display: flex;
  align-items: center;
}
.bread-nav .con img {
  flex-shrink: 0;
  margin-right: 4px;
}
.bread-nav .con a{
  display: flex;
  align-items: center;
   color: #333;
}
.bread-nav .con a span{
  color: #333;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.bread-nav .con a:hover{
  color: var(--color);
}
.bread-nav .con a:hover span{
  color: var(--color);
}
.bread-nav ul li:last-child span {
  width: 240px;
  max-width: 50%;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 1.5;
  max-height: 1.5em;
}
.s-mores {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.s-mores a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 177px;
  height: 54px;
  position: relative;
}
.s-mores a:before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--color);
  position: absolute;
  left: 0;
  top: 0;
  transform: skewX(-10deg);
}
.s-mores a span {
  margin-right: 10px;
  line-height: 1;
  position: relative;
}
.s-mores a img {
  position: relative;
}
#videoPopup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
#videoPopup .video-box {
  width: 66%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#videoPopup .video-box video {
  width: 100%;
}
#videoPopup .video-box .closes {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-align: center;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
#videoPopup .video-box .closes span {
  font-size: 16px;
  line-height: 40px;
  color: #fff;
}
#videoPopup .video-box .closes:hover {
  background: rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 1680px) {
  .w1440 {
    width: 80%;
  }
  .header .con .logo a img {
    height: 44px;
  }
  .header .con .nav > ul > li {
    margin-right: 3vw;
  }
  .header .con .right .make {
    margin-right: 3vw;
  }
  .header .con .right .lang {
    margin-right: 2vw;
  }
  .footer {
    padding: 5vw 0 3vw;
  }
  .footer .footer-middle {
    padding-bottom: 4vw;
    margin-top: 2vw;
  }
  .footer .footer-bottom {
    padding-top: 2vw;
  }
  .bread-nav {
    margin-top: 1.5vw;
  }
  .s-mores {
    margin-top: 2.5vw;
  }
}
@media screen and (max-width: 1440px) {
  .header .con {
    padding: 0 5%;
  }
  .header .con .logo {
    height: 78px;
  }
  .header .con .logo a img {
    height: 38px;
  }
  .header .con .nav > ul > li h2 a {
    line-height: 78px;
  }
  .header .con .nav > ul > li .nav-down {
    top: 78px;
    width: 130px;
  }
  .header .con .nav > ul > li .nav-down ul {
    padding: 6px 0;
  }
  .header .con .nav > ul > li .nav-down ul li a {
    line-height: 40px;
  }
  .header .con .right .lang .lang-box span {
    line-height: 78px;
    font-size: 24px;
  }
  .header .con .right .lang ul {
    top: 78px;
  }
  .header .con .right .search span {
    font-size: 20px;
  }
  .header.hides {
    top: -80px;
  }
  .header .search-list .search-box .search-center span {
    font-size: 20px;
  }
  .footer .footer-bottom ul li .icons img {
    height: 24px;
  }
  .banner-regular .slide-next {
    width: 54px;
    height: 54px;
  }
  .banner-regular .slide-next .box span {
    font-size: 24px;
  }
  .s-mores a {
    width: 150px;
    height: 44px;
  }
  .s-mores a img {
    width: 14px;
    top: -1px;
  }
}
@media screen and (max-width: 1200px) {
  .w1440 {
    width: 90%;
  }
  .header .con .nav > ul > li {
    margin-right: 2vw;
  }
  .footer .footer-top .left ul li:first-child .icons {
    top: 2px;
  }
}
@media screen and (max-width: 1024px) {

img, video {
  pointer-events: all;
  user-select: all;
}

  .header {
    position: fixed;
    background: #fff;
  }
  .header .con {
    justify-content: space-between;
    padding: 0 5%;
  }
  .header .con .logo a img.regular {
    opacity: 0;
  }
  .header .con .logo a img.hover {
    opacity: 1;
  }
  .header .con .nav {
    margin-right: 0;
    position: fixed;
    top: 78px;
    width: 100%;
    background: #fff;
    padding: 0 5% 20px;
    left: auto;
    bottom: 0;
    right: -100%;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
  }
  .header .con .nav > ul {
    display: block;
    width: 100%;
  }
  .header .con .nav > ul > li {
    width: 100%;
  }
  .header .con .nav > ul > li h2 {
    border-bottom: 1px solid #f2f2f2;
  }
  .header .con .nav > ul > li h2:before {
    display: none;
  }
  .header .con .nav > ul > li h2:after {
    content: '\e603';
    font-family: iconfont;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 50px;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
  }
  .header .con .nav > ul > li h2 a {
    width: 50%;
    line-height: 50px;
    color: #333;
  }
  .header .con .nav > ul > li h2 a:after {
    display: none;
  }
  .header .con .nav > ul > li .nav-down {
    position: relative;
    top: 0;
    display: none;
    padding: 0;
    background: #fff;
    width: 100%;
    border-top: none;
  }
  .header .con .nav > ul > li .nav-down ul {
    display: block;
    padding: 0;
  }
  .header .con .nav > ul > li .nav-down ul li {
    width: 100%;
    padding: 0 20px;
  }
  .header .con .nav > ul > li .nav-down ul li a {
    text-align: left;
    display: block;
    line-height: 40px;
    color: #666;
    position: relative;
  }
  .header .con .nav > ul > li .nav-down ul li a:before {
    content: '\e683';
    font-family: iconfont;
    position: absolute;
    font-size: 16px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .header .con .nav > ul > li.active h2:after {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
  }
  .header .con .nav > ul > li:first-child h2:after {
    transform: rotate(-90deg) !important;
    -webkit-transform: rotate(-90deg) !important;
    -moz-transform: rotate(-90deg) !important;
    -ms-transform: rotate(-90deg) !important;
  }
  .header .con .nav > ul > li:first-child h2 a {
    width: 100%;
  }
  .header .con .nav > ul > li:last-child h2:after {
    transform: rotate(-90deg) !important;
    -webkit-transform: rotate(-90deg) !important;
    -moz-transform: rotate(-90deg) !important;
    -ms-transform: rotate(-90deg) !important;
  }
  .header .con .nav > ul > li:last-child h2 a {
    width: 100%;
  }
  .header .con .nav.active {
    right: 0;
  }
  .header .con .right .make {
    margin-right: 20px;
  }
  .header .con .right .make a {
    color: #fff !important;
  }
  .header .con .right .make a:before {
    border: 1px solid var(--color) !important;
    background: var(--color) !important;
  }
  .header .con .right .lang {
    margin-right: 20px;
  }
  .header .con .right .lang .lang-box span {
    color: #333;
  }
  .header .con .right .search {
    margin-right: 20px;
  }
  .header .con .right .search span {
    color: #333;
  }
  .header .con .right .mobile-btn {
    width: 20px;
    height: 70px;
    display: block;
    position: relative;
  }
  .header .con .right .mobile-btn .nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 20px;
    height: 40px;
    text-align: center;
    z-index: 11;
    font-size: 0;
    margin: 0 auto;
  }
  .header .con .right .mobile-btn .nav-button div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 20px;
    height: 16px;
  }
  .header .con .right .mobile-btn .nav-button div span {
    width: 100%;
    height: 2px;
    background-color: #000;
    display: block;
    margin: 0 auto;
    line-height: 2px;
    position: static;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
  }
  .header .con .right .mobile-btn .nav-button div span.center-hr {
    margin: 5px auto;
  }
  .header .con .right .mobile-btn .nav-button div span.top-hr {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .header .con .right .mobile-btn .nav-button div span.bottom-hr {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .header .con .right .mobile-btn .nav-button.active div span {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    left: 0;
  }
  .header .con .right .mobile-btn .nav-button.active div span.center-hr {
    display: none;
  }
  .header .con .right .mobile-btn .nav-button.active div span.top-hr {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
  }
  .header .con .right .mobile-btn .nav-button.active div span.bottom-hr {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
  }
  .footer {
    padding: 40px 0 50px;
  }
  .footer .footer-top .left {
    width: 100%;
  }
  .footer .footer-top .left .logo {
    width: 100%;
    text-align: center;
  }
  .footer .footer-top .left .logo img {
    width: 160px;
  }
  .footer .footer-top .left ul {
    width: 320px;
    margin: 30px auto 0;
    max-width: 100%;
  }
  .footer .footer-top .right {
    display: none;
  }
  .footer .footer-middle {
    padding-bottom: 30px;
    margin-top: 30px;
  }
  .footer .footer-middle ul {
    padding-left: 0;
    justify-content: center;
  }
  .footer .footer-bottom {
    display: block;
    padding-top: 30px;
  }
  .footer .footer-bottom ul {
    justify-content: center;
  }
  .footer .footer-bottom p {
    text-align: center;
  }
  .inner-banner {
    margin-top: 80px;
  }
  .inner-banner .text {
    top: 50%;
  }
  .banner-regular {
    margin-top: 80px;
    height: calc(100vh - 80px);
  }
  #videoPopup .video-box {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .p {
    line-height: 1.6;
  }
  .s-mores {
    margin-top: 20px;
  }
  .inner-banner {
    margin-top: 60px;
  }
  .banner-regular {
    margin-top: 60px;
    height: auto;
  }
  .banner-regular .text .con {
    display: block;
  }
  .banner-regular .text .con .tu {
    width: auto;
    height: 80px;
    margin: 20px auto 0;
  }
  .banner-regular .slide-next {
    width: 44px;
    height: 44px;
    display: none;
  }
  .banner-regular .slide-next .box span {
    font-size: 20px;
  }
  .bread-nav {
    margin-top: 14px;
  }
  .header .con .logo {
    height: 60px;
  }
  .header .con .logo a img {
    height: 30px;
  }
  .header .con .nav {
    top: 60px;
  }
  .header .con .right .make {
    margin-right: 10px;
  }
  .header .con .right .make a {
    width: 80px;
  }
  .header .con .right .lang {
    margin-right: 10px;
  }
  .header .con .right .lang .lang-box span {
    line-height: 60px;
  }
  .header .con .right .mobile-btn {
    height: 60px;
  }
}

.positions{
    position: absolute;
    left:0;
    top:-70px;
}
.positionss{
    position: absolute;
    left:0;
    top:50px;
}
.position_s{
    position: absolute;
    left:0;
    top:-50px;
}
@media screen and (max-width: 1680px) {
    .positions{
        top:-3.5vw;
    }
}
@media screen and (max-width: 1024px) {
    .positions{
        top:-80px;
    }
    .positionss{
    top:-10px;
}
}
