@font-face {
  font-family: 'Barlow-Regular';
  src: url(../fonts/Barlow-Regular.ttf) format('truetype'), url(../fonts/Barlow-Regular.eot) format('eot'), url(../fonts/Barlow-Regular.woff) format('woff'), url(../fonts/Barlow-Regular.woff2) format('woff2');
}
@font-face {
  font-family: 'KronaOne-Regular';
  src: url(../fonts/KronaOne-Regular.ttf) format('truetype'), url(../fonts/KronaOne-Regular.eot) format('eot'), url(../fonts/KronaOne-Regular.woff) format('woff'), url(../fonts/KronaOne-Regular.woff2) format('woff2');
}
input::-webkit-input-placeholder {
  color: #8e8e8e;
}
textarea::-webkit-input-placeholder {
  color: #8e8e8e;
}
input::-moz-placeholder {
  color: #8e8e8e;
}
input:-moz-placeholder {
  color: #8e8e8e;
}
input:-ms-input-placeholder {
  color: #8e8e8e;
}
body {
  margin: 0 auto;
  padding: 0;
  --color: #1d66a4;
  --yellow: #fccf1b;
  font-family: "Barlow-Regular";
  background-color: #fff;
  max-width: 1920px;
  --font: 'KronaOne-Regular';
}
*::-webkit-scrollbar-thumb {
  background-color: var(--color);
}
.ui.container {
  padding: 0 15px;
  width: 1550px;
  margin: 0 auto;
  position: relative;
}
#header {
  z-index: 200;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  background-color: transparent;
}
#header.active {
  background-color: white;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
#header .nav {
  position: relative;
  height: 100px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#header .nav .ui.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
}
.font-18{
  line-height: 32px;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  margin-right: 60px;
  font-size: 20px;
  text-transform: uppercase;
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 100;
  float: left;
  position: relative;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 36px;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 16px;
  background: #fff;
  top: 130%;
  left: -10px;
  width: auto;
  min-width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  position: relative;
  display: block;
  float: none;
  padding: 0 15px;
  line-height: 40px;
  color: black;
  font-size: 16px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
  white-space: nowrap;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  opacity: 0;
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .menu-box ul.menu li:last-child {
  margin-right: 0;
}
#header .nav .ui.menu .right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 60px;
}
#header .nav .ui.menu .right .h-search form {
  position: relative;
}
#header .nav .ui.menu .right .h-search form input[type='text'] {
  width: 225px;
  font-size: 18px;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  background-color: transparent;
  padding-left: 45px;
  padding-right: 15px;
  padding-bottom: 5px;
}
#header .nav .ui.menu .right .h-search form input[type="submit"] {
  width: 25px;
  height: 25px;
  background: url('../images/search.png') no-repeat;
  position: absolute;
  left: 0;
  bottom: 8px;
  border: none;
}
.language-box {
  margin-left: 70px;
}
.language-box .zhuyu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box .zhuyu span {
  font-size: 20px;
  margin-left: 20px;
}
.language-box .hover-language {
  width: auto;
  position: relative;
  vertical-align: middle;
}
.language-box ul.sub-menu {
  position: absolute;
  background: #fff;
  top: 40px;
  right: -30px;
  z-index: 100;
  white-space: nowrap;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  display: none \9;
}
.language-box ul.sub-menu li a {
  width: 120px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  float: none;
  padding: 0 15px;
  line-height: 30px;
  font-size: 14px;
  color: #000000;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.language-box ul.sub-menu li a img {
  margin-right: 10px;
  width: 25px;
  height: auto;
}
.language-box ul.sub-menu li:hover a {
  background: var(--color);
  color: white;
}
.language-box:hover .hover-language ul.sub-menu {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#banner {
  position: relative;
}
#banner .banner-content ul {
  position: relative;
}
#banner .banner-content ul li {
  position: relative;
}
#banner .banner-content ul li .content {
  position: absolute;
  left: 50%;
  top: 205px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 5;
}
#banner .banner-content ul li .con-t {
  position: absolute;
  left: 50%;
  bottom: 110px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 5;
}
#banner .banner-content ul li .con-t ol {
  margin: 0 -20px;
}
#banner .banner-content ul li .con-t ol li {
  padding: 0 20px;
}
#banner .banner-content ul li .con-t ol li:hover .box {
  background-color: white;
}
#banner .banner-content ul li .con-t ol li:hover .box img {
  -webkit-filter: brightness(1) invert(0);
  filter: brightness(1) invert(0);
}
#banner .banner-content ul li .con-t ol li:hover .box h5 {
  color: var(--color);
}
#banner .banner-content ul li .con-t ol li .box {
  width: 260px;
  height: 200px;
  background-color: transparent;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#banner .banner-content ul li .con-t ol li .box img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.font-30{
  line-height: 1.6;
}
.font-20{
  line-height: 36px;
}
.font-16{
  line-height: 30px;
}
.font-24{
  line-height: 44px;
}
#banner .banner-content ul li .con-t ol li .box h5 {
  font-size: 20px;
  margin-top: 25px;
  line-height: 36px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  color: white;
  text-align: center;
}
#banner .banner-content ul li .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.more {
  width: 190px;
  height: 52px;
  position: relative;
  background: url('../images/more-bg.png') no-repeat;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 35px;
  overflow: hidden;
}
.more:hover::after {
  right: 0;
}
.more::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1d66a4;
  right: 100%;
  top: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.more span {
  position: relative;
  z-index: 2;
  font-size: 18px;
  color: white;
}
.more i {
  font-size: 30px;
  position: relative;
  z-index: 2;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: white;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotateY(180deg);
  -moz-transform: translateY(-50%) rotateY(180deg);
  transform: translateY(-50%) rotateY(180deg);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  color: var(--color);
}
.more.white {
  border-color: white;
}
.more.white span {
  color: white;
}
.h-title h3 {
  font-size: 60px;
  font-family: var(--font);
  position: relative;
  line-height: 1.4;
}
#index-body .category {
  padding: 50px 0 90px;
  position: relative;
  background: url('../images/category-bg.png') no-repeat;
  background-position: left bottom;
}
#index-body .category .category-content ul {
  margin: 40px -20px 0;
}
#index-body .category .category-content ul li {
  padding: 0 20px;
}
#index-body .category .category-content ul li .box .text {
  max-width: 600px;
}
#index-body .category .category-content ul li .box .text h4 {
  margin: 15px 0 25px;
}
#index-body .category .category-content ul li .box .text .more {
  margin-top: 85px;
}
#index-body .category .category-content ul li .box .img {
  max-width: 50%;
}
#index-body .category .category-content .category-b {
  margin-top: 60px;
}
#index-body .category .category-content .category-b .line {
  width: -webkit-calc(100% - 320px);
  width: -moz-calc(100% - 320px);
  width: calc(100% - 320px);
  height: 1px;
  background-color: #5e5e5e;
}
#index-body .category .category-content .category-b .page span {
  font-size: 36px;
  font-family: var(--font);
}
#index-body .category .category-content .category-b .btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#index-body .category .category-content .category-b .btn span {
  cursor: pointer;
}
#index-body .category .category-content .category-b .btn span:first-child {
  margin-right: 50px;
}
#index-body .category .category-content .category-b .btn span:hover i {
  color: var(--color);
}
#index-body .category .category-content .category-b .btn span i {
  font-size: 26px;
  color: #5e5e5e;
  font-family: var(--font);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .about {
  padding: 95px 0 0;
  position: relative;
}
#index-body .about .about-t {
  margin-bottom: 80px;
}
#index-body .about .about-t .more {
  margin-top: 120px;
}
#index-body .about .about-t ul {
  margin-top: 45px;
}
#index-body .about .about-t ul li {
  margin-right: 140px;
}
#index-body .about .about-t ul li:last-child {
  margin-right: 0;
}
#index-body .about .about-t ul li h4 {
  font-size: 72px;
  line-height: 1.1;
  font-family: var(--font);
}
#index-body .about .about-t ul li h4 em {
  color: var(--color);
}
#index-body .about .about-t ul li h4 span {
  font-size: 18px;
}
#index-body .about .img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#index-body .product {
  padding: 100px 0 45px;
  background: url('../images/pro-bg.png') no-repeat;
  background-position: bottom;
}
#index-body .product .product-content .h-title p {
  margin: 25px 0 80px;
}
#index-body .product .product-content ul {
  margin: 0 -50px;
}
#index-body .product .product-content ul .slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f6f6f6;
  color: transparent;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content ul .slick-arrow:hover {
  background-color: var(--color);
}
#index-body .product .product-content ul .slick-arrow:hover::before {
  color: white;
}
#index-body .product .product-content ul .slick-arrow::before {
  content: "\e76e";
  font-family: 'iconfont';
  color: var(--color);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 24px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content ul .slick-arrow.slick-prev {
  left: -50px;
}
#index-body .product .product-content ul .slick-arrow.slick-next {
  right: -50px;
}
#index-body .product .product-content ul .slick-arrow.slick-next::before {
  content: "\e76f";
}
#index-body .product .product-content ul li {
  padding: 0 50px;
}
#index-body .product .product-content ul li h4 {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .product .product-content ul li h4:hover {
  color: black;
}
#index-body .news {
  padding: 90px 0;
}
#index-body .news .news-content ul {
  margin: 70px -27px 0;
}
#index-body .news .news-content ul li {
  padding: 0 27px;
  position: relative;
}
#index-body .news .news-content ul li:hover .box {
  background-color: #256ba8;
  color: white;
}
#index-body .news .news-content ul li:hover .box .news_category {
  background-color: white;
  color: var(--color);
}
#index-body .news .news-content ul li:hover .box .con {
  opacity: 1;
}
#index-body .news .news-content ul li:hover .box .btn {
  border-color: white;
}
#index-body .news .news-content ul li .box {
  background-color: #f6f6f6;
  border-bottom: 3px solid var(--color);
  padding: 60px 30px;
  height: 470px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#index-body .news .news-content ul li .box .news_category {
  padding: 3px 8px;
  background-color: var(--color);
  color: white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#index-body .news .news-content ul li .box h4 {
  margin: 20px 0 15px;
  min-height: 3.7em;
}
#index-body .news .news-content ul li .box .date {
  margin: 25px 0 35px;
}
#index-body .news .news-content ul li .box .con {
  line-height: 32px;
}
#index-body .news .news-content ul li .box .btn {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 1px solid black;
}
#index-body .news .news-content ul li .box .btn i {
  font-size: 20px;
}
#index-body .application {
  margin-bottom: 100px;
}
#index-body .application .h-title p {
  margin: 25px 0 45px;
}
#index-body .application .application-content ul {
  margin: 0 -10px;
}
#index-body .application .application-content ul li {
  padding: 0 10px;
}
#footer {
  background-color: #272728;
}
#footer .footer-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 50px 15px;
}
#footer .footer-t .t-list.link span:hover {
  border-color: white;
  opacity: 1;
}
#footer .footer-t .t-list.contact {
  max-width: 350px;
}
#footer .footer-t .t-list.contact span {
  margin-bottom: 25px;
  line-height: 30px;
}
#footer .footer-t .t-list.qcode #ewm {
  margin: 30px auto 25px;
}
#footer .footer-t .t-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: white;
}
#footer .footer-t .t-list .share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
#footer .footer-t .t-list .share a {
  background-color: transparent;
  margin-right: 13px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 50%;
}
#footer .footer-t .t-list .share a i {
  color: white;
  font-size: 24px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .footer-t .t-list .share a:hover i {
  color: var(--color);
}
#footer .footer-t .t-list .share a:last-child {
  margin-right: 0;
}
#footer .footer-t .t-list .qc-img img,
#footer .footer-t .t-list .qc-img canvas {
  width: 140px;
  height: auto;
  border: 5px solid #fff;
}
#footer .footer-t .t-list form {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 355px;
}
#footer .footer-t .t-list form input[type='text'] {
  width: 100%;
  padding-bottom: 10px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid white;
  padding-right: 15px;
  color: white;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 25px;
}
#footer .footer-t .t-list form input::-webkit-input-placeholder {
  color: white;
}
#footer .footer-t .t-list form .more {
  position: relative;
}
#footer .footer-t .t-list form .more span {
  margin-bottom: 0;
  color: white;
  opacity: 1;
  font-size: 20px;
}
#footer .footer-t .t-list form input[type='submit'] {
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}
#footer .footer-t .t-list h4 {
  font-size: 30px;
  font-family: 'KronaOne-Regular';
  margin-bottom: 20px;
  line-height: 1.6;
}
#footer .footer-t .t-list span {
  font-size: 16px;
  line-height: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.8;
  margin-bottom: 15px;
}
#footer .footer-b {
  color: white;
  position: relative;
  z-index: 5;
  padding-bottom: 20px;
  opacity: 0.6;
}
#footer .footer-b span {
  display: block;
  font-size: 16px;
  line-height: 30px;
}
#footer .footer-b img {
  width: 240px;
  height: auto;
  padding-top: 9px;
}
@media (max-width: 1600px) {
  .ui.container {
    width: 1400px;
  }
  .language-box {
    margin-left: 25px;
  }
}
@media (max-width: 1400px) {
  .ui.container {
    width: 1200px;
  }
  .language-box {
    margin-left: 40px;
  }
  #header .nav .ui.menu .right {
    margin-left: 40px;
  }
  #index-body .category .category-content ul li .box .text {
    max-width: 40%;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    margin-right: 20px;
    font-size: 18px;
  }
  #banner .banner-content ul li .content h2{
    font-size: 40px;
  }
  
}
@media (max-width: 1200px) {
  .ui.container {
    width: 1000px;
  }
  #banner .banner-content ul li .con-t h2{
    font-size: 40px;
  }
  #header .nav .logo {
    max-width: 150px;
  }
  #header .nav .ui.menu .right .h-search form input[type='text'] {
    width: 180px;
  }
  #banner .banner-content ul li .con-t ol li .box {
    width: 200px;
  }
  #banner .banner-content ul li .con-t {
    bottom: 80px;
  }
  #banner .banner-content ul li .con-t h4 {
    margin: 15px 0;
  }
  #banner .banner-content ul li .content {
    top: 120px;
  }
  .font-48 {
    font-size: 34px;
  }
  #index-body .about .about-t ul li h4 {
    font-size: 60px;
  }
  .h-title h3 {
    font-size: 44px;
  }
  #footer .footer-t .t-list form {
    width: 260px;
  }
  #footer .footer-t .t-list h4 {
    font-size: 24px;
    line-height: 44px;
  }
  #footer .footer-t .t-list.contact {
    max-width: 240px;
  }
  .language-box .zhuyu span {
    font-size: 16px;
    line-height: 30px;
    margin-left: 15px;
  }
  .language-box {
    margin-left: 20px;
  }
}
@media (max-width: 1000px) {
  .ui.container {
    width: 700px;
  }
  #header {
    display: none;
  }
  #mobile {
    display: block !important;
  }
  #banner {
    margin-top: 120px;
  }
  #banner .banner-content ul li .con-t,
  #banner .banner-content ul li .content {
    position: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
  #banner .banner-content ul li .con-t h2,
  #banner .banner-content ul li .content h2 {
    font-size: 40px;
  }
  #banner .banner-content ul li .bg {
    display: none;
  }
  #banner {
    background: url('../images/banner-list.jpg') no-repeat;
    background-position: bottom;
    background-size: cover;
    padding: 80px 0;
  }
  #banner .banner-content ul li .con-t {
    margin-top: 60px;
  }
  #banner .banner-content ul li .con-t ol li {
    width: 25%;
  }
  #banner .banner-content ul li .con-t ol li .box {
    width: 100%;
    height: 150px;
  }
  #index-body .category .category-content ul li .box .text .con {
    font-size: 16px;
    line-height: 30px;
    min-height: 20em;
  }
  .font-48 {
    font-size: 28px;
  }
  #index-body .category .category-content .category-b {
    display: none;
  }
  #index-body .about .about-t .text {
    width: 100%;
    margin-top: 60px;
  }
  #index-body .about .about-t .more {
    margin-top: 40px;
  }
  #footer .footer-t .t-list.link {
    display: none;
  }
  #footer .footer-t {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  #footer .footer-t .t-list.form {
    margin-top: 60px;
  }
  #footer .footer-t .t-list form {
    width: 100%;
  }
  #banner .banner-content ul li .con-t ol li {
    width: 50%;
    margin: 15px 0;
  }
}
@media (max-width: 700px) {
  .ui.container {
    width: 500px;
  }

  #index-body .category .category-content ul li .box .text {
    max-width: 100%;
  }
  #index-body .category .category-content ul li .box .img {
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
  }
  #index-body .product .product-content ul li .img_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #footer .footer-b {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #footer .footer-t .t-list form .more {
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .ui.container {
    width: 100%;
  }
  #banner .banner-content ul li .con-t h2,
  #banner .banner-content ul li .content h2 {
    font-size: 28px;
    line-height: 1.6;
  }
  #banner .banner-content ul li .con-t ol li .box h5 {
    font-size: 16px;
    line-height: 30px;
  }
  .h-title h3 {
    font-size: 30px;
    line-height: 1.4;
  }
  #index-body .about .about-t ul {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #index-body .about .about-t ul li {
    margin: 15px 0;
    text-align: center;
  }
  #footer .footer-t .t-list {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #footer .footer-t .t-list .f-logo {
    text-align: center;
  }
  #footer .footer-t .t-list.contact {
    max-width: 100%;
    margin-top: 60px;
  }
  #footer .footer-b span {
    text-align: center;
  }
  #footer .footer-t .t-list .share {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}



























/*-------------------inner-page-------------------*/
.inner-page .wp-pagenavi{
  display: flex;
  justify-content: center;
}
.inner-page .m-page a,
.inner-page .m-page span {
  width: 30px;
  height:  30px;
  border-radius: 5px;
  border: 1px solid #c7c7c7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  font-size: 16px;
}
.inner-page .m-page a:hover,
.inner-page .m-page span.current {
  background-color: var(--color);
  color: white;
  border-color:  var(--color);
}

.baseMbx {
  padding: 25px 0;
  margin-top: 100px;
}
.baseMbx .text {
  color: #777777;
}
.baseCateNav {
  margin-top: 50px;
  overflow: hidden;
}
.baseCateNav ul {
  border-bottom: 1px solid #d6d6d6;
}
.baseCateNav li {
  display: inline-block;
  padding: 20px 0;
  position: relative;
}
.baseCateNav li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  border-left: 1px solid #d6d6d6;
}
.baseCateNav li a {
  display: inline-block;
  color: #777777;
  position: relative;
}
.baseCateNav li a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -21px;
  border-bottom: 3px solid transparent;
  border-radius: 3px;
}
.baseCateNav li.active a {
  font-weight: bold;
  color: var(--color);
}
.baseCateNav li.active a::before {
  border-color: var(--color);
}
.baseCateNav.wAuto ul {
  margin-right: -25px;
}
.baseCateNav.wAuto li {
  width: auto;
  padding: 0;
  margin: 0;
  margin-right: 25px;
  margin-bottom: 25px;
}
.baseCateNav.wAuto li::before {
  display: none;
}
.baseCateNav.wAuto li a::before {
  display: none;
}

.font-48 {
  font-size: 48px;
}
@media (max-width: 1240px) {
  .font-48 {
    font-size: 30px;
  }
  .font-45 {
    font-size: 30px;
  }
  .font-40 {
    font-size: 30px;
  }
  .font-30 {
    font-size: 24px;
  }
  .font-24 {
    font-size: 20px;
    line-height: 36px;
  }
  .font-22 {
    font-size: 20px;
  }
  .font-20 {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .font-48 {
    font-size: 24px;
  }
  .font-45 {
    font-size: 24px;
    line-height: 44px;
  }
  .font-40 {
    font-size: 24px;
  }
  .font-30 {
    font-size: 20px;
    line-height: 36px;
  }
  .font-24 {
    font-size: 18px;
    line-height: 32px;
  }
  .font-22 {
    font-size: 18px;
  }
  .font-20 {
    font-size: 16px;
    line-height: 30px;
  }
}

.about-1 {
  padding-top: 130px;
}
.about-1 .play {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  cursor: pointer;
}
.about-1 .play::before {
  width: 100%;
  height: 100%;
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  background: rgba(28, 111, 153, 0.35);
  -webkit-animation: ks 2s linear infinite;
  -moz-animation: ks 2s linear infinite;
  animation: ks 2s linear infinite;
  z-index: -1;
}
.about-1 .right {
  padding-left: 50px;
}
.about-1 .right .text {
  margin-top: 20px;
  color: #777777;
  line-height: 1.8;
      max-height: 460px;
    padding-right: 20px;
    overflow: auto;
}
.about-2 {
  padding-top: 130px;
}
.about-2 .box {
  padding: 80px 15px 70px;
  background-color: #f0f9fb;
}
.about-2 .Tit {
  color: var(--color);
}
.about-2 .text {
  max-width: 800px;
  margin: 30px auto 30px;
}
.about-2 .rz {
  width: 40%;
  margin: auto;
}
.about-3 {
  padding-top: 120px;
  padding-bottom: 100px;
}
.about-3 .list ul {
  margin: -25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.about-3 .list li {
  padding: 25px;
}
.about-3 .list .box {
  padding: 5%;
  min-height: 370px;
  background-color: var(--color);
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.about-3 .list .box i {
  display: block;
  width: 25%;
  margin: 0 auto 10%;
}
.about-3 .list .box .name {
      font-size: 24px;
      line-height: 44px;
    font-family: 'KronaOne-Regular';
    color: #fff;
}
.about-3 .list .box::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color);
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.about-3 .list .box .mask {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18% 18% 0;
  -webkit-transition-duration: .3s;
  -moz-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
}
.about-3 .list .box .mask hr {
  border: none;
  margin: 20px 0 40px;
  border-bottom: 1px solid #fff;
}
.about-3 .list .box .mask .text {
  color: #fff;
  line-height: 1.5;
  min-height: 6em;
}
.about-3 .list .box.on::after {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.about-3 .list .box.on .mask {
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.about-3 .list .box.out::after {
  -webkit-transition-delay: .3s;
  -moz-transition-delay: .3s;
  transition-delay: .3s;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.about-3 .list .box.out .mask {
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  opacity: 0;
}
.about-4 {
  padding: 130px 0;
}
.about-4 .arrows span.arrow {
  display: inline-block;
  width: 43px;
  height: 43px;
  line-height: 41px;
  text-align: center;
  color: #c7c7c7;
  font-size: 16px;
  border: 1px solid currentcolor;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.about-4 .arrows span.arrow:hover {
  border-color: var(--color);
}
.about-4 .arrows span.arrow svg{
  vertical-align: middle;
}
.about-4 .arrows span.arrow svg path {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-4 .arrows span.arrow:hover svg path {
  fill: var(--color);
}
.about-4 .list {
  position: relative;
}
.about-4 .list::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  border-bottom: 1px solid #e1e1e1;
}
.about-4 .list ul {
  margin: 0 -60px;
}
.about-4 .list li {
  padding: 0 40px;
}
.about-4 .list .year {
  font-weight: bold;
  height: 70px;
}
.about-4 .list .dot {
  width: 17px;
  height: 17px;
  background-color: rgba(28, 111, 153, 0.3);
  border-radius: 50%;
  position: relative;
}
.about-4 .list .dot::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background-color: var(--color);
  border-radius: inherit;
}
.about-4 .list .name {
  font-weight: bold;
  margin-top: 30px;
}
.about-4 .list .text {
  margin-top: 20px;
}
.about-5 {
  padding: 140px 0;
  background-color: #f0f9fb;
}
.about-5 .left .images {
  position: relative;
  margin-right: 66px;
}
.about-5 .left .images .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #000000;
  transition: .5s ease;
}
.about-5 .left .images .img img {
  opacity: .3;
  transition: .5s ease;
}
.about-5 .left .images .img.img_2 {
  left: 33px;
  top: 33px;
  z-index: 2;  
}
.about-5 .left .images .img.img_2 img {
  opacity: .6;
}
.about-5 .left .images .img.img_1 {
  left: 66px;
  top: 66px;
  z-index: 3;
}
.about-5 .left .images .img.img_1 img {
  opacity: 1;
}
.about-5 .right {
  margin-top: 40px;
}
.about-5 .right ul {
  margin-top: 80px;
}
.about-5 .right li {
  cursor: pointer;
  padding-bottom: 20px;
}
.about-5 .right li:not(:last-child) {
  margin-bottom: 40px;
  border-bottom: 1px solid #c7c7c7;
}
.about-5 .right li .name {
  margin: 20px 0;
 font-family: 'KronaOne-Regular';
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.about-5 .right li .text {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #c7c7c7;
  display: none;
}
.about-5 .right li .text p {
  line-height: 32px;
  min-height: 4.5em;
}
.about-5 .right li.active .name {
  color: var(--color);
}
.about-6 {
  padding: 130px 0 140px;
  background-color: #f0f9fb;
}
.about-6 .list {
  margin-bottom: 70px;
}
.about-6 .list ul {
  margin: -15px;
}
.about-6 .list li {
  padding: 15px;
}
.about-6 .line {
  height: 4px;
  background-color: #d6d6d6;
  position: relative;
}
.about-6 .line em {
  position: absolute;
  width: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-color: var(--color);
}
.about-6 .line.active em {
  width: 100%;
  -webkit-transition: 5s linear;
  -moz-transition: 5s linear;
  transition: 5s linear;
}
.about-7 {
  padding: 90px 0;
}
@media (max-width: 1240px) {
  .about-3 .list .box .mask {
    padding: 20% 10% 0;
  }
  .about-3 .list .box .mask hr {
    margin: 20px 0;
  }
  .about-3 .list .box {
    min-height: 300px;
  }
  .about-3 .list ul {
    margin: -15px;
  }
  .about-3 .list li {
    padding: 15px;
  }
  .about-4 .list ul {
    margin: 0 -30px;
  }
  .about-4 .list li {
    padding: 0 30px;
  }
  .about-5 .left {
    padding: 0;
  }
  .about-5 .right {
    margin-top: 0;
  }
  .about-5 .right ul {
    margin-top: 40px;
  }
}
@media (max-width: 1024px) {
  .about-3 .list li{
    width: 100% !important;
  }
  .baseCateNav {
    margin-top: 30px;
  }
  .baseCateNav li {
    width: auto!important;
    padding: 0;
    margin: 10px;
  }
  .baseCateNav li a::before {
    display: none;
  }
  .baseCateNav li + li::before {
    display: none;
  }
  .about-1 {
    padding-top: 60px;
  }
  .about-1 .left {
    width: 100%!important;
    margin-bottom: 40px;
  }
  .about-1 .right {
    width: 100%!important;
    padding: 0;
  }
  .about-2 {
    padding-top: 60px;
  }
  .about-3 {
    padding-top: 60px;
  }
  .about-4 {
    padding: 60px 0;
  }
  .about-4 .list ul {
    margin: 0 -15px;
  }
  .about-4 .list li {
    padding: 0 15px;
  }
  .about-5 {
    padding: 60px 0;
  }
  .about-5 .left {
    display: none;
  }
  .about-5 .right {
    width: 100%!important;
    padding: 0;
  }
  .about-6 {
    padding: 60px 0;
  }
  .about-6 .list {
    margin-bottom: 35px;
  }
}
@media (max-width: 768px) {
  .about-5 .right li .name {
    margin: 10px 0;
  }
  .about-5 .right li {
    padding-bottom: 10px;
  }
  .about-5 .right li:not(:last-child) {
    margin-bottom: 20px;
  }
  .about-2 .box {
    padding: 60px 15px;
  }
  .about-2 .text {
    margin: 30px auto;
  }
  .about-2 .rz {
    width: 100%;
  }
}

.innovation-1 {
  padding-top: 110px;
}
.innovation-1 .left {
  vertical-align: middle;
  width: 55%;
}
.innovation-1 .right {
  padding-left: 70px;
  vertical-align: middle;
  width: 45%;
}
.innovation-1 .right .text {
  color: #111;
}
.innovation-2 {
  padding: 170px 0;
}
.innovation-2 .box {
  background: url(../images/innovation-1-bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  padding: 110px 75px 150px;
}
.innovation-2 .box .left {
  max-width: 590px;
}
.innovation-3 {
  padding: 100px 0 170px;
  position: relative;
}
.innovation-3::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 38%;
  background-color: #f0f9fb;
}
.innovation-3 .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}
.innovation-3 .left {
  width: 40%;
  padding-right: 80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.innovation-3 .left .text {
  margin: auto;
}
.innovation-3 .left .arrows span.arrow {
  display: inline-block;
  width: 43px;
  height: 43px;
  line-height: 41px;
  text-align: center;
  color: #c7c7c7;
  font-size: 16px;
  border: 1px solid currentcolor;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.innovation-3 .left .arrows span.arrow:hover {
  color: var(--color);
}
.innovation-3 .right {
  width: 60%;
}
.innovation-3 .right .tab ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: #fff;
}
.innovation-3 .right .tab li {
  text-align: center;
}
.innovation-3 .right .tab li a {
  padding: 10px;
}
.innovation-3 .right .tab li.active {
  background-color: var(--color);
  color: #fff;
}
.innovation-3 .right .list {
  overflow: hidden;
}
.innovation-3 .right .list > div {
  height: 0;
  visibility: hidden;
}
.innovation-3 .right .list > div.active {
  height: auto;
  visibility: visible;
}
.innovation-3 .right .list ul {
  margin-right: -25px;
}
.innovation-3 .right .list li {
  padding-right: 25px;
}
@media (max-width: 1240px) {
  .innovation-3 .right .tab li {
    width: 50%!important;
  }
  .innovation-3 .left {
    padding-right: 40px;
  }
  .innovation-2 .box {
    padding: 100px 50px;
  }
}
@media (max-width: 1024px) {
  .innovation-1 {
    padding-top: 60px;
  }
  .innovation-1 .left {
    width: 100%;
  }
  .innovation-1 .right {
    width: 100%;
    padding: 0;
    margin-top: 40px;
  }
  .innovation-2 {
    padding: 60px 0;
  }
  .innovation-2 .box {
    padding: 60px 25px;
  }
  .innovation-3 {
    padding: 60px 0;
  }
  .innovation-3 .box {
    display: block;
  }
  .innovation-3 .left {
    width: 100%;
    margin-bottom: 40px;
    padding: 0;
  }
  .innovation-3 .left .text {
    margin-top: 30px;
  }
  .innovation-3 .right {
    width: 100%;
  }
  .innovation-3::before {
    height: 60%;
  }
  .innovation-3 .left .arrows {
    display: none;
  }
}
@media (max-width: 500px) {
  .innovation-3 .right .tab li {
    width: 100% !important;
  }
}

.sustainability-1 {
  padding: 120px 0;
}
.sustainability-1 .Tit {
  background: url(../images/sustainability-1-bg.jpg) no-repeat center;
  background-size: cover;
  color: #fff;
  padding: 140px 60px;
}
.sustainability-1 .text {
  color: #777777;
  max-width: 1100px;
  margin: auto;
}
.sustainability-2 {
  padding: 90px 0;
  background-color: #f0f9fb;
}
.sustainability-2 .left {
  width: 60%;
  vertical-align: middle;
}
.sustainability-2 .right {
  width: 40%;
  vertical-align: middle;
}
.sustainability-3 {
  padding: 130px 0 200px;
}
.sustainability-3 .list {
  margin-top: 70px;
}
.sustainability-3 .list li:not(:last-child) {
  margin-bottom: 80px;
}
.sustainability-3 .list li:nth-child(even) .box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -moz-box-orient: horizontal;
  -moz-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.sustainability-3 .list li:nth-child(even) .box .right {
  padding-left: 0;
  padding-right: 80px;
}
.sustainability-3 .list .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.sustainability-3 .list .box .right {
  padding-left: 80px;
}
.sustainability-3 .list .box .right .text {
  color: #777777;
}
@media (max-width: 1024px) {
  .sustainability-1 {
    padding: 60px 0;
  }
  .sustainability-1 .Tit {
    padding: 90px 30px;
  }
  .sustainability-2 {
    padding: 60px 0;
  }
  .sustainability-2 .left {
    width: 100%;
  }
  .sustainability-2 .right {
    width: 100%;
    text-align: center;
    margin-top: 40px;
  }
  .sustainability-3 {
    padding: 60px 0;
  }
  .sustainability-3 .list .box .right {
    padding-left: 40px;
  }
  .sustainability-3 .list li:nth-child(even) .box .right {
    padding-right: 40px;
  }
  .sustainability-3 .list li:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .sustainability-3 .list .box {
    display: block;
  }
  .sustainability-3 .list .box .left {
    width: 100%;
  }
  .sustainability-3 .list .box .right {
    width: 100%;
    padding: 0!important;
    margin-top: 40px;
  }
}
@-webkit-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes ks {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
  10% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: .3;
  }
  to {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0;
  }
}



.cus-page .cus-1 {
  padding: 100px 0;
}
.cus-page .cus-1 .box {
  margin: -25px;
}
.cus-page .cus-1 .left {
  padding: 25px;
}
.cus-page .cus-1 .right {
  padding: 25px;
}
.cus-page .cus-1 .right .info {
  margin-top: 30px;
}
.cus-page .cus-1 .right .info li {
  overflow: hidden;
}
.cus-page .cus-1 .right .info .name {
  line-height: 60px;
  overflow: hidden;
  margin: 15px 0;
}
.cus-page .cus-1 .right .info .name .icon {
  font-size: 0;
}
.cus-page .cus-1 .right .info .name .icon img {
  vertical-align: middle;
}
.cus-page .cus-1 .right .info .name .p {
  padding-left: 60px;
  padding-right: 25px;
  line-height: 30px;
  margin-top: 14px;
}
.cus-page .cus-1 .right .info .name i {
  float: right;
  margin-top: 18px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.cus-page .cus-1 .right .info .name.active i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cus-page .cus-1 .right .info .content {
  background-color: #f0fafc;
  padding: 25px;
}
.cus-page .cus-1 .list {
  margin-top: 70px;
}
.cus-page .cus-1 .list ul {
  margin: -15px;
}
.cus-page .cus-1 .list li {
  padding: 15px;
}
.cus-page .cus-1 .list li > div .content {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background-color: #f0fafc;
  padding: 20px;
  -webkit-transition: .3s ease;
  -moz-transition: .3s ease;
  transition: .3s ease;
}
.cus-page .cus-1 .list li > div:hover .content {
  opacity: 1;
}
.cus-page.about-page .cus-2 {
  background-color: white;
}
.cus-page .cus-2 {
  background-color: #f0fafc;
  padding: 100px 0 80px;
}
.cus-page .cus-2 .list li .name {
  padding: 40px 0;
  color: #777777;
  border-bottom: 1px solid #777777;
}
.cus-page .cus-2 .list li .name i {
  float: right;
}
.cus-page .cus-2 .list li .name.active {
  color: #166993;
}
.cus-page .cus-2 .list li .name.active i {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cus-page .cus-2 .list li .content {
  padding: 50px 0;
}
.cus-page .cus-2 .list li .content .wrapper {
  margin-right: -80px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cus-page .cus-2 .list li .content .wrapper .item {
  width: 20%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 80px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}
.cus-page .cus-2 .list li .content .wrapper .item:not(:last-child) {
  background: url(../images/cus-2-arrow.png) no-repeat center right 15px;
}
.cus-page .cus-2 .list li .content .wrapper .item::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #d6dbdc;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.cus-page .cus-2 .list li .content .wrapper .item:hover::before {
  background-color: #1c6f99;
}
.cus-page .cus-2 .list li .content .wrapper .item .box {
  padding: 20px;
  border-radius: 25px;
  background: url(../images/cus-2-bg.png) no-repeat center;
  background-size: cover;
  -webkit-box-shadow: 0 12px 21px rgba(0, 0, 0, 0.13);
  box-shadow: 0 12px 21px rgba(0, 0, 0, 0.13);
}
.cus-page .cus-2 .list li .content .wrapper .item .box > div:last-child {
  line-height: 1.5;
  min-height: 3em;
}
.cus-page .cus-2 .list li .content .wrapper .item .box .num {
  font-size: 29px;
  font-weight: bold;
  color: #FFFFFF;
}
.cus-page .cus-3 {
  margin-top: 100px;
}
.cus-page .cus-3 .list {
  padding: 0 15%;
  margin-top: 50px;
  position: relative;
}
.cus-page .cus-3 .list span.arrow {
  position: absolute;
  top: 40%;
  width: 50px;
  height: 50px;
  line-height: 48px;
  text-align: center;
  color: #939393;
  border: 1px solid #939393;
  font-size: 20px;
  cursor: pointer;
}
.cus-page .cus-3 .list span.arrow.arrow_l {
  left: 0;
}
.cus-page .cus-3 .list span.arrow.arrow_r {
  right: 0;
}

.cus-page .support-2 .box {
  background-color: #f0fafc;
  border: none;
}

.cus-page .support-2 .form input,
.cus-page .support-2 .form textarea {
  background-color: #ffffff;
}

.cus-page .support-2 .form input[type='submit'] {
    background-color: var(--color);
}

@media (max-width: 1470px) {
  .cus-page .cus-2 .list li .content .wrapper .item:not(:last-child) {
    background-position: center right 0;
  }
  .cus-page .cus-2 .list li .content .wrapper {
    margin-right: -40px;
  }
  .cus-page .cus-2 .list li .content .wrapper .item {
    padding-right: 40px;
  }
}
@media (max-width: 1240px) {
  .cus-page .cus-2 .list li .content .wrapper .item:not(:last-child) {
    background: none;
  }
  .cus-page .cus-2 .list li .content .wrapper {
    margin-right: -15px;
  }
  .cus-page .cus-2 .list li .content .wrapper .item {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .cus-page .cus-2 .list li .content .wrapper .item .box {
    padding: 15px;
  }
}
@media (max-width: 1024px) {
  .cus-page .cus-1 {
    padding: 60px 0;
  }
  .cus-page .cus-1 .box {
    margin: -15px;
  }
  .cus-page .cus-1 .left {
    width: 100%;
    text-align: center;
    padding: 15px;
  }
  .cus-page .cus-1 .right {
    width: 100%;
    padding: 15px;
  }
  .cus-page .cus-1 .list {
    margin-top: 40px;
  }
  .cus-page .cus-2 {
    padding: 60px 0;
  }
  .cus-page .cus-2 .list li .content .wrapper .item {
    width: 33.33%;
  }
  .cus-page .cus-2 .list li .name {
    padding: 20px 0;
  }
  .cus-page .cus-2 .list li .content {
    padding: 20px 0;
  }
  .cus-page .cus-3 {
    margin-top: 60px;
  }
  .cus-page .cus-3 .list {
    margin-top: 40px;
  }
}
@media (max-width: 700px) {
  .cus-page .cus-2 .list li .content .wrapper .item {
    width: 50%;
  }
  .cus-page .cus-3 .list {
    padding: 0;
  }
  .cus-page .cus-3 .list span.arrow {
    position: static;
    display: inline-block;
  }
  .cus-page .cus-3 .arrows {
    margin-top: 30px;
  }
  .cus-page .cus-1 .list li > div .content {
    opacity: 1;
  }
  .font-36 {
    font-size: 24px;  
    line-height: 44px;
  }
}
@media (max-width: 500px) {
  .cus-page .cus-2 .list li .content .wrapper {
    margin-right: -5px;
  }
  .cus-page .cus-2 .list li .content .wrapper .item {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 5px;
    padding-left: 5px;
  }
  .cus-page .cus-2 .list li .content .wrapper .item .box {
    padding: 10px;
  }
}

.quality-2 {
  padding: 70px 0;
}
.quality-2 .desc {
  max-width: 860px;
  margin: auto;
  color: #777777;
}
.quality-2 .list ul {
  margin: -15px;
}
.quality-2 .list li {
  padding: 15px;
}
.quality-2 .list .img {
  overflow: hidden;
}
.quality-2 .list .img .name {
  padding: 10px;
  width: 100%;
  left: 0;
  bottom: 0;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.quality-2 .list .img:hover .name {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.quality-2 .arrows span.arrow {
  display: inline-block;
  width: 43px;
  height: 43px;
  line-height: 41px;
  text-align: center;
  color: #c7c7c7;
  font-size: 16px;
  border: 1px solid currentcolor;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.quality-2 .arrows span.arrow:hover {
  color: var(--color);
}
.quality-3 {
  padding: 70px 0;
}
.quality-3 .left .content {
  position: relative;
  padding: 63px 80px 80px;
}
.quality-3 .left .content::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: -160px;
  background-color: #f0f9fb;
}
.quality-3 .left .arrows {
  margin-top: -70px;
  margin-right: 80px;
  position: relative;
}
.quality-3 .left .arrows span.arrow {
  display: inline-block;
  width: 43px;
  height: 43px;
  line-height: 41px;
  text-align: center;
  color: #c7c7c7;
  font-size: 16px;
  border: 1px solid currentcolor;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
  cursor: pointer;
}
.quality-3 .left .arrows span.arrow:hover {
  color: var(--color);
}
.quality-3 .right {
  margin-top: 0px;
}
.quality-page .honor-1 .Tit {
  margin-bottom: 80px;
}
.quality-page .honor-1 .Tit p.fr {
  width: 60%;
  color: #777777;
  padding-top: 19px;
}
@media (max-width: 1470px) {
  .quality-3 .left .content {
    padding: 60px;
  }
  .quality-3 .right {
    margin-top: 60px;
  }
}
@media (max-width: 1024px) {
  .quality-2 {
    padding: 35px 0;
  }
  .quality-3 {
    padding: 35px 0;
  }
  .quality-3 .left {
    width: 100%!important;
  }
  .quality-3 .left .arrows {
    display: none;
  }
  .quality-3 .right {
    width: 100%!important;
    margin-top: 0;
  }
  .quality-3 .left .content::before {
    right: 0;
  }
  .quality-3 .left .content {
    padding: 30px;
  }
  .quality-page .honor-1 .Tit {
    margin-bottom: 40px;
  }
  .quality-page .honor-1 .Tit p.fr {
    width: 100%;
    margin-top: 30px;
  }
}

.prodet2-page .news-page {
    padding: 0
}

.prodet2-page .prodet-page {
    padding: 0
}

.prodet2-page .prodet-page .prodet-3 {
    padding: 0
}

.prodet2-page .prodet-page .prodet-2 {
    padding: 139px 0 140px
}



.prodet2-page .tit3 {
    font-size: 40px;
    font-family: var(--font);
    color: #000;
    line-height: 1;
}

.prodet2-page .title4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 80px
}

.prodet2-page .title4 .btn a {
    display: flex;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 2px solid #000
}

.prodet2-page .title4 .btn a span {
    display: inline-block;
    font-size: 16px;
    font-family: Montserrat;
    font-weight: 400;
    color: #000;
    line-height: 1;
    text-transform: uppercase
}

.prodet2-page .title4 .btn a i {
    display: inline-block;
    width: 39px;
    height: 7px;
    background: url(/template/en/images/bann3.png) no-repeat center;
    margin-left: 15px
}

.prodet2-page p.acp {
    margin-top: 25px;
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: #000;
    line-height: 2;
    opacity: .8;
    width: 89%
}

.prodet2-page .mbx {
    padding-top: 45px;
    font-size: 14px;
    font-family: var(--font);
    font-weight: 400;
    color: #000;
    line-height: 1.5
}

.prodet2-page .prodet2-1 {
    margin-top: 70px;
    margin-bottom: 80px;
}
.prodet2-page .prodet2-1 .top{
  display: flex;
  flex-wrap: wrap; 
}
.prodet2-page .prodet2-1 .top .left{
  display: flex;
  flex-wrap: wrap;
}

.prodet2-page .prodet2-1 .top .left .small {
    width:130px;
    margin-right: 30px;
}

.prodet2-page .prodet2-1 .top .left .small ul {
    margin: -8px 0;
}

.prodet2-page .prodet2-1 .top .left .small ul li {
    padding: 8px 0;
}
.prodet2-page .prodet2-1 .top .left .small ul li .img {
    background: #f6f6f6;
    width: 130px;
    padding: 1px;
}
.prodet2-page .prodet2-1 .top .left .small ul li .img img{
    border: 1px solid #d7d7d7;
}
.prodet2-page .prodet2-1 .top .left .big{
  width: calc(100% - 180px)
}
.prodet2-page .prodet2-1 .top .left .big ul li .img {
    background: #f6f6f6;
}
.prodet2-page .prodet2-1 .top .left .big ul li .img img{
    border: 1px solid #d7d7d7;
}
.prodet2-page .prodet2-1 .top .right {
    padding-left: 70px;
    /*margin-top: 45px;*/
}

.prodet2-page .prodet2-1 .top .right span.ads {
        display: inline-block;
    font-size: 16px;
    /* font-family: var(--font); */
    font-weight: 600;
    color: #00378c;
    line-height: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.prodet2-page .prodet2-1 .top .right h1 {
    font-size: 26px;
    font-family: var(--font);
    color: #333;
    line-height: 1.6;
    margin-top: 10px;
    /*text-transform: uppercase*/
}

.prodet2-page .prodet2-1 .top .right .tit5 {
    font-size: 24px;
    font-family: var(--font);
    font-weight: 500;
    color: #000;
    line-height: 44px;
    margin-top: 48px
}

.prodet2-page .prodet2-1 .top .right .cona {
    font-size: 16px;
    /*font-family: var(--font);*/
    font-weight: 400;
    color: #000;
    line-height: 1.8;
    opacity: .8;
    margin-top: 20px;
    max-height: 320px;
    padding-right: 10px;
    margin-bottom: 30px;
    overflow: auto;
}

.prodet2-page .prodet2-2 {
    margin-top: 80px;
    margin-bottom: 60px;
    
}
.prodet2-page .prodet2-2 .det{
  font-size: 18px;
  line-height: 32px;
}
.prodet2-page .prodet2-2 .det{
  width: 100%;
  overflow-x: auto;
}
.prodet2-page .prodet2-2 .det table{
  width: 100% !important;
  height: auto;
}
.prodet2-page .prodet2-2 .det table tr td{
  /*min-width: 200px !important;*/
  white-space: nowrap;
}
.prodet2-page .prodet2-2 .det table tr:first-child{
  background-color:var(--color);
  color: white !important;
}
.prodet2-page .prodet2-2 .det table tr:nth-child(n + 2){
  background-color:#f7f7f7;
}
.prodet2-page .prodet2-2 .list {
    margin-top: 60px
}

.prodet2-page .prodet2-2 .list ul {
    align-items: center
}

.prodet2-page .prodet2-3 {
    margin-top: 100px
}

.prodet2-page .prodet2-3 .options {
    margin-top: 65px
}

.prodet2-page .prodet2-3 .options ul {
    margin: 0 -5px
}

.prodet2-page .prodet2-3 .options ul li {
    padding: 0 5px
}

.prodet2-page .prodet2-3 .options ul li h4 {
    background: #f0f0f0;
    border-radius: 10px;
    text-align: center;
    font-size: 22px;
    font-family: var(--font);
    font-weight: 700;
    color: #000;
    line-height: 1;
    padding: 45px 0;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s
}

.prodet2-page .prodet2-3 .options ul li h4:hover {
    background: #0f42a1;
    color: #fff
}

.prodet2-page .prodet2-4 .top ul {
    margin: 0 -17px
}

.prodet2-page .prodet2-4 .top ul li {
    padding: 0 17px;
    text-align: center;
    width: 12.5%;
    margin-top: 50px
}

.prodet2-page .prodet2-4 .top ul li .tit4,.prodet2-page .prodet2-5 .top ul li .tit4 {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    opacity: .8;
    margin-top: 5px
}

.prodet2-page .prodet2-5 .top ul {
    margin: 0 -24px
}

.prodet2-page .prodet2-5 .top ul li {
    padding: 0 24px;
    text-align: center;
    margin-top: 50px;
    width: 16.6666%;
    position: relative
}

.prodet2-page .prodet2-5 .top ul li .tit5 {
    font-size: 14px;
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.5;
    margin-top: 35px;
    color: #000;
    opacity: .8
}

.prodet2-page .prodet2-5 .top ul li .img {
    position: relative
}

.prodet2-page .prodet2-5 .top ul li .img .play {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 42px;
    height: 42px;
    background: url(/template/en/images/oem-61.png) no-repeat center
}

.prodet2-page .prodet2-6 .top ul {
    margin: 0 -30px
}

.prodet2-page .prodet2-6 .top ul li {
    padding: 0 30px;
    text-align: center;
    width: 20%;
    margin-top: 50px
}

.prodet2-page .btnac {
    margin-top: 84px;
    text-align: center
}

.prodet2-page .btnac a {
    width: 718px;
    height: 67px;
    background: #0f42a1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-family: var(--font);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    border-radius: 34px;
    margin: 0 auto
}

.prodet2-page .prodet2-7 {
    padding: 100px 0 
}

.prodet2-page .prodet2-7 .title5 {
    text-align: center
}

.prodet2-page .prodet2-7 .title5 .tit3 {
    text-transform: uppercase
}

.prodet2-page .prodet2-7 .title5 p {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: #000;
    line-height: 30px;
    opacity: .8;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 30px
}

.prodet2-page .prodet2-7 .list {
    margin-top: 70px
}

.prodet2-page .prodet2-7 .list ul li .box .img {
    height: 60px
}

.prodet2-page .prodet2-7 .list ul li .box .tit4 {
    font-size: 24px;
    font-family: var(--font);
    font-weight: 700;
    color: #000;
    line-height: 44px;
    margin-top: 30px
}

.prodet2-page .prodet2-7 .list ul li .box .cona {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: #666;
    line-height: 2;
    margin-top: 20px
}

.prodet-page .mbx {
    font-size: 14px;
    font-family: var(--font);
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin-top: 30px
}

.prodet-page .prodet-1 {
    padding-top: 110px
}

.prodet-page .prodet-1 .container {
    width: 1520px
}

.prodet-page .prodet-1 .top .left {
    width: 68%;
    padding-left: 56px
}

.prodet-page .prodet-1 .top .left .img-box {
    background: #eee
}

.prodet-page .prodet-1 .top .right {
    width: 32%;
    padding-left: 65px
}

.prodet-page .prodet-1 .top .right span {
    display: inline-block;
    font-size: 16px;
    font-family: var(--font);
    font-weight: 500;
    color: #00378c;
    line-height: 1;
    margin-top: 39px;
    text-transform: uppercase;
    letter-spacing: 3.5px
}

.prodet-page .prodet-1 .top .right .asli {
    position: relative;
    padding-bottom: 30px
}

.prodet-page .prodet-1 .top .right .asli:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #333;
    opacity: .2
}

.prodet-page .prodet-1 .top .right h1 {
    position: relative;
    font-size: 20px;
    font-family: var(--font);
    font-weight: 700;
    color: #333;
    line-height: 1.5;
    padding: 15px 0 10px;
    text-transform: uppercase
}

.prodet-page .prodet-1 .top .right .tit4 {
    font-size: 18px;
    font-family: var(--font);
    font-weight: 700;
    color: #000;
    line-height: 1;
    padding: 22px 0
}

.prodet-page .prodet-1 .top .right .profea {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 300;
    color: rgba(0,0,0,.8);
    line-height: 1.8
}

.prodet-page .prodet-1 .top .right .prointo {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: rgba(0,0,0,.8);
    line-height: 1.5
}

.prodet-page .prodet-1 .top .right .btn {
    margin-top: 85px
}

.prodet-page .prodet-1 .top .right .btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #000
}

.prodet-page .prodet-1 .top .right .btn a p {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 700;
    color: #000;
    line-height: 1
}

.prodet-page .prodet-1 .top .right .btn a i {
    display: inline-block;
    width: 39px;
    height: 7px;
    background: url(/template/en/images/bann3.png) no-repeat center
}

.prodet-page .prodet-2 {
    padding: 40px 0 120px
}


.prodet-page .prodet-2 span {
    display: block;
    font-size: 36px;
    font-family: var(--font);
    color: #00378c;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}

.prodet-page .prodet-2 .list {
    margin-top: 48px
}

.prodet-page .prodet-2 .list ul li .box {
    background: #efefef;
    border: 2px solid #e2e2e2
}

.prodet-page .prodet-2 .list ul li .box .img {
    margin: 11px;
    position: relative;
    margin-bottom: 0;
    text-align: center;
    background: #eee
}

.prodet-page .prodet-2 .list ul li .box .img .btn {
    position: absolute;
    left: 50%;
    width: 74%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 14px;
    text-align: center
}

.prodet-page .prodet-2 .list ul li .box .img .btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 28px;
    background: #efefef;
    /*-webkit-box-shadow: 0px 7px 8px 0px rgba(0,0,0,.05);
    box-shadow: 0px 7px 8px 0px rgba(0,0,0,.05);*/
    border-radius: 5px;
    -webkit-transition: .3s;
    transition: .3s;
    justify-content: center;
}

.prodet-page .prodet-2 .list ul li .box .img .btn a p {
    font-size: 16px;
    font-family: var(--font);
    /*font-weight: 700;*/
    color: #000;
    line-height: 30px;
    text-transform: uppercase
}

.prodet-page .prodet-2 .list ul li .box .img .btn a i {
    display: inline-block;
    font-size: 24px;
    font-family: var(--font);
    font-weight: 700;
    color: #000;
    line-height: 44px;
    margin-left: 26px
}

.prodet-page .prodet-2 .list ul li .box .img .btn a:hover {
    background: #0f42a1
}

.prodet-page .prodet-2 .list ul li .box .img .btn a:hover p,.prodet-page .prodet-2 .list ul li .box .img .btn a:hover i {
    color: #fff
}

.prodet-page .prodet-2 .list ul li .box .tit {
    font-size: 20px;
    /*font-family: var(--font);*/
    font-weight: 700;
    color: #333;
    line-height: 36px;
    padding: 20px 45px 10px;
    text-align: center;
    height: 100px
}

.prodet-page .prodet-2 .list ul li .box .tit:hover {
    color: #0f42a1
}

.prodet-page .prodet-3 {
    padding-bottom: 172px
}


.prodet-page .prodet-3 .top .left {
    margin-top: 25px;
    width: 43%
}

.prodet-page .prodet-3 .top .left .tit {
    font-size: 40px;
    font-family: var(--font);
    color: #1d1d1d;
    line-height: 1.2
}

.prodet-page .prodet-3 .top .left p {
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: #1d1d1d;
    line-height: 2;
    margin-top: 25px
}

.prodet-page .prodet-3 .top .right {
    width: 57%;
    padding-left: 125px
}

.prodet-page .prodet-3 .top .right .form ul li {
    margin-bottom: 20px
}

.prodet-page .prodet-3 .top .right .form ul li:last-child {
    margin-bottom: 0
}

.prodet-page .prodet-3 .top .right .form ul li input[type=text] {
    width: 100%;
    height: 58px;
    border: none;
    border-bottom: 2px solid #000;
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: #000;
    line-height: 30px;
}

.prodet-page .prodet-3 .top .right .form ul li input::-webkit-input-placeholder {
    color: #000
}

.prodet-page .prodet-3 .top .right .form ul li input:-moz-placeholder {
    color: #000
}

.prodet-page .prodet-3 .top .right .form ul li input::-moz-placeholder {
    color: #000
}

.prodet-page .prodet-3 .top .right .form ul li input:-ms-input-placeholder {
    color: #000
}

.prodet-page .prodet-3 .top .right .form ul li label {
    display: block;
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: #000;
    line-height: 1;
    padding-top: 25px
}

.prodet-page .prodet-3 .top .right .form ul li textarea {
    width: 100%;
    height: 168px;
    margin-top: 7px;
    background: #fff;
    border: 1px solid #dadada;
    font-size: 14px;
    font-family: var(--font);
    font-weight: 400;
    color: #9d9d9d;
    line-height: 2;
    padding-left: 14px;
    padding-top: 5px
}

.prodet-page .prodet-3 .top .right .form ul li input[type=submit] {
    width: 230px;
    height: 49px;
    background: #0f42a1;
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--font);
    font-weight: 400;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    border: none;
    -webkit-transition: .3s;
    transition: .3s;
    margin-top: 14px
}

.prodet-page .prodet-3 .top .right .form ul li input[type=submit]:hover {
    background: #e37600
}

.product-page .mbx {
    font-size: 14px;
    font-family: var(--font);
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin-top: 40px
}

.product-page .product-1 {
    padding: 40px 0 100px
}

.product-page .product-1 .top .left {
    width: 22%
}

.product-page .product-1 .top .left #product-list li {
    position: relative;
    border: 1px solid #e2e2e2;
    border-radius: 5px;
    height: auto;
    padding: 25px 30px;
    display: flex;
    align-items: center;
}

.product-page .product-1 .top .left #product-list li i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #000;
    cursor: pointer
}

.product-page .product-1 .top .left #product-list li a {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    line-height: 32px;
    position: relative;
}
.product-page .product-1 .top .left #product-list li.active > a {
  color:var(--color);
}
.product-page .product-1 .top .left #product-list li ul.children{
  margin-top: 0;
  transition: all 0.5;
}
.product-page .product-1 .top .left #product-list li.active ul.children {
    margin-top: 20px
}

.product-page .product-1 .top .left #product-list li ul.children li {
    margin-bottom: 15px;
    padding: 0;
    border: none;
    border-radius: 0
}

.product-page .product-1 .top .left #product-list li ul.children li a {
    font-weight: 400;
    color: rgba(0,0,0,.8);
    text-transform: capitalize
}

.product-page .product-1 .top .left #product-list li ul.children li:last-child {
    margin-bottom: 0
}

.product-page .product-1 .top .right {
    width: 78%;
    padding-left: 60px
}

.product-page .product-1 .top .right .cate-img {
    position: relative;
    padding-bottom: 480px;
    color: black;
    padding-left: 80px;
    margin-bottom: 40px;
    background-color: #1d66a4;
}

.product-page .product-1 .top .right .cate-img .mask {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 100%;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.product-page .product-1 .top .right .cate-img .mask .tit {
    font-size: 36px;
    font-family: var(--font);
    font-weight: 400;
    color: #fff;
    line-height: 1.6
}

.product-page .product-1 .top .right .cate-img .mask .cona {
    font-size: 16px;
    /*font-family: var(--font);*/
    font-weight: 400;
    color: #fff;
    line-height: 2;
    opacity: .7;
    margin-top: 20px;
    max-height: 220px;
    padding-right: 20px;
    overflow-y: auto;
    margin-bottom: 20px
}

.product-page .product-1 .top .right .bottom ul {
    margin: 0 -16px
}

.product-page .product-1 .top .right .bottom ul li {
    padding: 0 16px;
    margin-bottom: 62px
}

.product-page .product-1 .top .right .bottom ul li .box {
    background: #f1f1f1;
    border: 2px solid #e2e2e2
}

.product-page .product-1 .top .right .bottom ul li .box .img {
    margin: 11px;
    position: relative;
    padding-bottom: 0;
    background: #fff;
    padding-bottom: 40px
}

.product-page .product-1 .top .right .bottom ul li .box .img .btn {
    position: absolute;
    left: 50%;
    width: 74%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 14px;
    text-align: center
}

.product-page .product-1 .top .right .bottom ul li .box .img .btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 28px;
    background: #f1f1f1;
    /*-webkit-box-shadow: 0px 7px 8px 0px rgba(0,0,0,.05);
    box-shadow: 0px 7px 8px 0px rgba(0,0,0,.05);*/
    border-radius: 5px;
    -webkit-transition: .3s;
    transition: .3s;
    justify-content: center;
}

.product-page .product-1 .top .right .bottom ul li .box .img .btn a p {
    font-size: 16px;
    font-family: var(--font);
    /*font-weight: 700;*/
    color: #000;
    line-height: 30px;
    text-transform: uppercase
}

.product-page .product-1 .top .right .bottom ul li .box .img .btn a i {
    display: inline-block;
    font-size: 24px;
    font-family: var(--font);
    font-weight: 700;
    color: #000;
    line-height: 44px;
    margin-left: 26px
}

.product-page .product-1 .top .right .bottom ul li .box .img .btn a:hover {
    background: #1d66a4
}

.product-page .product-1 .top .right .bottom ul li .box .img .btn a:hover p,.product-page .product-1 .top .right .bottom ul li .box .img .btn a:hover i {
    color: #fff
}

.product-page .product-1 .top .right .bottom ul li .box .tit {
    font-size: 20px;
    /*font-family: var(--font);*/
    font-weight: 700;
    color: #333;
    line-height: 36px;
    padding: 10px 10px 10px;
    text-align: center;
    height: 100px
}

.product-page .product-1 .top .right .bottom ul li .box .tit:hover {
    color: #0f42a1
}
.download-page{
  padding: 120px 0;
}

.download-page span.h1 {
    font-weight: 700;
    font-size: 60px;
    color: var(--color);
    display: block;
    margin-bottom: .5em;
}

.download-page form {
    font-size: 18px;
    margin-bottom: 3em;
    max-width: 37.77777778em;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: 3.88888889em
}

.download-page form input {
    width: 100%;
    border: none;
    font-weight: 400;
    background-color: transparent;
    border-bottom: 1px solid #b8b8b8
}

.download-page form input::-webkit-input-placeholder {
    color: rgba(0,0,0,.4)
}

.download-page form input:-moz-placeholder {
    color: rgba(0,0,0,.4)
}

.download-page form input::-moz-placeholder {
    color: rgba(0,0,0,.4)
}

.download-page form input:-ms-input-placeholder {
    color: rgba(0,0,0,.4)
}

.download-page form input::placeholder {
    color: rgba(0,0,0,.4)
}

.download-page form button {
    background: 0 0;
    border: none;
    border-bottom: 1px solid #b8b8b8
}

.download-page .downloadList {
    font-size: 30px;
    font-weight: 400
}

.download-page .downloadList ul li {
    padding: 1em 0;
    font-size: 24px;
    line-height: 44px;
    border-bottom: 1px solid #e5e5e5;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1em;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}

.download-page .downloadList ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 1em
}

.download-page .downloadList ul li a[download] {
    width: auto
}

.download-page .downloadList ul li a i {
    height: 1.4em;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.download-page .downloadList ul li a i img {
    max-width: 1.53333333em
}

.download-page .downloadList ul li a:hover {
    color: var(--color)
}
@media (max-width: 1600px) {
    .download-page .downloadList {
        font-size: 24px
    }
    .download-page span.h1{
        font-size: 48px
    }

    .download-page form {
        font-size: 16px
    }
}
@media (max-width: 1450px) {
      .download-page span.h1{
        font-size: 24px;
        line-height: 44px;
    }
        .download-page {
        padding: 70px 0 150px
    }

    .download-page form {
        margin-bottom: 1.5em
    }
    .prodet2-page .prodet2-1 .top .left .big ul li .img img{
      height: 490px;
    }
    .prodet2-page .prodet2-1 .top .right h1 {
    font-size: 24px;
    line-height: 44px;
  }
  .prodet2-page .prodet2-1 .top .right .m-link{
    margin-top: 30px;
  }
  .prodet2-page .prodet2-1 .top .right {
    padding-left: 40px;
  }
}
@media (max-width: 1250px) {
     .download-page span.h1{
        font-size: 28px;
        line-height: 1.6;
    }
    .download-page form{
      font-size: 14px;
    }
}
@media (max-width: 1200px) {
  .prodet2-page .prodet2-1 .top .left .big ul li .img img{
    height: auto;
  }
  .prodet2-page .prodet2-2 .det{
    overflow-x: auto;
    padding-bottom: 30px;
  }
  .prodet2-page .prodet2-2 .det table{
    table-layout: unset;
  }
  .prodet2-page .prodet2-2 .det table tr td{
    min-width: 200px;
  }
  .prodet2-page .prodet2-1 .top .right {
    padding-left: 0;
    margin-top: 60px;
  }
  .prodet2-page .prodet2-1 .top .right .cona{
    max-height: unset;
    overflow: unset;
  }
}
@media (max-width: 700px) {
  .download-page .downloadList{
    font-size: 18px;
  }
  .prodet2-page .prodet2-1 .top .left .small {
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
  }
  .prodet2-page .prodet2-1 .top .left .big {
    width: 100%;
  }
  .prodet2-page .prodet2-1 .top .left {
    flex-direction: column-reverse;
  }
}

/* mobile-product-nav */
@media screen and (max-width: 1000px) {
	#seo_about ._left,
	#seo_about ._right{
		width: 100%!important;
	}
  #index-body .category .category-content ul li .box .text h4{
    min-height: 4.9em;
  }
  #index-body .news .news-content ul li .box h4{
    min-height: 5.1em;
  }
	
    #cp-Nav {
    	display: block;
    }
    #cp-Nav .nav {
    	padding: 0 15px;
    }
    #cp-Nav .nav h3.title {
    	font-size: 18px;
    	font-weight: bold;
    	padding: 8px 10px;
    	background: #c7a484;
    	border-radius: 5px;
    }
    #cp-Nav .nav i.mask {
    	width: 100%;
    	height: 100%;
    	position: fixed;
    	top: 0;
    	left: 0;
    	z-index: 230;
    	background: rgba(0, 0, 0, 0.2);
    }
    #cp-Nav .nav>ul {
    	display: none;
    }
    #cp-Nav .nav ul {
    	position: fixed;
    	top: 10%;
    	max-height: 80%;
    	left: 5%;
    	width: 90%;
    	padding: 20px;
    	border-radius: 5px;
    	background: white;
    	z-index: 300;
    	font-size: 16px;
    	overflow: auto;
    }
    #cp-Nav .nav ul ul {
    	padding: 0 10px;
    	font-size: 14px;
    	position: static;
    	max-height: none;
    	width: 100%;
    	margin: 10px 0;
    }
    #cp-Nav .nav ul li a {
    	display: block;
    	padding: 5px 0;
    	line-height: 28px;
    }
}
/* seo-base-css-end */

.search-box {
    line-height: normal;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
}
.search-box form {
    position: absolute;
    top: 45%;
    left: 50%;
    width: 60%;
    margin-left: -30%;
}
.search-box form input {
    background: none;
    outline: none;
    border: none;
}
.search-box form input[type="text"] {
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    font-size: 26px;
    color: #000;
    padding: 10px 0;
}
.search-box form input[type="submit"] {
    width: 22px;
    height: 22px;
    background: url(../images/tc-zoom.png) no-repeat;
    position: absolute;
    right: 15px;
    top: 20px;
}
.search-box form input[type="submit"]:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
}
.search-box .close {
    width: 30px;
    height: 30px;
    background: url(../images/close.png) no-repeat;
    position: absolute;
    right: 25px;
    top: 15px;
    cursor: pointer;
}

table {
    width: 100%;
    margin-bottom: 20px;
    word-break: break-word;
}

table td,
table th {
    padding: 5px 10px;
    border: 1px solid #404040;
}

/*table td:first-child {
    color: #2d2d2d;
}

table td:last-child {
    color: #666;
}*/




    .seoPublic .title {
        font-size: 40px;
        font-family: var(--font);
        line-height: 1.4;
        margin-bottom: 1em;
    }

    .seoPublic > div {
        padding: 60px 0;
    }

    .seoPublic > div:nth-child(odd) {
        background: #fafafa;
    }

    .seoPublic .Auxil-about .box {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

    .seoPublic .Auxil-about .box .left {
        width: 47%;
    }

    .seoPublic .Auxil-about .box .left .img {
        height: 100%;
        background-size: cover;
        background-position: center center;
        display: block;
    }

    .seoPublic .Auxil-about .box .right {
        width: 60%;
        padding-left: 5%;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .seoPublic .Auxil-about .box .right div.h3 {
        font-size: 32px;
        font-family: var(--font);
        line-height: 1.6;
        margin-bottom: 1em;
    }

    .seoPublic .Auxil-about .box .right .text {
            font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding-right: 20px;
    max-height: 345px;
    overflow: auto;
    }

    .seoPublic .Auxil-honor .list ul {
        margin: -10px;
    }

    .seoPublic .Auxil-honor .list ul li {
        padding: 10px;
    }

    .seoPublic .Auxil-honor .list ul li a {
        display: block;
    }

    .seoPublic .Auxil-honor .list ul li a img {
        width: 100%;
    }

    .seoPublic .Auxil-news .list ul {
        margin: -13px;
    }

    .seoPublic .Auxil-news .list ul li {
        padding: 13px;
    }

    .seoPublic .Auxil-news .list ul li a.img-box {
        display: block;
        height: 240px;
        background-size: cover;
        background-position: center center;
    }

    .seoPublic .Auxil-news .list ul li .content {
        margin-top: 10px;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6 {
        font-size: 22px;
        line-height: 40px;
        min-height: 3.7em;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-news .list ul li .content div.h6:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-news .list ul li .content time {
        font-size: 14px;
        line-height: 2;
        margin-top: .5em;
        display: block;
    }
.font-48{
  line-height: 1.2;
}
    .seoPublic .Auxil-news .list ul li .content p {
        font-weight: 300;
        font-size: 16px;
        line-height: 30px;
        margin: 1em 0;
    }
.font-45{
  font-size: 44px;
  line-height: 1.2;
}
    .seoPublic .Auxil-news .list ul li .content a.link {
        font-weight: 300;
        font-size: 16px;
        text-transform: uppercase;
        line-height: 30px;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        border-bottom: 1px solid transparent;
        display: inline-block;
    }

    .seoPublic .Auxil-news .list ul li .content a.link:hover {
        border-color: var(--color);
        color: var(--color);
    }

    .seoPublic .Auxil-form .form ul {
        margin: -10px;
    }

    .seoPublic .Auxil-form .form ul li {
        padding: 10px;
    }

    .seoPublic .Auxil-form .form ul li input,
    .seoPublic .Auxil-form .form ul li textarea {
        display: block;
        width: 100%;
        border: 1px solid #eee;
        font-size: 16px;
        line-height: 30px;
        padding: 8px 15px;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-form .form ul li textarea {
        height: 100px;
    }

    .seoPublic .Auxil-form .form ul li input:focus,
    .seoPublic .Auxil-form .form ul li textarea:focus {
        border-color: var(--color);
    }

    .seoPublic .Auxil-form .form ul li.wid-100 {
        width: 100%;
    }

    .seoPublic .Auxil-form .form ul li input[type="submit"] {
        width: auto;
        display: inline-block;
        padding-left: 25px;
        padding-right: 25px;
        background: var(--color);
        color: whitesmoke;
        border: none;
    }

    .seoPublic .Auxil-form .form ul li input[type="submit"]:hover {
        background: #222;
    }

    .seoPublic .seoIndustry .text {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
    }

    .seoPublic .text a {
        color: var(--color);
    }

    .seoPublic .text a:hover {
        text-decoration: underline;
    }

    .seoPublic .Auxil-through {
        padding: 15px 0;
        background: none !important;
    }

    .seoPublic .Auxil-through a {
        display: inline-block;
        line-height: 40px;
        height: 40px;
        padding: 0 25px;
        font-size: 14px;
        color: black;
        border: 1px solid #eee;
        background: #f8f8f8;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-through a:hover {
        background: var(--color);
        color: white;
    }

    .seoPublic .Auxil-related .list ul {
        margin: -20px -25px;
    }

    .seoPublic .Auxil-related .list ul li {
        padding: 20px 25px;
    }

    .seoPublic .Auxil-related .list ul li .box {
        display: block;
        background: white;
        -o-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        -webkit-box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
        box-shadow: 0 0 12px rgba(125, 125, 125, 0.5);
    }

    .seoPublic .Auxil-related .list ul li .box a.img-box {
        display: block;
    }

    .seoPublic .Auxil-related .list ul li .box .content {
        display: block;
        padding: 20px;
        text-align: center;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3 {
        font-size: 22px;
        color: #111;
        font-weight: 500;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
    }

    .seoPublic .Auxil-related .list ul li .box .content div.h3:hover {
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content p {
        display: block;
        font-size: 16px;
        color: #888;
        line-height: 1.6;
        font-weight: 400;
        margin: .5em 0;
        height: 4.8em;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more {
        display: inline-block;
        vertical-align: middle;
        line-height: 40px;
        height: 40px;
        padding: 0 20px;
        border: 1px solid var(--color);
        font-size: 16px;
        font-weight: 700;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        color: var(--color);
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more i {
        margin-left: 5px;
    }

    .seoPublic .Auxil-related .list ul li .box .content a.more:hover {
        color: white;
        background: var(--color);
    }

    @media screen and (max-width: 1400px) {
        .seoPublic .title {
            font-size: 28px;
            margin-bottom: 1.5em;
        }

        .seoPublic .Auxil-about .box .right div.title,
        .seoPublic .Auxil-related .list ul li .box .content div.h3 {
            font-size: 20px;
        }

        .seoPublic .Auxil-form .form ul li input,
        .seoPublic .Auxil-form .form ul li textarea,
        .seoPublic .Auxil-about .box .right .text,
        .seoPublic .Auxil-news .list ul li .content p,
        .seoPublic .seoIndustry .text,
        .seoPublic .Auxil-related .list ul li .box .content p {
            font-size: 16px;
            line-height: 30px;
        }

        .seoPublic .Auxil-news .list ul li .content div.h6 {
            font-size: 18px;
            line-height: 32px;
        }

        .seoPublic .Auxil-related .list ul li .box .content a.more {
            font-size: 14px;
            line-height: 34px;
            height: 34px;
            padding: 0 15px;
        }

        .seoPublic .Auxil-related .list ul li {
            padding: 15px;
        }

        .seoPublic .Auxil-related .list ul {
            margin: -15px;
        }
    }

    @media screen and (max-width: 1000px) {
        .seoPublic .title {
            font-size: 24px;
            line-height: 44px;
            margin-bottom: 1em;
        }

        #cp-Nav {
            display: block;
        }

        #cp-Nav .nav {
            padding: 0 15px;
        }

        #cp-Nav .nav div.title {
            font-size: 18px;
            line-height: 32px;
            font-weight: bold;
            padding: 8px 10px;
            background: var(--color);
            border-radius: 5px;
            color: white;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
         #cp-Nav .nav div.title::after {
           content:"\f107";
           font-family: 'FontAwesome';
           color:white;
           font-size: 20px;
         }

        #cp-Nav .nav i.mask {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 230;
            background: rgba(0, 0, 0, 0.2);
        }

        #cp-Nav .nav > ul {
            display: none;
        }

        #cp-Nav .nav ul {
            position: fixed;
            top: 10%;
            max-height: 80%;
            left: 5%;
            width: 90%;
            padding: 20px;
            border-radius: 5px;
            background: white;
            z-index: 300;
            font-size: 16px;
            line-height: 30px;
            overflow: auto;
        }

        #cp-Nav .nav ul ul {
            padding: 0 10px;
            font-size: 14px;
            position: static;
            max-height: none;
            width: 100%;
            margin: 10px 0;
        }

        #cp-Nav .nav ul li a {
            display: block;
            padding: 5px 0;
            line-height: 28px;
        }

        .seoPublic .Auxil-about .box {
            display: block;
        }

        .seoPublic .Auxil-about .box .right {
            width: 100%;
            padding: 0;
            margin-top: 20px;
        }

        .seoPublic .Auxil-about .box .left {
            width: 100%;
            padding: 0;
        }

        .seoPublic .Auxil-about .box .left .img {
            height: 300px;
        }

        .seoPublic .Auxil-about .box .right div.h3 {
            font-size: 18px;
            line-height: 32px;
        }

        .seoPublic > div {
            padding: 30px 0;
        }
        .seoPublic .Auxil-about .box .right .text {
            max-height: none;
        }
    }
.lg-page ul{
    margin: 0 -15px;
}
.lg-page ul li{
    padding: 0 15px;
    margin: 15px 0;
}

.faq-page .faq-1 {
  padding: 85px 0 140px;
}
.faq-page .container {
  width: 1230px;
}
.faq-page .tit {
  font-size: 48px;
  font-family: var(--font);
  font-weight: 400;
  color: #333333;
  text-align: center;
  line-height: 1;
}
.faq-page .top {
  margin-top: 45px;
}
.faq-page .top ul li {
  margin-bottom: 12px;
}
.faq-page .top ul li .tit4 {
  font-size: 18px;
  font-family: var(--font);
  font-weight: bold;
  color: #333333;
  line-height: 1.5;
  padding: 18px 40px;
  background: #EEEEEE;
  cursor: pointer;
}
.faq-page .top ul li .text {
  display: none;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  color: #666666;
  line-height: 24px;
  padding: 18px 40px;
}

.news-page {
  padding: 50px 0;
}
.news-page .news-1 .top ul {
  margin: 0 -20px;
}
.news-page .news-1 .top ul li {
  margin: 30px 0;
  padding: 0 20px;
}
.news-page .news-1 .top ul li .box {
  background: #FFFFFF;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news-page .news-1 .top ul li .box .img {
  overflow: hidden;
}
.news-page .news-1 .top ul li .box .img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news-page .news-1 .top ul li .box .img:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news-page .news-1 .top ul li .box .con {
  padding: 40px 25px;
}
.news-page .news-1 .top ul li .box .con .tit {
  font-size: 20px;
  font-family: var(--font);
  /*font-weight: bold;*/
  color: #000000;
  line-height: 2;
  text-transform: capitalize;
}
.news-page .news-1 .top ul li .box .con .tit:hover {
  color: #0f42a1;
}
.news-page .news-1 .top ul li .box .con .cona {
  font-size: 18px;
  /*font-family: var(--font);*/
  font-weight: 400;
  color: #000;
  line-height: 1.8;
  margin: 20px 0 30px;
}
.news-page .news-1 .top ul li .box .con .time p {
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  color: #000000;
  line-height: 30px;
}
.news-page .news-1 .top ul li:hover .box {
  -webkit-box-shadow: 0px 9px 21px 0px rgba(0, 0, 0, 0.17);
  box-shadow: 0px 9px 21px 0px rgba(0, 0, 0, 0.17);
}


.newdet-page .news {
  padding: 50px 0 60px!important;
  color: #777777;
}
.newdet-page .news .news_title h1 {
  padding-bottom: 10px;
  font-size: 30px;
  line-height: 1.6;
  text-align: center;
  color: #222;
  font-family: var(--font);
  /*font-weight: bold;*/
  /*text-transform: uppercase;*/
}
.newdet-page .news .news_date {
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}
.newdet-page .news .news_abst {
  border-bottom: 1px solid #555;
  padding: 10px 0;
  font-size: 14px;
  line-height: 28px;
}
.newdet-page .news .news_abst p {
  display: inline-block;
}
.newdet-page .news .news_contents {
  color: #555;
  font-size: 16px;
  line-height: 30px;
  clear: both;
  margin-top: 10px;
  border-bottom: 1px solid #555;
  padding: 20px 0 40px;
}
.newdet-page .news .news_contents a {
  color: #555;
  font-size: 16px;
  line-height: 24px;
}
/*.newdet-page .news .news_contents p,
.newdet-page .news .news_contents div,
.newdet-page .news .news_contents span,
.newdet-page .news .news_contents table {
  color: #555;
  font-size: 18px;
  line-height: 32px;
  clear: both;
}*/
.newdet-page .news .news_next {
  width: 99%;
  margin-top: 0px;
  padding-left: 5px;
  border-top: 0px solid #CCC;
  text-align: left;
  padding-top: 10px;
}
.newdet-page .news .news_next a {
  width: 100%;
  height: 25px;
  line-height: 30px;
  color: #777;
  font-size: 16px;
  margin-left: 5px;
}
.newdet-page .news .news_next a:hover {
  width: 100%;
  height: 25px;
  line-height: 28px;
  font-size: 14px;
  color: #000;
}
.newdet-page .news .newsnav {
  margin-bottom: 30px;
}

.contact-page .contact-1 {
  padding: 100px 0 85px;
}
.contact-page .contact-1 .top .tit {
  font-size: 40px;
  font-family: var(--font);
  font-family: var(--font);
  color: #1D1D1D;
  line-height: 1.2;
  position: relative;
  padding-bottom: 43px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.contact-page .contact-1 .top .left {
  width: 62.5%;
}
.contact-page .contact-1 .top .left .form {
  padding-top: 12px;
}
.contact-page .contact-1 .top .left .form ul {
  margin: 0 -15px;
}
.contact-page .contact-1 .top .left .form ul li {
  position: relative;
  padding: 0 15px;
  margin-bottom: 18px;
}
.contact-page .contact-1 .top .left .form ul li label {
  display: block;
  font-size: 18px;
  /*font-family: var(--font);
  font-weight: bold;*/
  color: #000000;
  line-height: 32px;
  margin-bottom: 11px;
  z-index: 11;
}
.contact-page .contact-1 .top .left .form ul li input[type=text],
.contact-page .contact-1 .top .left .form ul li select {
  width: 100%;
  height: 38px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #CFCFCF;
  border-radius: 5px;
  font-size: 16px;
  font-family: var(--font);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 30px;
  padding-left: 11px;
  z-index: 11;
}
.contact-page .contact-1 .top .left .form ul li .acc {
  position: relative;
}
.contact-page .contact-1 .top .left .form ul li .acc div {
   width: 100%;
  height: 38px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #CFCFCF;
  border-radius: 5px;
 font-size: 14px;
  font-family: var(--font);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  line-height: 38px;
  padding-left: 11px;
  cursor: pointer;
}

.contact-page .contact-1 .top .left .form ul li input[type=file] {
  position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-top: 0;
    opacity: 0;
}
.contact-page .contact-1 .top .left .form ul li input::-webkit-input-placeholder {
  /* WebKit browsers，webkit内核浏览器 */
  color: rgba(0, 0, 0, 0.6);
}
.contact-page .contact-1 .top .left .form ul li input:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgba(0, 0, 0, 0.6);
}
.contact-page .contact-1 .top .left .form ul li input::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgba(0, 0, 0, 0.6);
}
.contact-page .contact-1 .top .left .form ul li input:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: rgba(0, 0, 0, 0.6);
}
.contact-page .contact-1 .top .left .form ul li select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: url(../images/contact-16.png) 330px center no-repeat;
}
.contact-page .contact-1 .top .left .form ul li textarea {
  position: relative;
  z-index: 19;
  width: 100%;
  height: 149px;
  background: rgba(255, 255, 255, 0);
  border: 1px solid #CFCFCF;
  border-radius: 5px;
  line-height: 2;
  font-size: 14px;
  font-family: var(--font);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  padding-left: 11px;

}
.contact-page .contact-1 .top .left .form ul li p.acc {
  font-size: 14px;
  font-family: var(--font);
  font-weight: 300;
  color: #000000;
  opacity: 0.6;
  line-height: 1;
  padding-bottom: 14px;
}
.contact-page .contact-1 .top .left .form ul li input[type=submit] {
  width: 196px;
  height: 48px;
  background: #0F42A1;
  border-radius: 5px;
  text-transform: uppercase;
  border: none;
  font-size: 16px;
  font-family: var(--font);
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1;
  -webkit-transition: 0.3s;
  margin-top: 12px;
  transition: 0.3s;
}
.contact-page .contact-1 .top .left .form ul li input[type=submit]:hover {
  background: #e37600;
}
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont input {
  opacity: 0;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c {
  position: relative;
  z-index: 12;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item {
  cursor: pointer;
  width: 50%;
  padding: 6px 10px 6px 25px;
  position: relative;
  font-size: 14px;
  font-family: var(--font);
  font-weight: 300;
  color: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item .cir {
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #C1C1C1;
  top: 10px;
  left: 0;
}
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item .cir div {
  position: absolute;
  width: 7px;
  height: 7px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 3px;
  background-color: #ffffff;
  border-radius: 50%;
}
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item:hover,
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item.active {
  color: #000;
}
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item:hover .cir,
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item.active .cir {
  border: 1px solid #0F42A1;
}
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item:hover .cir div,
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item.active .cir div {
  background: #0F42A1;
}
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item .img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.contact-page .contact-1 .top .left .form ul li:nth-child(4) .input_c.object_cont .item_c .item .img img {
  vertical-align: middle;
}
.contact-page .contact-1 .top .right {
  width: 37.5%;
  padding-left: 85px;
}
.contact-page .contact-1 .top .right .tit {
  padding: 0;
  border: none;
}
.contact-page .contact-1 .top .right .acc ul li {
  padding: 20px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 50px;
  position: relative;
}
.contact-page .contact-1 .top .right .acc ul li .img {
  position: absolute;
  left: 0;
  top: 40px;
}
.contact-page .contact-1 .top .right .acc ul li p {
  font-size: 18px;
  /*font-family: var(--font);*/
  font-weight: 400;
  color: #000;
  line-height: 2;
  margin: 7px 0;
}
.contact-page .contact-2 {
  padding: 115px 0 85px;
}
@media screen and (max-width: 1630px) {

    .certification-page .certification-1 .top ul li .box .tit {
        padding-top: 120px
    }


    .prodet-page .prodet-1 .top .left {
        padding-left: 0
    }

    .product-page .product-1 .top .right {
        padding-left: 30px
    }

    .product-page .product-1 .top .right .bottom ul li .box .img .btn a {
        padding: 12px 15px
    }

    .product-page .product-1 .top .right .bottom ul li .box .img .btn {
        width: 85%
    }

    .prodet2-page .prodet2-1 .top .right {
        padding-left: 40px;
    }

    .prodet2-page .prodet2-1 .top .right h1 {
        margin-top: 15px;
    }

    .prodet2-page .prodet2-1 .top .right .tit5 {
        margin-top: 30px;
    }

    .prodet2-page .prodet2-3 .options ul li h4 {
        font-size: 20px;
        line-height: 36px;
    }
}

@media screen and (max-width: 1320px) {

    .prodet-page .prodet-3 .top .left .tit,
    .product-page .product-1 .top .right .cate-img .mask .tit{
        font-size: 36px;
        line-height: 1.4;
    }

    .product-page .product-1 .top .right .cate-img .mask .cona,.sustainability-page .sustainability-1 .img .mask p {
        margin-top: 10px;
    }

    .certification-page .certification-1 .top ul li .box {
        padding: 0 20px;
    }

    .certification-page .certification-1 .top ul li {
        margin-top: 50px;
    }

    .certification-page .certification-1 .top ul li .box .tit {
        font-size: 32px;
        padding-top: 90px;
    }

    .certification-page .certification-1 .top ul li .box .cona {
        margin-top: 15px;
    }

    .news-page .news-1 .top ul li .box .con {
        padding: 20px;
    }

    .news-page .news-1 .top ul li .box .con .cona {
        margin: 15px 0;
    }

    .certification-page {
        padding-bottom: 80px;
    }

    .prodet-page .prodet-1 .top .right {
        padding-left: 30px;
    }

    .prodet-page .prodet-2 .list ul li .box {
        text-align: center;
    }

    .prodet-page .prodet-3 .top .right {
        padding-left: 60px;
    }

    .prodet-page .prodet-3 {
        padding-bottom: 80px;
    }

    .product-page .product-1 .top .left {
        display: none;
    }

    .product-page .product-1 .top .right {
        width: 100%;
        padding-left: 0
    }

    .prodet2-page .prodet2-1 .top .right {
        margin-top: 20px;
        padding-left: 30px
    }

    .prodet2-page .prodet2-2 {
        margin-top: 80px
    }

    .prodet2-page .prodet2-3 .options ul li {
        width: 25%!important;
        margin-top: 20px
    }

    .prodet2-page .prodet2-4 .top ul li,.prodet2-page .prodet2-5 .top ul li,.prodet2-page .prodet2-6 .top ul li {
        width: 20%
    }

    .prodet2-page .prodet2-7 {
        padding: 80px 0
    }

    .prodet2-page .prodet-page .prodet-2 {
        padding: 60px 0
    }
  .about-page .about-2,
  .faq-page .faq-1,
  .prodet-page .prodet-2,
  .product-page .product-1,
  .contact-page .contact-1,
  .contact-page .contact-2,
  .certification-page .certification-1 {
    padding: 80px 0;
  }
}

@media screen and (max-width: 1100px) {

    .certification-page .certification-1 .top ul li {
        width: 50%
    }

    .certification-page .certification-1 .top ul li .box .tit {
        padding-top: 150px
    }

    .news-page .news-1 .top ul li {
        width: 50%
    }

    .prodet-page .prodet-1 .top .left {
        width: 100%
    }

    .prodet-page .prodet-1 .top .right {
        width: 100%;
        padding-left: 0
    }

    .prodet-page .prodet-2 .list {
        margin-top: 30px
    }

    .prodet-page .prodet-3 .top .left {
        width: 100%
    }

    .prodet-page .prodet-3 .top .right {
        padding-left: 0;
        margin-top: 30px;
        width: 100%
    }

    .contact-page .contact-1 .top .right {
        width: 100%;
        padding-left: 0;
        margin-top: 20px
    }

    .contact-page .contact-1 .top .left {
        width: 100%
    }

    .prodet2-page .prodet2-1 .top .right {
        width: 100%;
        padding: 0
    }

    .prodet2-page .prodet2-1 .top .left {
        width: 100%;
        text-align: center
    }

    .prodet2-page .prodet2-1 .top .left .slick-slide img {
        margin: 0 auto
    }
}

@media screen and (max-width: 972px) {

    .faq-page .tit {
        font-size: 36px
    }

    .certification-page .certification-1 .top ul {
        margin: 0 -15px
    }

    .certification-page .certification-1 .top ul li {
        padding: 0 15px
    }

    .certification-page .certification-1 .top ul li .box .img {
        position: static;
        -webkit-transform: translate(0);
        transform: translate(0);
        padding-top: 30px
    }

    .certification-page .certification-1 .top ul li .box .tit {
        padding-top: 20px
    }

    .certification-page .certification-1 .top ul li .box .img img {
        width: 30%
    }

    .prodet-page .prodet-1 .top .right .btn {
        margin-top: 30px
    }

    .product-page .product-1 .top .right .bottom ul li {
        width: 50%;
        margin-bottom: 40px
    }

    .prodet2-page .prodet2-4 .top ul li,.prodet2-page .prodet2-5 .top ul li,.prodet2-page .prodet2-6 .top ul li {
        width: 25%
    }

    .prodet2-page .prodet2-3 .options ul li {
        width: 33.333% !important
    }

    .prodet2-page .title4 .btn {
        display: none
    }

    .prodet2-page .title4 {
        margin-top: 50px
    }
}

@media screen and (max-width: 768px) {
    .newdet-page .news .news_title h1 {
        line-height: 1.6!important
    }
.newdet-page .news .prewnext{
  line-height: 32px;
}
    .newdet-page .wpulike.wpulike-default {
        display: block
    }
    .product-page .product-1 .top .right .cate-img{
      padding:0 40px;
    }
    .product-page .product-1 .top .right .cate-img .mask .cona{
      max-height: unset;
      overflow-y: unset;
      display: none;
    }
    .product-page .product-1 .top .right .cate-img .mask {
        position: static;
        padding: 30px 0;
        -webkit-transform: translate(0);
        transform: translate(0)
    }


    .faq-page .top ul li .tit4,.faq-page .top ul li .text {
        padding: 12px 20px
    }

    .certification-page .certification-1 .top ul li {
        width: 100%
    }

    .news-page .news-1 .top ul li {
        width: 100%
    }


    .product-page .product-1 .top .right .bottom ul li {
        width: 100%;
        text-align: center
    }

    .product-page .product-1 .top .right .bottom ul li .box .img .btn a {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .contact-page .contact-1 .top .left .form ul li select {
        background: url(/template/en/images/contact-16.png) 95% center no-repeat
    }

    .prodet2-page .prodet2-3 .options ul li {
        width: 50%!important
    }

    .prodet2-page .prodet2-4 .top ul li,.prodet2-page .prodet2-5 .top ul li,.prodet2-page .prodet2-6 .top ul li {
        width: 50%
    }

    .prodet2-page .tit3 {
        font-size: 32px;
        line-height: 1.4;
    }

    .prodet2-page .btnac a {
        width: 80%;
        font-size: 18px
    }

    .prodet2-page .prodet2-7 .list,.prodet2-page .prodet2-2 .list {
        margin-top: 40px
    }
    .product-page .product-1 .top .right .cate-img .mask .tit {
        font-size: 24px;
        line-height: 44px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 450px) {

    .prodet-page .prodet-2 .list ul li .box .img .btn {
        width: 95%
    }

    .prodet-page .prodet-3 {
        padding-bottom: 40px
    }

    .contact-page .contact-1 .top .left .form ul li label {
        line-height: 32px;
    }

    .prodet2-page .tit3 {
        font-size: 24px;
        line-height: 44px;
    }

    .prodet2-page .prodet2-3 .options ul li {
        width: 100%!important
    }

    .prodet2-page .prodet2-4 .top ul,.prodet2-page .prodet2-5 .top ul,.prodet2-page .prodet2-6 .top ul {
        margin: 0 -10px
    }

    .prodet2-page .prodet2-4 .top ul li,.prodet2-page .prodet2-5 .top ul li,.prodet2-page .prodet2-6 .top ul li {
        padding: 0 10px
    }
}