.phone-section {
  display: none;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.center {
  width: 83%;
  margin: 0 auto;
}

.move1 {
  overflow: hidden;
}

.move1 img {
  transition: all .8s ease .1s;
}

.move1 img:hover {
  transform: scale(1.1);
}

@keyframes move2 {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.2)
  }

  100% {
    transform: scale(1)
  }
}

@keyframes move3 {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: scale(360deg)
  }
}

.move3:hover {
  animation-name: move3;
  animation-duration: 1s;
}

.totop {
  position: absolute;
  bottom: 20%;
  right: 3%;
  width: 50px;
  height: 50px;
  background: #fff;
  box-shadow: 0 0 10px 0 #d0d0d0;
  border-radius: 30px;
  z-index: 9999;
}

.totop a {
  width: 50px;
  height: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* 头部 */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}

header .hea .logo {
  width: 13%;
  padding: 0 0 10px 0;
}

header .hea .nav {
  width: 50%;
  margin: 0 auto 0 4%;
}

header .hea .nav .ul-a .li-a {
  width: 100%;
}

header .hea .nav .ul-a .li-a .a-a {
  font-size: 18px;
  color: #ffffff;
  display: block;
  line-height: 95px;
  position: relative;
  text-align: center;
}

header .hea .nav .ul-a .li-a .a-a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  content: '';
  transition: 0.3s;
}

header .hea .nav .ul-a .li-a:last-child .active-a::after {
  width: 0% !important;
}

header .hea .nav .ul-a .li-a .a-a:hover {
  color: #d0d0d0;
}

header .hea .nav .ul-a .li-a .a-a:hover::after {
  width: 100% !important;
}

header .hea .nav .ul-a .li-a .navbox {
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  width: 100%;
  padding: 40px 0;
  display: none;
}

header .hea .nav .ul-a .li-a .navbox .box {
  align-items: flex-start;
}

header .hea .nav .ul-a .li-a .navbox .box .left {
  width: 20%;
}

header .hea .nav .ul-a .li-a .navbox .box .left .caption {
  font-size: 20px;
  color: #333333;
  font-weight: bold;
  margin: 0 0 20px 0;
}

header .hea .nav .ul-a .li-a .navbox .box .left ul li {
  border-bottom: 1px solid #e8e8e8;
}

header .hea .nav .ul-a .li-a .navbox .box .left ul li a .p {
  font-size: 18px;
  color: #333333;
  line-height: 50px;
}

header .hea .nav .ul-a .li-a .navbox .box .left ul li a .after img:nth-child(1) {
  display: inline;
}

header .hea .nav .ul-a .li-a .navbox .box .left ul li a .after img:nth-child(2) {
  display: none;
}

header .hea .nav .ul-a .li-a .navbox .box .left ul li:hover a .p {
  color: #0070d5;
}

header .hea .nav .ul-a .li-a .navbox .box .left ul li:hover a .after img:nth-child(1) {
  display: none;
}

header .hea .nav .ul-a .li-a .navbox .box .left ul li:hover a .after img:nth-child(2) {
  display: inline;
}

header .hea .nav .ul-a .li-a .navbox .box .right {
  width: 75%;
  padding: 40px 0 0 0;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox {
  align-items: flex-start;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox .flexnbox {
  width: 45%;
  align-items: flex-start;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox .flexnbox ul {
  width: 48%;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox .flexnbox ul .caption {
  font-size: 18px;
  margin: 0 0 10px 0;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox .flexnbox ul li {
  width: 100%;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox ul {
  width: 45%;
  flex-wrap: wrap;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox ul li {
  width: 48%;
  margin: 5px 1%;
  position: relative;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox ul li a {
  font-size: 16px;
  color: #333333;
  line-height: 26px;
  display: block;
  padding: 0 0 0 15px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox ul li::after {
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: #bfbfbf;
  content: '';
  border-radius: 30px;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox ul li:hover a {
  color: #0070d5;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox ul li:hover a::after {
  background: #0070d5;
}

header .hea .nav .ul-a .li-a .navbox .box .right .nbox .img {
  width: 50%;
}

header .hea .nav .ul-a .li-a .ul-c {
  position: absolute;
  left: -25%;
  top: 100%;
  width: 150%;
  background: #fff;
  display: none;
  box-shadow: 0 0 10px 0 #e5e5e5;
}

header .hea .nav .ul-a .li-a .ul-c .li-c {
  box-sizing: border-box;
  padding: 5px 20px;
}

header .hea .nav .ul-a .li-a .ul-c .li-c .a-c {
  font-size: 16px;
  color: #333333;
  line-height: 26px;
  display: block;
  text-align: center;
}

header .hea .nav .ul-a .li-a:hover .navbox {
  display: block;
}

header .hea .nav .ul-a .li-a:hover .ul-c {
  display: block;
}

header .hea .nav .ul-a .li-a .ul-c .li-c:hover .a-c {
  color: #0070d5;
}

header .hea .search a {
  display: block;
}

header .hea .language {
  position: relative;
  width: 8%;
  margin: 0 0 0 2%;
}

header .hea .language a .p {
  font-size: 18px;
  color: #ffffff;
  line-height: 95px;
}

header .hea .language ul {
  position: absolute;
  left: 0;
  top: 80%;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 10px 0 #e5e5e5;
  display: none;
}

header .hea .language ul li a {
  font-size: 16px;
  color: #6f6f6f;
  display: block;
  text-align: center;
  padding: 10px 0;
}

header .hea .language ul li a:hover {
  color: #0070d5;
}

header .hea .language:hover ul {
  display: block;
}

header .hea .btn {
  width: 100px;
  margin: 0 0 0 2%;
}

header .hea .btn a {
  background: #0070d5;
  font-size: 16px;
  display: block;
  color: #ffffff;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
}

.fixnav {
  background: #000000;
}

header .active-a::after {
  width: 100% !important;
}

header .active-b {
  display: none;
}

.searchbox {
  position: fixed;
  width: 100%;
  left: 0;
  top: -400px;
  background: #fff;
  z-index: 999;
  transition: 0.3s;
}

.searchbox .sea {
  padding: 60px 0;
  position: relative;
}

.searchbox .sea .close {
  position: absolute;
  top: 25px;
  right: 50px;
}

.searchbox .sea .form {
  width: 60%;
  box-shadow: 0 0 10px 0 #efefef;
  margin: 0 auto;
}

.searchbox .sea .form input {
  border: none;
  outline: none;
}

.searchbox .sea .form .input {
  width: 85%;
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 16px;
  color: #999999;
  line-height: 70px;
}

.searchbox .sea .form .submit {
  width: 5%;
  background: url(/templates/default/images/img/pro3.png) no-repeat center;
  background-size: inherit;
  height: 70px;
}

.searchactive {
  top: 0;
}

/* 轮播 */
.banner {
  position: sticky;
  top: 0;
  z-index: 9;
}

.banner .ban {
  position: relative;
}

.banner .ban .imgbox-a {
  position: relative;
}

.banner .ban .imgbox-a .p {
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
}

.banner .ban .imgbox-a .p .p-a {
  font-size: 18px;
  color: #d0d0d0;
  text-align: center;
  margin: 0 0 25px 0;
}

.banner .ban .imgbox-a .p .p-b {
  font-size: 49px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 20px 0;
}

.banner .ban .imgbox-a .p .p-c {
  font-size: 21px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 30px 0;
}

.banner .ban .imgbox-a .p .btnbox {
  justify-content: center;
}

.banner .ban .imgbox-a .p .btnbox .btn {
  width: 150px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  margin: 0 10px;
}

.banner .ban .imgbox-a .p .btnbox .btn a {
  justify-content: center;
}

.banner .ban .imgbox-a .p .btnbox .btn a .text {
  font-size: 17px;
  color: #fff;
  line-height: 40px;
  margin: 0 10px 0 0;
}

.banner .ban .imgbox-a .p .btnbox .btn a .after img:nth-child(1) {
  display: inline;
}

.banner .ban .imgbox-a .p .btnbox .btn a .after img:nth-child(2) {
  display: none;
}

.banner .ban .imgbox-a .p .btnbox .btn:hover a .text {
  color: #d0d0d0;
}

.banner .ban .imgbox-a .p .btnbox .btn:hover a .after img:nth-child(1) {
  display: none;
}

.banner .ban .imgbox-a .p .btnbox .btn:hover a .after img:nth-child(2) {
  display: inline;
}

.banner .ban .imgbox-b {
  position: relative;
}

.banner .ban .imgbox-b .p {
  position: absolute;
  left: 10%;
  top: 39%;
  width: 600px;
}

.banner .ban .imgbox-b .p .p-a {
  font-size: 36px;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.banner .ban .imgbox-b .p .p-b {
  font-size: 24px;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.banner .ban .imgbox-b .p .p-c {
  font-size: 24px;
  color: #ffffff;
}

.banner .ban .imgbox-b .p .btnbox {
  justify-content: flex-start;
  margin: 20px 0 0 0;
}

.banner .ban .imgbox-b .p .btnbox .btn {
  width: 150px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  margin: 0 10px 0 0;
}

.banner .ban .imgbox-b .p .btnbox .btn a {
  justify-content: center;
}

.banner .ban .imgbox-b .p .btnbox .btn a .text {
  font-size: 17px;
  color: #fff;
  line-height: 40px;
  margin: 0 10px 0 0;
}

.banner .ban .imgbox-b .p .btnbox .btn a .after img:nth-child(1) {
  display: inline;
}

.banner .ban .imgbox-b .p .btnbox .btn a .after img:nth-child(2) {
  display: none;
}

.banner .ban .imgbox-b .p .btnbox .btn:hover a .text {
  color: #d0d0d0;
}

.banner .ban .imgbox-b .p .btnbox .btn:hover a .after img:nth-child(1) {
  display: none;
}

.banner .ban .imgbox-b .p .btnbox .btn:hover a .after img:nth-child(2) {
  display: inline;
}

.banner .ban .imgbox-c {
  position: relative;
}

.banner .ban .imgbox-c .p {
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
}

.banner .ban .imgbox-c .p .p-a {
  font-size: 18px;
  color: #000000;
  text-align: center;
  margin: 0 0 25px 0;
}

.banner .ban .imgbox-c .p .p-a span {
  font-family: 'HarmonyOS_Sans_Light';
}

.banner .ban .imgbox-c .p .p-b {
  font-size: 49px;
  color: #000000;
  text-align: center;
  margin: 0 0 20px 0;
}

.banner .ban .imgbox-c .p .p-c {
  font-size: 21px;
  color: #000000;
  text-align: center;
  margin: 0 0 20px 0;
}

.banner .ban .imgbox-c .p .btnbox {
  justify-content: center;
}

.banner .ban .imgbox-c .p .btnbox .btn {
  width: 150px;
  border: 1px solid #000000;
  border-radius: 30px;
  margin: 0 10px;
}

.banner .ban .imgbox-c .p .btnbox .btn a {
  justify-content: center;
}

.banner .ban .imgbox-c .p .btnbox .btn a .text {
  font-size: 17px;
  color: #000000;
  line-height: 40px;
  margin: 0 10px 0 0;
}

.banner .ban .imgbox-c .p .btnbox .btn a .after img:nth-child(1) {
  display: inline;
}

.banner .ban .imgbox-c .p .btnbox .btn a .after img:nth-child(2) {
  display: none;
}

.banner .ban .imgbox-c .p .btnbox .btn:hover a .text {
  color: #373737;
}

.banner .ban .imgbox-c .p .btnbox .btn:hover a .after img:nth-child(1) {
  display: none;
}

.banner .ban .imgbox-c .p .btnbox .btn:hover a .after img:nth-child(2) {
  display: inline;
}

.banner .ban .imgbox-c .p .btnbox {
  justify-content: center;
}

.banner .ban .imgbox-c .p .btnbox .btn {
  width: 150px;
  border: 1px solid #000;
  border-radius: 30px;
  margin: 0 10px;
}

.banner .ban .imgbox-c .p .btnbox .btn a {
  justify-content: center;
}

.banner .ban .imgbox-c .p .btnbox .btn a .text {
  font-size: 17px;
  color: #000;
  line-height: 40px;
  margin: 0 10px 0 0;
}

.banner .ban .imgbox-c .p .btnbox .btn a .after img:nth-child(1) {
  display: inline;
}

.banner .ban .imgbox-c .p .btnbox .btn a .after img:nth-child(2) {
  display: none;
}

.banner .ban .imgbox-c .p .btnbox .btn:hover {
  border: 1px solid #fff;
}

.banner .ban .imgbox-c .p .btnbox .btn:hover a .text {
  color: #fff;
}

.banner .ban .imgbox-c .p .btnbox .btn:hover a .after img:nth-child(1) {
  display: none;
}

.banner .ban .imgbox-c .p .btnbox .btn:hover a .after img:nth-child(2) {
  display: inline;
}

.banner .ban .imgbox-d {
  position: relative;
}

.banner .ban .imgbox-d .p {
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
}

.banner .ban .imgbox-d .p .p-a {
  font-size: 21px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 25px 0;
}

.banner .ban .imgbox-d .p .p-a span {
  color: #58a6eb;
}

.banner .ban .imgbox-d .p .p-b {
  font-size: 40px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 20px 0;
}

.banner .ban .imgbox-d .p .btnbox {
  justify-content: center;
}

.banner .ban .imgbox-d .p .btnbox .btn {
  width: 150px;
  border: 1px solid #ffffff;
  border-radius: 30px;
  margin: 0 10px;
}

.banner .ban .imgbox-d .p .btnbox .btn a {
  justify-content: center;
}

.banner .ban .imgbox-d .p .btnbox .btn a .text {
  font-size: 17px;
  color: #fff;
  line-height: 40px;
  margin: 0 10px 0 0;
}

.banner .ban .imgbox-d .p .btnbox .btn a .after img:nth-child(1) {
  display: inline;
}

.banner .ban .imgbox-d .p .btnbox .btn a .after img:nth-child(2) {
  display: none;
}

.banner .ban .imgbox-d .p .btnbox .btn:hover a .text {
  color: #d0d0d0;
}

.banner .ban .imgbox-d .p .btnbox .btn:hover a .after img:nth-child(1) {
  display: none;
}

.banner .ban .imgbox-d .p .btnbox .btn:hover a .after img:nth-child(2) {
  display: inline;
}

.banner .ban .box {
  justify-content: flex-end;
  position: absolute;
  left: 8.5%;
  bottom: 5%;
  width: 83%;
}

.banner .ban .box .swiper-button-prev {
  position: unset;
  width: 40px;
  height: 40px;
  margin: 0;
}

.banner .ban .box .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.banner .ban .box .swiper-pagination {
  width: auto;
  position: unset;
  margin: 0 20px;
}

.banner .ban .box .swiper-pagination .swiper-pagination-bullet {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 0;
  margin: 0;
}

.banner .ban .box .swiper-button-next {
  position: unset;
  width: 40px;
  height: 40px;
  margin: 0;
}

.banner .ban .box .swiper-button-next::after {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.n-banner {
  position: sticky;
  top: 0;
  z-index: 9;
}

.n-banner .ban {
  position: relative;
}

.n-banner .ban .p {
  position: absolute;
  width: 40%;
  left: 8.5%;
  top: 50%;
  font-size: 40px;
  color: #fff;
}

.n-banner .ban .p::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 5%;
  height: 3px;
  background: #fff;
  content: '';
}

/* 产品 */
.products {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #fff;
}

.products .pro {
  padding: 20px 0;
  flex-wrap: wrap;
}

.products .pro .imgbox {
  box-sizing: border-box;
  position: relative;
}

.products .pro .imgbox .text {
  position: absolute;
  width: 100%;
  top: 80px;
}

.products .pro .imgbox .text .p-a {
  font-size: 18px;
  color: #454545;
  text-align: center;
  margin: 0 0 10px 0;
}

.products .pro .imgbox .p-b {
  font-size: 32px;
  color: #000000;
  text-align: center;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.products .pro .imgbox .p-b span {
  font-family: 'HarmonyOS_Sans_Light';
  font-weight: 100;
  font-size: 36px;
  margin: 0 5px;
}

.products .pro .imgbox .p-c {
  font-size: 19px;
  color: #000000;
  text-align: center;
  margin: 0 0 35px 0;
}

.products .pro .imgbox .btnbox {
  justify-content: center;
}

.products .pro .imgbox .btnbox .btn {
  margin: 0 25px;
}

.products .pro .imgbox .btnbox .btn a .p {
  font-size: 17px;
  color: #000000;
  margin: 0 15px 0 0;
}

.products .pro .imgbox .btnbox .btn a .after {
  transition: 0.3s;
}

.products .pro .imgbox .btnbox .btn a .after img:nth-child(1) {
  display: inline;
}

.products .pro .imgbox .btnbox .btn a .after img:nth-child(2) {
  display: none;
}

.products .pro .imgbox .img {
  text-align: center;
}

.products .pro .imgbox .img img {
  width: 100%;
  display: block;
}

.products .pro .imgbox .btnbox .btn:hover a .p {
  color: #666;
}

.products .pro .imgbox .btnbox .btn:hover a .after img:nth-child(1) {
  display: none;
}

.products .pro .imgbox .btnbox .btn:hover a .after img:nth-child(2) {
  display: inline;
}

/* .products .pro .imgbox:nth-child(1) {
  background: url(/templates/default/images/img/ind1.jpg) no-repeat center;
  background-size: cover;
}
.products .pro .imgbox:nth-child(2) {
  background: url(/templates/default/images/img/ind2.jpg) no-repeat center;
  background-size: cover;
}
.products .pro .imgbox:nth-child(3) {
  background: url(/templates/default/images/img/ind3.jpg) no-repeat center;
  background-size: cover;
}
.products .pro .imgbox:nth-child(4) {
  background: url(/templates/default/images/img/ind4.jpg) no-repeat center;
  background-size: cover;
} */
.products .pro .swiper-button-prev {
  width: 50px;
  height: 50px;
  color: #666;
  background: #e0e0e0;
  border-radius: 50px;
}

.products .pro .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.products .pro .swiper-button-prev:hover {
  background: #c5c5c5;
}

.products .pro .swiper-button-prev:hover::after {
  color: #fff;
}

.products .pro .swiper-button-next {
  width: 50px;
  height: 50px;
  color: #666;
  background: #e0e0e0;
  border-radius: 50px;
}

.products .pro .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
}

.products .pro .swiper-button-next:hover {
  background: #c5c5c5;
}

.products .pro .swiper-button-next:hover::after {
  color: #fff;
}

.n-products {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #fff
}

.n-products .pro {
  padding: 90px 0;
  align-items: flex-start;
}

.n-products .pro .left {
  width: 23%;
}

.n-products .pro .left .caption {
  background: #0070d5;
  font-size: 24px;
  color: #fff;
  text-align: center;
  line-height: 90px;
}

.n-products .pro .left .ul-a {
  background: #fafafa;
}

.n-products .pro .left .ul-a .li-a {
  border-bottom: 1px solid #e8e8e8;
}

.n-products .pro .left .ul-a .li-a .a-a {
  box-sizing: border-box;
  padding: 0 40px;
}

.n-products .pro .left .ul-a .li-a .a-a .p {
  width: 90%;
  font-size: 18px;
  color: #333333;
  line-height: 70px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.n-products .pro .left .ul-a .li-a .a-a .after img:nth-child(1) {
  display: inline;
}

.n-products .pro .left .ul-a .li-a .a-a .after img:nth-child(2) {
  display: none;
}

.n-products .pro .left .ul-a .li-a .ul-b {
  padding: 0 0 10px 0;
  display: none;
}

.n-products .pro .left .ul-a .li-a .ul-b .li-b {
  box-sizing: border-box;
  padding: 0 55px;
}

.n-products .pro .left .ul-a .li-a .ul-b .li-b .labbox {
  justify-content: flex-start;
}

.n-products .pro .left .ul-a .li-a .ul-b .li-b .labbox input {
  margin: 0 10px 0 0;
}

.n-products .pro .left .ul-a .li-a .ul-b .li-b .labbox p {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
}

.n-products .pro .right {
  width: 75%;
}

.n-products .pro .right .form {
  width: 100%;
  box-shadow: 0 0 10px 0 #efefef;
  margin: 0 0 60px 0;
}

.n-products .pro .right .form input {
  border: none;
  outline: none;
}

.n-products .pro .right .form .input {
  width: 85%;
  box-sizing: border-box;
  padding: 0 20px;
  font-size: 16px;
  color: #999999;
  line-height: 70px;
}

.n-products .pro .right .form .submit {
  width: 5%;
  background: url(/templates/default/images/img/pro3.png) no-repeat center;
  background-size: inherit;
  height: 70px;
}

.n-products .pro .right .caption {
  font-size: 26px;
  color: #333333;
  margin: 0 0 30px 0;
}

.n-products .pro .right .caption span {
  font-size: 16px;
  color: #666666;
}

.n-products .pro .right .element {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.n-products .pro .right .element .imgbox {
  width: 31%;
  margin: 0 1% 20px 1%;
  box-shadow: 0 0 10px 0 #efefef;
}

.n-products .pro .right .element .imgbox a {
  display: block;
  padding: 30px 0;
}

.n-products .pro .right .element .imgbox a .img {
  text-align: center;
}

.n-products .pro .right .element .imgbox a .p .title {
  font-size: 18px;
  color: #333333;
  text-align: center;
  margin: 15px 0 30px 0;
  box-sizing: border-box;
  padding: 0 10px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.n-products .pro .right .element .imgbox a .p .btn {
  width: 100px;
  margin: 0 auto;
  line-height: 30px;
  background: #ebebeb;
  border-radius: 30px;
  font-size: 14px;
  color: #666666;
  text-align: center;
}

.n-products .pro .right .element .imgbox:hover a .p .btn {
  background: #0070d5;
  color: #fff;
}

.n-products .active-a .a-a .after img:nth-child(1) {
  display: none !important;
}

.n-products .active-a .a-a .after img:nth-child(2) {
  display: inline !important;
}

.n-products .active-a .ul-b {
  display: block !important;
}

.x-products-a .pro {
  padding: 45px 0;
  align-items: flex-start;
}

.x-products-a .pro .left {
  width: 48%;
  align-items: flex-start;
  position: relative;
}

.x-products-a .pro .left .box-a {
  width: 15%;
  height: 500px;
}

.x-products-a .pro .left .box-a .swiper-slide {
  height: 100px !important;
}

.x-products-a .pro .left .box-a .img {
  border: 1px solid #e8e8e8;
}

.x-products-a .pro .left .box-b {
  width: 80%;
  border: 1px solid #e8e8e8;
}

.x-products-a .pro .left .box-b .box {
  width: 100%;
  height: 500px;
  border: 1px solid black;
  position: relative;
  box-sizing: border-box;
}

.x-products-a .pro .left .box-b .box .blackcurtain {
  width: 200px;
  height: 200px;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
}

.x-products-a .pro .left .magnifybox {
  width: 500px;
  height: 500px;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 105%;
  top: 0px;
  display: none;
  overflow: hidden;
}

.x-products-a .pro .left .magnifybox img {
  width: 300%;
  max-width: 300%;
  position: absolute;
  left: 0;
  top: 0;
}

.x-products-a .pro .right {
  width: 48%;
}

.x-products-a .pro .right .caption {
  margin: 0 0 30px 0;
}

.x-products-a .pro .right .caption .title {
  font-size: 35px;
  color: #333333;
  line-height: 42px;
}

.x-products-a .pro .right .caption .back {
  width: 100px;
}

.x-products-a .pro .right .caption .back a {
  line-height: 30px;
  background: #ebebeb;
  border-radius: 30px;
  font-size: 14px;
  color: #666666;
  display: block;
  text-align: center;
}

.x-products-a .pro .right .caption .back:hover a {
  background: #0070d5;
  color: #fff;
}

.x-products-a .pro .right .text {
  font-size: 22px;
  color: #666;
}

.x-products-b {
  background: #fafafa;
}

.x-products-b .pro {
  padding: 70px 0;
}

.x-products-b .pro ul {
  justify-content: flex-start;
  margin: 0 0 30px 0;
  border-top: 1px solid #efefef;
  border-left: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
}

.x-products-b .pro ul li {
  border-right: 1px solid #efefef;
}

.x-products-b .pro ul li a {
  display: inline-block;
  font-size: 20px;
  color: #333333;
  line-height: 60px;
  padding: 0 30px;
  position: relative;
}

/* .x-products-b .pro ul li a::after{
  position: absolute;
  left: 0;
  top: 30%;
  width: 1px;
  height: 40%;
  background: #dddddd;
  content: '';
} */
.x-products-b .pro ul .btn-a {
  margin: 0 0 0 auto;
}

.x-products-b .pro ul .btn-a a {
  color: #fff;
  background: #5d6062;
  line-height: 60px;
  display: block;
  font-size: 18px;
  padding: 0 40px;
}

.x-products-b .pro ul .btn-b {
  margin: 0 0 0 20px;
}

.x-products-b .pro ul .btn-b a {
  color: #fff;
  background: #5d6062;
  line-height: 60px;
  display: block;
  font-size: 18px;
  padding: 0 40px;
}

.x-products-b .pro ul li a:hover {
  background: #0070d5;
  color: #fff;
}

.x-products-b .pro ul li:hover a::after {
  background: #0070d5;
}

.x-products-b .pro .body .box {
  font-size: 18px;
  color: #333;
  line-height: 32px;
}

.x-products-b .active-a a {
  background: #0070d5 !important;
  color: #fff !important;
}

.x-products-b .active-a a::after {
  background: #0070d5 !important;
}

.x-products-b .active-b {
  display: none;
}

.x-products-c {
  background: #f5f5f5;
}

.x-products-c .pro {
  padding: 70px 0;
}

.x-products-c .pro .caption {
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin: 0 0 40px 0;
}

.x-products-c .pro .element .swiperc {
  padding: 0 0 50px 0;
}

.x-products-c .pro .element .imgbox {
  box-shadow: 0 0 10px 0 #efefef;
  background: #fff;
}

.x-products-c .pro .element .imgbox a {
  display: block;
  padding: 60px 0;
}

.x-products-c .pro .element .imgbox a .img {
  text-align: center;
}

.x-products-c .pro .element .imgbox a .p .title {
  font-size: 18px;
  color: #333333;
  text-align: center;
  margin: 15px 0 30px 0;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 20px;
}

.x-products-c .pro .element .imgbox a .p .btn {
  width: 100px;
  margin: 0 auto;
  line-height: 30px;
  background: #ebebeb;
  border-radius: 30px;
  font-size: 14px;
  color: #666666;
  text-align: center;
}

.x-products-c .pro .element .imgbox:hover a .p .btn {
  background: #0070d5;
  color: #fff;
}

.x-products-c .pro .element .swiper-pagination-bullet {
  border-radius: 30px;
  width: 30px;
  height: 6px;
  background: #d9d9d9;
  opacity: 1;
}

.x-products-c .pro .element .swiper-pagination-bullet-active {
  background: #0070d5;
}

.accessory {
  position: fixed;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  z-index: 999;
  left: 0;
  top: 0;
  display: none;
}

.accessory .acc {
  position: absolute;
  width: 60%;
  left: 20%;
  top: 20%;
  background: #fff;
  box-sizing: border-box;
  padding: 40px 5%;
  border-radius: 10px;
}

.accessory .acc .caption {
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin: 0 0 30px 0;
}

.accessory .acc .close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.accessory .acc .close a {
  display: block;
}

.accessory .acc .form {
  flex-wrap: wrap;
}

.accessory .acc .form .inpbox-a {
  width: 31%;
  margin: 0 0 25px 0;
}

.accessory .acc .form .inpbox-a .input {
  border: 1px solid #e8e8e8;
}

.accessory .acc .form .inpbox-a .input input {
  width: 100%;
  line-height: 55px;
  color: #999999;
  padding: 0 15px;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 18px;
}

.accessory .acc .form .inpbox-b {
  width: 100%;
  margin: 0 0 25px 0;
}

.accessory .acc .form .inpbox-b .textarea {
  border: 1px solid #e8e8e8;
}

.accessory .acc .form .inpbox-b .textarea textarea {
  width: 100%;
  line-height: 55px;
  color: #999999;
  padding: 0 15px;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 18px;
  height: 150px;
}

.accessory .acc .form .sumbit {
  width: 160px;
  margin: 0 auto;
}

.accessory .acc .form .sumbit input {
  width: 100%;
  border: none;
  outline: none;
  background: #0070d5;
  font-size: 18px;
  color: #ffffff;
  line-height: 60px;
  border-radius: 30px;
}

.accessoryactive {
  display: block;
}

/* 应用 */
.appliance {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #000000;
}

.appliance .app {
  position: relative;
}

.appliance .app .imgbox {
  position: relative;
}

.appliance .app .imgbox .box {
  position: absolute;
  left: 0;
  bottom: 30%;
  width: 100%;
}

.appliance .app .imgbox .box .caption {
  width: 125px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 30px;
  line-height: 30px;
  margin: 0 auto 20px auto;
}

.appliance .app .imgbox .box .title {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  margin: 0 0 20px 0;
}

.appliance .app .imgbox .box .text {
  font-size: 20px;
  color: #e3e3e3;
  line-height: 26px;
  text-align: center;
  margin: 0 0 30px 0;
}

.appliance .app .imgbox .box .more a {
  justify-content: center;
}

.appliance .app .imgbox .box .more a .p {
  font-size: 17px;
  color: #ffffff;
  margin: 0 10px 0 0;
}

.appliance .app .imgbox .box .more a .after img:nth-child(1) {
  display: inline;
}

.appliance .app .imgbox .box .more a .after img:nth-child(2) {
  display: none;
}

.appliance .app .imgbox .box .more:hover a .p {
  color: #d0d0d0;
}

.appliance .app .imgbox .box .more:hover a .after img:nth-child(1) {
  display: none;
}

.appliance .app .imgbox .box .more:hover a .after img:nth-child(2) {
  display: inline;
}

.appliance .app .swiperc {
  position: absolute;
  left: 40%;
  bottom: 10%;
  width: 20%;
}

.appliance .app .swiperc .img {
  border: 1px solid #333333;
  border-radius: 5px;
  overflow: hidden;
}

.appliance .app .swiperc .img img {
  width: 100%;
  height: 50px;
  object-fit: cover;
}

.appliance .app .swiper-button-prev {
  color: #f5f5f5;
}

.appliance .app .swiper-button-next {
  color: #f5f5f5;
}

.appliance .app .swiperc .swiper-slide-active .img {
  border: 1px solid #fff;
}

/* 合作 */
.collaborative {
  background: url(/templates/default/images/img/ind7.jpg) no-repeat center;
  background-size: cover;
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.collaborative .col {
  padding: 80px 0 30px 0;
}

.collaborative .col .caption .cn {
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin: 0 0 20px 0;
}

.collaborative .col .caption .en {
  font-size: 18px;
  color: #6f6f6f;
  text-align: center;
}

.collaborative .col .element {
  margin: 80px 0 0 0;
  flex-wrap: wrap;
}

.collaborative .col .element .img {
  width: 20%;
  text-align: center;
  margin: 0 0 60px 0;
  transition: 0.3s;
  filter: brightness(100%);
  opacity: 1;
}

.collaborative .col .element .img:hover {
  filter: brightness(100%);
  opacity: 1;
}

/* 优势 */
.advantage {
  background: #fff;
  position: relative;
  z-index: 99;
  overflow: hidden;
}

.advantage .adv {
  padding: 90px 0;
}

.advantage .adv .caption .cn {
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin: 0 0 20px 0;
}
.advantage .adv .caption .cn a{
  font-size: 36px;
  color: #000000;
  text-align: center;
  margin: 0 0 20px 0;
}
.advantage .adv .caption .en {
  font-size: 18px;
  color: #6f6f6f;
  text-align: center;
}

.advantage .adv .element {
  margin: 70px 0 0 0;
}

.advantage .adv .element .imgbox {
  width: 30%;
}

.advantage .adv .element .imgbox a .img {
  text-align: center;
  margin: 0 0 20px 0;
}

.advantage .adv .element .imgbox a .title {
  font-size: 26px;
  color: #000000;
  text-align: center;
  margin: 0 0 20px 0;
}

.advantage .adv .element .imgbox a .btn {
  font-size: 17px;
  color: #000000;
  text-align: center;
}

.advantage .adv .element .imgbox:hover a .btn {
  color: #0070d5;
}

/* 底部 */
footer {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #272727;
}

footer .foo-a .foo {
  border-bottom: 1px solid #ffffff20;
  padding: 90px 0 45px 0;
}

footer .foo-a .foo .logo {
  width: 35%;
}

footer .foo-a .foo .formbox {
  width: 60%;
}

footer .foo-a .foo .formbox .zxly {
  width: 80%;
}

footer .foo-a .foo .formbox .p {
  width: 20%;
  font-size: 20px;
  color: #ffffff;
}

footer .foo-a .foo .formbox .inpbox-a {
  width: 35%;
}

footer .foo-a .foo .formbox .inpbox-a input {
  width: 100%;
  line-height: 50px;
  background: #272727;
  border: 1px solid #ffffff;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 0 15px;
  font-size: 17px;
  color: #ffffff;
  outline: none;
}

footer .foo-a .foo .formbox .sumbit {
  width: 15%;
}

footer .foo-a .foo .formbox .sumbit input {
  width: 100%;
  background: #0070d5;
  border: none;
  outline: none;
  font-size: 17px;
  color: #ffffff;
  line-height: 50px;
  border-radius: 30px;
}

footer .foo-b .foo {
  padding: 60px 0 100px 0;
  align-items: flex-start;
}

footer .foo-b .foo .left {
  width: 35%;
  align-items: flex-start;
}

footer .foo-b .foo .left ul .caption {
  font-size: 20px;
  color: #ffffff;
  margin: 0 0 30px 0;
}

footer .foo-b .foo .left ul li a {
  font-size: 16px;
  color: #dadada;
  display: block;
  margin: 0 0 15px 0;
}

footer .foo-b .foo .right {
  width: 30%;
}

footer .foo-b .foo .right .caption {
  justify-content: flex-start;
  margin: 0 0 20px 0;
}

footer .foo-b .foo .right .caption .img {
  margin: 0 10px 0 0;
}

footer .foo-b .foo .right .caption .p {
  font-size: 20px;
  color: #ffffff;
}

footer .foo-b .foo .right .tel {
  font-size: 41px;
  color: #0070d5;
  margin: 0 0 40px 0;
}

footer .foo-b .foo .right .text {
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 20px 0;
}

footer .foo-b .foo .right .element {
  justify-content: flex-start;
  margin: 40px 0 0 0;
}

footer .foo-b .foo .right .element .btn {
  margin: 0 20px 0 0;
}

footer .foo-c {
  border-top: 1px solid #ffffff20;
}

footer .foo-c .foo {
  padding: 20px 0 30px 0;
  justify-content: center;
}

footer .foo-c .foo .left {
  font-size: 16px;
  color: #b2b2b2;
}

footer .foo-c .foo .right .jszcbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .foo-c .foo .right .jszcbox .jszctext {
  width: 85px;
  font-size: 16px;
  color: #b2b2b2;
}

footer .foo-c .foo .right .jszcbox .jszcimg {
  width: 55px;
  opacity: 0.6;
}

/* 底部 */
.n-nav {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #fff
}

.n-nav .nav ul {
  justify-content: center;
}

.n-nav .nav ul li {
  margin: 0 20px;
}

.n-nav .nav ul li a {
  font-size: 18px;
  color: #333333;
  display: block;
  line-height: 70px;
  position: relative;
}

.n-nav .nav ul li a::after {
  position: absolute;
  width: 0%;
  height: 2px;
  background: #0070d5;
  content: '';
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.n-nav .nav ul li:hover a {
  color: #0070d5;
}

.n-nav .nav ul li:hover a::after {
  width: 100%;
}

.n-nav .active-a {
  color: #0070d5 !important;
}

.n-nav .active-a::after {
  width: 100% !important;
}

/* 新闻 */
.n-news {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #f5f5f5;
}

.n-news .new {
  padding: 70px 0;
}

.n-news .new .element-a .imgbox {
  background: #fff;
}

.n-news .new .element-a .imgbox a .left {
  width: 48%;
}

.n-news .new .element-a .imgbox a .right {
  width: 48%;
  box-sizing: border-box;
  padding: 0 5% 0 0;
}

.n-news .new .element-a .imgbox a .right .title {
  font-size: 24px;
  color: #333333;
  line-height: 32px;
  margin: 0 0 25px 0;
}

.n-news .new .element-a .imgbox a .right .time {
  font-size: 15px;
  color: #999999;
  margin: 0 0 40px 0;
}

.n-news .new .element-a .imgbox a .right .text {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  margin: 0 0 50px 0;
}

.n-news .new .element-a .imgbox a .right .more {
  background: #0070d5;
  width: 150px;
  box-sizing: border-box;
  padding: 0 30px;
  border-radius: 30px;
}

.n-news .new .element-a .imgbox a .right .more .p {
  font-size: 16px;
  color: #ffffff;
  line-height: 50px;
}

.n-news .new .element-a .imgbox:hover a .right .title {
  color: #0070d5;
}

.n-news .new .element-a .swiper-pagination {
  text-align: right;
  box-sizing: border-box;
  padding: 0 5% 0 0;
  bottom: 15%;
}

.n-news .new .element-a .swiper-pagination-bullet {
  border-radius: 30px;
  width: 30px;
  height: 6px;
  background: #d9d9d9;
  opacity: 1;
}

.n-news .new .element-a .swiper-pagination-bullet-active {
  background: #0070d5;
}

.n-news .new .element-b {
  margin: 90px 0 0 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.n-news .new .element-b .imgbox {
  background: #ffffff;
  width: 31%;
  margin: 0 1% 45px 1%;
}

.n-news .new .element-b .imgbox a .p {
  box-sizing: border-box;
  padding: 40px 5%;
}

.n-news .new .element-b .imgbox a .p .title {
  font-size: 18px;
  color: #333333;
  line-height: 28px;
  margin: 0 0 20px 0;
  font-weight: bold;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.n-news .new .element-b .imgbox a .p .text {
  font-size: 15px;
  color: #666666;
  line-height: 28px;
  height: 85px;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.n-news .new .element-b .imgbox a .p .down {
  margin: 20px 0 0 0;
  padding: 25px 0 0 0;
  position: relative;
  border-top: 1px solid #e8e8e8;
}

.n-news .new .element-b .imgbox a .p .down .time {
  font-size: 15px;
  color: #999999;
}

.n-news .new .element-b .imgbox a .p .down .more .a {
  font-size: 14px;
  color: #999999;
  margin: 0 5px 0 0;
}

.n-news .new .element-b .imgbox a .p .down .more .after img:nth-child(1) {
  display: inline;
}

.n-news .new .element-b .imgbox a .p .down .more .after img:nth-child(2) {
  display: none;
}

.n-news .new .element-b .imgbox a .p .down::after {
  position: absolute;
  left: 0;
  top: -0;
  width: 0%;
  height: 1px;
  transition: 0.3s;
  background: #0070d5;
  content: '';
}

.n-news .new .element-b .imgbox:hover a .p .down::after {
  width: 100%;
}

.n-news .new .element-b .imgbox:hover a .p .down .time {
  color: #0070d5;
}

.n-news .new .element-b .imgbox:hover a .p .down .more .a {
  color: #0070d5;
}

.n-news .new .element-b .imgbox:hover a .p .down .more .after img:nth-child(1) {
  display: none;
}

.n-news .new .element-b .imgbox:hover a .p .down .more .after img:nth-child(2) {
  display: inline;
}

.x-news-a .new {
  width: 60%;
  margin: 0 auto;
  padding: 100px 0;
}

.x-news-a .new .title {
  font-size: 36px;
  color: #333333;
  text-align: center;
  line-height: 42px;
  margin: 0 0 30px 0;
}

.x-news-a .new .time {
  font-size: 14px;
  color: #999999;
  text-align: center;
  padding: 0 0 30px 0;
  margin: 0 0 50px 0;
  border-bottom: 1px solid #e8e8e8;
}

.x-news-a .new .text {
  font-size: 16px;
  color: #595959;
  line-height: 30px;
  padding: 0 0 30px 0;
  margin: 0 0 50px 0;
  border-bottom: 1px solid #e8e8e8;
}

.x-news-a .new .bottom .left {
  width: 70%;
}

.x-news-a .new .bottom .left a {
  font-size: 16px;
  color: #595959;
  display: block;
  line-height: 36px;
}

.x-news-a .new .bottom .left a:hover {
  color: #0070d5;
}

.x-news-a .new .bottom .right {
  background: #0070d5;
  width: 150px;
  box-sizing: border-box;
  padding: 0 30px;
  border-radius: 30px;
}

.x-news-a .new .bottom .right .p {
  font-size: 16px;
  color: #ffffff;
  line-height: 50px;
}

.x-news-b {
  background: #f5f5f5;
}

.x-news-b .new {
  padding: 80px 0;
}

.x-news-b .new .caption {
  font-size: 36px;
  color: #333333;
  text-align: center;
  margin: 0 0 45px 0;
}

.x-news-b .new .element {
  padding: 0 0 60px 0;
  position: relative;
}

.x-news-b .new .element .imgbox {
  background: #ffffff;
}

.x-news-b .new .element .imgbox a .p {
  box-sizing: border-box;
  padding: 40px 5%;
}

.x-news-b .new .element .imgbox a .p .title {
  font-size: 18px;
  color: #333333;
  height: 56%;
  line-height: 28px;
  margin: 0 0 20px 0;
  position: relative;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.x-news-b .new .element .imgbox a .p .title::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 0%;
  height: 1px;
  transition: 0.3s;
  background: #0070d5;
  content: '';
}

.x-news-b .new .element .imgbox a .p .text {
  font-size: 15px;
  color: #666666;
  line-height: 28px;
}

.x-news-b .new .element .imgbox a .p .down {
  margin: 20px 0 0 0;
  padding: 25px 0 0 0;
  border-top: 1px solid #e8e8e8;
}

.x-news-b .new .element .imgbox a .p .down .time {
  font-size: 15px;
  color: #999999;
}

.x-news-b .new .element .imgbox a .p .down .more .a {
  font-size: 14px;
  color: #999999;
  margin: 0 5px 0 0;
}

.x-news-b .new .element .imgbox a .p .down .more .after img:nth-child(1) {
  display: inline;
}

.x-news-b .new .element .imgbox a .p .down .more .after img:nth-child(2) {
  display: none;
}

.x-news-b .new .element .imgbox:hover a .p .down .time {
  color: #0070d5;
}

.x-news-b .new .element .imgbox:hover a .p .title::after {
  width: 100%;
}

.x-news-b .new .element .imgbox:hover a .p .down .more .a {
  color: #0070d5;
}

.x-news-b .new .element .imgbox:hover a .p .down .more .after img:nth-child(1) {
  display: none;
}

.x-news-b .new .element .imgbox:hover a .p .down .more .after img:nth-child(2) {
  display: inline;
}

.x-news-b .new .element .swiper-pagination {
  box-sizing: border-box;
  padding: 0 5% 0 0;
}

.x-news-b .new .element .swiper-pagination-bullet {
  border-radius: 30px;
  width: 30px;
  height: 6px;
  background: #d9d9d9;
  opacity: 1;
}

.x-news-b .new .element .swiper-pagination-bullet-active {
  background: #0070d5;
}

/* 面包 */
.crumbs {
  margin: 130px 0 0 0;
}

.crumbs .cru {
  width: 60%;
  margin: 0 auto;
}

.crumbs .cru ul {
  justify-content: flex-start;
}

.crumbs .cru ul li {
  margin: 0 10px 0 0;
  font-size: 16px;
  color: #666666;
}

.crumbs .cru ul li a {
  font-size: 16px;
  color: #666666;
}

/* 联系 */
.n-contact-a {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #fff
}

.n-contact-a .con {
  padding: 90px 0;
}

.n-contact-a .con .caption {
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin: 0 0 55px 0;
}

.n-contact-a .con .element .imgbox {
  width: 31%;
  box-sizing: border-box;
  padding: 60px 2%;
  box-shadow: 0 0 10px 0 #e3e3e3;
}

.n-contact-a .con .element .imgbox .img {
  width: 25%;
}

.n-contact-a .con .element .imgbox .p {
  width: 70%;
}

.n-contact-a .con .element .imgbox .p .title {
  font-size: 20px;
  color: #595959;
  margin: 0 0 20px 0;
}

.n-contact-a .con .element .imgbox .p .text h1 {
  font-size: 26px;
  color: #0070d5;
  line-height: 30px;
  height: 60px;
}

.n-contact-a .con .element .imgbox .p .text h2 {
  font-size: 16px;
  color: #0070d5;
  line-height: 30px;
  height: 60px;
}

.n-contact-a .con .element .imgbox .p .text p {
  font-size: 18px;
  color: #666666;
  line-height: 30px;
  height: 60px;
}

.n-contact-a .con .element .imgbox:last-child {
  text-align: center;
  padding: 30px 2%;
}

.n-contact-a .con .element .imgbox:last-child .img {
  width: 38%;
  margin: 0 auto;
}

.n-contact-b {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: url(/templates/default/images/img/con1.jpg) no-repeat;
  background-size: cover;
}

.n-contact-b .con {
  padding: 90px 0;
}

.n-contact-b .con .caption {
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin: 0 0 40px 0;
}

.n-contact-b .con ul {
  justify-content: center;
  margin: 0 0 60px 0;
}

.n-contact-b .con ul li {
  width: 10%;
  margin: 0 10px;
  border: 1px solid #ffffff25;
  border-radius: 30px;
}

.n-contact-b .con ul li a {
  font-size: 18px;
  color: #fff;
  display: block;
  text-align: center;
  line-height: 50px;
}

.n-contact-b .con ul li:hover {
  background: #0070d5;
}

.n-contact-b .con .body .imgbox {
  background: #fff;
}

.n-contact-b .con .body .imgbox .left {
  width: 48%;
}

.n-contact-b .con .body .imgbox .left img {
  display: block;
}

.n-contact-b .con .body .imgbox .right {
  width: 48%;
}

.n-contact-b .con .body .imgbox .right .title {
  font-size: 26px;
  color: #333333;
  padding: 0 0 20px 0;
  margin: 0 0 30px 0;
  position: relative;
}

.n-contact-b .con .body .imgbox .right .title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 5%;
  height: 3px;
  background: #0070d5;
  content: '';
}

.n-contact-b .con .body .imgbox .right .text {
  font-size: 16px;
  color: #595959;
  line-height: 30px;
}

.n-contact-b .active-a {
  background: #0070d5;
}

.n-contact-b .active-b {
  display: none;
}

.n-contact-c {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #f5f5f5;
}

.n-contact-c .con {
  padding: 90px 0;
}

.n-contact-c .con .caption {
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin: 0 0 50px 0;
}

.n-contact-c .con .form {
  flex-wrap: wrap;
}

.n-contact-c .con .form .inpbox-a {
  width: 31%;
  margin: 0 0 25px 0;
}

.n-contact-c .con .form .inpbox-a .input {
  border: 1px solid #e8e8e8;
}

.n-contact-c .con .form .inpbox-a .input input {
  width: 100%;
  line-height: 55px;
  color: #999999;
  padding: 0 15px;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 18px;
}

.n-contact-c .con .form .inpbox-b {
  width: 100%;
  margin: 0 0 25px 0;
}

.n-contact-c .con .form .inpbox-b .textarea {
  border: 1px solid #e8e8e8;
}

.n-contact-c .con .form .inpbox-b .textarea textarea {
  width: 100%;
  line-height: 55px;
  color: #999999;
  padding: 0 15px;
  box-sizing: border-box;
  border: none;
  outline: none;
  font-size: 18px;
  height: 200px;
}

.n-contact-c .con .form .sumbit {
  width: 160px;
  margin: 0 auto;
}

.n-contact-c .con .form .sumbit input {
  width: 100%;
  border: none;
  outline: none;
  background: #0070d5;
  font-size: 18px;
  color: #ffffff;
  line-height: 60px;
  border-radius: 30px;
}

/* 关于 */
.n-about-a {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #fff;
}

.n-about-a .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(/templates/default/images/img/abo1.jpg) no-repeat right;
  background-size: cover;
}

.n-about-a .abo {
  padding: 90px 0;
  position: relative;
}

.n-about-a .abo .left {
  width: 48%;
}

.n-about-a .abo .left .title {
  font-size: 40px;
  color: #333333;
  margin: 0 0 30px 0;
}

.n-about-a .abo .left p {
  font-size: 16px;
  color: #595959;
  line-height: 28px;
}

.n-about-a .abo .left ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.n-about-a .abo .left ul li {
  width: 48%;
  margin: 0 1%;
  font-size: 16px;
  color: #595959;
  line-height: 32px;
  box-sizing: border-box;
  padding: 0 0 0 20px;
  position: relative;
}

.n-about-a .abo .left ul li::after {
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background: #333333;
  content: '';
  border-radius: 30px;
}

.n-about-b {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #f5f5f5;
}

.n-about-b .abo {
  padding: 90px 0;
}

.n-about-b .abo .imgbox {
  width: 20%;
}

.n-about-b .abo .imgbox .img {
  width: 15%;
}

.n-about-b .abo .imgbox .p {
  width: 80%;
}

.n-about-b .abo .imgbox .p .title {
  font-size: 17px;
  color: #595959;
  margin: 0 0 10px 0;
}

.n-about-b .abo .imgbox .p .title span {
  font-size: 40px;
  color: #595959;
  font-weight: bold;
  margin: 0 10px 0 0;
}

.n-about-b .abo .imgbox .p .text {
  font-size: 16px;
  color: #595959;
}

.n-about-c {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #fff
}

.n-about-c .abo {
  padding: 90px 0;
}

.n-about-c .abo .caption {
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin: 0 0 45px 0;
}

.n-about-c .abo .element .imgbox {
  width: 31%;
  box-shadow: 0 0 10px 0 #e3e3e3;
}

.n-about-c .abo .element .imgbox .p {
  padding: 40px 10%;
}

.n-about-c .abo .element .imgbox .p .title {
  font-size: 24px;
  color: #333333;
  text-align: center;
  margin: 0 0 25px 0;
}

.n-about-c .abo .element .imgbox .p .text {
  font-size: 16px;
  color: #666666;
  line-height: 32px;
  height: 200px;
}

.n-about-d {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #f5f5f5;
}

.n-about-d .abo {
  padding: 90px 0;
}

.n-about-d .abo .caption {
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin: 0 0 45px 0;
}

.n-about-d .abo .element .swipera {
  padding: 0 0 50px 0;
}

.n-about-d .abo .element .swiper-slide {
  left: 30%;
}

.n-about-d .abo .element .swiper-pagination-bullet {
  width: 30px;
  height: 6px;
  opacity: 1;
  border-radius: 30px;
  background: #d9d9d9;
}

.n-about-d .abo .element .swiper-pagination-bullet-active {
  background: #0070d5;
}

.n-about-e {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #f5f5f5;
}

.n-about-e .abo {
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 90px 0;
}

.n-about-e .abo .imgbox {
  width: 15%;
  margin: 0 0.5% 20px 0.5%;
  background: #fff;
  box-sizing: border-box;
  padding: 15px 15px 15px 15px;
}

.n-about-e .abo .imgbox .p {
  font-size: 16px;
  color: #595959;
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid #e8e8e8;
  margin: 15px 0 0 0;
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.amplifier {
  position: fixed;
  background: rgba(0, 0, 0, 0.65);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99999;
  display: none;
}

.amplifier .amp {
  position: absolute;
  width: 60%;
  height: auto;
  left: 20%;
  top: 10%;
  background: #fff;
  box-sizing: border-box;
  padding: 50px;
  text-align: center;
}

.amplifier .amp .close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.amplifier .amp .close a {
  display: block;
}

.n-about-e .active-a .amplifier {
  display: block !important;
}

.n-about-f {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #f5f5f5;
  padding: 90px 0;
}

.n-about-f .abo {
  background: url(/templates/default/images/img/abo2.jpg) no-repeat;
  background-size: cover;
}

.n-about-f .abo .imgbox {
  width: 100%;
  border-right: 1px solid #ffffff15;
  padding: 180px 0 120px 0;
  background: rgba(0, 0, 0, 0.65);
}

.n-about-f .abo .imgbox .img {
  width: 100px;
  text-align: center;
  margin: 0 auto 70px auto;
  position: relative;
}

.n-about-f .abo .imgbox .img::before {
  position: absolute;
  left: -10%;
  top: -10%;
  width: 120%;
  height: 120%;
  background: rgba(0, 112, 213, .25);
  content: '';
  border-radius: 100px;
}

.n-about-f .abo .imgbox .img::after {
  position: absolute;
  left: -20%;
  top: -20%;
  width: 140%;
  height: 140%;
  background: rgba(0, 112, 213, .15);
  content: '';
  border-radius: 100px;
}

.n-about-f .abo .imgbox .p .title {
  font-size: 24px;
  color: #ffffff;
  text-align: center;
  padding: 0 0 30px 0;
  margin: 0 0 50px 0;
  position: relative;
}

.n-about-f .abo .imgbox .p .title::after {
  position: absolute;
  width: 10%;
  left: 45%;
  bottom: 0;
  height: 3px;
  background: #fff;
  content: '';
}

.n-about-f .abo .imgbox .p .text {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  text-align: center;
  height: 120px;
  box-sizing: border-box;
  padding: 0 10px;
}

.n-about-f .abo .imgbox:hover {
  background-image: linear-gradient(#ffffff00, #0070d599);
}

.n-about-f .abo .imgbox:hover .img::before {
  animation-name: move2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.n-about-f .abo .imgbox:hover .img::after {
  animation-name: move2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.n-about-g {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: url(/templates/default/images/img/abo4.jpg) no-repeat bottom center;
  background-size: cover;
  background-attachment: fixed;
  padding: 90px 0;
}

.n-about-g .abo .caption {
  font-size: 30px;
  color: #333333;
  text-align: center;
  margin: 0 0 40px 0;
}

.n-about-g .abo .element {
  position: relative;
}

.n-about-g .abo .element .imgbox {
  width: 50%;
  margin: 0 0 40px auto;
  box-sizing: border-box;
  padding: 0 0 0 5%;
  position: relative;
}

.n-about-g .abo .element .imgbox .time {
  font-size: 24px;
  color: #333333;
  font-weight: bold;
  margin: 0 0 20px 0;
}

.n-about-g .abo .element .imgbox .text {
  font-size: 18px;
  color: #595959;
  line-height: 35px;
}

.n-about-g .abo .element .imgbox .text p {
  box-sizing: border-box;
  padding: 0 0 0 20px;
  position: relative;
}

.n-about-g .abo .element .imgbox .text p::after {
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  background: #b8b8b8;
  content: '';
  border-radius: 30px;
}

.n-about-g .abo .element .imgbox::after {
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  background: #0070d5;
  content: '';
  z-index: 99;
  border-radius: 30px;
}

.n-about-g .abo .element .imgbox::before {
  position: absolute;
  left: -14px;
  top: -8px;
  width: 26px;
  height: 26px;
  background: #d0e1f0;
  content: '';
  z-index: 99;
  border-radius: 30px;
  animation-name: move2;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.n-about-g .abo .element .imgbox:nth-child(even) {
  margin: 0 0 40px 0;
  padding: 0 5% 0 0;
}

.n-about-g .abo .element .imgbox:nth-child(even) .time {
  text-align: right;
}

.n-about-g .abo .element .imgbox:nth-child(even) .text {
  text-align: right;
}

.n-about-g .abo .element .imgbox:nth-child(even) .text p {
  padding: 0 20px 0 0;
}

.n-about-g .abo .element .imgbox:nth-child(even) .text p::after {
  left: auto;
  right: 0;
}

.n-about-g .abo .element .imgbox:nth-child(even)::after {
  left: auto;
  right: -5px;
}

.n-about-g .abo .element .imgbox:nth-child(even)::before {
  left: auto;
  right: -13px;
}

.n-about-g .abo .element::after {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 49.9%;
  background: #dddddd;
  content: '';
}

.n-about-h {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #f5f5f5;
}

.n-about-h .abo {
  padding: 90px 0 120px 0;
}

.n-about-h .abo .left {
  width: 49%;
  flex-wrap: wrap;
}

.n-about-h .abo .left .imgbox {
  width: 48%;
  margin: 10px 1%;
  padding: 40px 0;
  background: #fff;
}

.n-about-h .abo .left .imgbox .img {
  width: 20%;
  margin: 0 auto 30px auto;
  text-align: center;
}

.n-about-h .abo .left .imgbox .p {
  text-align: center;
  font-size: 22px;
  color: #333333;
}

.n-about-h .active-a {
  background: #0070d5 !important;
}

.n-about-h .active-a .img {
  filter: brightness(100);
}

.n-about-h .active-a .p {
  color: #fff !important;
}

.n-about-h .abo .right {
  width: 49%;
}

.n-about-h .abo .right .box {
  position: relative;
}

.n-about-h .abo .right .box .img img {
  width: 100%;
  height: 375px;
  object-fit: cover;
}

.n-about-h .abo .right .box .p {
  width: 70%;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 40px 5%;
}

.n-about-h .abo .right .box .p .a .title {
  font-size: 22px;
  color: #ffffff;
  margin: 0 0 20px 0;
}

.n-about-h .abo .right .box .p .a .text {
  font-size: 16px;
  color: #ffffff;
}

.n-about-h .abo .right .box .p .b {
  width: 120px;
  background: #0070d5;
  border-radius: 30px;
}

.n-about-h .abo .right .box .p .b a {
  justify-content: center;
}

.n-about-h .abo .right .box .p .b a .text {
  font-size: 16px;
  color: #ffffff;
  margin: 0 10px 0 0;
  line-height: 40px;
}

.n-about-h .active-b {
  display: none;
}

/* 应用 */
.n-application-a {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #fff;
}

.n-application-a .app {
  padding: 90px 0;
}

.n-application-a .app .caption {
  font-size: 40px;
  color: #333333;
  margin: 0 0 35px 0;
  text-align: center;
}

.n-application-a .app .text {
  font-size: 16px;
  color: #595959;
  line-height: 35px;
}

.n-application-b {
  position: relative;
  z-index: 99;
  overflow: hidden;
  background: #fff;
  background: #f5f5f5;
}

.n-application-b .app {
  align-items: flex-start;
}

.n-application-b .app .left {
  width: 50%;
  box-sizing: border-box;
  padding: 90px 3% 90px 8.5%;
}

.n-application-b .app .left .caption {
  font-size: 30px;
  color: #333333;
  margin: 0 0 35px 0;
}

.n-application-b .app .left .imgbox {
  position: relative;
}

.n-application-b .app .left .imgbox .p {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 20px;
  color: #fff;
  line-height: 60px;
  box-sizing: border-box;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.35);
}

.n-application-b .app .left .swiper-pagination {
  bottom: 6%;
  text-align: right;
  box-sizing: border-box;
  padding: 0 20px 0 0;
}

.n-application-b .app .left .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.6;
}

.n-application-b .app .left .swiper-pagination-bullet-active {
  opacity: 1;
}

.n-application-b .app .right {
  width: 50%;
  box-sizing: border-box;
  background: #e5f0fb;
  padding: 90px 8.5% 90px 3%;
  min-height: 650px;
}

.n-application-b .app .right .caption {
  font-size: 30px;
  color: #333333;
  margin: 0 0 35px 0;
}

.n-application-b .app .right .textbox {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.n-application-b .app .right .textbox .up {
  box-sizing: border-box;
  padding: 0 30px;
}

.n-application-b .app .right .textbox .up .title {
  font-size: 20px;
  color: #333333;
  line-height: 55px;
}

.n-application-b .app .right .textbox .up .after img:nth-child(1) {
  display: inline;
}

.n-application-b .app .right .textbox .up .after img:nth-child(2) {
  display: none;
}

.n-application-b .app .right .textbox .box {
  padding: 5px 30px;
  display: none;
  border-top: 1px solid #e3e3e3;
}

.n-application-b .app .right .textbox .box .btn a {
  font-size: 16px;
  color: #666;
  line-height: 35px;
}

.n-application-b .app .right .textbox .box .btn a:hover {
  color: #0070d5;
}


.n-application-b .app .right .textbox:hover .up .title {
  color: #0070d5;
}

.n-application-b .active-a .box {
  display: block !important;
}

.n-application-b .active-a a .after img:nth-child(1) {
  display: none !important;
}

.n-application-b .active-a a .after img:nth-child(2) {
  display: inline !important;
}

/* 优势 */
.n-advantage-a {
  padding: 65px 0;
  background: #f8f8f8;
  position: relative;
  z-index: 99;
}

.n-advantage-a .adv {
  background: url(/templates/default/images/img/adv1.jpg) no-repeat;
  background-size: cover;
  padding: 65px 10%;
  box-sizing: border-box;
}

.n-advantage-a .adv .title {
  font-size: 40px;
  color: #fff;
  text-align: center;
  margin: 0 0 30px 0;
}

.n-advantage-a .adv .text {
  font-size: 22px;
  color: #fff;
  line-height: 42px;
  text-align: center;
}

.n-advantage-b {
  padding: 20px 0 80px 0;
  background: #f8f8f8;
  position: relative;
  z-index: 99;
}

.n-advantage-b .adv {
  align-items: flex-start;
  position: relative;
  height: 600px;
}

.n-advantage-b .adv .imgbox {
  width: 38%;
  position: absolute;
}

.n-advantage-b .adv .imgbox .up {
  background: #003362;
  padding: 25px 0;
  border-radius: 50px;
}

.n-advantage-b .adv .imgbox .up .num {
  font-size: 22px;
  color: #fff;
  margin: 0 0 10px 0;
  text-align: center;
}

.n-advantage-b .adv .imgbox .up .title {
  font-size: 22px;
  color: #fff;
  text-align: center;
}

.n-advantage-b .adv .imgbox .down {
  width: 70%;
  margin: 0 auto;
}

.n-advantage-b .adv .imgbox .down .hr {
  width: 1px;
  height: 85px;
  margin: 20px auto;
  background: #bfbfbf;
}

.n-advantage-b .adv .imgbox .down .img {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.n-advantage-b .adv .imgbox .down .img img {
  width: 50%;
}

.n-advantage-b .adv .imgbox .down .text {
  font-size: 16px;
  color: #666666;
  line-height: 28px;
  text-align: center;
}

.n-advantage-b .adv .imgbox:nth-child(1) {
  left: 0;
  z-index: 9;
}

.n-advantage-b .adv .imgbox:nth-child(2) {
  left: 31%;
  z-index: 99;
}

.n-advantage-b .adv .imgbox:nth-child(3) {
  right: 0;
  z-index: 9;
}

.n-advantage-b .adv .imgbox:nth-child(2) .up {
  background: rgba(24, 125, 216, 0.9);
}

.n-advantage-c {
  background: #f0f0f0;
  padding: 70px 0 45px 0;
  position: relative;
  z-index: 99;
}

.n-advantage-c .adv .caption {
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin: 0 0 40px 0;
}

.n-advantage-c .adv .element .imgbox .p {
  font-size: 24px;
  color: #333333;
  text-align: center;
  padding: 20px 0;
}

.n-advantage-e {
  padding: 65px 0;
  background: #f8f8f8;
  position: relative;
  z-index: 99;
}

.n-advantage-e .adv .caption .title {
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin: 0 0 20px 0;
}

.n-advantage-e .adv .caption .text {
  font-size: 20px;
  color: #333333;
  line-height: 35px;
  text-align: center;
  margin: 0 0 40px 0;
}

.n-advantage-e .adv .element {
  flex-wrap: wrap;
}

.n-advantage-e .adv .element .imgbox {
  width: 48%;
  position: relative;
  margin: 0 0 30px 0;
}

.n-advantage-e .adv .element .imgbox .img img {
  display: block;
}

.n-advantage-e .adv .element .imgbox .after {
  position: absolute;
  z-index: 99;
  top: 25%;
  width: 100%;
}

.n-advantage-e .adv .element .imgbox .after .afterbox {
  width: 140px;
  height: 140px;
  background: #fff;
  top: 20%;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.n-advantage-e .adv .element .imgbox .after .afterbox img {
  width: 50%;
}

.n-advantage-e .adv .element .imgbox .p {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 112, 213, 0.8);
  padding: 45px 0;
}

.n-advantage-e .adv .element .imgbox .p .title {
  font-size: 24px;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-align: center;
}

.n-advantage-e .adv .element .imgbox .p .text {
  font-size: 18px;
  color: #ffffff;
  text-align: center;
}

.n-advantage-f {
  padding: 80px 0 60px 0;
  background: #f0f0f0;
  position: relative;
  z-index: 99;
}

.n-advantage-f .adv .caption {
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin: 0 0 70px 0;
}

.n-advantage-f .adv .element .imgbox {
  justify-content: flex-start;
  border-bottom: 1px solid #d2d2d2;
  padding: 0 0 20px 0;
  margin: 0 0 20px 0;
}

.n-advantage-f .adv .element .imgbox .img {
  width: 120px;
  height: 120px;
  background: #fff;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.n-advantage-f .adv .element .imgbox .img img {
  width: 50%;
}

.n-advantage-f .adv .element .imgbox .hr {
  width: 40px;
  height: 1px;
  background: #aaaaaa;
  margin: 0 20px;
}

.n-advantage-f .adv .element .imgbox .p {
  width: 85%;
}

.n-advantage-f .adv .element .imgbox .p .title {
  font-size: 24px;
  color: #333333;
  margin: 0 0 5px 0;
}

.n-advantage-f .adv .element .imgbox .p .title span {
  color: #0070d5;
}

.n-advantage-f .adv .element .imgbox .p .text {
  font-size: 18px;
  color: #666666;
  line-height: 36px;
}

.n-advantage-f .adv .element .imgbox:last-child {
  border-bottom: 0;
}

.n-advantage-g {
  padding: 100px 0 130px 0;
  background: #f8f8f8;
  position: relative;
  z-index: 99;
}

.n-advantage-g .adv .caption .title {
  font-size: 40px;
  color: #333333;
  text-align: center;
  margin: 0 0 20px 0;
}

.n-advantage-g .adv .caption .text {
  font-size: 20px;
  color: #333333;
  line-height: 35px;
  text-align: center;
  margin: 0 0 40px 0;
}

.n-advantage-g .adv .element {
  background: url(/templates/default/images/img/adv2.jpg) no-repeat;
  background-size: cover;
  position: relative;
  z-index: 99;
}

.n-advantage-g .adv .element .imgbox {
  width: 100%;
  padding: 100px 0 40px 0;
  position: relative;
}

.n-advantage-g .adv .element .imgbox .after .afterbox {
  width: 90px;
  height: 90px;
  margin: 0 auto 40px auto;
  background: #0070d5;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  z-index: 99;
}

.n-advantage-g .adv .element .imgbox .after .afterbox img {
  width: 50%;
  position: relative;
  z-index: 99;
}

.n-advantage-g .adv .element .imgbox .after .afterbox::after {
  position: absolute;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
  background: rgba(0, 112, 213, 0.5);
  content: '';
  z-index: 9;
  border-radius: 50%;
}

.n-advantage-g .adv .element .imgbox .after .afterbox::before {
  position: absolute;
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  background: rgba(0, 112, 213, 0.2);
  content: '';
  z-index: 9;
  border-radius: 50%;
}

.n-advantage-g .adv .element .imgbox .title {
  font-size: 22px;
  color: #ffffff;
  text-align: center;
  padding: 0 0 15px 0;
  margin: 0 0 35px 0;
  position: relative;
}

.n-advantage-g .adv .element .imgbox .title:after {
  position: absolute;
  width: 20%;
  height: 3px;
  left: 40%;
  bottom: 0;
  background: #fff;
  content: '';
}

.n-advantage-g .adv .element .imgbox .text {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  text-align: center;
  height: 250px;
}

.n-advantage-g .adv .element .imgbox::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  content: '';
}

.n-advantage-g .adv .element .imgbox:hover .after .afterbox::before {
  animation: move2 3s infinite;
}

.n-advantage-g .adv .element .imgbox:hover .after .afterbox::after {
  animation: move2 3s infinite;
}

/******************************************/
@media screen and (min-width: 2000px) {
  .banner .ban .imgbox-a .img img {
    width: 100%;
  }

  .banner .ban .imgbox-b .img img {
    width: 100%;
  }

  .banner .ban .imgbox-c .img img {
    width: 100%;
  }

  .appliance .app .imgbox .img img {
    width: 100%;
  }

  html,
  body {
    width: 2000px;
    max-width: 2000px;
    margin: 0 auto;
    position: relative;
  }
}

/******************************************/
@media screen and (max-width: 1801px) {
  .n-about-a .bg {
    opacity: 0.4;
    background: url(/templates/default/images/img/abo5.jpg) no-repeat right;
  }



  .n-about-a .abo .left p {
    color: #333;
  }

  .n-about-c .abo .element .imgbox {
    width: 32%;
  }

  .n-about-c .abo .element .imgbox .p {
    padding: 40px 7%;
  }

  .n-about-e .abo {
    padding: 70px 0;
  }

  .n-application-b .app .right {
    min-height: 600px;
  }

  .x-news-a .new {
    width: 70%;
    padding: 80px 0;
  }

  .n-contact-a .con .element .imgbox {
    padding: 50px 2%;
  }

  .n-contact-a .con .element .imgbox .img {
    width: 20%;
  }

  .n-contact-a .con .element .imgbox .p {
    width: 75%;
  }

  .n-contact-a .con .element .imgbox .p .title {
    margin: 0px 0 15px 0;
  }

  .n-advantage-e .adv .element .imgbox .after {
    top: 20%;
  }

  .n-advantage-e .adv .element .imgbox .p {
    padding: 35px 0;
  }
}

/******************************************/
@media screen and (max-width: 1601px) {
  header .hea .nav {
    width: 55%;
  }

  .banner .ban .imgbox-a .p .p-b {
    font-size: 42px;
  }

  .banner .ban .imgbox-a .p .p-c {
    font-size: 19px;
  }

  .banner .ban .imgbox-c .p .p-b {
    font-size: 42px;
  }

  .banner .ban .imgbox-c .p .p-c {
    font-size: 19px;
  }

  .products .pro .imgbox .text {
    top: 40px;
  }

  .products .pro .imgbox .p-b {
    font-size: 28px;
  }

  .products .pro .imgbox .p-c {
    font-size: 20px;
    margin: 0 0 20px 0;
  }

  .appliance .app .swiperc .img img {
    height: 40px;
  }

  footer .foo-a .foo {
    padding: 60px 0 45px 0;
  }

  footer .foo-b .foo .right {
    width: 35%;
  }

  .n-about-a .abo .left {
    width: 75%;
  }

  .crumbs .cru {
    width: 80%;
  }

  .n-about-a .abo .left p {

    line-height: 26px;
  }

  .x-news-a .new {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0;
  }

  .n-contact-a .con .element .imgbox {
    padding: 40px 2%;
  }

  .n-about-h .abo .right .box .img img {
    width: 100%;
    height: 310px;
    object-fit: cover;
  }

  .n-application-b .app .left {
    width: 50%;
    box-sizing: border-box;
    padding: 70px 3% 90px 8.5%;
  }

  .n-application-b .app .right {
    padding: 70px 8.5% 70px 3%;
    min-height: 520px;
  }

  .n-contact-a .con .element .imgbox .p .text h2 {
    font-size: 14px;
  }

  .n-contact-b .con ul li {
    width: 13%;
  }

  .n-advantage-a .adv {
    padding: 55px 10%;
  }

  .n-advantage-b .adv .imgbox .up {
    padding: 20px 0;
  }

  .n-advantage-b .adv .imgbox .down .img {
    width: 160px;
    height: 160px;
  }

  .n-advantage-e .adv .element .imgbox .after .afterbox {
    width: 120px;
    height: 120px;
  }

  .n-advantage-e .adv .element .imgbox .p {
    padding: 25px 0;
  }
}

/******************************************/
@media screen and (max-width: 1401px) {
  .center {
    width: 90%;
  }

  .banner .ban .imgbox-a .p .p-b {
    font-size: 34px;
  }

  .banner .ban .imgbox-c .p .p-b {
    font-size: 34px;
  }

  .banner .ban .imgbox-b .p .p-a {
    font-size: 30px;
  }

  .banner .ban .imgbox-b .p .p-b {
    font-size: 22px;
  }

  .products .pro .imgbox .text {
    top: 30px;
  }

  .appliance .app .imgbox .box {
    bottom: 35%;
  }

  footer .foo-b .foo .left {
    width: 40%;
  }

  .n-about-a .abo .left {
    width: 100%;
  }

  .n-about-b .abo {
    padding: 70px 0;
  }

  .n-about-b .abo .imgbox .img {
    width: 25%;
  }

  .n-about-c .abo {
    padding: 70px 0;
  }

  .n-about-c .abo .element .imgbox .p .text {
    height: 250px;
  }

  header .hea .nav .ul-a .li-a .a-a {
    line-height: 90px;
  }

  .banner .ban .imgbox-a .p .p-a {
    margin: 0 0 20px 0;
  }

  .banner .ban .imgbox-a .p .p-b {
    font-size: 26px;
  }

  .banner .ban .imgbox-a .p .p-c {
    font-size: 17px;
  }

  .banner .ban .imgbox-c .p .p-a {
    margin: 0 0 20px 0;
  }

  .banner .ban .imgbox-c .p .p-b {
    font-size: 26px;
  }

  .banner .ban .imgbox-c .p .p-b {
    font-size: 24px;
  }

  .banner .ban .imgbox-b .p .p-a {
    font-size: 26px;
  }

  .banner .ban .imgbox-b .p .p-b {
    font-size: 20px;
  }

  .banner .ban .imgbox-b .p .p-c {
    font-size: 20px;
  }

  .banner .ban .imgbox-d .p .p-a {
    font-size: 20px;
    margin: 0 0 20px 0;
  }

  .banner .ban .imgbox-d .p .p-b {
    font-size: 28px;
    margin: 0 0 20px 0;
  }

  .products .pro .imgbox .p-b span {
    font-size: 30px;
  }

  .products .pro .imgbox .p-b {
    font-size: 26px;
  }

  .products .pro .imgbox .p-c {
    font-size: 18px;
  }

  .appliance .app .imgbox .box .title {
    font-size: 28px;
  }

  .advantage .adv {
    padding: 70px 0;
  }

  .advantage .adv .caption .cn {
    font-size: 28px;
  }

  .advantage .adv .element .imgbox a .title {
    font-size: 22px;
    margin: 0 0 20px 0;
  }

  footer .foo-b .foo .right .tel {
    font-size: 32px;
    margin: 0 0 28px 0;
  }

  .n-about-a .abo {
    padding: 70px 0;
  }

  .n-about-a .abo .left .title {
    font-size: 28px;
  }

  .n-about-c .abo .caption {
    font-size: 28px;
  }

  .n-about-c .abo .element .imgbox .p .text {
    height: 220px;
  }

  .n-about-d .abo {
    padding: 70px 0;
  }

  .n-about-d .abo .caption {
    font-size: 28px;
  }

  .n-about-f {
    padding: 70px 0;
  }

  .n-about-h .abo .left .imgbox {
    padding: 25px 0;
  }

  .n-contact-a .con {
    padding: 70px 0;
  }

  .n-contact-a .con .caption {
    font-size: 28px;
    margin: 0 0 40px 0;
  }

  .n-contact-a .con .element .imgbox {
    width: 32%;
    padding: 50px 2%;
  }

  .n-contact-c .con .caption {
    font-size: 28px;
    color: #333333;
    text-align: center;
    margin: 0 0 40px 0;
  }

  .n-contact-c .con .caption {
    font-size: 28px;
    margin: 0 0 40px 0;
  }

  .n-advantage-a .adv .title {
    font-size: 28px;
    margin: 0 0 20px 0;
  }

  .n-advantage-a .adv .text {
    font-size: 20px;
  }

  .n-advantage-b .adv .imgbox .up .num {
    font-size: 20px;
  }

  .n-advantage-b .adv .imgbox .up .title {
    font-size: 20px;
  }

  .n-advantage-c .adv .caption {
    font-size: 28px;
    margin: 0 0 30px 0;
  }

  .n-advantage-c .adv .element .imgbox .p {
    font-size: 20px;
  }

  .n-advantage-e .adv .caption .title {
    font-size: 28px;
  }

  .n-advantage-e .adv .element .imgbox .after .afterbox {
    width: 110px;
    height: 110px;
  }

  .n-advantage-e .adv .element .imgbox .p .title {
    font-size: 20px;
  }

  .n-advantage-e .adv .element .imgbox .p .text {
    font-size: 16px;
  }

  .n-advantage-f .adv .caption {
    font-size: 28px;
    margin: 0 0 40px 0;
  }

  .n-advantage-g {
    padding: 80px 0 100px 0;
  }

  .n-advantage-g .adv .caption .title {
    font-size: 28px;
    margin: 0 0 20px 0;
  }
}

/******************************************/
@media screen and (max-width: 1201px) {
  header {
    display: none;
  }

  .phone-section {
    display: block;
  }

  .phone-logo {
    width: 40%;
  }

  .phone-language {
    width: 25%;
    position: relative;
    margin: 0 15px 0 auto
  }

  .phone-language a {
    justify-content: center;

  }

  .phone-language a .img {
    width: 20px;
  }

  .phone-language a .p {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 0 0 0 10px;
    line-height: 24px;
  }

  .phone-language ul {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #fff;
    z-index: 99;
    padding: 10px 0 0 0;
    display: none;
  }

  .phone-language ul li a {
    font-size: 16px;
    color: #333;
    text-align: center;
    line-height: 26px;
    display: block;
  }

  .phone-section .active-a ul {
    display: block !important;
  }

  .phone-head {
    width: 100%;
    padding: 15px 10px;
    box-sizing: border-box;
    justify-content: space-between;
    background-color: #fff;
    /* position: fixed; */
    top: 0;
    left: 0;
  }

  .phone-close {
    width: 40px;
    height: 30px;
    position: relative;
  }

  .phone-close .after {
    position: absolute;
    width: 40px;
    height: 4px;
    border-radius: 30px;
    background: #000;
    transition: 0.5s;
  }

  .phone-close .after-a {
    left: 0;
    top: 5px;
  }

  .phone-close .after-b {
    left: 0;
    top: 15px;
  }

  .phone-close .after-c {
    left: 0;
    top: 25px;
  }

  .phone-active .after-a {
    top: 15px;
    transform: rotate(45deg);
  }

  .phone-active .after-b {
    display: none;
  }

  .phone-active .after-c {
    top: 15px;
    transform: rotate(135deg);
  }

  .phone-close img {
    width: 30px;
  }

  .phone-listnav {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 999999999999999;
  }

  .phonelist-nav {
    width: 100%;
    background-color: #fff;
    line-height: 48px;
    border-top: 1px solid #efefef;
  }

  .phonelist-nav a {
    color: #000;
    font-size: 14px;
    padding: 0 15px;
  }

  .phonelist-nav1 {
    flex-direction: column;
    align-items: stretch;
    padding-left: 20px;
  }

  .phonelist-nav1 a {
    display: block;
  }

  .phonelist-nav {
    border-bottom: 1px solid #ffffff;
  }

  .phonelist-nav:last-child {
    border-bottom: none;
  }

  .phonelist-navtop>a {
    width: 50%;
  }

  .phonelist-navtop div {
    flex-grow: 1;
    flex-direction: row-reverse;
    box-sizing: border-box;
    padding-right: 10px;
  }

  .phonelist-navtop div img {
    width: 16px;
  }

  .phonelist-nav1 {
    display: none;
  }

  .menucl-img2 {
    display: none;
  }

  .banner .ban .imgbox-a .p .p-a {
    margin: 0 0 10px 0;
  }

  .banner .ban .imgbox-a .p .p-b {
    font-size: 22px;
    margin: 0 0 10px 0;
  }

  .banner .ban .imgbox-a .p .p-c {
    font-size: 16px;
    margin: 0 0 10px 0;
  }

  .banner .ban .imgbox-c .p .p-a {
    margin: 0 0 10px 0;
  }

  .banner .ban .imgbox-c .p .p-b {
    font-size: 22px;
    margin: 0 0 10px 0;
  }

  .banner .ban .imgbox-c .p .p-c {
    font-size: 16px;
    margin: 0 0 10px 0;
  }

  .banner .ban .imgbox-b .p {
    left: 5%;
    top: 30%;
    width: 90%;
  }

  .banner .ban .imgbox-b .p .p-a {
    font-size: 22px;
    margin: 0 0 10px 0;
  }

  .banner .ban .imgbox-b .p .p-b {
    font-size: 16px;
    margin: 0 0 10px 0;
  }

  .banner .ban .imgbox-b .p .p-c {
    font-size: 16px;
    margin: 0 0 10px 0;
  }

  .banner .ban .imgbox-d .p .p-a {
    font-size: 20px;
    margin: 0 0 10px 0;
  }

  .banner .ban .imgbox-d .p .p-b {
    font-size: 18px;
    margin: 0 0 10px 0;
  }

  .appliance .app .imgbox .box .title {
    font-size: 24px;
  }

  .appliance .app .imgbox .img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

  .appliance .app .imgbox .box .text {
    width: 80%;
    font-size: 16px;
    margin: 0 auto 20px auto;
  }

  .advantage .adv {
    padding: 40px 0;
  }

  .advantage .adv .caption .cn {
    font-size: 24px;
  }

  .advantage .adv .element {
    margin: 30px 0 0 0;
  }

  .advantage .adv .element .imgbox a .title {
    font-size: 18px;
    margin: 0 0 20px 0;
  }

  .advantage .adv .element .imgbox a .btn {
    font-size: 16px;
  }

  footer .foo-a .foo {
    padding: 30px 0;
    flex-wrap: wrap;
  }

  footer .foo-a .foo .logo {
    width: 100%;
    margin: 0 0 20px 0;
  }

  footer .foo-a .foo .formbox {
    width: 100%;
  }

  footer .foo-a .foo .formbox .inpbox-a input {
    line-height: 45px;
  }

  footer .foo-a .foo .formbox .sumbit input {
    line-height: 45px;
  }

  footer .foo-b .foo {
    padding: 30px 0 50px 0;
    flex-wrap: wrap;
  }

  footer .foo-b .foo .left {
    width: 100%;
  }

  footer .foo-b .foo .right {
    width: 100%;
  }

  footer .foo-b .foo .right .tel {
    font-size: 26px;
    margin: 0 0 20px 0;
  }

  footer .foo-b .foo .left ul .caption {
    font-size: 18px;
    margin: 0 0 20px 0;
  }

  footer .foo-b .foo .left ul li a {
    font-size: 16px;
    margin: 0 0 15px 0;
  }

  .n-banner .ban .p {
    font-size: 24px;
  }

  .n-banner .ban .p::after {
    width: 10%;
  }

  .n-about-a .abo {
    padding: 40px 0;
  }

  .n-about-a .bg {
    opacity: 0.2;
  }

  .n-about-b .abo {
    padding: 40px 0;
    flex-wrap: wrap;
  }

  .n-about-b .abo .imgbox {
    width: 40%;
    margin: 10px 0;
  }

  .n-about-b .abo .imgbox .img {
    width: 25%;
    margin: 0 10px 0 0;
  }

  .n-about-b .abo .imgbox .p .title span {
    font-size: 26px;
  }

  .n-about-c .abo {
    padding: 40px 0;
  }

  .n-about-c .abo .caption {
    font-size: 28px;
    margin: 0 0 30px 0;
  }

  .n-about-c .abo .element {
    flex-wrap: wrap;
  }

  .n-about-c .abo .element .imgbox {
    width: 70%;
    margin: 0 auto 30px auto;
  }

  .n-about-c .abo .element .imgbox .p {
    padding: 20px 5% 30px 5%;
  }

  .n-about-c .abo .element .imgbox .p .title {
    margin: 0 0 15px 0;
  }

  .n-about-c .abo .element .imgbox .img {
    text-align: center;
  }

  .n-about-c .abo .element .imgbox .p .text {
    height: auto;
  }

  .n-about-d .abo .element .swiper-slide {
    left: 0;
  }

  .n-about-e .abo {
    padding: 40px 0;
  }

  .n-about-e .abo .imgbox {
    width: 24%;
  }

  .n-about-f {
    padding: 40px 0;
  }

  .n-about-f .abo {
    flex-wrap: wrap;
  }

  .n-about-f .abo .imgbox {
    width: 100%;
    padding: 60px 0 40px 0;
  }

  .n-about-f .abo .imgbox .img {
    margin: 0 auto 40px auto;
  }

  .n-about-f .abo .imgbox .p .title {
    font-size: 24px;
    padding: 0 0 20px 0;
    margin: 0 0 30px 0;
  }

  .n-about-f .abo .imgbox .p .text {
    height: auto;
  }

  .n-about-g {
    padding: 40px 0;
  }

  .n-about-g .abo .caption {
    font-size: 24px;
    margin: 0 0 20px 0;
  }

  .n-about-g .abo .element .imgbox .text {
    font-size: 16px;
    line-height: 26px;
  }

  .n-about-h .abo {
    padding: 40px 0 40px 0;
    flex-wrap: wrap;
  }

  .n-about-h .abo .left {
    width: 100%;
  }

  .n-about-h .abo .left .imgbox .img {
    margin: 0 auto 10px auto;
  }

  .n-about-h .abo .right {
    width: 100%;
  }

  .n-about-h .abo .right .box .img img {
    height: auto;
  }

  .n-products .pro {
    padding: 40px 0;
    flex-wrap: wrap;
  }

  .n-products .pro .left {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .n-products .pro .left .caption {
    font-size: 22px;
    line-height: 60px;
  }

  .n-products .pro .left .ul-a .li-a .a-a .p {
    line-height: 50px;
  }

  .n-products .pro .right {
    width: 100%;
  }

  .n-products .pro .right .form .input {
    line-height: 50px;
  }

  .n-products .pro .right .form .submit {
    height: 50px;
  }

  .n-products .pro .right .form {
    margin: 0 0 30px 0;
  }

  .n-products .pro .right .caption {
    font-size: 24px;
    margin: 0 0 20px 0;
  }

  .n-products .pro .right .element .imgbox {
    width: 48%;
  }

  .crumbs {
    margin: 30px 0 0 0;
  }

  .x-products-a .pro {
    padding: 40px 0;
    flex-wrap: wrap;
  }

  .x-products-a .pro .left {
    width: 100%;
  }

  .x-products-a .pro .right {
    width: 100%;
  }

  .x-products-a .pro .right .title {
    font-size: 26px;
    margin: 0 0 20px 0;
    line-height: 34px;
  }

  .x-products-a .pro .right .text {
    font-size: 18px;
  }

  .x-products-a .pro .left .magnifybox {
    width: 300px;
    height: 300px;
    left: 0%;
    top: 105%;
  }

  .x-products-b .pro {
    padding: 40px 0;
  }

  .x-products-b .pro ul li a {
    font-size: 18px;
    line-height: 50px;
    padding: 0 25px;
  }

  .x-products-b .pro ul .btn-b a {
    line-height: 50px;
    font-size: 16px;
    padding: 0 35px;
  }

  .x-products-c .pro {
    padding: 40px 0;
  }

  .x-products-c .pro .caption {
    font-size: 28px;
    margin: 0 0 20px 0;
  }

  .n-application-a .app {
    padding: 40px 0;
  }

  .n-application-a .app .caption {
    font-size: 28px;
    margin: 0 0 20px 0;
  }

  .n-application-b .app {
    flex-wrap: wrap;
  }

  .n-application-b .app .left {
    width: 100%;
    padding: 40px 3% 40px 5%;
  }

  .n-application-b .app .left .caption {
    font-size: 26px;
    margin: 0 0 25px 0;
  }

  .n-application-b .app .right {
    width: 100%;
    padding: 40px 5%;
    min-height: auto;
  }

  .n-application-b .app .right .caption {
    font-size: 26px;
    margin: 0 0 25px 0;
  }

  .n-application-b .app .right .textbox .up .title {
    font-size: 18px;
    line-height: 50px;
  }

  .n-news .new {
    padding: 40px 0;
  }

  .n-news .new .element-a .imgbox a {
    flex-wrap: wrap;
  }

  .n-news .new .element-a .imgbox a .left {
    width: 100%;
  }

  .n-news .new .element-a .imgbox a .right {
    width: 100%;
    padding: 20px 5%;
  }

  .n-news .new .element-a .imgbox a .right .title {
    font-size: 22px;
    line-height: 30px;
    margin: 0 0 20px 0;
  }

  .n-news .new .element-a .imgbox a .right .time {
    font-size: 15px;
    margin: 0 0 10px 0;
  }

  .n-news .new .element-a .imgbox a .right .text {
    margin: 0 0 20px 0;
  }

  .n-news .new .element-b {
    margin: 40px 0 0 0;
  }

  .n-news .new .element-b .imgbox {
    width: 48%;
    margin: 0 1% 30px 1%;
  }

  .n-news .new .element-b .imgbox a .p {
    box-sizing: border-box;
    padding: 20px 5%;
  }

  .x-news-a .new {
    width: 90%;
    padding: 40px 0;
  }

  .x-news-a .new .title {
    font-size: 28px;
    line-height: 34px;
    margin: 0 0 20px 0;
  }

  .x-news-a .new .time {
    padding: 0 0 20px 0;
    margin: 0 0 30px 0;
  }

  .x-news-a .new .text {
    padding: 0 0 20px 0;
    margin: 0 0 30px 0;
  }

  .x-news-a .new .bottom {
    flex-wrap: wrap;
  }

  .x-news-a .new .bottom .left {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .x-news-b .new {
    padding: 40px 0;
  }

  .x-news-b .new .caption {
    font-size: 28px;
    margin: 0 0 20px 0;
  }

  .x-news-b .new .element .imgbox a .p {
    padding: 20px 5%;
  }

  .n-contact-a .con {
    padding: 40px 0;
  }

  .n-contact-a .con .element {
    flex-wrap: wrap;
  }

  .n-contact-a .con .element .imgbox {
    width: 100%;
    padding: 30px 2%;
    margin: 0 0 20px 0;
  }

  .n-contact-a .con .element .imgbox .p .text h2 {
    font-size: 18px;
  }

  .n-contact-b .con ul li {
    width: 23%;
  }

  .n-contact-b .con ul {
    margin: 0 0 30px 0;
  }

  .n-contact-b .con .body .imgbox {
    flex-wrap: wrap;
  }

  .n-contact-b .con .body .imgbox .left {
    width: 100%;
  }

  .n-contact-b .con .body .imgbox .right {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 5%;
  }

  .n-contact-c .con {
    padding: 40px 0;
  }

  .n-about-d .abo {
    padding: 40px 0;
  }

  .accessory .acc .caption {
    font-size: 26px;
    margin: 0 0 30px 0;
  }

  .n-contact-b .con {
    padding: 40px 0;
  }

  footer .foo-c .foo .left {
    line-height: 24px;
    text-align: center;
  }

  .n-products .pro .left .ul-a {
    display: flex;
    flex-wrap: wrap;
  }

  .n-products .pro .left .ul-a .li-a {
    width: 50%;
  }

  .n-products .pro .left .ul-a .li-a .a-a {
    padding: 0 10px;
  }

  .n-products .pro .left .ul-a .li-a .a-a .p {
    font-size: 16px;
  }

  .n-products .pro .left .ul-a .li-a .ul-b .li-b {
    padding: 0 12px;
  }

  .n-products .pro .left .ul-a .li-a .ul-b .li-b .labbox {
    align-items: flex-start;
  }

  .n-products .pro .left .ul-a .li-a .ul-b .li-b .labbox input {
    margin: 10px 10px 0 0;
  }

  .n-products .pro .left .ul-a .li-a .ul-b .li-b .labbox p {
    font-size: 14px;
    color: #666666;
    line-height: 30px;
  }

  .n-products .pro .right .element .imgbox a .img {
    overflow: hidden;
  }

  .banner .ban .imgbox-b .p .btnbox .btn {
    width: 110px;
  }

  .banner .ban .imgbox-b .p .btnbox .btn a .text {
    font-size: 12px;
    line-height: 30px;
  }

  .banner .ban .imgbox-d .p .btnbox .btn {
    width: 110px;
  }

  .banner .ban .imgbox-d .p .btnbox .btn a .text {
    font-size: 12px;
    line-height: 30px;
  }

  .x-products-a .pro .left .box-b .box .blackcurtain {
    display: none;
  }

  .x-products-a .pro .left .magnifybox {
    display: none !important;
  }

  .n-advantage-a .adv .text {
    font-size: 18px;
    line-height: 32px;
  }

  .n-advantage-b {
    padding: 20px 0 40px 0;
  }

  .n-advantage-b .adv {
    height: auto;
    flex-wrap: wrap;
  }

  .n-advantage-b .adv .imgbox {
    width: 100%;
    position: unset;
    margin: 0 0 30px 0;
  }

  .n-advantage-b .adv .imgbox .up .num {
    font-size: 18px;
  }

  .n-advantage-b .adv .imgbox .up .title {
    font-size: 18px;
  }

  .n-advantage-b .adv .imgbox .down .img {
    width: 140px;
    height: 140px;
  }

  .n-advantage-c .adv .imgbox .img {
    text-align: center;
  }

  .n-advantage-e .adv .element .imgbox {
    width: 100%;
  }

  .n-advantage-f .adv .element .imgbox {
    flex-wrap: wrap;
  }

  .n-advantage-f .adv .element .imgbox .img {
    margin: 0 auto 20px auto;
  }

  .n-advantage-f .adv .element .imgbox .hr {
    display: none;
  }

  .n-advantage-f .adv .element .imgbox .p {
    width: 100%;
  }

  .n-advantage-f .adv .element .imgbox .p .title {
    font-size: 22px;
    text-align: center;
  }

  .n-advantage-f .adv .element .imgbox .p .text {
    text-align: center;
  }

  .n-advantage-g .adv .element {
    flex-wrap: wrap;
  }

  .n-advantage-g .adv .element .imgbox {
    width: 100%;
    padding: 60px 0 30px 0;
  }

  .n-advantage-g .adv .element .imgbox .text {
    height: auto;
  }

  .n-advantage-g .adv .element .imgbox::after {
    right: 0;
    top: 100%;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .n-advantage-c {
    padding: 50px 0 35px 0;
  }
}

/******************************************/
@media screen and (max-width: 801px) {
  .banner .ban .imgbox-a .img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .banner .ban .imgbox-c .p .p-c {
    font-size: 16px;
    line-height: 24px;
    box-sizing: border-box;
    padding: 0 10%;
  }

  .banner .ban .imgbox-b .img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .banner .ban .imgbox-c .img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .banner .ban .imgbox-d .img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .banner .ban .imgbox-d .p .p-a {
    font-size: 18px;
    box-sizing: border-box;
    padding: 0 10%;
  }

  .products .pro .imgbox .img {
    padding: 80px 0 0 0;
  }

  .appliance .app .swiperc {
    display: none;
  }

  .advantage .adv .caption .en {
    font-size: 16px;
    line-height: 24px;
  }

  .advantage .adv .element .imgbox a .img {
    width: 40%;
    margin: 0 auto 20px auto;
  }

  .advantage .adv .element .imgbox a .title {
    font-size: 16px;
    margin: 0 0 10px 0;
  }

  .advantage .adv .element .imgbox a .btn {
    font-size: 14px;
  }

  footer .foo-a .foo .formbox {
    width: 100%;
    flex-wrap: wrap;
  }

  footer .foo-a .foo .formbox .p {
    font-size: 18px;
    width: 100%;
    margin: 0 0 15px 0;
  }

  footer .foo-a .foo .formbox .zxly {
    width: 100%;

  }

  footer .foo-a .foo .formbox .zxlyform {
    flex-wrap: wrap;
  }

  footer .foo-a .foo .formbox .inpbox-a {
    width: 48%;
    margin: 0 0 15px 0;
  }

  footer .foo-a .foo .formbox .sumbit {
    width: 100%;
    margin: 0 auto;
  }

  footer .foo-b .foo .left ul .caption {
    font-size: 17px;
  }

  footer .foo-b .foo .left ul li a {
    font-size: 15px;
    margin: 0 0 10px 0;
  }

  footer .foo-b .foo .right .tel {
    font-size: 22px;
    margin: 0 0 20px 0;
  }

  footer .foo-c .foo .left {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }

  .n-nav {
    display: none;
  }

  .n-about-b .abo .imgbox {
    width: 48%;
  }

  .n-about-c .abo .element .imgbox {
    width: 100%;
    margin: 0 auto 20px auto;
  }

  .n-about-c .abo .element .imgbox .p .title {
    font-size: 20px;
  }

  .n-about-e .abo .imgbox {
    width: 49%;

    padding: 10px 10px 10px 10px;
  }

  .n-about-f .abo .imgbox .img {
    width: 70px;
  }

  .n-about-h .abo .left .imgbox .img {
    width: 17%;
  }

  .n-about-h .abo .left .imgbox .p {
    text-align: center;
    font-size: 18px;
    margin: 10px 0 0 0;
  }

  .n-about-h .abo .right .box .p {
    padding: 20px 5%;
  }

  .n-about-h .abo .right .box .p .a .title {
    font-size: 18px;
  }

  .n-products .pro .right .form .submit {
    width: 10%;
  }

  .n-products .pro .right .element .imgbox {
    width: 48%;
  }

  .n-products .pro .right .element .imgbox a .p .title {
    font-size: 16px;
    margin: 10px 0 20px 0;
  }

  .x-products-a .pro .right .title {
    font-size: 22px;
    margin: 0 0 20px 0;
    line-height: 28px;
  }

  .x-products-b .pro ul {
    margin: 0 0 20px 0;
    flex-wrap: wrap;
  }

  .x-products-b .pro ul .btn-a {
    margin: 0 auto 0 0;
  }

  .x-products-b .pro ul .btn-b {
    margin: 0 auto 0 0;
  }

  .accessory .acc {
    width: 90%;
    left: 5%;
    top: 15%;
    padding: 40px 5%;

  }

  .n-news .new .element-b .imgbox {
    width: 100%;
    margin: 0 1% 20px 1%;
  }

  .x-news-a .new .title {
    font-size: 20px;
  }

  .n-contact-a .con .element .imgbox .img {
    width: 15%;
  }

  .n-contact-a .con .element .imgbox .p {
    width: 80%;
  }

  .n-contact-a .con .element .imgbox {
    padding: 20px 5%;
  }

  .n-contact-a .con .element .imgbox .p .text h1 {
    height: 50px;
  }

  .n-contact-a .con .element .imgbox .p .text h2 {
    font-size: 15px;
    height: 50px;
  }

  .n-contact-a .con .element .imgbox .p .text p {
    font-size: 16px;
    color: #666666;
    line-height: 24px;
    height: 50px;
  }

  .n-contact-b .con ul li {
    width: 45%;
  }

  .n-contact-b .con .body .imgbox .right .title {
    font-size: 22px;
    padding: 0 0 20px 0;
    margin: 0 0 20px 0;
  }

  .n-contact-c .con .caption {
    font-size: 24px;
    margin: 0 0 20px 0;
  }

  .n-contact-c .con .form .inpbox-a {
    width: 100%;
    margin: 0 0 15px 0;
  }

  .x-products-a .pro .left {
    flex-wrap: wrap;
  }

  .x-products-a .pro .left .box-a {
    display: none;
  }

  .x-products-a .pro .left .box-b {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .x-products-a .pro .left .box-b .box {
    width: 100%;
    height: 250px;
  }

  .x-products-a .pro .left .box-b .box .blackcurtain {
    display: none;
  }

  .x-products-b .pro ul {
    justify-content: flex-start;
    margin: 0 0 30px 0;
    border-top: 0px solid #efefef;
    border-left: 0px solid #efefef;
    border-bottom: 0px solid #efefef;
  }

  .x-products-b .pro ul li {
    border: 1px solid #efefef;
  }

  .x-products-b .pro ul .btn-b {
    margin: 20px auto 0 0;
  }

  .phone-close .after {
    width: 30px;
  }

  .banner .ban .imgbox-d .p .p-a span {
    line-height: 24px;
  }

  .banner .ban .imgbox-a .p .btnbox .btn {
    width: 100px;
  }

  .banner .ban .imgbox-a .p .btnbox .btn a .text {
    font-size: 12px;
    line-height: 30px;
  }

  .banner .ban .imgbox-c .p .btnbox .btn a .text {
    font-size: 12px;
    line-height: 30px;
  }

  .banner .ban .imgbox-c .p .btnbox .btn {
    width: 100px;
  }

  .n-contact-c .con .form .sumbit input {
    line-height: 45px;
  }

  .phone-language {
    width: 25%;
    position: relative;
    margin: 0 15px 0 auto;
  }

  .n-advantage-a .adv .title {
    font-size: 24px;
  }

  .n-advantage-e .adv .element .imgbox .after .afterbox {
    width: 90px;
    height: 90px;
  }

  .n-advantage-e .adv .element .imgbox .after .afterbox img {
    width: 60%;
  }

  .n-advantage-e .adv .element .imgbox .p {
    padding: 15px 0;
  }

  .n-advantage-e {
    padding: 40px 0;
  }

  .n-advantage-a {
    padding: 40px 0;
  }

  .n-advantage-a .adv {
    padding: 40px 5%;
  }

  .n-advantage-c {
    padding: 40px 0 35px 0;
  }

  .n-advantage-b .adv .imgbox .up {
    padding: 15px 0;
  }

  .n-advantage-b {
    padding: 20px 0 30px 0;
  }

  .n-advantage-c .adv .caption {
    font-size: 24px;
  }

  .n-advantage-e .adv .caption .title {
    font-size: 24px;
  }

  .n-advantage-e .adv .caption .text {
    font-size: 18px;
    line-height: 32px;
    margin: 0 0 30px 0;
  }

  .n-advantage-e .adv .element .imgbox .p .title {
    font-size: 18px;
  }

  .n-advantage-f {
    padding: 40px 0 30px 0;
  }

  .n-advantage-g {
    padding: 40px 0;
  }

  .n-advantage-g .adv .caption .title {
    font-size: 24px;
    margin: 0 0 20px 0;
  }
}