﻿@font-face {
  font-family: 'l';
  src: url('../fonts/Poppins-Light.otf');
}
.container {
  box-sizing: content-box;
  padding: 0 15px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1160px;
  }
}
@keyframes link {
  0% {
    transform: translateX(0) scaleX(1);
    transform-origin: left center;
  }
  50% {
    transform: translateX(85px) scaleX(2);
    transform-origin: left center;
  }
  100% {
    transform: translateX(170px) scaleX(1);
    transform-origin: right center;
  }
}
#m-header-wrapper {
  display: none;
}
#m-header-wrapper .overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
#m-header-wrapper .m-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 45px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: 300ms;
}
#m-header-wrapper .m-header.active {
  left: 200px;
}
#m-header-wrapper .m-header .container {
  height: 100%;
  position: relative;
}
#m-header-wrapper .m-header .container .toggle-btn {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#m-header-wrapper .m-header .container .toggle-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  margin-bottom: 5px;
  transition: 300ms;
}
#m-header-wrapper .m-header .container .toggle-btn span:last-of-type {
  margin-bottom: 0;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: left center;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(2) {
  opacity: 0;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: left center;
}
#m-header-wrapper .m-header .container .logo {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#m-header-wrapper .m-header .container .logo img {
  width: 120px;
}
#m-header-wrapper .m-toggle-nav {
  position: fixed;
  width: 200px;
  height: 100%;
  left: -200px;
  top: 0;
  overflow-y: auto;
  background: #333;
  z-index: 9999;
  transition: 300ms;
  padding: 15px 0;
}
#m-header-wrapper .m-toggle-nav.active {
  left: 0;
}
#m-header-wrapper .m-toggle-nav h1 {
  font: 14px sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 0 15px 20px;
}
#m-header-wrapper .m-toggle-nav h1 .icon {
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
}
#m-header-wrapper .m-toggle-nav .menu-box {
  padding-bottom: 25px;
}
#m-header-wrapper .m-toggle-nav .menu-box li a{
  display: block;
  font: 12px/40px sans-serif;
  color: #fff;
  padding-left: 15px;
  text-transform: uppercase;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a {
  display: block;
  font: 12px/40px sans-serif;
  color: #fff;
  padding-left: 15px;
  text-transform: uppercase;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #fff;
  display: none;
  transition: 300ms;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a i.active {
  transform: translateY(-50%) rotate(180deg);
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li .sub-menu {
  background: #000;
  padding: 5px 0;
  display: none;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li .sub-menu li a {
  display: block;
  font: 12px/40px sans-serif;
  padding-left: 15px;
  color: #fff;
  text-transform: uppercase;
}
#m-header-wrapper .m-toggle-nav .search-box {
  padding: 15px 15px 35px;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .search-box input[type="text"] {
  width: 100%;
  height: 30px;
  border: none;
  outline: none;
  padding: 0 40px 0 10px;
  font: 12px sans-serif;
  color: #333;
}
#m-header-wrapper .m-toggle-nav .search-box button {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 15px;
  border: none;
  outline: none;
  text-align: center;
  background: #000;
}
#m-header-wrapper .m-toggle-nav .search-box button i {
  font-size: 12px;
  line-height: 30px;
  color: #fff;
}
#m-header-wrapper .m-toggle-nav .lan h1 {
  padding-bottom: 10px;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .lan h1 i.fa-angle-down {
  position: absolute;
  right: 15px;
  top: 1px;
  font-size: 16px;
  color: #fff;
  transition: 300ms;
}
#m-header-wrapper .m-toggle-nav .lan h1 i.fa-angle-down.active {
  transform: rotate(180deg);
}
#m-header-wrapper .m-toggle-nav .lan ul {
  background: #000;
  display: none;
}
#m-header-wrapper .m-toggle-nav .lan ul li a {
  display: block;
  font: 12px/30px sans-serif;
  color: #fff;
  padding-left: 15px;
}
#header {
  padding-top: 45px;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
}
#header .container {
  max-width: 1370px;
}
#header .container .language {
  position: relative;
}
#header .container .language > a {
  display: block;
  width: 103px;
  height: 35px;
  border: 1px solid #808080;
  text-align: center;
  font: 16px/33px "微软雅黑";
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
#header .container .language > a i {
  margin-left: 30px;
}
#header .container .language .children {
  width: 100%;
  position: absolute;
  left: 0;
  top: 100%;
  background: #808080;
  z-index: 99;
  transform: scale(0.85) translateY(-5px);
  transform-origin: center top;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
}
#header .container .language .children a {
  display: block;
  font: 14px/35px "微软雅黑";
  color: #000;
  padding-left: 10px;
  transition: .3s;
}
#header .container .language .children a:hover {
  background: #f15a24;
  color: #fff;
}
#header .container .language .children.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
}
#header .container .search-btn {
  margin: 8px 55px 0;
  cursor: pointer;
}
#header .container .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .container .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .container .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .container .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 24px;
  font-family: r;
  color: #000;
  padding: 10px 0;
}
#header .container .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#header .container .menu-box {
  margin-top: 5px;
}
#header .container .menu-box .menu {
  font-size: 0;
}
#header .container .menu-box .menu > li {
  display: inline-block;
  margin-right: 60px;
  position: relative;
  padding-bottom: 10px;
}
#header .container .menu-box .menu > li:last-of-type {
  margin-right: 0;
}
#header .container .menu-box .menu > li:after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: 5px;
  height: 15px;
  background: #f15a24;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: center top;
  transition: .3s;
}
#header .container .menu-box .menu > li > a {
  font: 16px "微软雅黑";
  color: #fff;
  text-transform: uppercase;
}
#header .container .menu-box .menu > li .sub-menu {
  position: absolute;
  width: 200px;
  left: 0;
  top: 120%;
  opacity: 0;
  visibility: hidden;
  background: #808080;
  z-index: 99;
  transition: .3s;
}
#header .container .menu-box .menu > li .sub-menu li a {
  display: block;
  font: 14px/35px "微软雅黑";
  color: #000;
  padding-left: 15px;
  text-transform: capitalize;
  transition: .3s;
}
#header .container .menu-box .menu > li .sub-menu li a:hover {
  background: #f15a24;
  color: #fff;
}
#header .container .menu-box .menu > li:hover:after {
  transform: scaleY(1);
}
#header .container .menu-box .menu > li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
#index-banner img {
  width: 100%;
}
#index-body .i-about {
  padding: 95px 0 105px;
  background: #000000;
}
#index-body .i-about .container .i-about-tit {
  width: 199px;
  height: 56px;
  font: bold 18px/50px arial;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0 auto;
  border-top: 3px solid #f15a24;
  border-bottom: 3px solid #f15a24;
  position: relative;
}
#index-body .i-about .container .i-about-tit:after {
  content: "";
  position: absolute;
  width: 9px;
  height: 95px;
  background: #f15a24;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: -98px;
}
#index-body .i-about .container .i-about-content {
  max-width: 985px;
  margin: 75px auto 0;
  text-align: center;
}
#index-body .i-about .container .i-about-content p:nth-of-type(1) {
  font: 30px l;
  color: #fff;
  text-transform: uppercase;
}
#index-body .i-about .container .i-about-content section{
  color:#fff;
  font-size: 16px;
  line-height: 2em;
}
#index-body .i-about .container .i-about-content p:nth-of-type(2) {
  font: 16px/30px l;
  color: rgba(255, 255, 255, 0.5);
  margin: 30px 0 55px;
}
#index-body .i-about .container .i-about-content a {
  display: block;
  width: 170px;
  height: 53px;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  font: 16px/49px "微软雅黑";
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  position: relative;
  transition-duration: .3s;
}
#index-body .i-about .container .i-about-content a:after {
  position: absolute;
  width: 54px;
  height: 4px;
  background: #f15a24;
  left: -29px;
  top: 50%;
  margin-top: -2px;
  transition: .4s;
}
#index-body .i-about .container .i-about-content a:hover {
  transition-delay: 0s;
  background: #f15a24;
  border-color: #f15a24;
  color: #fff;
}
#index-body .i-about .container .i-about-content a:hover:after {
  background: #fff;
  animation: link .4s forwards linear;
}
#index-body .i-why {
  padding: 9% 0;
  background: linear-gradient(to right, #000000 0%, #000000 30%, #371204 30%, #5d1c05 100%);
}
#index-body .i-why .left {
  width: 55%;
}
#index-body .i-why .left img {
  width: 100%;
}
#index-body .i-why .right {
  width: 45%;
  padding: 0 10% 0 4%;
}
#index-body .i-why .right .title {
  margin-bottom: 60px;
}
#index-body .i-why .right .title p:nth-of-type(1) {
  font: italic 16px l;
  color: rgba(255, 255, 255, 0.5);
}
#index-body .i-why .right .title p:nth-of-type(2) {
  font: bold 36px "微软雅黑";
  color: #fff;
}
#index-body .i-why .right .content {
  margin-bottom: 65px;
}
#index-body .i-why .right .content ul li {
  font: 16px/30px l;
  color: #fff;
  margin-bottom: 35px;
  padding-left: 25px;
  position: relative;
}
#index-body .i-why .right .content ul li:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #fff;
  left: 0;
  top: 12px;
}
#index-body .i-why .right .content ul li:last-of-type {
  margin-bottom: 0;
}
#index-body .i-why .right .link a {
  display: block;
  width: 170px;
  height: 53px;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  font: 16px/49px "微软雅黑";
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  position: relative;
  transition-duration: .3s;
  margin: 0 0 0 0;
}
#index-body .i-why .right .link a:after {
  position: absolute;
  width: 54px;
  height: 4px;
  background: #fff;
  left: -29px;
  top: 50%;
  margin-top: -2px;
  transition: .4s;
}
#index-body .i-link{
  background: #000000;
}
#index-body .i-why .right .link a:hover {

  background: #f15a24;
  border-color: #f15a24;
  color: #fff;
}
#index-body .i-why .right .link a:hover:after {
  background: #fff;
  animation: link .4s forwards linear;
}
#index-body .i-pro {
  padding: 60px 0 0;
  background: #000;
}
#index-body .i-pro .i-pro-tit {
  text-align: center;
  margin-bottom: 55px;
}
#index-body .i-pro .i-pro-tit p:nth-of-type(1) {
  font: italic 16px l;
  color: rgba(255, 255, 255, 0.5);
}
#index-body .i-pro .i-pro-tit p:nth-of-type(2) {
  font: bold 48px "微软雅黑";
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 30px;
}
#index-body .i-pro .i-pro-tit p:nth-of-type(3) {
  font: 14px l;
  color: #fff;
}
#index-body .i-pro .i-pro-list .grid-box{
	background: #000;
}
#index-body .i-pro .i-pro-list .grid-box .column {
  min-height: 530px;
  padding: 6% 0;
}
#index-body .i-pro .i-pro-list .grid-box .column:nth-of-type(1) {
  background: url(../images/i-pro-bg1.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-pro .i-pro-list .grid-box .column:nth-of-type(2) {
  background: url(../images/i-pro-bg2.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-pro .i-pro-list .grid-box .column:nth-of-type(3) {
  background: url(../images/i-pro-bg2.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-pro .i-pro-list .grid-box .column:nth-of-type(4) {
  background: url(../images/i-pro-bg1.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-pro .i-pro-list .grid-box .column:nth-of-type(5) {
  background: url(../images/i-pro-bg1.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-pro .i-pro-list .grid-box .column:nth-of-type(6) {
  background: url(../images/i-pro-bg2.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-pro .i-pro-list .grid-box .column .product-info {
  width: 50%;
  padding-left: 8%;
}
#index-body .i-pro .i-pro-list .grid-box .column .product-info div:nth-of-type(1) {
  font: bold 24px "微软雅黑";
  color: #fff;
  text-transform: uppercase;
}
#index-body .i-pro .i-pro-list .grid-box .column .product-info div:nth-of-type(2) {
  font: 14px/30px l;
  color: #fff;
  margin: 20px 0 55px;
}
#index-body .i-pro .i-pro-list .grid-box .column .product-info a {
  display: block;
  width: 170px;
  height: 53px;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.5);
  text-align: center;
  font: 16px/49px "微软雅黑";
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  position: relative;
  transition-duration: .3s;
  margin: 0 0 0 0;
}
#index-body .i-pro .i-pro-list .grid-box .column .product-info a:after {
  position: absolute;
  width: 54px;
  height: 4px;
  background: #f15a24;
  left: -29px;
  top: 50%;
  margin-top: -2px;
  transition: .4s;
}
#index-body .i-pro .i-pro-list .grid-box .column .product-info a:hover {

  background: #f15a24;
  border-color: #f15a24;
  color: #fff;
}
#index-body .i-pro .i-pro-list .grid-box .column .product-info a:hover:after {
  background: #fff;
  animation: link .4s forwards linear;
}
#index-body .i-pro .i-pro-list .grid-box .column .product-img {
  width: 50%;
}
#index-body .i-pro .i-pro-list .grid-box .column .product-img img {
  width: 100%;
  transition: .3s;
}
#index-body .i-pro .i-pro-list .grid-box .column:hover .product-img img{
	transform: translateY(-20px);
}
#index-body .i-link .grid-box .column {
  height: 845px;
  position: relative;
}
#index-body .i-link .grid-box .column:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  transition-duration: .3s;
}
#index-body .i-link .grid-box .column:hover:after{
  opacity: 0;
}
#index-body .i-link .grid-box .column:nth-of-type(1) {
  background: url(../images/i-link-1.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-link .grid-box .column:nth-of-type(2) {
  background: url(../images/i-link-2.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-link .grid-box .column:nth-of-type(3) {
  background: url(../images/i-link-3.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-link .grid-box .column .info {
  max-width: 385px;
  padding: 0 15px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}
#index-body .i-link .grid-box .column .info p:nth-of-type(1) {
  font: bold 36px "微软雅黑";
  color: #fff;
  position: relative;
}
#index-body .i-link .grid-box .column .info p:nth-of-type(1):after {
  content: "";
  position: absolute;
  width: 190px;
  height: 35px;
  background: #f15a24;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -12px;
  z-index: -1;
}
#index-body .i-link .grid-box .column .info p:nth-of-type(2) {
  font: 14px/30px l;
  color: #fff;
  margin: 65px 0 80px;
}
#index-body .i-link .grid-box .column .info a {
  display: block;
  width: 170px;
  height: 53px;
  margin: 0 auto;
  border: 2px solid #fff;
  text-align: center;
  font: 16px/49px "微软雅黑";
  color: #fff;
  text-transform: uppercase;
  position: relative;
  transition-duration: .3s;
}
#index-body .i-link .grid-box .column .info a:after {
  position: absolute;
  width: 54px;
  height: 4px;
  background: #f15a24;
  left: -29px;
  top: 50%;
  margin-top: -2px;
  transition: .4s;
}
#index-body .i-link .grid-box .column .info a:hover {
  background: #f15a24;
  border-color: #f15a24;
  color: #fff;
}
#index-body .i-link .grid-box .column .info a:hover:after {
  background: #fff;
  animation: link .4s forwards linear;
}
#footer .footer-top {
  padding: 80px 0;
  background: url(../images/foot-bg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
}
#footer .footer-bottom {
  padding: 55px 0 25px;
  background: #222222;
}
#footer .footer-bottom .container .top {
  display: flex;
  justify-content: space-between;
  font-size: 0;
  margin-bottom: 95px;
}
#footer .footer-bottom .container .top .item {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
}
#footer .footer-bottom .container .top .item:nth-of-type(1) {
  width: 29%;
}
#footer .footer-bottom .container .top .item:nth-of-type(2) {
  width: 27%;
}
#footer .footer-bottom .container .top .item:nth-of-type(3) {
  width: 29%;
  text-align: center;
}
#footer .footer-bottom .container .top .item .tit {
  font: bold 24px "微软雅黑";
  color: #fff;
  text-transform: uppercase;
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
#footer .footer-bottom .container .top .item:nth-of-type(3) .tit:after{
  width: 50%;
}
#footer .footer-bottom .container .top .item .tit:after {
  content: "";
  position: absolute;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background: #f15a24;
  bottom: -20px;
  margin-top: -1px;
}
#footer .footer-bottom .container .top .item .contact-info li {
  font: 12px/30px l;
  color: #fff;
  padding-left: 25px;
  position: relative;
}
#footer .footer-bottom .container .top .item .contact-info li i {
  font-size: 16px;
  color: #f15a24;
  position: absolute;
  left: 0;
  top: 8px;
}
#footer .footer-bottom .container .top .item .form li {
  margin-bottom: 8px;
}
#footer .footer-bottom .container .top .item .form li:not(:last-of-type) input {
  width: 100%;
  height: 33px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  outline: none;
  border-radius: 5px;
  background: transparent;
  padding: 0 12px;
  font: 12px l;
  color: rgba(255, 255, 255, 0.5);
  transition: .3s;
}
#footer .footer-bottom .container .top .item .form li:not(:last-of-type) input:focus{
  border-color: #f15a24;
}
#footer .footer-bottom .container .top .item .form li:not(:last-of-type) textarea {
  width: 100%;
  height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  outline: none;
  border-radius: 5px;
  background: transparent;
  padding: 0 12px;
  font: 12px/31px l;
  color: rgba(255, 255, 255, 0.5);
  transition: .3s;
}
#footer .footer-bottom .container .top .item .form li:not(:last-of-type) textarea:focus{
  border-color: #f15a24;
}
#footer .footer-bottom .container .top .item .form li:last-of-type input {
  width: 100%;
  height: 33px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  outline: none;
  border-radius: 5px;
  background: transparent;
  font: 12px l;
  color: rgba(255, 255, 255, 0.5);
  transition: .3s;
}
#footer .footer-bottom .container .top .item .form li:last-of-type input:hover {
  background: rgba(255, 255, 255, 0.5);
  color: #333;
}
#footer .footer-bottom .container .top .item .erweima {
  display: flex;
  justify-content: center;
  width: 100%;
}
#footer .footer-bottom .container .top .item .erweima img {
  width: 120px;
  height: 120px;
}
#footer .footer-bottom .container .bottom {
  font: 12px l;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
#footer .footer-bottom .container .bottom a:hover {
  color: #f15a24;
}
.return-top {
  position: fixed;
  right: 9%;
  bottom: 200px;
  width: 60px;
  height: 60px;
  background: #f15a24;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  line-height: 60px;
  font-size: 25px;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 1200px) {
  #header .container .menu-box .menu > li {
    margin-right: 30px;
  }
  #header .container .search-btn {
    margin: 8px 30px 0;
  }
  #index-body .i-why .right {
    padding: 0 4%;
  }
}
@media screen and (max-width: 992px) {
  #header {
    display: none;
  }
  #m-header-wrapper {
    display: block;
  }
  #index-banner {
    margin-top: 45px;
  }
  #index-body .i-about {
    padding: 95px 0 60px;
  }
  #index-body .i-about .container .i-about-content {
    margin-top: 45px;
  }
  #index-body .i-about .container .i-about-content p:nth-of-type(1) {
    font-size: 20px;
  }
  #index-body .i-about .container .i-about-content p:nth-of-type(2) {
    font-size: 14px;
  }
  #index-body .i-why .right .title p:nth-of-type(2) {
    font-size: 20px;
  }
  #index-body .i-why .right .content ul li {
    font-size: 14px;
  }
  #index-body .i-why .right .title {
    margin-bottom: 40px;
  }
  #index-body .i-why .right .content {
    margin-bottom: 40px;
  }
  #index-body .i-pro .i-pro-tit p:nth-of-type(2) {
    font-size: 25px;
  }
  #index-body .i-pro .i-pro-list .grid-box .column .product-info div:nth-of-type(1) {
    font-size: 18px;
  }
  #index-body .i-link .grid-box .column .info p:nth-of-type(1) {
    font-size: 25px;
  }
  #footer .footer-bottom .container .top {
    margin-bottom: 60px;
  }
  #footer .footer-bottom .container .top .item {
    width: 50%!important;
  }
  #footer .footer-bottom .container .top .item:nth-of-type(3) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #index-body .i-why {
    padding: 60px 15px;
    background: #f15a24;
  }
  #index-body .i-why .left {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  #index-body .i-why .right {
    width: 100%;
    float: none;
    padding: 0;
  }
  #index-body .i-pro .i-pro-list .grid-box .column {
    width: 100%;
    min-height: auto;
  }
  #index-body .i-link .grid-box .column {
    width: 100%;
    height: auto;
    padding: 40px 0;
  }
  #index-body .i-link .grid-box .column .info {
    position: static;
    transform: translate(0);
    margin: 0 auto;
  }
  #index-body .i-link .grid-box .column .info p:nth-of-type(2) {
    margin: 40px 0;
  }
}
@media screen and (max-width: 576px) {
  #index-body .i-pro .i-pro-list .grid-box .column .product-img {
    width: 100%;
    float: none;
  }
  #index-body .i-pro .i-pro-list .grid-box .column .product-info {
    width: 100%;
    float: none;
    padding: 0 15px;
  }
  #index-body .i-pro .i-pro-list .grid-box .column .product-info div:nth-of-type(2) {
    margin: 20px 0;
  }
  #footer .footer-bottom .container .top .item {
    width: 100%!important;
  }
  #footer .footer-bottom .container .top .item:nth-of-type(1) {
    margin-bottom: 40px;
  }
  #footer .footer-bottom .container .top .item .tit {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.inner-banner {
  position: relative;
  padding-top: 305px;
  height: 604px;
  background: url("../images/inner-banner.jpg") no-repeat center;
  background-size: cover;
  text-align: center;
  font-family: l;
}
.inner-banner .inner-tit {
  color: #fff;
  font-size: 4.8rem;
  text-transform: uppercase;
}
.inner-banner .now-tit{
  font-size: 20px;
  color: #fff;
}
.cat-box {
  width: 100%;
  text-align: center;
  background: #111;
}
.cat-box li {
  display: inline-block;
  font-size: 1.4rem;
  margin: 0 0px;
  position: relative;
}
.cat-box li .children{
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
  z-index: 100;
  background: #000;
  display: none;
}
.cat-box li:hover .children{
  display: block;
}
.cat-box li .children li{
  display: block;
  margin: 0;
}
.cat-box li .children li a{
  height: 50px;
  line-height: 50px;
}
.cat-box li a {
  color: #fff;
  display: block;
  padding: 0 34px;
  line-height: 99px;
  line-height: 99px;
  position: relative;
}
.cat-box li a:hover,
.cat-box li a.active {
  background: #f15a24;
}
.cat-box li a:hover:after,
.cat-box li a.active:after {
  left: 0;
  width: 100%;
}
.pd-container {
  position: relative;
/*   padding: 0 6%; */
}
.pd-container div{
  line-height: 2em;
}
.inner-page {
  background: #2a2a2a;
  font-family: l;
}
.inner-page.support{
  padding-top: 0px!important;
}
.inner-page.faq-page,
.inner-page.contact-page,
.inner-page.technology-page{
  margin-top: 0!important;  
}
.about-page .support-title{
  width: 100%;
  height: 99px;
  background: #000000;
}
.about-page .a-con {
  padding: 100px 0 80px;
  color: #fff;
  font-size: 16px;
}
.about-page .a-con .a-t-tit {
  color: #fff;
  font-size: 4.2rem;
  text-transform: uppercase;
  font-family: l;
}
.about-page .a-con .a-t-subTit {
  font-size: 2.1rem;
  font-family: l;
  color: #b8b8b8;
  margin-top: 10px;
}
.about-page .a-con .a-t-con {
  margin-top: 46px;
}
.about-page .a-con .a-t-con p {
  color: #ccc;
  font-size: 14px;
  line-height: 30px;
}
.about-page .a-con .a-pic {
  text-align: right;
}
.about-page .a-con .a-pic img {
  display: inline-block;
  margin-top: 50px;
}
.about-page .a-con .a-con-bot {
  margin-top: 148px;
}
.about-page .a-con .a-con-bot .a-pic {
  text-align: left;
}
.about-page .a-con .a-con-bot .a-pic img {
  margin-top: 0;
}
.about-page .a-partner-honour {
  padding: 142px 0 163px;
  background: #1c1c1c;
}
.about-page .a-partner-honour .the_tit {
  margin-bottom: 53px;
  padding-left: 1rem;
}
.about-page .a-partner-honour .the_tit em {
  padding-right: 16px;
  color: #757575;
  font-size: 5.8rem;
  border-right: 3px solid #595959;
  display: inline-block;
  height: 45px;
  line-height: 45px;
}
.about-page .a-partner-honour .the_tit span {
  color: #fff;
  font-size: 3rem;
  text-transform: uppercase;
  margin-left: 23px;
  display: inline-block;
  vertical-align: text-bottom;
  padding-bottom: 10px;
}
.about-page .a-partner-honour .the_box {
  background: #252525;
  padding: 75px 44px 0;
  height: 641px;
  max-width: 768px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.about-page .a-advantage {
  padding: 133px 0 89px;
  background: #2a2a2a;
}
.about-page .a-advantage .tit {
  color: #fff;
  font-size: 4.8rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 94px;
}
.about-page .a-advantage .the_list .grid-box.two.column > .column {
  padding-right: 11px!important;
  padding-left: 11px!important;
  margin-bottom: 23px;
}
.about-page .a-advantage .the_list .grid-box.two.column > .column .inn-box {
  background: #1c1c1c;
  padding: 30px 10px 29px 28px;
  transition: 0.3s ease;
}
.about-page .a-advantage .the_list .grid-box.two.column > .column .inn-box .icon-box {
  padding-top: 11px;
}
.about-page .a-advantage .the_list .grid-box.two.column > .column .inn-box .con-box {
  width: 82%;
}
.about-page .a-advantage .the_list .grid-box.two.column > .column .inn-box .con-box h3 {
  color: #fff;
  font-size: 1.8rem;
  font-family: l;
}
.about-page .a-advantage .the_list .grid-box.two.column > .column .inn-box .con-box p {
  font-size: 1.4rem;
  line-height: 24px;
  color: #727272;
  margin-top: 13px;
}
.about-page .a-advantage .the_list .grid-box.two.column > .column .inn-box:hover{
  background: #f15a24;
}
.about-page .a-advantage .the_list .grid-box.two.column > .column .inn-box:hover .con-box p{
  color: #fff;
}
.product-page {
  padding: 90px 0 108px;
  /*background: url("../images/pro-bg.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;*/
  overflow: hidden;
  position: relative;
}
.product-page #space{
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  height: 1700px!important;
}
.product-page>.container{
  z-index: 10;
}
.product-page .pro-list .grid-box.three > .column{
  padding: 10px;
}
.product-page .pro-list .grid-box.three > .column h3{
	color:#222;
  background-color: #ddd;
  line-height:60px;
  font-size: 2em;
	text-align:center;
}
.product-page .pro-list .grid-box.three > .column .inner{
  position: relative;
}
.product-page .pro-list .grid-box.three > .column .hwaq_img_btn_01 .imgBox img {
  transition: all 0.4s ease-out;
  max-width: 243px;
  margin: 0 auto;
  /*-webkit-box-reflect: below 0 -webkit-linear-gradient(top, rgba(250, 250, 250, 0), rgba(250, 250, 250, 0) 50%, rgba(250, 250, 250, 0.12));*/
}
.prodet-page .prodet-pics {
  background: url("../images/pro-bg2.jpg") center no-repeat;
  background-size: cover;
}
.prodet-page .prodet-pics .layout-rowMain {
  width: 70%;
  max-width: 1600px;
  padding: 81px 0;
  margin: auto;
  font-size: 20px;
  color: #fff;
	text-align:center;
}

.prodet-page .prodet-pics .layout-rowMain .prodet-scroll {
/*  width: 10%;
  display: inline-block;*/
  vertical-align: top;
}
.prodet-page .prodet-pics .layout-rowMain .prodet-scroll ul {
  padding: 20px 0;
}
.prodet-page .prodet-pics .layout-rowMain .prodet-scroll ul li{
	display: inline-block;
	width: 20%;
}
.prodet-page .prodet-pics .layout-rowMain .prodet-scroll ul a {
  display: block;
  border: 1px solid #434343;
}
.prodet-page .prodet-pics .layout-rowMain .prodet-scroll ul button.slick-arrow {
  background: none;
  width: 55px;
  border-radius: 100%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 28px;
  color: transparent;
  display: none!important;
  font-family: Icons;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin: 0 auto;
  position: relative;
  font-weight: bold;
}
.prodet-page .prodet-pics .layout-rowMain .prodet-scroll ul button.slick-arrow:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-pics .layout-rowMain .prodet-scroll ul button.slick-arrow:hover:before {
  color: #0c5b9d;
}
.prodet-page .prodet-pics .layout-rowMain .prodet-scroll ul button.slick-prev:before {
  content: "\f106";
}
.prodet-page .prodet-pics .layout-rowMain .prodet-scroll ul button.slick-next:before {
  content: "\f107";
}
.prodet-page .prodet-pics .layout-rowMain .prodet-img {
  width: 50%;
  display: inline-block;
  margin-left: -5px;
  margin-right: -5px;
  padding: 0 15px;
  vertical-align: top;
}
.prodet-page .prodet-pics .layout-rowMain .prodet-img a#zoom1 img {
  /*border: 1px solid #d7d7d7;*/
}

















.prodet-page ul.pro-item {
  display: flex;
  overflow: hidden;
  justify-content: center;
  align-items: center;
}
.prodet-page ul.pro-item > li {
  float: left;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  width: 33.3333%;
}
.prodet-page ul.pro-item > li .pro-photo {
  height: 550px;
  width: 100%;
  position: relative;
}
.prodet-page ul.pro-item > li .pro-photo img {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  max-height: 100%;
  bottom: 0;
  transform: translateY(20%);
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -o-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease 0.3s;
  opacity: 0;
  top: 0;
}
.prodet-page ul.pro-item > li .pro-photo .pro-show {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  border: 1px solid #929292;
}
.prodet-page ul.pro-item > li .pro-photo .pro-show:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 12px;
  background-color: #929292;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.prodet-page ul.pro-item > li .pro-photo .pro-show:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 12px;
  height: 2px;
  background-color: #929292;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
}
.prodet-page ul.pro-item > li .pro-photo .pro-show:hover:before{
  opacity: 0;
}
.prodet-page ul.pro-item > li.on {
  width: 240%!important;
}
.prodet-page ul.pro-item > li.on .pro-photo img {
  opacity: 1;
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transition: opacity 0.3s ease-in-out 0.3s, transform 0.3s ease 0.3s;
  -webkit-box-reflect: below 0 -webkit-linear-gradient(top, rgba(250, 250, 250, 0), rgba(250, 250, 250, 0) 50%, rgba(250, 250, 250, 0.12));
}
.prodet-page ul.pro-item > li.on .pro-photo .pro-show {
  opacity: 0;
}
.prodet-page ul.pro-item > li h4.word {
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  line-height: 36px;
  text-transform: uppercase;
  font-family: l;
}
.prodet-page ul.pro-item > li .pro-name {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  bottom: 0px;
  color: #fff;
  font-family: l;
  font-size: 2.4rem;
  text-transform: uppercase;
  opacity: 0;
  transition: 0.4s ease;
}
.prodet-page ul.pro-item > li.on .pro-name {
  opacity: 1;
}
.prodet-page .proTit {
  text-transform: uppercase;
  color: #fff;
  font-size: 3rem;
  font-family: l;
  margin-bottom: 61px;
}
.prodet-page .prodet-con {
  padding: 121px 0 187px;
  background: #1e1e1f;
}
.prodet-page .prodet-con .the_con_box p{
	color:#fff;
}
.prodet-page .prodet-con table td{
  padding: 10px 15px;
  color: #fff;
  border-color: #666;
}
.prodet-page .prodet-con table td strong{
  font-weight: 500;
}
.prodet-page .prodet-recomm {
  padding: 63px 0 100px;
  background: #232323;
}
.prodet-page .prodet-recomm .hwaq_img_btn_01 {
  overflow: visible;
}
.prodet-page .prodet-recomm .hwaq_img_btn_01 > img {
  width: 100%;
  -webkit-box-reflect: below 0 -webkit-linear-gradient(top, rgba(250, 250, 250, 0), rgba(250, 250, 250, 0) 50%, rgba(250, 250, 250, 0.12));
}
.faq-page {
  padding: 130px 0;
  background: #1e1e1f;
}
.faq-page .faq-tit {
  padding-bottom: 22px;
  text-align: center;
  position: relative;
  font-size: 2.4rem;
  color: #fff;
  text-transform: uppercase;
}
.faq-page .faq-tit:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 61px;
  height: 2px;
  background: #034296;
}
.faq-page .faq-search {
  width: 83%;
  margin: 87px auto 62px;
}
.faq-page .faq-search > form {
  width: 100%;
  background: #383838;
  padding: 9px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.faq-page .faq-search > form input,
.faq-page .faq-search > form button {
  border: none;
  background: none;
  outline: none;
  color: #fff;
}
.faq-page .faq-search > form input {
  width: 93%;
  height: 52px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: #2a2a2a;
  padding: 0 15px;
}
.faq-page .faq-search > form button {
  font-size: 2.4rem;
  width: 6.6%;
}
.faq-page .faq-list {

  padding: 7px 50px;
}
.faq-page .faq-list li {
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
  background: #383838  url("../images/faq-q-ico.png") no-repeat left top;
  padding: 0 14px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.faq-page .faq-list li,
.faq-page .faq-list li .faq-a,
.faq-page .faq-list li .icon {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.faq-page .faq-list li:last-child {
  margin-bottom: 0;
}
.faq-page .faq-list li .faq-a {
  padding: 19px 0 19px 32px;
  font-size: 1.6rem;
  color: #fff;
}
.faq-page .faq-list li .faq-q {
  padding: 29px 24px;
  background: #fff;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  display: none;
}
.faq-page .faq-list li .faq-q p {
  font-size: 1.6rem;
  color: #333;
}
.faq-page .faq-list li .icon {
  position: absolute;
  color: #616161;
  font-size: 1.8rem;
  right: 36px;
  top: 21px;
}
.faq-page .faq-list li.active {
  padding-bottom: 15px;
  background-color: #034296;
  background-image: url("../images/faq-q-ico-h.png");
}
.faq-page .faq-list li.active .faq-a,
.faq-page .faq-list li.active .icon {
  color: #fff;
}
.news-page .new-list {
  padding-top: 100px!important;
}
.news-page .new-list li {
  padding-bottom: 52px;
  margin-bottom: 65px;
  border-bottom: 2px solid #777777;
}
.news-page .new-list li:last-child {
  margin-bottom: 0;
}
.news-page .new-list li .new-pic{
  width: 30%;
}
.news-page .new-list li .new-con{
  width: 70%;
  padding-left: 40px;
}
.news-page .new-list li .new-con .tit a {
  height: 48px;
  overflow: hidden;
  display: block;
  color: #fff;
  font-size: 21px;
  line-height: 24px;
}
.news-page .new-list li .new-con .tit a:hover {
  color: #1960ad;
}
.news-page .new-list li .new-con .abst {
  color: #fff;
  font-size: 16px;
  line-height: 27px;
  margin: 35px 0 45px;
}
.news-page .new-list li .new-con .abst a {
  color: #1960ad;
}
.news-page .new-list li .new-con .date span {
  color: #fff;
}
.news-page .new-list li .new-con .date span:last-child {
  margin-left: 20px;
  text-transform: capitalize;
}
.news-page .new-list li:last-child {
  margin-bottom: 50px;
}
.newdet-page .news {
  padding: 50px 0 60px!important;
  color: #fff;
}
.newdet-page .news .news_title h1 {
  padding-bottom: 10px;
  font-size: 20px;
  text-align: center;
  color: #fff;
}
.newdet-page .news .news_date {
  text-align: center;
  line-height: 22px;
  border-bottom: 1px solid #555;
  padding-bottom: 5px;
}
.newdet-page .news .news_abst {
  border-bottom: 1px solid #555;
  padding: 10px 0;
}
.newdet-page .news .news_abst p {
  display: inline-block;
}
.newdet-page .news .news_contents {
  color: #fff;
  line-height: 24px;
  clear: both;
  margin-top: 10px;
  border-bottom: 1px solid #555;
  padding: 20px 0 40px;
}
.newdet-page .news .news_contents a {
  color: #fff;
  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: #fff;
  font-size: 14px;
  line-height: 24px;
  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: 25px;
  color: #fff;
  font-size: 15px;
  margin-left: 5px;
}
.newdet-page .news .news_next a:hover {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #fff;
}
.newdet-page .news .newsnav {
  margin-bottom: 30px;
}
.contact-page .c-map {
  border: 1px solid #ccc;
}
.contact-page .c-info {
  padding: 98px 0 96px;
  background: #fafafc;
}
.contact-page .c-info .c-tit h3 {
  color: #2d2d2d;
  font-family: l;
  font-size: 3.4rem;
}
.contact-page .c-info .c-tit p {
  margin-top: -2px;
}
.contact-page .c-info .clist {
  margin-top: 42px;
  color: #2d2d2d;
  line-height: 2.5em;
  font-size: 1.8rem;
  position: relative;
}
.contact-page .c-info .clist i {
  display: block;
  margin-bottom: 26px;
}
.contact-page .c-info .clist .qr-code {
  position: absolute;
  right: 1rem;
  bottom: 0;
  width: 145px;
  padding: 5px;
  background: #e9e9e9;
}
.f-feedback {
  background: url("../images/i-fb-bg.jpg") no-repeat center;
  padding: 60px 0;
}
.f-feedback .fb-tit {
  text-align: center;
  font-family: l;
}
.f-feedback .fb-tit h2,
.f-feedback .fb-tit p {
  color: #fff;
}
.f-feedback .fb-tit h2 {
  font-size: 3.8rem;
  font-family: l;
}
.f-feedback .fb-tit p {
  font-size: 1.4rem;
  line-height: 24px;
  margin-top: 2px;
}
.f-feedback .form-box {
  font-family: lato-light;
  margin-top: 59px;
}
.f-feedback .form-box input,
.f-feedback .form-box textarea,
.f-feedback .form-box button {
  font-size: 1.4rem;
  display: block;
  width: 100%;
  background: #fff;
  border: none;
  outline: none;
  resize: none;
  color: #444;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.f-feedback .form-box .form-head {
  margin-bottom: 20px;
}
.f-feedback .form-box .form-head input {
  padding: 0 26px;
  height: 46px;
}
.f-feedback .form-box .form-fot{
  margin-bottom: 20px;
}
.f-feedback .form-box .form-fot textarea {
  height: 85px;
  padding: 15px 26px;
}
.f-feedback .form-box .form-sub button {
  cursor: pointer;
  width: 166px;
  height: 46px;
  float: right;
  color: #fff;
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
  background: none;
}
.f-feedback .form-box .form-sub button:before {
  background: #262626;
}
.f-feedback .form-box .form-sub button:before,
.f-feedback .form-box .form-sub button:after {
  border-radius: 24px;
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  -o-border-radius: 24px;
}
.f-feedback .form-box .form-sub button:after {
  border-color: #262626;
  background: none;
}
.f-feedback .form-box .form-sub button:hover {
  color: #262626;
}
.f-feedback .form-box ::-webkit-input-placeholder {
  color: #aaaaaa;
}
.f-feedback .form-box :-moz-placeholder {
  color: #aaaaaa;
}
.f-feedback .form-box ::-moz-placeholder {
  color: #aaaaaa;
}
.f-feedback .form-box :-ms-input-placeholder {
  color: #aaaaaa;
}
.m-page {
  text-align: center;
  padding: 45px 0;
  font-size: 1rem;
  margin-top: 40px;
}
.m-page li{
  display: inline-block;
}
.m-page span,
.m-page a {
  margin: 0 1px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  display: inline-block;
  min-width:28px;
  height: 28px;
  line-height: 28px;
  padding: 0 10px;
  background-image: -moz-linear-gradient(top, #575e63, #404549);
  /* Firefox */
  background-image: -webkit-linear-gradient(top, #575e63, #404549);
  /* Saf4+, Chrome */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#575e63, endColorstr=#404549, GradientType='0');
  /* IE*/
  color: #fff;
}
.m-page a:hover,
.m-page .current,
.m-page .active {
  background-image: -moz-linear-gradient(top, #566f82, #3e505e);
  /* Firefox */
  background-image: -webkit-linear-gradient(top, #566f82, #3e505e);
  /* Saf4+, Chrome */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#566f82, endColorstr=#3e505e, GradientType='0');
  /* IE*/
}
@media  screen and (max-width: 1800px){

  #fpmenu li {
    -webkit-transition: .5s;
-o-transition: .5s;
transition: .5s;
  }
  #fp-nav.right {
    right:25px !important;
  }
  #fpmenu li a span {
    left:0 !important;
    top:8px !important;
    font-size:12px !important;
  }
  #fpmenu li.active, #fpmenu li:hover {
    margin-bottom:30px;
  }
  
}

.lg-page.factory>.container{
  width: 100%!important;
  padding: 0!important;
}
.honour-page{
  padding: 80px 0;
}
.honour-page .hon-tit{
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 30px;
}
.honour-page .hon-cat{
  text-align: center;
  margin: 50px 0 70px;
}
.honour-page .hon-cat li{
  display: inline-block;
  margin: 0 20px;
}
.honour-page .hon-cat li a{
  color: #fff;
}
.honour-page .hon-list{
  position: relative;
}
.honour-page .hon-list .chevron{
  position: absolute;
  top: 48%;
  color: #b7c8dc;
  font-size: 24px;
  cursor: pointer;
  outline: none;
}
.honour-page .hon-list .chevron.left{
  left: 0;
}
.honour-page .hon-list .chevron.right{
  right: 0;
}
.honour-page .hon-list .slideBox{
  width: 55%;
  margin: 0 auto;
}

.network-box .load {
    position: absolute;
    width: 13px;
    height: 13px;
    background-color: transparent;
    border-radius: 100px;
}
.network-box .load.dot1{
  left: 154px;
    top: 164px;
}
.network-box .load.dot2{
  left: 229px;
    top: 108px;
}
.network-box .load.dot2:before{
  animation-delay: 0.6s;
}
.network-box .load.dot3{
  left: 329px;
    bottom: 208px;
}
.network-box .load.dot3:before{
  animation-delay: 0.4s;
}
.network-box .load.dot4{
  left: 43.6%;
    top: 82px;
}
.network-box .load.dot5{
  left: 49.3%;
    top: 180px;
}
.network-box .load.dot5:before{
  animation-delay: 1s;
}
.network-box .load.dot6{
  left: 52%;
    top: 121px;
}
.network-box .load.dot7{
  left: 55.3%;
    top: 100px;
}
.network-box .load.dot7:before{
  animation-delay: 0.8s;
}
.network-box .load.dot8{
  left: 59.4%;
    top: 137px;
}
.network-box .load.dot9{
  left: 62.6%;
    top: 180px;
}
.network-box .load.dot9:before{
  animation-delay: 0.3s;
}
.network-box .load.dot10{
  right: 28.8%;
    top: 182px;
}
.network-box .load.dot11{
  right: 27.1%;
    top: 182px;
}
.network-box .load.dot11:before{
  animation-delay: 1.2s;
}
.network-box .load.dot12{
  right: 24.7%;
    top: 111px;
}
.network-box .load.dot12:before{
  animation-delay: 0.5s;
}
.network-box .load.dot13{
  right: 22.2%;
    top: 130px;
}
.network-box .load.dot13:before{
  animation-delay: 0.7s;
}
.network-box .load.dot14{
  right: 21.3%;
    top: 117px;
}
.network-box .load.dot15{
  right: 22.7%;
    top: 237px;
}
.network-box .load:after,.network-box .load:before {
    width: 13px;
    height: 13px;
    background-color: white;
}
.network-box .animation-medium:before {
    z-index: 200;
    -webkit-animation: inner-ripple 3500ms linear infinite;
    -moz-animation: inner-ripple 3500ms linear infinite;
    animation: inner-ripple 3500ms linear infinite;
}
.network-box .load:after, .network-box .load:before {
    display: inline-block;
    margin: auto;
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 100px;
    background-color: #fff;
    opacity: .8;
}
@keyframes inner-ripple {
    0% {
        transform:scale(1);
        filter:alpha(opacity=50);
        opacity:0.8
    }
    30% {
        transform:scale(1);
        filter:alpha(opacity=50);
        opacity:0.5
    }
    100% {
        transform:scale(10.5);
        filter:alpha(opacity=0);
        opacity:0
    }
}
@-webkit-keyframes inner-ripple {
    0% {
        transform:scale(1);
        filter:alpha(opacity=50);
        opacity:0.8
    }
    30% {
        transform:scale(1);
        filter:alpha(opacity=50);
        opacity:0.5
    }
    100% {
        transform:scale(5.5);
        filter:alpha(opacity=0);
        opacity:0
    }
}
@-moz-keyframes inner-ripple {
    0% {
        transform:scale(1);
        filter:alpha(opacity=50);
        opacity:0.8
    }
    30% {
        transform:scale(1);
        filter:alpha(opacity=50);
        opacity:0.5
    }
    100% {
        transform:scale(5.5);
        filter:alpha(opacity=0);
        opacity:0
    }
}

.technology-page .pro-list{
  padding-top: 30px;
}
.technology-page .pro-list .hwaq_img_btn_01{
  width: 24%!important;
  margin: 0 1.33% 20px 0;
}
.technology-page .pro-list .hwaq_img_btn_01:nth-of-type(4n){
  margin: 0;
}

@media (max-width:1200px){
  .faq-page .faq-search{
    width: 100%;
  }
  .faq-page .faq-list{
    padding: 0;
  }
}

@media (max-width:992px){
  .inner-banner{
    margin-top: 45px;
    height: 400px;
    padding-top: 150px;
  }
  .inner-banner .inner-tit{
    font-size: 25px;
  }
.cat-box li{
    font-size: 16px;
    margin: 0;
  }
  .faq-page .faq-search > form input{
    width: 85%;
  }
  .contact-page .c-info .c-tit h3{
    font-size: 30px;
  }
  .contact-page .c-info .clist{
    font-size: 16px;
  }
}

@media (max-width:576px){
  .inner-banner{
    height: 250px;
    padding-top: 80px;
  }
.cat-box{
  }
  .inner-page{
    margin-top: 0!important;
  }
  .faq-page .faq-tit{
    font-size: 25px;
  }
  .faq-page{
    padding: 60px 0;
  }
  .faq-page .faq-list li .faq-a{
    font-size: 20px;
  }
  .faq-page .faq-list li .faq-q p{
    font-size: 16px;
  }
  .prodet-page .proTit{
    font-size: 20px;
  }
  .f-feedback .fb-tit h2{
    font-size: 30px;
  }
  .f-feedback .form-box .form-head .column{
    margin-bottom: 20px;
  }
  .news-page .new-list li .new-pic{
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
  .news-page .new-list li .new-con{
    width: 100%;
    float: none;
    padding: 0;
  }
  #mapContainer{
    height: 300px!important;
  }
}
#cs{
	width: 100%;
}
#cs td{
	border: 1px solid #ccc;
	border-collapse: collapse;
	padding: 10px 20px;
}
#cs tr:nth-of-type(2n){
	background: #333;
}
