@font-face {
  font-family: 'Poppins-Light';
  src: url(../fonts/Poppins-Light.ttf) format('truetype');
}
@media screen and (max-width: 1000px){
  .runtop,.runtop1 {
    display: none !important;
  }

}
@font-face {
  font-family: 'Merriweather-Black';
  src: url(../fonts/Merriweather-Black.ttf) format('truetype');
}
@font-face {
  font-family: 'Merriweather-Bold';
  src: url(../fonts/Merriweather-Bold.ttf) format('truetype');
}
@font-face {
  font-family: 'Merriweather-Regular';
  src: url(../fonts/Merriweather-Regular.ttf) format('truetype');
}
@font-face {
  font-family: 'roboto-regular';
  src: url(../fonts/roboto-regular.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto-Light';
  src: url(../fonts/Roboto-Light.woff.ttf) format('truetype');
}
@font-face {
  font-family: 'robotoSlab regular';
  src: url(../fonts/robotoSlab\ regular.ttf) format('truetype');
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Merriweather-Black';
}
p{
  font-family: 'Roboto-Light';  
}
.container {
  width: 1430px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  line-height:28px;
}
#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
#header img {
  width: auto;
}
.runtop{
font-size:24px;
color:#f47415;
margin-bottom:10px;}
#header .nav {
  position: relative;
  width: 100%;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
#header .nav .nav-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
#header .nav .nav-box .h-logo {
  padding: 35px 0;
}
#header .nav .nav-box .menu-box {
  padding: 0;
  position: relative;
  display: flex;
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
}
#header .nav .nav-box .menu-box .menu > li {
  display: inline-block;
  position: relative;
  margin: 0 20px;
  vertical-align: top;
}
#header .nav .nav-box .menu-box .menu > li > a {
  font-size: 17px;
  color: #ffffff;
  display: block;
  position: relative;
  padding: 10px 0;
  font-family: 'Poppins-Light';
}
#header .nav .nav-box .menu-box .menu > li > a:after {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 0.5px;
  height: 46px;
  background: #f57d13;
}
#header .nav .nav-box .menu-box .menu > li:hover > a {
  color: #f57d13;
}
#header .nav .nav-box .menu-box .menu > li:hover > a:after {
  top: -40px;
}
#header .nav .nav-box .menu-box .menu > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 180px;
  background: #f57d13;
  text-align: left;
  z-index: 101;
  display: none;
}
#header .nav .nav-box .menu-box .menu > li .sub-menu li {
  transition: 0.2s ease-in;
  -webkit-transition: 0.2s ease-in;
  -moz-transition: 0.2s ease-in;
  -ms-transition: 0.2s ease-in;
  -o-transition: 0.2s ease-in;
  line-height: normal;
}
#header .nav .nav-box .menu-box .menu > li .sub-menu li a {
  font-size: 15px;
  color: #fff;
  display: block;
  padding: 10px 18px;
}
#header .nav .nav-box .menu-box .menu > li .sub-menu li:hover {
  background: #222;
}
#header .nav .nav-box .menu-box .menu > li .sub-menu .children{
  position: absolute;
  left: 100%;
  top: 0;
  background: #f57d13;
  display: none;
  width:110%;
}
#header .nav .nav-box .menu-box .menu > li .sub-menu .children li a{
  font-size: 12px;
}
#header .nav .nav-box .menu-box .menu > li .sub-menu li:hover .children{
  display: block;
}
#header .nav .nav-box .menu-box .language {
  display: flex;
  align-items: center;
  margin-left: 10px;
  position: relative;
}
#header .nav .nav-box .menu-box .language::after {
  position: absolute;
  content: "";
  width: 0.5px;
  height: 40%;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#header .nav .nav-box .menu-box .language > a {
  display: inline-block;
  vertical-align: middle;
  font-size: 17px;
  color: #ffffff;
  margin: 0 8px;
  text-transform: uppercase;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  font-family: 'Poppins-Light';
}
#header .nav .nav-box .menu-box .language > a:hover {
  color: #f57d13;
}
#header .nav .nav-box .menu-box .h-search {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 20px;
}
#header .nav .nav-box .menu-box .h-search i {
  color: #ffffff;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
#header .nav .nav-box .menu-box .h-search i:hover {
  color: #f57d13;
}
#header .nav .nav-box .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .nav-box .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .nav-box .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .nav-box .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .nav-box .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .nav-box .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .nav-box .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner {
  position: relative;
}
#banner .navigation {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
#banner .navigation .container {
  display: flex;
  justify-content: flex-end;
}
#banner .navigation .container .swiper-button-prev,
#banner .navigation .container .swiper-button-next {
  position: relative;
  margin-top: 0;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #000000;
  margin: 0 .5px;
  background: #f2f3f2;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
#banner .navigation .container .swiper-button-prev:hover,
#banner .navigation .container .swiper-button-next:hover {
  background: #f47415;
  color: #ffffff;
}
#banner .navigation .container .swiper-button-prev::after,
#banner .navigation .container .swiper-button-next::after {
  display: none;
}
#banner .navigation .container .swiper-button-prev {
  left: 0;
}
#banner .navigation .container .swiper-button-next {
  right: 0;
}
#index-body h1.h1,
#index-body h2.h2,
#index-body h3.h3,
#index-body h4.h4,
#index-body h5.h5,
#index-body h6.h6,
#index-body h1,
#index-body h2,
#index-body h3,
#index-body h4,
#index-body h5,
#index-body h6,
#index-body p {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  font-style: inherit;
}
#index-body a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  font-style: inherit;
}
#index-body span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  font-style: inherit;
}
#index-body em {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  font-style: inherit;
}
#index-body img {
  width: auto;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}
#index-body p {
  font-size: 15px;
  font-family: 'Poppins-Light';
  color: #666666;
}
#index-body p.p {
  font-size: 14px;
  font-family: 'Poppins-Light';
}
#index-body .init-1 {
  padding: 110px 0;
}
#index-body .init-1 .about-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#index-body .init-1 .about-box .left {
  width: 52.5%;
  position: relative;
}
#index-body .init-1 .about-box .left::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #f5f5f5;
  left: -22px;
  bottom: -22px;
}
#index-body .init-1 .about-box .right {
  width: 47.5%;
  padding-left: 90px;
}
#index-body .init-1 .about-box .right h4{
  font-size: 40px;
  color: #313942;
  line-height: 1.1;
  font-family: 'Merriweather-Black';
  margin-bottom: 20px;

}
#index-body .init-1 .about-box .right h1 {
  font-size: 15px;
  color: #313942;
  line-height: 1.1;
  font-family: 'Merriweather-Black';
  margin-bottom: 20px;
}
#index-body .init-1 .about-box .right p {
  line-height: 1.8;
  word-break: break-all;
}

#index-body .init-1 .about-box .right .siteintro{
line-height: 1.8;
  word-break:normal;
    font-size: 15px;
  font-family: 'Poppins-Light';
  color: #666666;

}
#index-body .init-1 .about-box .right .siteintro .siteh1{
  display: inline;
    font-size: 15px;
  font-family: 'Poppins-Light';
  color: #666666;
}

#index-body .more {
  display: inline-block;
  padding: 15px 35px;
  line-height: 1;
  overflow: hidden;
  font-size: 16px;
  color: #fff;
  background: #fff;
  background: #313942;
  font-family: 'Merriweather-Regular';
  position: relative;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}
#index-body .more:hover {
  background: none;
}
#index-body .more:hover::after {
  height: 200px;
  width: 200px;
}
#index-body .more::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #f47415;
  z-index: -1;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}
#index-body .init-1 .about-box .right .more {
  display: inline-block;
  margin-top: 30px;
  padding: 15px 35px;
  line-height: 1;
  overflow: hidden;
  font-size: 16px;
  color: #fff;
  background: #fff;
  background: #f47415;
  font-family: 'Merriweather-Regular';
  position: relative;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}
#index-body .init-1 .about-box .right .more:hover {
  background: none;
}
#index-body .init-1 .about-box .right .more:hover::after {
  height: 200px;
  width: 200px;
}
#index-body .init-1 .about-box .right .more::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #313942;
  z-index: -1;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}
#index-body .init-2 {
  background: url(../images/size-bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 88px 95px;
}
#index-body .init-2 ul {
  display: flex;
  flex-wrap: wrap;
}
#index-body .init-2 ul .content {
  width: 16.666666%;
  display: flex;
  align-items: flex-start;
  padding-right: 15px;
}
#index-body .init-2 ul .content:hover img {
  transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -webkit-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -moz-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -ms-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
  -o-transform: translate(0, 0) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(360deg);
}
#index-body .init-2 ul .content img {
  margin-right: 20px;
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
}
#index-body .init-2 ul .content li {
  max-width: 160px;
}
#index-body .init-2 ul .content li span {
  font-size: 40px;
  color: #fff;
  line-height: 1;
  font-family: 'Merriweather-Bold';
  margin-bottom: 15px;
  display: inline-block;
}
#index-body .init-2 ul .content li p {
  color: #fff;
  line-height: 1;
  font-family: 'Merriweather-Regular';
}
#index-body .init-3 {
  padding: 70px 88px 85px;
  background: #f5f5f5;
}
#index-body .init-3 h1,#index-body .init-3 h4 {
      text-align: right;
    font-size: 20px;
    color: #000000;
    font-family: 'Merriweather-Regular';
}
#index-body .init-3 h1:hover{
  color: #f47415;
}
#index-body .init-3 .hotBox {
  margin-top: 30px;
  position: relative;
}
#index-body .init-3 .hotBox .swiper-slide:hover .product-img {
  border: 2px solid #f47415;
}
#index-body .init-3 .hotBox .swiper-slide:hover .product-img p {
  background: #f47415;
}
#index-body .init-3 .hotBox .swiper-slide .product-img {
  display: block;
  overflow: hidden;
  border: 1px solid #c9c9c9;
  position: relative;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  position: relative;
}
#index-body .init-3 .hotBox .swiper-slide .product-img .watermark{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: auto;
  z-index: 3;
}
#index-body .init-3 .hotBox .swiper-slide .product-img:hover .productImg {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
#index-body .init-3 .hotBox .swiper-slide .product-img .productImg {
  width: 100%;
  position: relative;
  z-index: 2
}
#index-body .init-3 .hotBox .swiper-slide .product-img p {
  position: absolute;
  padding: 12px 12px;
  background: #f5f5f5;
  font-family: 'Merriweather-Regular';
  text-transform: uppercase;
  top: 0;
  right: 0;
  color: #000000;
  display: none;
}
b{
 color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  font-style: inherit;

}
#index-body .init-3 .hotBox .swiper-slide h2 {
  text-align: center;
  padding: 20px 15px;
  font-size: 20px;
  color: #000000;
  font-family: 'Merriweather-Regular';
  line-height: 1.5;
}
#index-body .init-3 .hotBox .swiper-slide h2:hover {
  color: #f47415;
}
#index-body .init-3 .hotBox .swiper-button-prev,#index-body .init-3 .hotBox .swiper-button-next{
  background: rgba(0, 0, 0, 0.2);
}
#index-body .init-3 .hotBox .swiper-button-prev:after,#index-body .init-3 .hotBox .swiper-button-next:after{
  color: #f47415;
  font-size: 20px;
}
#index-body .init-3 .hotBox .swiper-button-prev{
  left: -50px;
}
#index-body .init-3 .hotBox .swiper-button-next{
  right: -50px;
}
#index-body .init-4 .categoryBox .swiper-slide {
  position: relative;
}
#index-body .init-4 .categoryBox .swiper-slide:hover img{
    opacity: 0;
}
#index-body .init-4 .categoryBox .swiper-slide img {
  width: 100%;
  position: relative;
  z-index: 1;
}
#index-body .init-4 .categoryBox .swiper-slide .category-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
}
#index-body .init-4 .categoryBox .swiper-slide .category-link h2 {
  font-size: 28px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 25px;
  font-family: 'Merriweather-Black';
}
#index-body .init-4 .categoryBox .swiper-slide .category-link > a {
  display: inline-block;
  padding: 13px 30px;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-family: 'Merriweather-Regular';
  position: relative;
  overflow: hidden;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}
#index-body .init-4 .categoryBox .swiper-slide .category-link > a:hover {
  border: 2px solid #fff;
  color: #000;
}
#index-body .init-4 .categoryBox .swiper-slide .category-link > a:hover::after {
  width: 250px;
  height: 250px;
}
#index-body .init-4 .categoryBox .swiper-slide .category-link > a::after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 0;
  height: 0;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  border-radius: 100%;
}
.init-5 {
  padding: 120px 88px 110px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.init-5 ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}
.init-5 ul li:last-child .text p {
  height: auto;
}
#index-body .init-5 ul li .text {
  max-width: 495px;
}
.init-5 ul li .text h2 {
  font-size: 32px;
  color: #313942;
  line-height: 1;
  font-family: 'Merriweather-Black';
  margin-bottom: 15px;
}
.init-5 ul li .text p {
  line-height: 1.8;
  height: 175px;
  line-height:28px;
}
.init-5 ul li img {
  margin-right: 30px;
  width:auto;
}
.init-5 .left {
  width: 35.5%;
}
.init-5 .left ul li {
  text-align: right;
}
.init-5 .left ul li img {
  margin-right: 0;
  margin-left: 30px;
  width:auto;
}
.init-5 .centre {
  width: 29%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.init-5 .right {
  width: 35.5%;
}
#index-body .init-6 .factoryBox .swiper-slide {
  position: relative;
}
#index-body .init-6 .factoryBox .swiper-slide:hover::after {
  opacity: 1;
}
#index-body .init-6 .factoryBox .swiper-slide::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
#index-body .init-6 .factoryBox .swiper-slide img {
  width: 100%;
}
#index-body .init-7 {
  padding: 80px 0;
  background: #f5f5f5;
}
#index-body .init-7 .honor-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#index-body .init-7 .honor-box .left {
  width: 57.5%;
}
#index-body .init-7 .honor-box .left .honorBox {
  padding: 85px 85px 40px;
  background: #fff;
  box-shadow: 0 0 50px 50px rgba(0, 0, 0, 0.05);
}
#index-body .init-7 .honor-box .left .honorBox .swiper-slide img {
  width: 100%;
  border: 1px solid #eee
}
#index-body .init-7 .honor-box .left .honorBox .swiper-pagination {
  margin-top: 50px;
  position: relative;
}
#index-body .init-7 .honor-box .left .honorBox .swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  background: #c7c7c7;
  margin: 0 10px;
  opacity: 1;
}
#index-body .init-7 .honor-box .left .honorBox .swiper-pagination .swiper-pagination-bullet-active {
  background: #f47415;
}
#index-body .init-7 .honor-box .right {
  width: 42.5%;
  padding: 0 45px 0 100px;
}
#index-body .init-7 .honor-box .right h1,#index-body .init-7 .honor-box .right h4 {
  font-size: 48px;
  color: #313942;
  line-height: 1;
  font-family: 'Merriweather-Black';
  margin-bottom: 20px;
}
#index-body .init-7 .honor-box .right .clientsBox {
  margin-top: 20px;
}
#index-body .init-7 .honor-box .right .clientsBox .swiper-slide h2{
  font-size: 24px;
  color: #313942;
  text-transform: uppercase;
  font-family: 'Merriweather-Black';
  line-height: 1.5;
  margin-bottom: 15px;
}
#index-body .init-7 .honor-box .right .clientsBox .swiper-slide p {
  font-size: 18px;
  line-height: 1.8;
  word-break: break-all;
}
#index-body .init-7 .honor-box .right .clientsBox #gallery {
  margin-top: 60px;
}
#index-body .init-7 .honor-box .right .clientsBox #gallery .swiper-slide {
  text-align: center;
}
#index-body .init-7 .honor-box .right .clientsBox #gallery .swiper-slide .clients-img {
  width: 95px;
  height: 95px;
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
#index-body .init-7 .honor-box .right .clientsBox #gallery .swiper-slide .clients-img:hover {
  background: #f47415;
}
#index-body .init-7 .honor-box .right .clientsBox #gallery .swiper-slide-thumb-active .clients-img {
  background: #f47415;
}
#index-body .init-8 {
  margin-bottom: 5px;
}
#index-body .init-8 .newsBox .swiper-slide {
  padding: 60px 50px 75px 50px;
  background: #313942;
}
#index-body .init-8 .newsBox .swiper-slide p.pp {
  display: inline-block;
  padding: 8px 12px;
  background: #1f2c3a;
  font-family: 'Merriweather-Regular';
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
}
#index-body .init-8 .newsBox .swiper-slide h2 {
  font-size: 24px;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Merriweather-Black';
  line-height: 35px;
  margin: 30px 0 10px;
}
#index-body .init-8 .newsBox .swiper-slide h2:hover {
  color: #f57d13;
}
#index-body .init-8 .newsBox .swiper-slide p {
  color: #c6c6c6;
  line-height: 1.8;
  margin-bottom: 25px;
  word-break: break-all;
}
#index-body .init-8 .newsBox .swiper-slide .more {
  display: inline-block;
  width: 43px;
  height: 43px;
  background: #fff;
  font-size: 20px;
  padding: 0;
  color: #000000;
  text-align: center;
  overflow: hidden;
  line-height: 43px;
  position: relative;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
#index-body .init-8 .newsBox .swiper-slide .more:hover {
  background: #f57d13;
  color: #fff;
}
#footer {
  position: relative;
  background: url(../images/footer-bg.jpg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}
#footer h1.h1,
#footer h2.h2,
#footer h3.h3,
#footer h4.h4,
#footer h5.h5,
#footer h6.h6,
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6,
#footer p {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
#footer a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  font-style: inherit;
}
#footer span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  line-height: inherit;
  font-style: inherit;
}
#footer img {
  width: auto;
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
}
#footer .top {
  padding: 105px 0 50px;
}
#footer .top .topBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#footer .top .topBox .left {
  width: 53%;
}
#footer .top .topBox .left h1,#footer .top .topBox .left h4 {
  font-size: 48px;
  line-height: 1;
  color: #fff;
  font-family: 'Merriweather-Black';
  margin-bottom: 20px;
}
#footer .top .topBox .left p {
  font-size: 14px;
  color: #fff;
  line-height: 2;
  font-family: 'Poppins-Light';
  word-break: break-all;
  margin-bottom: 25px;
}
#footer .top .topBox .left form {
  display: flex;
  justify-content: space-between;
}
#footer .top .topBox .left form input {
      width: 28%;
  height: 60px;
  border: 1px solid #fff;
  background: none;
  padding: 0 25px 0 10px;
  font-size: 16px;
  font-family: 'roboto-regular';
  color: #fff;
}
#footer .top .topBox .left form input:focus {
  border: 1px solid #f47415;
}
#footer .top .topBox .left form input[type="submit"] {
  width: 15%;
  height: 60px;
  border: none;
  background: #f47415;
  font-size: 16px;
  color: #fff;
  font-family: 'roboto-regular';
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  padding: 0;
  border: 1px solid #f47415;
}
#footer .top .topBox .left form input[type="submit"]:hover {
  background: #fff;
  color: #f47415;
  border: 1px solid #fff;
}
#footer .top .topBox .left form input::-webkit-input-placeholder {
  font-size: 16px;
  color: #fff;
  font-family: 'roboto-regular';
  opacity: 1;
}
#footer .top .topBox .left form input::-moz-input-placeholder {
  font-size: 16px;
  color: #fff;
  font-family: 'roboto-regular';
  opacity: 1;
}
#footer .top .topBox .left form input::-moz-placeholder {
  font-size: 16px;
  color: #fff;
  font-family: 'roboto-regular';
  opacity: 1;
}
#footer .top .topBox .left form input::-ms-input-placeholder {
  font-size: 16px;
  color: #fff;
  font-family: 'roboto-regular';
  opacity: 1;
}
#footer .top .topBox .left ul {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
}
#footer .top .topBox .left ul li:nth-child(8)~li {display:none;}
#footer .top .topBox .left ul li {
  margin-right: 20px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-family: 'Poppins-Light';
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
#footer .top .topBox .left ul li:hover {
  color: #f47415;
}
#footer .top .topBox .right {
  padding-right: 40px;
  position: relative;
}
#footer .top .topBox .right #ewm{
  position: absolute;
  width: 100px;
  height: 100px;
  bottom: 0;
  right: 0;
  border: 4px solid #fff;
}
#footer .top .topBox .right #ewm img:nth-child(2){
  display: none !important;
}
#footer .top .topBox .right ul li {
  margin-bottom: 20px;
}
#footer .top .topBox .right ul li h4 {
  font-size: 30px;
  color: #ffffff;
  line-height: 1;
  font-family: 'Merriweather-Regular';
  margin-bottom: 10px;
}
#footer .top .topBox .right ul li h3 {
  display: flex;
  align-items: center;
  font-size: 30px;
  line-height: 1;
  color: #f47415;
}
#footer .top .topBox .right ul li h3 i {
  font-size: 30px;
  margin-right: 5px;
  color: #f47415;
}
#footer .top .topBox .right ul li h2 {
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
  font-family: 'Merriweather-Bold';
  margin-bottom: 12px;
}
#footer .top .topBox .right ul li p {
  font-size: 16px;
  color: #bcbcbc;
  line-height: 1;
}
#footer .top .topBox .right ul li img{
  width: 100px;
}
#footer .top .topBox .right ul li img:nth-child(1){
  margin-right: 10px;
}
#footer .footer-bottom {
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.7);
}
#footer .footer-bottom .bottom-box {
  display: flex;
  position: relative;
}
#footer .footer-bottom .bottom-box p {
  font-size: 16px;
  color: #ffffff;
  display: flex;
  align-items: center;
  font-family: 'Roboto-Light';
  line-height: 28px;
}
#footer .footer-bottom .bottom-box p:last-child {
  padding-right: 60px;
}
#footer .footer-bottom .bottom-box p a {
  display: flex;
  align-items: center;
}
#footer .footer-bottom .bottom-box p img {
  width: 220px;
  height: auto;
  margin: 0 5px;
}
#footer .footer-bottom .bottom-box .Stick {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  font-size: 30px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
#footer .footer-bottom .bottom-box .Stick:hover {
  color: #f57d13;
}
@media screen and (max-width: 1430px) {
  .container {
    width: 1230px;
  }
  #index-body .init-2 {
    padding: 100px 15px 95px;
  }
  #index-body .init-2 ul .content img {
    width: 53px;
    height: auto;
    margin-right: 10px;
  }
  #index-body .init-2 ul .content li span {
    font-size: 30px;
  }
  #index-body p {
    font-size: 14px;
  }
  #index-body .init-1 .about-box .right h1 {
    font-size: 50px;
  }
  #index-body .init-3 {
    padding: 70px 15px 85px;
  }
  #index-body .init-4 .categoryBox .swiper-slide .category-link h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }
  #index-body .init-4 .categoryBox .swiper-slide .category-link > a {
    padding: 10px 20px;
    font-size: 14px;
  }
  #index-body .init-5 {
    padding: 80px 15px 50px;
  }
  #index-body .init-5 ul li .text h2 {
    font-size: 24px;
  }
  #index-body .init-5 ul li .text p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    height: 100px;
  }
  #index-body .init-7 .honor-box .right .clientsBox #gallery .swiper-slide .clients-img {
    width: 77px;
    height: 77px;
    padding: 10px;
  }
  #index-body .init-7 .honor-box .right h1 {
    font-size: 40px;
  }
  #index-body .init-7 .honor-box .right .clientsBox {
    margin-top: 15px;
  }
  #index-body .init-7 .honor-box .right .clientsBox #gallery {
    margin-top: 60px;
  }
  #index-body .init-8 .newsBox .swiper-slide {
    padding: 40px 20px 55px;
  }
}
@media screen and (max-width: 1230px) {
  .container {
    width: 970px;
  }
  #header .nav .nav-box .menu-box .menu > li > a {
    font-size: 14px;
  }
  #header .nav .nav-box .menu-box .language > a {
    font-size: 14px;
  }
  #header .nav .nav-box .h-logo img {
    width: 180px;
  }
  #header .nav .nav-box .menu-box .menu > li {
    margin: 0 10px;
  }
  #index-body .init-1 .about-box .right h1 {
    font-size: 40px;
  }
  #index-body .init-1 .about-box .right p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
  #index-body .init-1 {
    padding: 60px 0;
  }
  #index-body .init-2 {
    padding: 60px 15px 55px;
  }
  #index-body p {
    font-size: 14px;
  }
  #index-body .init-7 .honor-box .left .honorBox {
    padding: 50px 45px 20px;
  }
  #index-body .init-7 .honor-box .left .honorBox .swiper-pagination {
    margin-top: 30px;
  }
  #index-body .init-7 .honor-box .right {
    padding: 0 25px 0 40px;
  }
  #index-body .init-7 .honor-box .right .clientsBox .swiper-slide p {
    font-size: 14px;
    line-height: 2;
  }
  #index-body .init-7 .honor-box .right .clientsBox #gallery .swiper-slide .clients-img {
    width: 70px;
    height: 70px;
    padding: 10px;
  }
  #index-body .init-5 ul li .text p {
    height: 84px;
  }
  #footer .top .topBox .left h1 {
    font-size: 30px;
  }
  #footer .top .topBox .left p {
    font-size: 12px;
  }
  #footer .top .topBox .left form input {
    height: 45px;
    font-size: 12px;
  }
  #footer .top .topBox .left form input::-webkit-input-placeholder {
    font-size: 12px;
    color: #fff;
    font-family: 'roboto-regular';
    opacity: 1;
  }
  #footer .top .topBox .left form input::-moz-input-placeholder {
    font-size: 12px;
    color: #fff;
    font-family: 'roboto-regular';
    opacity: 1;
  }
  #footer .top .topBox .left form input::-moz-placeholder {
    font-size: 12px;
    color: #fff;
    font-family: 'roboto-regular';
    opacity: 1;
  }
  #footer .top .topBox .left form input::-ms-input-placeholder {
    font-size: 12px;
    color: #fff;
    font-family: 'roboto-regular';
    opacity: 1;
  }
  #footer .top .topBox .left form input[type="submit"] {
    height: 45px;
    font-size: 14px;
  }
  #footer .top .topBox .left ul li {
    font-size: 12px;
  }
  #footer .top .topBox .right ul li h4 {
    font-size: 24px;
  }
  #footer .top .topBox .right ul li h3 {
    font-size: 24px;
  }
  #footer .top .topBox .right ul li h2 {
    font-size: 20px;
  }
  #footer .top .topBox .right ul li p {
    font-size: 14px;
  }
  #footer .footer-bottom .bottom-box p {
    font-size: 12px;
  }
  #footer .footer-bottom .bottom-box p img {
    width: 180px;
  }
}
@media screen and (max-width: 1100px) {
  #mobile {
    display: block;
  }
  #banner {
    margin-top: 0;
  }
}
@media screen and (max-width: 1000px) {
  .container {
    width: 700px;
  }
  #index-body .init-1 .about-box .right {
    padding-left: 30px;
  }
  #index-body .init-1 .about-box .right h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  #index-body .init-1 .about-box .right p {
    -webkit-line-clamp: 3;
  }
  #index-body .init-1 .about-box .right .more {
    padding: 10px 20px;
    font-size: 12px;
  }
  #index-body .init-2 ul .content {
    width: 33.33%;
  }
  #index-body .init-2 ul {
    justify-content: center;
  }
  #index-body .init-2 ul li {
    margin-top: 20px;
  }
}
@media screen and (max-width: 700px) {
  .container {
    width: 100%;
  }
  #banner .navigation .container {
    display: none;
  }
  #index-body .init-1 .about-box .left {
    width: 100%;
  }
  #index-body .init-1 .about-box .right {
    padding-left: 0;
    width: 100%;
    margin-top: 30px;
  }
  #index-body .init-2 ul .content {
    width: 50%;
  }
  #index-body .init-2 ul .content img {
    width: 33px;
  }
  #index-body .init-2 ul .content li span {
    font-size: 20px;
  }
  #index-body .init-2 ul li {
    margin-top: 0;
  }
  #index-body .init-2 ul .content {
    margin-top: 20px;
  }
  #index-body .init-5 .left {
    width: 100%;
  }
  #index-body .init-5 .centre {
    width: 100%;
  }
  #index-body .init-5 .right {
    width: 100%;
    margin-top: 35px;
  }
  #index-body .init-7 .honor-box .left {
    width: 100%;
  }
  #index-body .init-3 .hotBox .swiper-button-prev, #index-body .init-3 .hotBox .swiper-button-next{
    display: none;
  }
  #index-body .init-7 .honor-box .right {
    padding: 0;
    width: 100%;
    margin-top: 30px;
  }
  #footer .top .topBox .left {
    width: 100%;
  }
  #footer .top .topBox .right {
    margin-top: 30px;
  }
  #footer .footer-bottom .bottom-box {
    display: block;
  }
  #footer .footer-bottom .bottom-box p {
    text-align: center;
    justify-content: center;
  }
  #footer .top .topBox .right #ewm{
    display: none;
  }
}
#mobile {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  -webkit-transition: .5s !important;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  z-index: 200;
  display: none;
}
#mobile img {
  width: auto;
}
#mobile:before {
  content: '';
  width: 200vh;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  left: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100vh;
  display: block;
  background: #222;
  padding: 40px 10%;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: #e0640d;
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url(../images/icon-search-white.png) no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: #e0640d;
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  left: 0;
}
#mobile.active:before {
  right: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  -o-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  -o-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1100px) {
  #mobile {
    display: block;
  }
  #menu-on {
    display: block;
  }
  #banner {
    margin-top: 0;
  }
}
table {
  margin-bottom: 20px;
  word-break: break-word;
  width: 100% !important;
  height: auto !important;
  display: block;
  overflow: auto;
  line-height:28px;
}
table tbody {
  display: table;
  width: 100% !important;
}
table td,
table th {
  padding: 5px 10px;
  height: auto !important;
}
table tr {
  width: auto !important;
  height: auto !important;
}
table tr:nth-child(odd){
  background: #eee;
}
table tr:nth-child(even) {
  background: #fff;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}






.inner-page .grid-box {
  margin: 0 -15px;
}
.inner-page .grid-box>.column,
.inner-page .grid-box .swiper-slide.column{
  padding: 0 15px;
}
.i-product .i-tit {
  color: #1b1b1b;
}
.i-product .pro-list {
  margin-top: 50px;
}
.i-product .pro-list > .column {
  margin-bottom: 19px;
}
.i-product .pro-list .column .img-box {
  border: 1px solid #eee;
  text-align: center;
}
.i-product .pro-list .column .img-box>a{
  display: block;
  position: relative;
}
.i-product .pro-list .con-box {
  position: relative;
  z-index: 10;
}
.i-product .pro-list .con-box a:hover {
  color: #ee781b!important;
}
.i-product .pro-list .con-box .inner-box {
  background: #eee;
  padding: 5px 10px;
}
.i-product .pro-list .con-box .inner-box .tit a {
  display: block;
  color: #1b1b1b;
  font-size: 17px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.img-box:hover .watermark{
          transform: translate(-50%,-50%);
}
.i-product .pro-list .con-box .inner-box .abst {
  margin: 12px 0 18px;
  color: #9e9c9f;
  font-size: 16px;
  line-height: 28px;
}
.i-product .pro-list .con-box .inner-box .more {
  color: #1b1b1b;
  font-size: 16px;
}
.i-product .pro-list .con-box .inner-box .more .icon {
  margin-left: 14px;
}
.i-whyUs {
  text-align: center;
}
.i-whyUs .why-list {
  margin-top: 64px;
  padding: 0 8%!important;
}
.i-whyUs .why-list > .column {
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
  margin-bottom:30px;
}
.i-whyUs .why-list > .column .icon,
.i-whyUs .why-list > .column .tit {
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
}
.i-whyUs .why-list > .column .icon {
  max-width: 119px;
  width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #676767;
  color: #676767;
  font-size: 40px;
  height: 119px;
  line-height: 119px;
}
.i-whyUs .why-list > .column .tit {
  color: #676767;
  font-size: 19px;
  text-transform: uppercase;
  margin-top: 21px;
}
.i-whyUs .why-list > .column:hover {
  transform: translate(0, -10px) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -webkit-transform: translate(0, -10px) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -moz-transform: translate(0, -10px) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -ms-transform: translate(0, -10px) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -o-transform: translate(0, -10px) rotate(0) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
}
.i-whyUs .why-list > .column:hover .icon {
  color: #ee781b;
  border-color: #ee781b;
}
.i-whyUs .why-list > .column:hover .tit {
  color: #ee781b;
}

@media screen and (max-width: 768px) {
  .f-bot {
    padding: 20px 0;
  }
  .f-bot a {
    display: block;
    line-height: 2em;
  }
}
.inner-banner {
  height: 348px;
  background: url("../images/inner-banner.jpg") no-repeat center;
  background-size: cover;
}
.bread-crumbs {
  font-size: 14px;
  margin-top: 7px;
}
.bread-crumbs,
.bread-crumbs a,
.bread-crumbs span {
  color: white;
}
.bread-crumbs a:hover {
  color: #fff;
  text-decoration: underline;
}
.inner-page .sideBar {
  padding: 10px 0 22px;
  background: #f47415;
  height: 100px;
}
.inner-page .sideBar .side-menu {
  position: relative;
  margin-top: 15px;
}
.inner-page .sideBar .side-menu .nowCat {
  background: #f47415 url("../images/sidebar-line.png") no-repeat 93% center;
  cursor: pointer;
  width: 226px;
  height: 40px;
  line-height: 40px;
  display: block;
  padding-left: 15px;
  color: white;
  font-size: 16px;
  border: 1px solid white;
  text-transform: capitalize;
}
.inner-page .sideBar .side-menu .cat-list {
  display: none;
  z-index: 111;
  position: absolute;
  width: 100%;
  padding: 10px 0;
  background: #f25d18;
  left: 0;
  top: 100%;
}
.watermark{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 40% !important;
  z-index: 3;
}
.wscnph{
  display: inline-block;
  width: 100%;
  padding: 20px 5px;
}
.inner-page .sideBar .side-menu .cat-list li {
  padding: 6px 12px 6px 16px;
}
.inner-page .sideBar .side-menu .cat-list>li .children{
  display: none
}
.inner-page .sideBar .side-menu .cat-list>li .children li{
  padding: 6px 0px 6px 10px;
}
.inner-page .sideBar .side-menu .cat-list li a {
  display: block;
  color: white;
  padding: 5px;
}
.inner-page .sideBar .side-menu .cat-list li a:hover {
  color: #fff;
  text-decoration: underline;
}
.inner-page .inner-main-tit {
  text-align: left;
  color: white;
  width:70%;
  overflow: hidden;
}
.inner-page .inner-main-tit .nowTit {
  font-size: 24px;
  text-transform: capitalize;
  display:block;white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.about-page .a-tit {
  font-size: 29px;
  color: #000;
  text-transform: uppercase;
}
.about-page .a-txt p {
  color: #000000;
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 27px;
}
strong{
  font-size: inherit;
}
.about-page .inner-main-box {
  padding: 90px 0 100px;
  background: #fbfbfb;
}
.about-page .inner-main-box .a-tit {
  margin: 47px 0 24px;
}
.about-page .inner-main-box p{
      color: #000000;
    font-size: 16px;
    line-height: 1.8em;
    margin-top: 15px;
}
.about-page .a-factory{
  padding: 50px 0;
  background: #313942;
}
.about-page .a-factory .swiper-slide img {
  width: 100%;
}
.about-page .a-whyUs {
  padding: 111px 0;
  background: #fbfbfb;
}
.about-page .a-whyUs .a-txt {
  margin: 60px 0 73px;
}
.about-page .a-whyUs .why-list {
  padding: 0!important;
}
.product-page .i-product {
  padding: 35px 0 0px;
}
.product-page .i-product h2 p img{
  width: auto;
}
.product-page .i-product h2 p{
  font-size: 16px;
  margin-bottom: 5px;
  line-height:28px;
}
.about-page .service-2 {
  padding: 70px 0 120px;
  background: #f5f5f5;
}
.about-page .service-2 h1 {
  font-size: 48px;
  line-height: 1;
  color: #000000;
  font-family: 'Merriweather-Black';
  text-align: center;
}
.about-page .service-2 .service-box {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.service-2 .service-box .left {
  width: 50%;
  border: 1px solid #656565;
  padding: 17px;
  background: #fff;
}
.about-page .service-2 .service-box .left h2 {
  font-size: 28px;
  color: #111a22;
  line-height: 1;
  font-family: 'robotoSlab regular';
  text-align: center;
  padding: 60px 0 40px;
}
.about-page .service-2 .service-box .right {
  width: 50%;
  padding-left: 40px;
}
.about-page .service-2 .service-box .right .text {
  padding: 0 30px;
  margin-bottom: 30px;
}
.about-page .service-2 .service-box .right .text h2 {
  font-size: 30px;
  line-height: 1;
  color: #111a22;
  font-family: 'Merriweather-Black';
  margin-bottom: 40px;
}
.about-page .service-2 .service-box .right .text ul {
  position: relative;
}
.about-page .service-2 .service-box .right .text ul::after {
  position: absolute;
  z-index: 1;
  content: "";
  height: 85%;
  width: 1px;
  background: #f47415;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}
.about-page .service-2 .service-box .right .text ul li {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.about-page .service-2 .service-box .right .text ul li:hover span {
  background: #f47415;
}
.about-page .service-2 .service-box .right .text ul li span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #f5f5f5;
  border: 3px solid #f47415;
  margin-right: 20px;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.about-page .service-2 .service-box .right .text ul li p {
  max-width: 560px;
  font-size: 17px;
  color: #101018;
  line-height: 1.5;
  font-family: 'robotoSlab regular';
}
.about-page .service-2 .service-box .right > ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 25px;
}
.about-page .service-2 .service-box .right > ul li {
  width: 33.33333%;
  text-align: center;
  font-size: 28px;
  color: #111a22;
  line-height: 1;
  text-transform: uppercase;
  font-family: 'robotoSlab regular';
}
.about-page .service-3 {
  background: url(../images/network-bg.jpg) no-repeat;
  background-size: 100% auto;
  text-align: center;
}
.about-page .service-3 img {
  width: auto;
}
.about-page .service-3 h1 {
  font-size: 48px;
  line-height: 1;
  color: #fff;
  font-family: 'Merriweather-Black';
  padding: 80px 0 70px;
  text-align: center;
}
.m-page {
  text-align: center;
  padding: 45px 0;
  font-size: 14px;
}
.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;
  width: 28px;
  height: 28px;
  line-height: 31px;
  background-image: -moz-linear-gradient(top, #575e63, #404549);
  /* Firefox */
  background-image: -webkit-linear-gradient(top, #575e63, #404549);
  background-image: -o-linear-gradient(top, #575e63, #404549);
  background-image: -ms-linear-gradient(top, #575e63, #404549);
  background-image: 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);
   background-image: -o-linear-gradient(top, #566f82, #3e505e);
  background-image: -ms-linear-gradient(top, #566f82, #3e505e);
  background-image: linear-gradient(top, #566f82, #3e505e);
  /* Saf4+, Chrome */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#566f82, endColorstr=#3e505e, GradientType='0');
  /* IE*/
}
.prodet-page .prodetTit {
  margin-bottom: 23px;
  color: #121212;
  font-size: 39px;
  text-transform: capitalize;
  text-align: center;
}
.prodet-page .prodet-pics {
  padding: 30px 0 82px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic {
  width: 50%;
  
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .prodetA{
  display: flex;
    justify-content: center;
    border: 1px solid #eee;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .prodetImg{
  margin-top: 15px;
  width: 100%;
  height: auto;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic img {
  margin: 0 auto;
  width: 100%;
}
.prodet-page .prodet-pics .pro-img-gallery ul li img{
  border: 1px solid #eee;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .pro-img-gallery ul {
  margin: 15px -5px 0;
  padding: 0 20px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .pro-img-gallery ul .slick-arrow {
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #eee;
  color: transparent;
  z-index: 1;
  border: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .pro-img-gallery ul .slick-arrow:hover {
  background: #f47415;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .slick.big ul .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    text-indent: -9999em;
    width: 40px;
    height: 40px;
    border: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    background-size: 8px;
    background-position: center center;
    background-repeat: no-repeat;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .slick.big ul .slick-arrow.slick-prev {
    background-image: url("../images/banner-btn-l.png");
    left: 10px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .slick.big ul .slick-arrow.slick-next {
    background-image: url("../images/banner-btn-r.png");
    right: 10px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .pro-img-gallery ul .slick-arrow:after {
  position: absolute;
  top: 50%;
  left: 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: #000;
  font-size: 14px;
  font-family: "FontAwesome";
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .pro-img-gallery ul .slick-arrow.slick-prev {
  left: 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .pro-img-gallery ul .slick-arrow.slick-next {
  right: 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .pro-img-gallery ul .slick-arrow.slick-prev:after {
  content: "\f104";
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .pro-img-gallery ul .slick-arrow.slick-next:after {
  content: "\f105";
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .pro-img-gallery ul li {
  padding: 0 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .slick.big ul li{
  position: relative;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic .slick.big ul li:after{
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one {
  padding-left: 5%;
  width: 50%;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proName {
  color: #121212;
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proEmail {
  display: inline-block;
  color: #1e1e1e;
  font-size: 17px;
  margin-top: 10px;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proSocial {
  margin: 18px 0 20px;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proSocial a {
  margin-right: 6px;
  color: #000;
  font-size: 16px;
  display: inline-block;
  width: 35px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: #f2f2f2;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proSocial a:hover {
  background: #ee781b;
  color: #fff;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .pdf-box a {
  display: inline-block;
  line-height: 40px;
  height: 40px;
  padding: 0 40px;
  font-size: 16px;
  background: #004ca1;
  color: white;
  text-align: center;
  border-radius: 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .pdf-box a i {
  margin-left: 15px;
  display: inline-block;
  vertical-align: middle;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .prodet-thumb .image-gallery:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  clear: both;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .prodet-thumb .image-gallery li {
  padding: 0;
  float: left;
  width: 20%;
  margin-right: 1.5%;
  background: #fafafa;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .prodet-thumb .image-gallery li:nth-of-type(4n) {
  margin-right: 0;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one table tbody tr:nth-child(1){
  background: #f47415 !important;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one table tbody tr:nth-child(1) p{
  color: #fff;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one table tbody tr td:nth-child(1){
  width: 24%
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one table tbody tr td:nth-child(2){
  width: 19%
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one table tbody tr td:nth-child(3){
  width: 22%
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one table tbody tr td:nth-child(4){
  width: 15%
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one table tbody tr td:nth-child(5){
  width: 20%
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one img{
  width: none;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .contact-box{
  display: flex;
  align-items: center;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one a.contact{
      display: inline-block;
    vertical-align: middle;
    line-height: 32px;
    height: 32px;
    background: #f47415;
    color: white;
    padding: 0 25px;
    font-size: 14px;
    margin-top: 10px;
    margin-right: 20px;
}
.prodet-page .prodet-det-two table tbody tr:nth-child(1){
  background: #f47415 !important;
}
.prodet-page .prodet-det-two {
  padding: 75px 0 50px;
  background: #fbfbfb;
}
.prodet-page .prodet-det-two p span{
  display: block;
  margin-top: 15px;
}
.prodet-page .recommand-product {
  padding: 31px 0 133px;
}
.prodet-page .recommand-product .i-product {
  padding: 0;
}
.prodetFeedback {
  padding: 44px 0 64px;
  background: #f2f2f2;
}
.prodetFeedback .innerTit {
  font-size: 32px;
  text-transform: uppercase;
  color: #000;
}
.prodetFeedback .ptForm {
  margin-top: 50px;
}
.prodetFeedback .ptForm label {
  font-size: 16px;
  color: #636363;
  font-weight: 500;
  margin-bottom: 0;
}
.prodetFeedback .ptForm input,
.prodetFeedback .ptForm textarea {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  background: none;
  color: #252525;
  font-size: 16px;
  width: 100%;
  outline: none;
  resize: none;
  border: none;
  border-bottom: 1px solid #cccccc;
}
.prodetFeedback .ptForm .fbTop {
  margin-bottom: 62px;
  height: 45px;
}
.prodetFeedback .ptForm .fbTop li {
  float: left;
  width: 31%;
  margin-right: 2%;
}
.prodetFeedback .ptForm .fbTop li:last-child {
  margin-right: 0;
}
.prodetFeedback .ptForm .fbTop li input {
  height: 15px;
  padding: 0 4px;
}
.prodetFeedback .ptForm .fbTop li input:focus {
  height: 43px;
  border-bottom: 3px solid #ee781b;
}
.prodetFeedback .ptForm .fbBot {
  margin-bottom: 75px;
}
.prodetFeedback .ptForm .fbBot textarea {
  height: 16px;
  overflow: hidden;
}
.prodetFeedback .ptForm .fbBot textarea:focus {
  height: 55px;
  border-bottom: 3px solid #ee781b;
}
.prodetFeedback .ptForm input[type="submit"] {
  cursor: pointer;
  text-align: left;
  padding-left: 31px;
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  text-transform: uppercase;
  font-size: 16px;
  width: 203px;
  height: 52px;
  border: none;
  background: #ee781b url("../images/fb-send.png") no-repeat right 10px center;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  color: #fff;
}
.prodetFeedback .ptForm input[type="submit"]:hover {
  background-color: #222;
}
.news-page .new-list {
  padding-top: 78px!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: 30px;
}
.news-page .new-list li .new-con .tit a {
  height: 48px;
  overflow: hidden;
  display: block;
  color: #777777;
  font-size: 21px;
  line-height: 24px;
}
.news-page .new-list li .new-con .tit a:hover {
  color: #ee781b;
}
.news-page .new-list li .new-con .abst {
  color: #777777;
  font-size: 16px;
  line-height: 27px;
  margin: 25px 0 35px;
}
.news-page .new-list li .new-con .abst a {
  color: #ee781b;
}
.news-page .new-list li .new-con .date span {
  color: #777777;
}
.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: #777777;
}
.newdet-page .news .news_title h1 {
  padding-bottom: 10px;
  font-size: 30px;
  text-align: center;
  color: #222;
}
.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: #555;
  line-height: 24px;
  clear: both;
  margin-top: 10px;
  border-bottom: 1px solid #555;
  padding: 20px 0 40px;
}
.newdet-page .news .news_contents.page {
  border-bottom: none;
}
.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: 14px;
  line-height: 28px;
  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: #777;
  font-size: 15px;
  margin-left: 5px;
}
.newdet-page .news .news_next a:hover {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #000;
}
.newdet-page .news .newsnav {
  margin-bottom: 30px;
}
.contact-page {
    padding: 70px 0;
}
.contact-page .button-group .button {
    background: #f47415 !important;
}
.contact-page .amap-copyright,
.contact-page .amap-logo {
    display: none !important;
}
.contact-page .contact-2 {
    padding-top: 70px;
}
.contact-page .contact-2 .left {
    width: 55%;
    padding-right: 15px;
}
.contact-page .contact-2 .left .form {
    -moz-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    -o-box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    box-shadow: 7px 5px 30px rgba(72, 73, 121, 0.15);
    padding: 30px;
}
.contact-page .contact-2 .right {
    width: 45%;
    padding-left: 15px;
}
.contact-page .contact-2 .right h3.title {
    position: relative;
    padding-bottom: 15px;
}
.contact-page .contact-2 .right h3.title:after {
    position: absolute;
    height: 4px;
    width: 18%;
    background: #f47415 none repeat scroll 0 0;
    content: "";
    left: 0;
    bottom: 0;
}
.contact-page .contact-2 .right h3.title:before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 20%;
    height: 4px;
    width: 20px;
    background: #ddd none repeat scroll 0 0;
}
.contact-page .contact-2 .right ul {
    padding-top: 20px;
    margin: -10px;
}
.contact-page .contact-2 .right ul li {
    padding: 10px;
}
.contact-page .contact-2 .right ul li.wid-100 {
    width: 100%;
}
.contact-page .contact-2 .right ul li h6 {
    font-size: 14px;
    margin-bottom: 7px;
    text-transform: capitalize;
    color: #828893;
    
}
.contact-page .contact-2 .right ul li p {
    font-size: 15px;
    color: #111;
    line-height: normal;
    letter-spacing: 1px;
}
input::-webkit-input-placeholder{ 
               font-size: 14px;
  font-family: 'roboto-regular';
  opacity: 1;
          }   
          input::-moz-input-placeholder{ 
            font-size: 14px;
  font-family: 'roboto-regular';
  opacity: 1;
          } 
          input::-moz-placeholder {
           font-size: 14px;
  font-family: 'roboto-regular';
  opacity: 1;
          }
          input::-ms-input-placeholder{
           font-size: 14px;
  font-family: 'roboto-regular';
  opacity: 1;
          }
textarea::-webkit-input-placeholder {
            font-size: 14px;
  font-family: 'roboto-regular';
  opacity: 1;
          }
          textarea:-moz-placeholder {
            font-size: 14px;
  font-family: 'roboto-regular';
  opacity: 1;
          }
          textarea::-moz-placeholder {
            font-size: 14px;
  font-family: 'roboto-regular';
  opacity: 1;
          }
          textarea::-ms-input-placeholder {
            font-size: 14px;
  font-family: 'roboto-regular';
  opacity: 1;
          }
.faq-page .init-2 ul.faq {
  padding: 40px 0;
}
.faq-page .init-2 ul.faq li {
  display: block;
  padding: 20px 25px;
  margin-bottom: 10px;
  background: #f9f9f9;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  word-break: break-word;
}
.faq-page .init-2 ul.faq li h2 {
  font-size: 22px;
  color: #222;
  padding-bottom: 20px;
}
.faq-page .init-2 ul.faq li p {
  font-size: 16px;
  color: #585858;
}
.faq-page .init-2 ul.faq li:hover {
  box-shadow: 0 0 10px 0 #d1d1d1;
  -webkit-box-shadow: 0 0 10px 0 #d1d1d1;
  -moz-box-shadow: 0 0 10px 0 #d1d1d1;
  -ms-box-shadow: 0 0 10px 0 #d1d1d1;
  -o-box-shadow: 0 0 10px 0 #d1d1d1;
}
.faq-page .init-2 ul.faq li:hover h2 {
  color: #ec6717;
}
::-webkit-input-placeholder {
  color: #777;
}
:-moz-placeholder {
  color: #777;
}
::-moz-placeholder {
  color: #777;
}
:-ms-input-placeholder {
  color: #777;
}
@media screen and (max-width: 768px) {
  .inner-page .sideBar .side-menu {
    float: left;
    margin-top: 10px;
  }
  .inner-banner {
    height: 150px;
  }
  .prodet-page .prodet-pics .grid.two.column .pro-bPic,
  .prodet-page .prodet-pics .grid.two.column .pro-det-one,
  .prodetFeedback .ptForm .fbTop li {
    width: 100%!important;
    padding-left: 0!important;
  }
  .contact-page .c-list-box .contactList .qr-box {
    display: none;
  }
  .prodetFeedback .ptForm .fbTop li {
    margin-bottom: 30px;
  }
  .prodet-page .prodet-pics .grid.two.column .pro-det-one .proName {
    font-size: 19px;
    margin-top: 30px;
  }
  .news-page .new-list li .new-con .abst a{
    display: none;
  }
}
.button-group .button {
  background: #ee781b !important;
}

@media screen and (max-width: 1200px){
  .inner-page .inner-main-tit .nowTit {
    font-size: 28px;
  }
  .about-page .a-whyUs {
    padding: 50px 0;
  }
  .i-whyUs .why-list {
    margin-top: 20px;
  }
  .about-page .a-tit {
    font-size: 24px;
  }
  .i-whyUs .why-list > .column .tit {
    font-size: 16px;
  }
  .about-page .a-txt p {
    font-size: 14px;
  }
  .i-whyUs .why-list > .column .icon {
    width: 80px;
    height: 80px;
    font-size: 30px;
    line-height: 80px;
  }
  .i-product .pro-list .con-box .inner-box .tit a {
    font-size: 18px;
  }
  .i-product .pro-list .con-box .inner-box .more {
    font-size: 14px;
  }
  .grid-box {
    margin: 0 -5px;
  }
  .grid-box>.column, .grid-box .swiper-slide.column {
    padding: 0 5px;
  }
  .i-product .pro-list {
    margin-top: 20px;
  }
  .product-page .i-product {
    padding: 20px 0;
  }
  .m-page {
    padding: 20px 0;
  }
  .prodet-page .prodet-pics .grid.two.column .pro-det-one .proName,.prodet-page .prodetTit,.contact-page .c-list-box .contactList .c-name {
    font-size: 30px;
  }
  .prodetFeedback .innerTit {
    font-size: 28px;
  }
  .prodetFeedback .ptForm input[type="submit"] {
    font-size: 14px;
  }
  .news-page .new-list li .new-con .abst {
    font-size: 14px;
    margin: 15px 0;
  }
  .news-page .new-list li {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .newdet-page .news .news_title h1 {
    font-size: 24px;
  }
  .news-page .new-list {
    padding-top: 20px !important;
  }
  .prodet-page .prodet-det-two {
    padding: 70px 0;
  }

}
@media screen and (max-width: 1000px){
  .grid-box.four>.column {
    width: 33.3333%;
  }
  .grid-box.five>.column {
    width: 25%;
  }
  .inner-page .sideBar .side-menu {
    display: none;
  }
  .inner-page .inner-main-tit .nowTit {
    font-size: 20px;
  }
  .bread-crumbs {
    font-size: 12px;
  }
  .inner-page .sideBar {
    padding: 10px 0;
  }
  .about-page .inner-main-box {
    padding: 50px 0;
  }
  .about-page .a-whyUs .a-txt {
    margin: 30px 0;
  }
  .i-product .pro-list .con-box .inner-box .tit a {
    font-size: 16px;
  }
  .prodet-page .prodet-pics .grid.two.column .pro-bPic {
    text-align: center;
  }
  .prodet-page .prodet-pics .grid.two.column .pro-bPic img {
    width: auto;
    margin: 0 auto;
  }
  .prodet-page .prodet-det-two {
    padding: 50px 0;
  }
  .prodet-page .prodet-pics .grid.two.column .pro-det-one .pdf-box a {
    font-size: 14px;
  }
  .prodetFeedback .ptForm .fbTop li input {
    height: 44px;
  }
  .prodetFeedback .ptForm .fbBot textarea {
    height: 55px;
  }
  .prodetFeedback .ptForm .fbTop {
    margin-bottom: 20px;
  }
  .news-page .new-list li .new-con .abst {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 48px;
  }
  .news-page .new-list li .new-con .tit a {
    font-size: 18px;
    height: auto;
    max-height: 48px;
  }
  .newdet-page .news .news_contents p, .newdet-page .news .news_contents div, .newdet-page .news .news_contents span, .newdet-page .news .news_contents table {
    font-size: 13px;
  }
  .newdet-page .news .news_title h1 {
    font-size: 20px;
  }
  .newdet-page .news {
    padding: 40px 0 !important;
  }
  .prodet-page .prodet-pics .grid.two.column .pro-det-one .proName, .prodet-page .prodetTit, .contact-page .c-list-box .contactList .c-name {
    font-size: 24px;
  }
  .prodetFeedback .innerTit {
    font-size: 20px;
  }
  .prodetFeedback .ptForm label {
    font-size: 14px;
  }
  .prodetFeedback .ptForm .fbTop li {
    margin-bottom: 15px;
  }
  .prodet-page .recommand-product {
    padding: 40px 0;
  }
 .contact-page .contact-2 {
        padding-top: 40px;
    }
    .contact-page .contact-2 .right ul li p {
        font-size: 13px;
    }
    .contact-page .contact-2 .right ul li h6 {
        margin-bottom: 3px;
    }
}

@media screen and (max-width: 700px){
  .inner-page .inner-main-tit .nowTit {
    font-size: 18px;
  }
  .contact-page .contact-2 .left {
        width: 100%;
        padding-right: 0;
    }
    .contact-page .contact-2 .right {
        width: 100%;
        padding-left: 0;
        padding-top: 30px;
    }
  .about-page .a-tit {
    font-size: 18px;
  }
  .about-page .a-txt p {
    font-size: 12px;
    line-height: 24px;
  }
  .about-page .a-whyUs .why-list .column {
    width: 50%;
    margin-bottom: 15px;
  }
  .grid-box.four>.column {
    width: 50%;
  }
  .grid-box.five>.column {
    width: 50%;
  }
  .i-product .pro-list .con-box .inner-box .more {
    font-size: 12px;
  }
  .i-product .pro-list .con-box .inner-box .tit a {
    font-size: 14px;
  }
  table {
    display: inline-block;
    width: 100%;
    overflow-y: auto;
  }
  .news-page .new-list li .new-pic,
  .news-page .new-list li .new-con{
    width: 100%;
  }
  .news-page .new-list li .new-con {
    padding-top: 10px;
  }
  .news-page .new-list li .new-con .tit a {
    font-size: 16px;
  }
  .news-page .new-list li .new-con .abst {
    line-height: 18px;
    margin: 10px 0;
  }
  .newdet-page .news .news_title h1 {
    font-size: 16px;
  }
  .newdet-page .news .news_contents p, .newdet-page .news .news_contents div, .newdet-page .news .news_contents span, .newdet-page .news .news_contents table {
    font-size: 12px;
    line-height: 22px;
  }
  .newdet-page .news .news_next a {
    font-size: 13px;
  }
  .button-group .button:nth-child(2) {
    display: none !important;
  }
  #mapContainer {
    height: 250px !important;
  }
  .prodetFeedback .ptForm .fbBot {
    margin-bottom: 30px;
  }

}
.wpulike {
	display:none;
}
.inner-page .form ul {
    margin: -5px;
}
.inner-page .form ul li {
    padding: 5px !important;
}
.inner-page .form ul li.wid-100 {
    width: 100%;
}
.inner-page .form ul li input,
.inner-page .form ul li textarea {
    width: 100%;
    padding: 10px 15px;
    background: #f8f9fa none repeat scroll 0 0;
    border: medium none;
    font-size: 14px;
}
.inner-page .form ul li input::-webkit-input-placeholder,
.inner-page .form ul li textarea::-webkit-input-placeholder {
    color: #242424;
}
.inner-page .form ul li input:-moz-placeholder,
.inner-page .form ul li textarea:-moz-placeholder {
    color: #242424;
}
.inner-page .form ul li input::-moz-placeholder,
.inner-page .form ul li textarea::-moz-placeholder {
    color: #242424;
}
.inner-page .form ul li input:-ms-input-placeholder,
.inner-page .form ul li textarea:-ms-input-placeholder {
    color: #242424;
}
.inner-page .form ul li textarea {
    height: 120px;
    resize: vertical;
}
.inner-page .form ul li input[type="submit"] {
    background: #4885fb;
    color: white;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    font-family: "POPPINS-MEDIUM";
    font-size: 14px;
    text-transform: uppercase;
}
.inner-page .form ul li input[type="submit"]:hover {
    background: #222;
}
.inner-page h3.title{
      color: #111;
    text-transform: capitalize;
    font-size: 32px;
    line-height: 38px;
    margin: 15px 0;
    position: relative;
    font-family: 'Merriweather-Black';
}

.init-5.corporate-culture,.a-factory.corporate-culture{
  display: none;
}
@media screen and (max-width: 1430px) {
 .init-5 {
    padding: 80px 15px 50px;
  }
.init-5 ul li .text h2 {
    font-size: 24px;
  }
.init-5 ul li .text p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    height: 100px;
  }
}

@media screen and (max-width:970px) {
  .inner-page .inner-main-tit{
    width:100%;
  }
}
@media screen and (max-width:768px) {
  .inner-page .sideBar{
    display: none;
  }
}
@media screen and (max-width:700px) {
  .inner-page .grid-box{
    margin: 0 !important;
  }
  .contact-page .contact-2 .left{
    padding-left: 0;
  }
  .contact-page .contact-2 .right{
    padding-right: 0;
  }
  .contact-page .contact-2 .left .form{
    padding: 10px;
  }
  #footer .top .topBox .right{
    padding-right: 0;
  }
 .init-5 .left {
    width: 100%;
  }
.init-5 .centre {
    width: 100%;
  }
.init-5 .right {
    width: 100%;
    margin-top: 35px;
  }
.init-5 ul li .text p {
    height: 84px;
  }
  .about-page .a-whyUs .why-list .column{
    width: 100%;
  }
  .grid-box.four>.column{
    width: 100% !important;
  }
}

.backtrack>a{
  display: block;
  margin: 0 0 0 auto;
    color: #000000;
    font-size: 32px;
    text-transform: uppercase;
    margin-top: 10px;
    cursor: pointer;
    width: 250px;
    font-family: 'Merriweather-Black';
}
