﻿@charset "utf-8";
/* ====================公共样式========================= */
/* 头部 */
.Header-wrapper {
  width: 100%;
  position: relative;
  z-index: 99999;
  top: 0;
  left: 0;
  background: transparent;
  user-select: none;
  transition: background 0.4s ease;
}
.Header-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  pointer-events: none;
}

.Header-logo {
  float: left;
  width: 230px;
  height: 96px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;
}
.Header-logo img {
  max-width: 100%;
  position: absolute;
  transition: all 0.4s ease;
}
.Header-logo img.s {
  opacity: 1;
}
.Header-logo img.h {
  opacity: 0;
}

.Header-lang {
  float: right;
  position: relative;
  z-index: 999;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 96px;
}
.Header-lang-menu {
  height: 30px;
  margin-left: 6px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  font-family: 'SamsungOne400';
  transition: all 0.4s ease;
}
.Header-lang-menu:first-child {
  margin-left: 0;
}
.Header-lang-menu:hover {
  color: #f00 !important;
}
.Header-lang-menu.active {
  color: #fff !important;
  background: #f00;
}
.header-tel-box {
  display: block !important;
  font-size: 14px;
  text-align: left;
  border-left: 1px #e5e5e5 solid;
  border-radius: 0;
  height: auto;
  padding-left: 20px;
  color: #000000;
}
.header-tel-box span {
  display: block;
  font-size: 24px;
  color: #f00;
  width: 220px;
  margin-left: 10px;
  font-weight: bold;
}
.header-tel {
  display: inline-block;
  float: left;
  width: 32px;
  height: 20px;
  margin-left: 0;
  background: url('../images/common/telW.svg') no-repeat center/24px auto;
  transition: all 0.4s ease;
}
.Header-wrapper.active .header-tel,
.Header-wrapper:hover .header-tel {
  background-image: url('../images/common/tel.svg');
  color: #f00 !important;
}
.Header-wrapper.active .Header-lang-menu,
.Header-wrapper:hover .Header-lang-menu {
  color: #f00;
}
.Header-search {
  float: right;
}
.Header-search-click {
  width: 48px;
  height: 96px;
  cursor: pointer;
  background: url('../images/common/searchW.svg') no-repeat center / 20px auto;
  position: relative;
  z-index: 999;
}
.Header-search-click.active {
  background: url('../images/common/close.svg') no-repeat center/20px auto !important;
}
.Header-search-item {
  display: none;
  position: absolute;
  width: 100%;
  height: 96px;
  line-height: 96px;
  top: 0;
  left: 0;
  z-index: 99;
  text-align: right;
}
.Header-search-item .contain {
  padding-right: 162px;
}
.Header-search-item.active {
  display: block;
}
.Header-search-item input,
.Header-search-item button {
  display: inline-block;
  vertical-align: middle;
}
.Header-search-item input {
  width: 0px;
  height: 40px;
  border-bottom: 1px solid #e5e5e5;
  transition: border 0.4s ease;
  font-size: 16px;
  color: #666;
  font-family: 'SamsungOne400';
  background: transparent;
}
.Header-search-item input:focus {
  border-bottom: 1px solid #666;
}
.Header-search-item.active input {
  animation: HeaderSearch 0.8s ease both;
}
@keyframes HeaderSearch {
  0% {
    width: 0;
  }
  100% {
    width: 420px;
  }
}
.Header-search-item button {
  width: 50px;
  height: 40px;
  background: url('../images/common/search.svg') no-repeat center / 20px auto;
  cursor: pointer;
  margin-right: 0;
}
body.onSearch .Header-navbar {
  visibility: hidden;
  opacity: 0;
}

.Header-navbar {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
  z-index: 4;
  visibility: visible;
  opacity: 1;
  transition: visibility 0.4s ease, opacity 0.4s ease;
}
body.PC .Header-navbar {
  display: block !important;
}
.Header-navbar ul {
  display: inline-block;
}
.Header-navbar li {
  float: left;
  position: relative;
  z-index: 9;
}
.Header-menu {
  position: relative;
  height: 96px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #000;
  font-family: 'SamsungOne400';
  transition: color 0.4s ease;
}
.Header-menu::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  opacity: 0;
  background: var(--thm-base);
  height: 1px;
  transition: width 0.4s ease 0s, opacity 0.2s ease 0.2s;
}
.Header-navbar li:hover {
  z-index: 11;
}
.Header-navbar li:hover .Header-menu,
.Header-navbar li.active .Header-menu {
  color: var(--thm-base);
}
.Header-navbar li:hover .Header-menu::after,
.Header-navbar li.active .Header-menu::after {
  opacity: 1;
  width: calc(100% - 100px);
  transition: width 0.4s ease 0.2s, opacity 0.2s ease;
}
.Header-arrow {
  display: none;
}
/* -- */
.Header-drop {
  display: none;
  position: absolute;
  background: #fff;
  top: 96px;
}
.Header-navbar li.Header-other .Header-drop {
  width: 212px;
  left: 50%;
  margin-left: -106px;
  padding: 20px 0;
}
.Header-navbar li.Header-other .Header-drop a {
  display: flex;
  width: 100%;
  height: 54px;
  align-items: center;
  font-size: 14px;
  color: #555;
  transition: all 0.4s ease;
  padding: 0 30px;
  font-family: 'SamsungOne400';
}
.Header-navbar li.Header-other .Header-drop a.active,
.Header-navbar li.Header-other .Header-drop a:hover {
  background: rgba(var(--thm-base-rgb), 0.2);
  color: var(--thm-base);
}
/* -- */
.Header-navbar li.Header-solutions,
.Header-navbar li.Header-products {
  position: static;
}
.Header-navbar li.Header-solutions .Header-drop,
.Header-navbar li.Header-products .Header-drop {
  width: 100%;
  left: 0;
}
.Header-solutions-contain {
  width: 100%;
  margin: 0 auto;
  padding: 70px 0;
}
.Header-solutions-ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.Header-solutions-items {
  width: auto;
  text-align: center;
  position: relative;
  padding: 0 24px;
}
.Header-solutions-items .name {
  display: block;
  width: 100%;
  font-size: 16px;
  color: #222;
  height: 34px;
  font-family: 'SamsungOne600';
  line-height: 1.1;
  transition: all 0.4s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.Header-solutions-items a.name:hover {
  color: var(--thm-base);
}
.Header-solutions-items .img {
  width: 188px;
  display: block;
  transition: all 0.4s ease;
  position: relative;
  margin: 0 auto;
}
.Header-solutions-items .img img {
  width: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
}
.Header-solutions-items .img:hover {
  transform: scale(1.16);
}
.Header-solutions-items::after {
  content: '';
  position: absolute;
  width: 1px;
  height: calc(100% - 34px);
  background: #e3e3e3;
  right: 0;
  bottom: 0;
}
.Header-solutions-items:first-child {
  padding-left: 0;
}
.Header-solutions-items:last-child {
  padding-right: 0;
}
.Header-solutions-items:last-child:after {
  display: none;
}
.Header-solutions-items .img:hover {
  z-index: 4;
}
.Header-solutions-items .list {
  display: flex;
  justify-content: center;
}
.Header-solutions-items .list .cont {
  position: absolute;
  font-size: 14px;
  color: #fff;
  bottom: 6px;
  width: 100%;
  left: 0;
  z-index: 3;
  line-height: 22px;
}
.Header-solutions-items .list .img {
  margin: 0 12px 0 0;
}
.Header-solutions-items .list .img:last-child {
  margin: 0;
}
/* -- */
.Header-products-contain {
  width: 1100px;
  margin: 0 auto;
  padding: 70px 0;
}
.Header-products-ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.Header-products-items {
  width: 33.3333%;
  display: flex;
  flex-wrap: wrap;
  padding: 0 32px;
  text-align: left;
  position: relative;
}
.Header-products-items .img {
  width: 110px;
  overflow: hidden;
  display: block;
  text-align: center;
  transition: all 0.4s ease;
}
.Header-products-items .img img {
  max-width: 100%;
  object-fit: cover;
}
.Header-products-items .img:hover {
  transform: translateY(-4px);
}
.Header-products-items::after {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  border: 1px dashed #e0e0e0;
  top: 0;
  right: 0;
}
.Header-products-items .cont .name {
  display: block;
  width: 100%;
  font-size: 16px;
  color: #333;
  font-weight: 700;
  font-family: 'SamsungOne600';
  line-height: 1.1;
  transition: all 0.4s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.Header-products-items:nth-child(3n)::after {
  display: none;
}
.Header-products-items:nth-child(n + 4) {
  margin-top: 40px;
}
.Header-products-items .cont {
  width: calc(100% - 110px);
  padding-left: 20px;
}
.Header-products-items .cont .text {
  width: 100%;
  margin-top: 10px;
}
.Header-products-items .cont .text a {
  display: block;
  height: 30px;
  line-height: 30px;
  font-size: 15px;
  color: #666;
  transition: all 0.4s ease;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.Header-products-items .cont .text a:hover {
  color: var(--thm-base);
}

.Header-navclick {
  display: none;
  width: 24px;
  height: 60px;
  cursor: pointer;
  float: right;
  user-select: none;
  align-items: center;
}
.Header-navclick span {
  width: 100%;
  height: 2px;
  background: #666;
  display: block;
  position: relative;
  transition: all 0.2s linear;
}
.Header-navclick span:before,
.Header-navclick span:after {
  content: '';
  position: absolute;
  height: 2px;
  background: #666;
  display: block;
  left: 0;
  width: 100%;
  transition: all 0.2s linear;
}
.Header-navclick span:before {
  top: -7px;
}
.Header-navclick span:after {
  top: 7px;
}
.Header-navclick.active span {
  -moz-animation: buttonAnimation 0.3s ease forwards;
  -webkit-animation: buttonAnimation 0.3s ease forwards;
  animation: buttonAnimation 0.3s ease forwards;
}
.Header-navclick.active span:before {
  -moz-animation: buttonAnimationBefore 0.3s ease forwards;
  -webkit-animation: buttonAnimationBefore 0.3s ease forwards;
  animation: buttonAnimationBefore 0.3s ease forwards;
}
.Header-navclick.active span:after {
  -moz-animation: buttonAnimationAfter 0.3s ease forwards;
  -webkit-animation: buttonAnimationAfter 0.3s ease forwards;
  animation: buttonAnimationAfter 0.3s ease forwards;
}
@-moz-keyframes buttonAnimationBefore {
  0% {
    -moz-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -moz-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0);
  }
  100% {
    -moz-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
}
@-webkit-keyframes buttonAnimationBefore {
  0% {
    -webkit-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
}
@keyframes buttonAnimationBefore {
  0% {
    -moz-transform: translateY(0px) rotate(0);
    -ms-transform: translateY(0px) rotate(0);
    -webkit-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -moz-transform: translateY(7px) rotate(0);
    -ms-transform: translateY(7px) rotate(0);
    -webkit-transform: translateY(7px) rotate(0);
    transform: translateY(7px) rotate(0);
  }
  100% {
    -moz-transform: translateY(7px) rotate(45deg);
    -ms-transform: translateY(7px) rotate(45deg);
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
}
@-moz-keyframes buttonAnimationAfter {
  0% {
    -moz-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -moz-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }
  100% {
    -moz-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
}
@-webkit-keyframes buttonAnimationAfter {
  0% {
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
}
@keyframes buttonAnimationAfter {
  0% {
    -moz-transform: translateY(0) rotate(0);
    -ms-transform: translateY(0) rotate(0);
    -webkit-transform: translateY(0) rotate(0);
    transform: translateY(0) rotate(0);
  }
  50% {
    -moz-transform: translateY(-7px) rotate(0);
    -ms-transform: translateY(-7px) rotate(0);
    -webkit-transform: translateY(-7px) rotate(0);
    transform: translateY(-7px) rotate(0);
  }
  100% {
    -moz-transform: translateY(-7px) rotate(-45deg);
    -ms-transform: translateY(-7px) rotate(-45deg);
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
}
@-moz-keyframes buttonAnimation {
  0% {
    background: transparent;
  }
  50% {
    background: rgba(255, 255, 255, 0);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes buttonAnimation {
  0% {
    background: transparent;
  }
  50% {
    background: rgba(255, 255, 255, 0);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}
@keyframes buttonAnimation {
  0% {
    background: transparent;
  }
  50% {
    background: rgba(255, 255, 255, 0);
  }
  100% {
    background: rgba(255, 255, 255, 0);
  }
}

/* -- */
body.mouseNoLucency .Header-wrapper {
  background: #fff;
}
body.mouseNoLucency .Header-logo img.s {
  opacity: 0;
}
body.mouseNoLucency .Header-logo img.h {
  opacity: 1;
}
body.mouseNoLucency .Header-menu {
  color: #666;
}
body.mouseNoLucency .Header-search-click {
  background-image: url('../images/common/search.svg');
}
body.mouseNoLucency .Header-lang-menu {
  color: #666;
}
body.mouseNoLucency .Header-wrapper::after {
  background: #ebebeb;
}
/* -- */
body.onSearch .Header-wrapper {
  background: #fff;
}
body.onSearch .Header-logo img.s {
  opacity: 0;
}
body.onSearch .Header-logo img.h {
  opacity: 1;
}
body.onSearch .Header-menu {
  color: #666;
}
body.onSearch .Header-search-click {
  background-image: url('../images/common/search.svg');
}
body.onSearch .Header-lang-menu {
  color: #666;
}
body.onSearch .Header-wrapper::after {
  background: #ebebeb;
}
/* -- */
body.noLucency .Container-wrapper {
  margin-top: 96px;
}
body.noLucency .Header-wrapper {
  background: #fff;
}
body.noLucency .Header-logo img.s {
  opacity: 0;
}
body.noLucency .Header-logo img.h {
  opacity: 1;
}
body.noLucency .Header-menu {
  color: #666;
}
body.noLucency .Header-search-click {
  background-image: url('../images/common/search.svg');
}
body.noLucency .Header-lang-menu {
  color: #666;
}
body.noLucency .Header-wrapper::after {
  background: #ebebeb;
}

/* 底部 */
.Footer-wrapper {
  width: 100%;
  background: #f9f9f9;
  position: relative;
  z-index: 9;
  font-family: 'SamsungOne400';
}
.Footer-items {
  width: 100%;
  padding: 0 0 50px 0;
}
.Footer-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.Footer-head-logo {
  width: 176px;
}
.Footer-head-logo img {
  max-width: 100%;
  object-fit: cover;
}
.Footer-head-text h1 {
  margin-top: 15px;
  font-weight: bold;
  color: #41a008;
}
.Footer-navbar {
  width: 100%;
  overflow: hidden;
  user-select: none;
  margin-top: 76px;
}
.Footer-navbar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Footer-navbar li {
  width: auto;
  position: relative;
}
.Footer-navbar li.Footer-line {
  display: block;
  width: 0;
  border: 1px dashed #e5e5e5;
}
.Footer-menu {
  font-size: 18px;
  color: #000;
  display: block;
  line-height: 1.1;
}
.Footer-menu::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #AE1027;
  margin-top: 20px;
}
.Footer-drop {
  width: 100%;
  margin-top: 20px;
}
body.PC .Footer-drop {
  display: block !important;
}
.Footer-drop a {
  display: block;
  font-size: 14px;
  color: #565656;
  line-height: 1.1;
  padding: 7px 0;
  transition: all 0.4s ease;
}
.Footer-drop a:hover {
  color: var(--thm-base);
}
.Footer-copyright {
  width: 100%;
  padding: 15px 0;
  background: #b7bec4;
}
.Footer-copyright .contain {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.Footer-copyright-cont {
  display: flex;
  font-size: 14px;
  color: #777;
  line-height: 18px;
}
.Footer-copyright-cont p {
  line-height: inherit;
}
.Footer-copyright-cont a {
  margin-left: 16px;
  transition: all 0.4s ease;
}
.Footer-copyright-cont a:hover {
  color: var(--thm-base);
}
.Footer-copyright-link {
  display: flex;
}
.Footer-copyright-link a {
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  transition: all 0.4s ease;
  position: relative;
}
.Footer-copyright-link a > img {
  max-height: 14px;
}
.Footer-copyright-link a:first-child {
  margin-left: 0;
}
.Footer-copyright-link a:hover {
  background: var(--thm-base);
}
.Footer-copyright-link a .code {
  display: none;
  width: 150px;
  height: 150px;
  position: absolute;
  bottom: 38px;
  left: 50%;
  margin-left: -75px;
  background: #fff;
}
.Footer-copyright-link a .code::after {
  content: '';
  display: block;
  width: 0px;
  height: 0px;
  border: 8px solid transparent;
  border-top-color: #fff;
  position: absolute;
  bottom: -16px;
  left: 50%;
  margin-left: -8px;
}
.Footer-copyright-link a .code img {
  width: 100%;
  object-fit: cover;
}
.Footer-copyright-link a:hover .code {
  display: block;
  animation: FooterIcon 0.6s ease-in-out both;
}
@keyframes FooterIcon {
  0% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}

/* 侧栏 */
.sideBar-wrapper {
  position: fixed;
  z-index: 999;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 50px;
}
.sideBar-wrapper a {
  display: flex;
  align-items: center;
  padding-right: 16px;
  transform: translateX(16px);
  font-size: 16px;
  color: #fff;
  font-family: 'SamsungOne400';
  margin-top: 2px;
  background: rgba(64, 71, 81, 0.9);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  transition: all 0.4s ease;
}
.sideBar-wrapper a i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* .sideBar-wrapper a.phone{width: 230px;transform: translateX(180px);transition: all .6s ease;} */
.sideBar-wrapper a:first-child {
  margin-top: 0;
}
.sideBar-wrapper a:hover {
  background: var(--thm-base);
  transform: translateX(0);
}

.popMessage {
  position: fixed;
  display: none;
  z-index: 9999;
  width: 434px;
  box-shadow: 0 4px 16px 2px rgba(0, 0, 0, 0.1);
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px;
  background: #fff;
  padding: 58px 50px;
  overflow: hidden;
}
.popMessage-close {
  width: 50px;
  height: 50px;
  position: absolute;
  cursor: pointer;
  background: url('../images/common/close.svg') no-repeat center/18px auto;
  right: 0;
  top: 0;
  transition: all 0.4s ease;
}
.popMessage-close:hover {
  transform: rotate(90deg);
}
.popMessage-title {
  width: 100%;
}
.popMessage-title .name {
  color: #333;
  line-height: 28px;
}
.popMessage-title .desc {
  color: #888;
  line-height: 18px;
  margin-top: 8px;
}
.popMessage-form {
  width: 100%;
  margin-top: 28px;
}
.popMessage-form li {
  width: 100%;
  margin-top: 12px;
  border: 1px solid #e6e6e6;
  border-radius: 2px;
}
.popMessage-form li:first-child {
  margin-top: 0;
}
.popMessage-form li:last-child {
  border: none;
  margin-top: 20px;
}
.popMessage-form li input,
.popMessage-form li textarea {
  width: 100%;
  display: block;
  border: none;
  font-size: 15px;
  color: #666;
  padding: 0 16px;
  height: 40px;
  font-family: 'SamsungOne400';
}
.popMessage-form li textarea {
  padding: 12px 16px;
  height: 90px;
}
.popMessage-form li input::-webkit-input-placeholder {
  color: #a8adb6;
  font-size: 15px;
  font-family: 'SamsungOne400';
}
.popMessage-form li input:-moz-placeholder {
  color: #a8adb6;
  font-size: 15px;
  font-family: 'SamsungOne400';
}
.popMessage-form li input::-moz-placeholder {
  color: #a8adb6;
  font-size: 15px;
  font-family: 'SamsungOne400';
}
.popMessage-form li input:-ms-input-placeholder {
  color: #a8adb6;
  font-size: 15px;
  font-family: 'SamsungOne400';
}
.popMessage-form li textarea::-webkit-input-placeholder {
  color: #a8adb6;
  font-size: 15px;
  font-family: 'SamsungOne400';
}
.popMessage-form li textarea:-moz-placeholder {
  color: #a8adb6;
  font-size: 15px;
  font-family: 'SamsungOne400';
}
.popMessage-form li textarea::-moz-placeholder {
  color: #a8adb6;
  font-size: 15px;
  font-family: 'SamsungOne400';
}
.popMessage-form li textarea:-ms-input-placeholder {
  color: #a8adb6;
  font-size: 15px;
  font-family: 'SamsungOne400';
}
.popMessage-form li.code {
  display: flex;
  justify-content: space-between;
}
.popMessage-form li.code input {
  width: calc(100% - 96px);
}
.popMessage-form li.code span {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.popMessage-form li.code span img,
.popMessage-form li.code span canvas {
  height: 100%;
}
.popMessage-form li button {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  background: var(--thm-base);
  font-size: 15px;
  color: #fff;
  cursor: pointer;
  font-family: 'SamsungOne600';
  transition: all 0.4s ease;
}
@media all and (max-width: 1599px) {
  .popMessage {
    width: 390px;
    padding: 40px 30px;
  }
}
@media all and (max-width: 1439px) {
  .popMessage-form li input,
  .popMessage-form li textarea {
    height: 32px;
  }
  .popMessage-form li {
    margin-top: 10px;
  }
  .popMessage-form li:last-child {
    margin-top: 14px;
  }
  .popMessage-form li button {
    height: 40px;
  }
  .popMessage-form {
    margin-top: 16px;
  }
  .popMessage-title .desc {
    margin-top: 2px;
  }
  .popMessage {
    transform: translateY(-40%);
    width: 350px;
  }
  .popMessage-form li textarea {
    height: 80px;
  }
}
@media all and (max-width: 640px) {
  .popMessage {
    width: 300px;
    padding: 20px 16px;
    top: auto;
    bottom: 20px;
    transform: translateY(0);
    right: 50px;
  }
  .popMessage-title .name {
    line-height: 24px;
  }
  .popMessage-title .desc {
    line-height: 16px;
    margin-top: 4px;
  }
  .popMessage-form li {
    margin-top: 6px;
  }
  .popMessage-form li input,
  .popMessage-form li textarea {
    padding: 0 10px;
    height: 34px;
  }
  .popMessage-form {
    margin-top: 12px;
  }
  .popMessage-form li textarea {
    padding: 6px 10px;
    height: 66px;
  }
  .popMessage-form li.code span {
    height: 34px;
  }
  .popMessage-form li:last-child {
    margin-top: 10px;
  }
  .popMessage-form li button {
    height: 36px;
    border-radius: 18px;
  }
}

/* 中间+共用部分 */
.Container-wrapper {
  width: 100%;
}
.contain {
  width: 1600px;
  margin: 0 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;
  padding: 34px 34px 0;
  opacity: 0;
}
.popVideo-video {
  width: 100%;
}
.popVideo-video video {
  width: 100%;
}
.popVideo-video iframe {
  width: 100%;
  height: 500px;
}
.popVideo-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  background: url('../images/common/closeW.svg') no-repeat center/24px auto;
  cursor: pointer;
  opacity: 0.7;
  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%;
    padding: 34px 0 0;
  }
  .popVideo-close {
    right: 0;
  }
  .popVideo-video iframe {
    height: 400px;
  }
}
@media all and (max-width: 640px) {
  .popVideo-video iframe {
    height: 200px;
  }
}

/* -------------------------PC端--------------------------- */
@media all and (max-width: 1700px) {
  /* 1600 × (900) */
  .contain {
    width: 1400px;
  }
}

@media all and (max-width: 1400px) {
  /* 1440 × (700)  */
  .contain {
    width: 1200px;
  }
  .Footer-items {
    padding: 80px 0;
  }
  .Footer-navbar {
    margin-top: 60px;
  }
  .Footer-copyright {
    padding: 32px 0;
  }
  .Header-menu {
    padding: 0 20px;
  }
  .Header-navbar li:hover .Header-menu::after,
  .Header-navbar li.active .Header-menu::after {
    width: calc(100% - 70px);
  }
  .Header-solutions-contain,
  .Header-products-contain {
    padding: 54px 0;
  }
  .Header-solutions-items {
    padding: 0 20px;
  }
  .Header-solutions-items .img {
    width: 170px;
  }
  .Header-solutions-items .name {
    font-size: 15px;
    height: 30px;
  }
  .Header-solutions-items::after {
    height: calc(100% - 30px);
  }
  .Header-solutions-items .img:hover {
    transform: scale(1.14);
  }
  .Header-navbar li.Header-other .Header-drop {
    padding: 16px 0;
  }
  .Header-products-items .cont .name {
    font-size: 15px;
  }
  .Header-products-items .cont .text a {
    height: 28px;
    line-height: 28px;
    font-size: 15px;
  }
  .Header-products-items {
    padding: 0 28px;
  }
}

@media all and (max-width: 1439px) {
  /* 1360 */
}

@media all and (max-width: 1359px) {
  /* 1280 */
}

@media all and (max-width: 1279px) {
  /* 1152 × (700) */
  .contain {
    width: 1000px;
  }
  .Footer-items {
    padding: 60px 0;
  }
  .Footer-navbar {
    margin-top: 50px;
  }
  .Footer-copyright {
    padding: 28px 0;
  }
  .Header-menu {
    padding: 0 5px;
  }
  .Header-navbar li:hover .Header-menu::after,
  .Header-navbar li.active .Header-menu::after {
    width: calc(100% - 48px);
  }
  .Header-solutions-contain,
  .Header-products-contain {
    padding: 40px 0;
    width: 100%;
  }
  .Header-solutions-items {
    padding: 0 16px;
  }
  .Header-solutions-items .img {
    width: 150px;
  }
  .Header-solutions-items .name {
    font-size: 14px;
    height: 26px;
  }
  .Header-solutions-items::after {
    height: calc(100% - 26px);
  }
  .Header-solutions-items .img:hover {
    transform: scale(1.1);
  }
  .Header-solutions-items .list .cont {
    font-size: 12px;
    bottom: 4px;
    line-height: 20px;
  }
  .Header-products-items {
    margin-top: 28px;
  }
  .Header-navbar li.Header-other .Header-drop {
    padding: 12px 0;
  }
  .Header-products-items .cont .text a {
    height: 28px;
    line-height: 28px;
  }
  .Header-navbar li.Header-other .Header-drop a {
    height: 48px;
  }
  .Header-products-items .cont .text a {
    height: 24px;
    line-height: 24px;
    font-size: 12px;
  }
}

@media all and (max-width: 1151px) {
  /* 1024 */
  .Header-solutions-items {
    padding: 0 12px;
  }
  .Header-solutions-items .name {
    font-size: 13px;
    height: 24px;
  }
  .Header-solutions-items .img:hover {
    transform: scale(1.04);
  }
  .Header-solutions-items .img {
    width: 140px;
  }
}

/* ------------------------手机端-------------------------- */
@media all and (max-width: 1000px) {
  /* 平板设备 720 适配 */
  .indxw-loop-link .time{
    font-size: 14px;
    font-weight: normal;
  }
  body.noLucency .Container-wrapper {
    margin-top: 60px;
  }
  body.onSearch .Header-navbar {
    visibility: visible;
    opacity: 1;
  }
  .contain-1600,
  .contain-1400,
  .contain {
    width: 92%;
  }
  .Container-wrapper {
    margin-top: 60px;
  }
  .Header-wrapper {
    background: #fff;
    position: fixed;
  }
  .Header-wrapper::after {
    background: #ebebeb;
  }
  .Header-wrapper .contain {
    width: 100%;
  }
  .Header-logo,
  .Header-search-click,
  .Header-lang {
    height: 60px;
  }
  .Header-logo {
    margin-left: 4%;
  }
  .Header-logo img.s {
    opacity: 0;
  }
  .Header-logo img.h {
    opacity: 1;
  }
  .Header-lang-menu {
    /* height: 24px; */
    /* border-radius: 13px; */
    font-size: 14px;
    color: #666;
    margin-left: 0;
  }
  .header-tel-box span {
    font-size: 20px;
    width: auto;
  }
  .Header-lang {
    margin-right: 18px;
  }
  .Header-navclick {
    display: flex;
    margin-right: 4%;
  }
  .Header-navbar {
    display: none;
    position: absolute;
    width: 100%;
    margin-right: 0;
    height: calc(100vh - 60px);
    top: 60px;
    left: 0;
    padding: 20px 0;
    background: #fff;
    transition: none;
  }
  .Header-navbar ul {
    display: block;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .Header-navbar li {
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(32px);
    transition: all 0.4s ease;
    margin: 0;
  }
  .Header-navbar.active li {
    opacity: 1;
    transform: translateY(0);
  }
  .Header-menu {
    height: 50px;
    padding: 0 4%;
    color: #666;
  }
  .Header-menu::after {
    display: none;
  }
  .Header-arrow {
    display: block;
    width: 50px;
    height: 50px;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    background: url('../images/common/arrD.svg') no-repeat center / 18px auto;
  }
  .Header-arrow.active {
    transform: rotate(180deg);
  }
  .Header-navbar li:hover .Header-menu {
    color: #666;
  }
  .Header-navbar li.active .Header-menu {
    color: var(--thm-base);
  }
  .Header-drop {
    position: relative;
    background: #f7f7f7;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    top: 0;
    overflow: hidden;
  }
  .Header-navbar li.Header-other .Header-drop a {
    height: 38px;
    padding: 0 4%;
  }
  .Header-navbar li.Header-other .Header-drop a:first-child {
    margin-top: 12px;
  }
  .Header-navbar li.Header-other .Header-drop a:last-child {
    margin-bottom: 12px;
  }
  .Header-solutions-contain,
  .Header-products-contain {
    padding: 20px 0;
    width: 92%;
  }
  .Header-solutions-items {
    margin-top: 16px;
    padding: 0;
    width: 164px;
  }
  .Header-solutions-items:nth-child(-n + 2) {
    margin-top: 0;
  }
  .Header-solutions-items.double {
    width: 100%;
    padding: 0;
  }
  .Header-solutions-items .list .img {
    margin: 0 24px 0 0;
  }
  .Header-solutions-items:nth-child(2):after,
  .Header-solutions-items.double::after {
    display: none;
  }
  .Header-products-items .cont .text {
    margin-top: 6px;
  }
  .Header-products-items .cont .text a {
    height: 26px;
    line-height: 26px;
    font-size: 13px;
  }
  .Header-products-items {
    width: 100%;
    padding: 18px 0 !important;
    border-bottom: 1px dashed #e0e0e0 !important;
    margin-top: 0 !important;
  }
  .Header-products-items::after {
    display: none !important;
  }
  .Header-products-items:first-child {
    padding-top: 0 !important;
  }
  .Header-products-items:last-child {
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }
  .Header-products-items .img {
    max-width: none;
    text-align: center;
  }
  .Header-products-items .cont {
    padding-left: 16px;
  }
  .Header-search-item {
    display: none;
    width: 100%;
    line-height: normal;
    height: 45px;
    top: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0;
    background: #fff;
  }
  .Header-search-item .contain {
    padding-right: 0;
  }
  .Header-search-item input[type='text'] {
    width: 100%;
    height: 44px;
    padding: 0 50px 0 4%;
    border-bottom: none;
  }
  .Header-search-item.active input[type='text'] {
    animation: none;
  }
  .Header-search-item button {
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    height: 46px;
    top: -1px;
    background: var(--thm-base) url('../images/common/searchW.svg') no-repeat center / 20px auto !important;
    z-index: 2;
  }
  .Header-search-click.active {
    background-image: url('../images/common/close.svg') !important;
  }
  .Header-search-click {
    background-image: url('../images/common/search.svg') !important;
    width: 42px;
  }
  .Header-lang a {
    font-size: 18px;
  }
  .header-tel {
    background: url(../images/common/tel.svg) no-repeat center / 24px auto;
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: 10px;
  }
  .Footer-wrapper .contain {
    width: 100%;
  }
  .Footer-items {
    padding: 40px 0 28px;
  }
  .Footer-head {
    padding: 0 4%;
  }
  .Footer-head-logo {
    width: 100%;
    text-align: center;
  }
  .Footer-head-search {
    width: 100%;
    margin-top: 20px;
  }
  .Footer-head-search button {
    width: 112px;
  }
  .Footer-head-search input {
    padding: 0 120px 0 18px;
  }
  .Footer-navbar {
    width: 100%;
    margin-top: 20px;
  }
  .Footer-navbar li {
    width: 100% !important;
  }
  .Footer-navbar li.Footer-line {
    display: none;
  }
  .Footer-menu {
    height: 40px;
    line-height: 40px;
    padding: 0 4%;
    position: relative;
  }
  .Footer-menu::after {
    content: '';
    width: 44px;
    height: 40px;
    position: absolute;
    z-index: 9;
    right: 0;
    top: 0;
    background: url('../images/common/arrD.svg') no-repeat center / 18px auto;
  }
  .Footer-menu.active::after {
    transform: rotate(180deg);
  }
  .Footer-drop a {
    padding: 7px 4%;
  }
  .Footer-drop {
    display: none;
    margin-top: 0;
  }
  .Footer-copyright {
    padding: 20px 4%;
  }
  .Footer-copyright-cont {
    width: 100%;
  }
  .Footer-copyright-link {
    width: 100%;
    margin-top: 8px;
  }
  .Footer-copyright-cont a {
    margin-left: 12px;
  }
}
@media all and (max-width: 640px) {
  /* 移动终端以上 360 适配 */
  .sideBar-wrapper {
    top: auto;
    transform: translateY(0);
    width: 44px;
    bottom: 20px;
  }
  .sideBar-wrapper a {
    padding-right: 0;
    transform: translateX(0);
  }
  .sideBar-wrapper a i {
    width: 44px;
    height: 44px;
  }
  .sideBar-wrapper a.phone {
    width: auto;
    transform: translateX(0);
  }
  .sideBar-wrapper a.phone span {
    display: none;
  }
  .Header-lang,
  .Header-search {
    display: none;
  }
}
