@charset "utf-8";
/* ====================公共样式========================= */
/* 头部 */
.Header-wrapper {
  width: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  background: transparent;
  user-select: none;
  box-shadow: none;
  transition: all 0.4s ease;
}
.Header-wrapper.up {
  transform: translateY(-100%);
}
.Header-wrapper.up.show {
  transform: translateY(0);
}
.Header-wrapper::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
 /*  background: rgba(255, 255, 255, 0.2); */
  left: 0;
  bottom: 0;
}
@media all and (max-width:1220px) {
/*.Header-wrapper{ position:absolute;}*/

}

.Header-logo {
  float: left;
  width: 220px;
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
}
.Header-logo img {
  max-width: 100%;
  position: absolute;
  transition: opacity 0.4s ease;
}
.Header-logo img.s {
  opacity: 1;
}
.Header-logo img.h {
  opacity: 0;
}
.Header-lang {
  float: right;
  position: relative;
  z-index: 999;
  margin-left: 22px;
}
.Header-lang-menu {
  display: flex;
  align-items: center;
  height: 100px;
  color: #333;
  transition: color 0.4s ease;
  font-weight: 500;
  font-size: 14px;
}
.Header-lang-menu i {
  display: block;
  background: url("../images/common/lan-select.png") no-repeat center / 100%;
  width: 11px;
  height: 10px;
  margin-left: 5px;
}
/* 多个语言 */
.Header-lang-more {
  display: none;
  z-index: 9;
  width: 100px;
  position: absolute;
  top: calc(100% - 20px);
  left: 50%;
  margin-left: -50px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 17px 37px 0 rgba(0, 0, 0, 0.04);
  border-radius: 20px;
}
.Header-lang-more:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 8px 8px;
  border-color: transparent transparent #efefef transparent;
  position: absolute;
  top: -8px;
  left: 50%;
  margin: 0 0 0 -8px;
}
.Header-lang-more a {
  display: block;
  font-size: 14px;
  color: #666;
  text-align: center;
  padding: 10px 0;
}
.Header-lang-more a span {
  display: inline-block;
}
.Header-lang-more a:hover {
  color: #fff;
  background: #1fb8fe;
}
.Header-lang.active .Header-lang-more {
  display: block;
  animation: langInUp 0.4s ease-out;
}
@keyframes langInUp {
  0% {
    transform: translateY(20px);
    opacity: 0.5;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.Header-search {
  float: right;
  height: 100px;
  display: flex;
  align-items: center;
  margin-left: 28px;
}
.Header-search-item form {
  width: 210px;
  height: 40px;
  position: relative;
}
.Header-search-item input {
  box-sizing: border-box;
  padding: 0 20px;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.62);
  border-radius: 20px;
  border: 1px solid #e6e6e6;
  transition: all 0.4s ease;
}
.Header-search-item input:focus {
  box-shadow: inset 0 0 9px rgba(204, 204, 204, 0.39);
}
.Header-search-item input::placeholder {
  color: #999;
  font-size: 14px;
  font-family: HarmonyOS_Sans_Light;
}
.Header-search button {
  position: absolute;
  height: 100%;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.Header-search button i {
  font-size: 18px;
  color: #666;
}
.Header-navbar {
  float: right;
  visibility: visible;
  opacity: 1;
}
body.PC .Header-navbar {
  display: block !important;
}
.Header-navbar li {
  float: left;
  margin: 0 11px;
  position: relative;
  z-index: 9;
}
.Header-navbar li:last-child {
  margin-right: 0;
}
.Header-navbar li:first-child {
  margin-left: 0;
}
.Header-menu {
  position: relative;
  height: 100px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  transition: color 0.4s ease;
  font-family: HarmonyOS_Sans_Medium;
}
.Header-navbar li:hover .Header-menu,
.Header-navbar li.on .Header-menu ,
.Header-navbar li.active .Header-menu {
  color: #1fb8fe !important;
  /* font-weight: bold; */
}
.Header-drop {
  display: none;
  background: #fff;
  box-shadow: 0 17px 37px 0 rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  border: 1px solid #fafafa;
  position: absolute;
  left: 0;
  top: calc(100% - 20px);
  padding: 21px 29px 29px;
}
.Header-drop.style1 {
  width: 564px;
}
.Header-drop .item {
  width: 49%;
  display: block;
  padding: 12px 15px;
  background-image: linear-gradient(215deg, rgba(202, 238, 255, .5), rgba(233, 255, 225, .5));
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
  border: 1px solid transparent;
  transition: all 0.4s ease;
}
.Header-drop .item:hover {
  border-color: #1fb8fe;
  background-color: #caeeff;
}
.Header-drop .item.bg:hover {
  background-image: url("../images/common/Header-drop-bg2-h.png");
}
.Header-drop .item.big {
  padding-top: 64px;
  background-image: url("../images/common/Header-drop-bg1.png");
}
.Header-drop .item .title {
  font-size: 14px;
}
.Header-drop .item p {
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
  color: #888;
}
.Header-drop .item .icon {
  position: absolute;
  right: 16px;
  top: 16px;
}
.Header-drop .item.bg .icon {
  top: 20px;
  right: 16px;
}
.Header-drop.style2 {
  width: 175px;
  padding: 20px 15px 10px;
}
.Header-drop.style2 .item {
  width: 100%;
}
/* 透明 */
.header-type-a .Header-wrapper {
  background: rgba(255, 255, 255, 0.39);
 /* backdrop-filter: blur(10px);*/
}
.bodyMouse .Header-wrapper,
.bodyScroll .Header-wrapper,
.bodySearch .Header-wrapper,
.noLucency .Header-wrapper {
  /* background: rgba(255, 255, 255, 1); */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.39);
 /* backdrop-filter: blur(10px);*/
}
.header-type-a .Header-wrapper::after {
  /* background: rgba(255, 255, 255, 1); */
}
.bodyScroll .Header-wrapper{
  background: rgba(255, 255, 255, 1);
}
.bodyScroll .Header-menu,
.bodyMouse .Header-menu,
.bodySearch .Header-menu,
.noLucency .Header-menu {
  color: #666;
}
.bodyScroll .Header-logo img.s,
.bodyMouse .Header-logo img.s,
.bodySearch .Header-logo img.s,
.noLucency .Header-logo img.s {
  opacity: 0;
}
.bodyScroll .Header-logo img.h,
.bodyMouse .Header-logo img.h,
.bodySearch .Header-logo img.h,
.noLucency .Header-logo img.h {
  opacity: 1;
}
.bodyScroll .Header-lang-menu,
.bodyMouse .Header-lang-menu,
.bodySearch .Header-lang-menu,
.noLucency .Header-lang-menu {
  color: #666;
}
.bodySearch .Header-navbar {
  visibility: hidden;
  opacity: 0;
}
/* 不透明 */
.noLucency .Container-wrapper {
  margin-top: 100px;
}
/* 底部 */
.Footer-wrapper {
  background: linear-gradient(80deg, #5acb33, #1fb8fe 80%);
}

.Footer-items {
  padding: 35px 0 20px;
}

.foot-navbar {
    display: flex;
}

.foot-item {
    width: 15%;
}

.foot-item .head {
    font-size: 18px;
    color: #fff;
}

.foot-item ul {
    padding: 5px 0;
}

.foot-item ul li {
    padding: 2px 0;
}

.foot-item ul li a {
    font-size: 16px;
    color: #fff;
}

.Footer-wrapper .contact {
    color: #fff;
    font-size: 16px;
    margin-top: 30px;
}

.Footer-items .in {
  display: flex;
  justify-content: space-between;
  padding-top: 42px;
  border-top: 1px solid;
  border-image: linear-gradient(142deg, rgba(249, 249, 249, 0), #f4f4f4, rgba(239, 239, 239, 0)) 1 1;
}
.Footer-items .mid {
  width: 51%;
}
.Footer-items .mid ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}
.Footer-items .mid p {
  width: 100%;
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
}
.Footer-items .mid ul p {
  font-size: 12px;
  line-height: 17px;
}
.Footer-items .mid img {
  padding-right: 10px;
}
.Footer-items .mid .rgt p + p {
  margin-top: 10px;
}
.Footer-items .code img {
  width: 101px;
  height: 101px;
  object-fit: cover;
}
.Footer-copyright {
  border-top: 1px solid #f5f2f5;
  padding: 14px 0;
}
.Footer-copyright p {
  font-size: 16px;
  color: #fff;
}
.Footer-copyright p + p {
  margin-left: 15px;
}
/* 置顶 */
.backTop {
  display: none;
  right: 40px;
  bottom: 60px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 23px;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  cursor: pointer;
  z-index: 9999;
  background: #1fb8fe;
}
.backTop::after {
  content: "\e684";
  font-family: "icon";
}
@media all and (max-width: 1590px) {
  .backTop {
    right: 30px;
    bottom: 40px;
  }
}
@media all and (max-width: 640px) {
  .backTop {
    right: 8px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-size: 20px auto;
  }
}
/* 视频弹窗 */
.popVideo {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}
.popVideo-items {
  width: 1000px;
  position: relative;
  opacity: 0;
}
.popVideo-video {
  width: 100%;
}
.popVideo-video video {
  width: 100%;
}
.popVideo-video iframe {
  width: 100%;
  height: 500px;
}
.popVideo-close {
  width: 40px;
  height: 40px;
  right: -40px;
  top: -40px;
  line-height: 40px;
  opacity: 0.7;
  text-align: center;
  position: absolute;
  z-index: 3;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: all 0.6s ease;
}
.popVideo-close:hover {
  opacity: 1;
}
.popVideo.active {
  display: flex;
}
.popVideo.active .popVideo-items {
  animation: popVideRun 1s ease both 0.4s;
}
@keyframes popVideRun {
  0% {
    opacity: 0;
    transform: translateY(-200px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media all and (max-width: 1100px) {
  .popVideo-items {
    width: 92%;
  }
  .popVideo-close {
    right: -8px;
  }
  .popVideo-video iframe {
    height: 400px;
  }
}
@media all and (max-width: 640px) {
  .popVideo-video iframe {
    height: 200px;
  }
}
/* 中间+共用部分 */
.Container-wrapper {
  width: 100%;
}
.section {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.contain {
  width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}
body {
  min-width: 1220px;
}
/* common */
.com-btn {
  width: 180px;
  height: 50px;
  background: #fff;
  border-radius: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #262b2a;
  transition: box-shadow 0.4s ease;
}
/* .com-btn:hover {
  box-shadow: 0 10px 18px rgba(255, 108, 27, 0.5);
} */
.com-btn.white {
  background: #fff;
  color: #1fb8fe;
}
.com-btn.white:hover {
  box-shadow: 0 10px 18px rgba(255, 255, 255, 0.5);
}
.com-tit {
  color: #262b2a;
  font-family: 微软雅黑;
}
.com-tit + .com-tip {
  margin-top: 20px;
}
.com-tip {
  font-size: 18px;
  color: #646666;
  line-height: 29px;
  max-width: 560px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.c-title {
  font-family: 微软雅黑;
  color: #262b2a;
}

.c-desc {
  font-family: 微软雅黑;
  color: #646666;
}