/* 字体引入 */
@font-face {
  font-family: 'r';
  src: url('../fonts/Roboto-Regular.woff.ttf');
}
@font-face {
  font-family: 'l';
  src: url('../fonts/Roboto-Light.woff.ttf');
}
@font-face {
  font-family: 'bo';
  src: url('../fonts/baskervilleoldstyle.ttf');
}
@font-face {
  font-family: 'dv';
  src: url('../fonts/DeVinneBT-Text.otf');
}
@font-face {
  font-family: 'siva';
  src: url('../fonts/Monotype\ Corsiva.ttf');
}
/* 网站基本宽度（注意修改） */
.container {
  max-width: 1290px;
  padding: 0 15px;
}
#header {
/*   top: -127px; */
  transition: 500ms;
	position:absolute;
	width:100%; left:0; top:0;
}
#header.active,
#header.inner-style{
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999999;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
}
#header.active .nav,
#header.inner-style .nav {
  padding: 10px 0;
  background: #333;
}
#header.active ~ .index-banner,
#header.inner-style ~ .index-banner {
  margin-top: 0;
}
#header.active ~ .inner-banner,
 {
  margin-top: 0;
}
#header .nav {
  position: relative;
  z-index: 999;
  padding: 42px 0 0 0;
}
#header .nav .container {
  max-width: 1410px;
}
#header .nav .container .search-btn {
  width: 19px;
  height: 19px;
  background: url(../images/search.png) center center no-repeat;
  border: none;
  outline: none;
  margin: 32px 0 0 20px;
}
#header .nav .container .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .container .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .container .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .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 .nav .container .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 .container .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .container .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#header .nav .container .toggle-btn {
  border: none;
  outline: none;
  background-color: transparent;
  width: 46px;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
#header .nav .container .toggle-btn span {
  display: block;
  height: 1px;
  background: #fff;
  margin-bottom: 11px;
  transition: 500ms;
}
#header .nav .container .toggle-btn span:last-of-type {
  margin-bottom: 0;
}
#header .nav .container .toggle-btn.active span:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: 13% top;
}
#header .nav .container .toggle-btn.active span:nth-of-type(2) {
  opacity: 0;
}
#header .nav .container .toggle-btn.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: 13% top;
}
#header .nav .container .h-lan {
  margin: 25px 0 0 85px;
  position: relative;
}
#header .nav .container .h-lan:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: #fff;
  right: 0;
  top: 5px;
}
#header .nav .container .h-lan > li {
  position: relative;
}
#header .nav .container .h-lan > li > a {
  display: block;
  padding: 0 20px 10px 60px;
  font: 18px/35px r;
  color: #fff;
  background: url(../images/h-lan-en.jpg) left top no-repeat;
}
#header .nav .container .h-lan > li > a i {
  margin-left: 5px;
}
#header .nav .container .h-lan > li ul {
  display: none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100%;
}
#header .nav .container .h-lan > li ul li a {
  display: block;
  background: #fff;
  font: 16px/30px r;
  color: #333;
  padding-left: 20px;
  transition: 300ms;
}
#header .nav .container .h-lan > li ul li a:hover {
  background: #ccc;
  color: #fff;
}
#header .nav .container .menu-box {
  margin-top: 30px;
}
#header .nav .container .menu-box .menu {
  font-size: 0;
}
#header .nav .container .menu-box .menu > li {
  display: inline-block;
  position: relative;
  margin-left: 16px;
  padding-bottom: 10px;
}
#header .nav .container .menu-box .menu > li:first-child {
  margin-left: 0;
}
#header .nav .container .menu-box .menu > li:hover > a {
  color: #f6b72c;
}
#header .nav .container .menu-box .menu > li > a {
  font: 16px r;
  color: #fff;
  text-transform: uppercase;
}
#header .nav .container .menu-box .menu > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 160px;
  background: #fff;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.08);
  border: 1px solid #ccc;
  z-index: 101;
  overflow: hidden;
  display: none;
}
#header .nav .container .menu-box .menu > li .sub-menu li a {
  color: #333;
  font: 14px/30px "微软雅黑";
  display: block;
  transition: 300ms;
  text-align: center;
  text-transform: capitalize;
}
#header .nav .container .menu-box .menu > li .sub-menu li a:hover {
  background-color: #ccc;
  color: #fff;
}
#header .toggle-nav {
  position: fixed;
  left: -270px;
  top: 0;
  padding-top: 80px;
  width: 270px;
  height: 100%;
  background-color: #fff;
  overflow: auto;
  transition: 300ms;
  display: none;
  z-index: 998;
}
#header .toggle-nav.open {
  left: 0;
}
#header .toggle-nav .menu > li {
  padding: 0 15px;
}
#header .toggle-nav .menu > li > a {
  display: block;
  font: 16px/40px "微软雅黑";
  color: #333;
  text-transform: uppercase;
}
#header .toggle-nav .menu > li .sub-menu > li > a {
  display: block;
  font: 14px/35px "微软雅黑";
  color: #333;
  padding-left: 15px;
  text-transform: uppercase;
}
#header .toggle-nav .search-box2 {
  padding: 15px;
}
#header .toggle-nav .search-box2 input {
  width: 80%;
  height: 40px;
  border: none;
  font: 16px "微软雅黑";
  color: #000;
  padding-left: 15px;
  background-color: #ccc;
}
#header .toggle-nav .search-box2 button {
  width: 20%;
  height: 40px;
  border: none;
  background-color: #333;
}
#header .toggle-nav .search-box2 button i {
  font-size: 18px;
  color: #fff;
}
#header .toggle-nav .h-lan2 {
  padding: 10px;
}
#header .toggle-nav .h-lan2 .title {
  font: 16px/20px "微软雅黑";
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase;
}
#header .toggle-nav .h-lan2 .link {
  display: flex;
  justify-content: space-around;
}
#header .toggle-nav .h-lan2 .link a {
  font: 16px/30px "微软雅黑";
  color: #333;
  padding-left: 40px;
  text-transform: uppercase;
}
#header .toggle-nav .h-lan2 .link a:nth-of-type(1) {
  background: url(../images/en.png) left center no-repeat;
}
#header .toggle-nav .h-lan2 .link a:nth-of-type(2) {
  background: url(../images/cn.png) left center no-repeat;
}
.index-banner {
  position: relative;
/*   top: -127px; */
}
.index-banner .swiper-slide {
  height: 980px;
  position: relative;
}
.index-banner .swiper-slide a{
	display:block;
}
.index-banner .swiper-slide .inner {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  padding: 0 15px;
}
.index-banner .swiper-slide:nth-of-type(1){
	background: url(/wp-content/uploads/2024/05/20240528banner-1.jpg) center center no-repeat;
  	background-size: cover;
}
.index-banner .swiper-slide:nth-of-type(2){
	background: url(../images/banner2.jpg) center center no-repeat;
  	background-size: cover;
}
.index-banner .swiper-slide:nth-of-type(3){
	background: url(../images/banner3.jpg) center center no-repeat;
  	background-size: cover;
}
.index-banner .swiper-slide:nth-of-type(2) .inner,.index-banner .swiper-slide:nth-of-type(3) .inner {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(0);
	height:100%;
}
.index-banner .swiper-slide .inner p:nth-of-type(1) {
  font: 72px bo;
  color: #fff;
  margin-bottom: 10px;
	text-shadow:5px 2px 6px #000;
}
.index-banner .swiper-slide .inner p:nth-of-type(2) {
  display: inline-block;
  font: 24px/45px l;
  color: #fff;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 35px;
	text-shadow:5px 2px 6px #000;
}
.index-banner .swiper-slide .inner p:nth-of-type(3) {
  margin-bottom: 160px;
}
.index-banner .swiper-slide .inner p:nth-of-type(3) img {
  cursor: pointer;
}
.index-banner .swiper-slide .inner a {
  display: inline-block;
  width: 170px;
  height: 43px;
  background: #f6b72c;
  text-align: center;
  font: 18px/43px l;
  color: #fff;
  text-transform: uppercase;
  transition: 300ms;
}
.index-banner .swiper-slide .inner a:hover {
  background: #333;
}
.index-banner #banner-prev,
.index-banner #banner-next {
  width: 43px;
  height: 43px;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  text-align: center;
}
.index-banner #banner-prev i,
.index-banner #banner-next i {
  font-size: 25px;
  color: #5a5a5c;
  line-height: 43px;
}
.index-banner #banner-prev {
  left: 55px;
}
.index-banner #banner-next {
  right: 55px;
}
.out-bg{
	background:url(../images/out-bg.jpg) no-repeat center;
	background-size:cover;
}
.index-about {
/*   background: #e8e7e8; */
}
.index-about .ia-top {
  position: relative;
	margin-top: -120px;
  z-index: 999;
}
.index-about .ia-top .ia-top-wrapper {
  max-width: 1500px;
  margin: 0 auto;
  background: #fff url(../images/ipbg.png) left center no-repeat;
  padding-bottom: 35px;
}
.index-about .ia-top .ia-top-wrapper .container{
	max-width: 1500px;
}
.index-about .ia-top .ia-top-wrapper .container .left {
  width: 26%;
  margin-top: 130px;
}
.index-about .ia-top .ia-top-wrapper .container .left a{
	font-size:18px;
	margin-left:30px;
	
}
.index-about .ia-top .ia-top-wrapper .container .left p:nth-of-type(1) {
  font: 36px dv;
  color: #3e3a39;
  text-transform: uppercase;
	margin-bottom:40px;
}
.index-about .ia-top .ia-top-wrapper .container .left p:nth-of-type(2) {
  font: 18px dv;
  color: #8d868c;
  text-transform: uppercase;
  margin: 55px 0 80px;
}
.index-about .ia-top .ia-top-wrapper .container .left .control {
  font-size: 0;
}
.index-about .ia-top .ia-top-wrapper .container .left .control span {
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: #b7b3b6;
  text-align: center;
  cursor: pointer;
}
.index-about .ia-top .ia-top-wrapper .container .left .control span:hover {
  background: #000;
}
.index-about .ia-top .ia-top-wrapper .container .left .control span:first-child {
  margin-right: 15px;
}
.index-about .ia-top .ia-top-wrapper .container .left .control span i {
  font-size: 18px;
  color: #fff;
  line-height: 35px;
}
.index-about .ia-top .ia-top-wrapper .container .right {
  width: 74%;
}
.index-about .ia-top .ia-top-wrapper .container .right #ip .swiper-slide {
  padding: 25px 0 25px 25px;
  position: relative;
}
.index-about .ia-top .ia-top-wrapper .container .right #ip .swiper-slide:after {
  content: "";
  position: absolute;
  width: 85%;
  height: 100%;
  background: #e7e7e8;
  left: 0;
  top: 0;
  z-index: -1;
}
.index-about .ia-top .ia-top-wrapper .container .right #ip .swiper-slide:hover .link {
  background: #f6b72c;
}
.index-about .ia-top .ia-top-wrapper .container .right #ip .swiper-slide .img-box img {
  width: 100%;
}
.index-about .ia-top .ia-top-wrapper .container .right #ip .swiper-slide .link {
  display: block;
  font: 18px/65px r;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  background: #313131;
  transition: 300ms;
}
.index-about .ia-bottom {
  padding-bottom: 75px;
}
.index-about .ia-bottom .container .tit {
  text-align: center;
  font: 36px dv;
  color: #3e3a39;
  text-transform: uppercase;
  padding-bottom: 15px;
  margin-bottom: 50px;
  position: relative;
}
.index-about .ia-bottom .container .tit:after {
  content: "";
  width: 315px;
  height: 14px;
  background: url(../images/iatit.png) center center no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
.index-about .ia-bottom .container .tit:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background: #8d868c;
  left: 0;
  right: 0;
  top: -60px;
  margin: 0 auto;
}
.index-about .ia-bottom .container .content {
  font: 18px/30px dv;
  color: #3e3a39;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 75px;
}
.index-about .ia-bottom .container .link {
  display: block;
  width: 170px;
  height: 43px;
  background: #f6b72c;
  text-align: center;
  font: 18px/43px l;
  color: #fff;
  text-transform: uppercase;
  margin: 0 auto;
  transition: 300ms;
}
.index-about .ia-bottom .container .link:hover {
  background: #333;
}
.index-why {
  padding: 95px 0 100px;
  background: url(../images/iwbg.jpg) center center no-repeat;
  background-size: cover;
}
.index-why .container .tit {
  font: 36px dv;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 65px;
}
.index-why .container .tit:after {
  content: "";
  width: 369px;
  height: 14px;
  background: url(../images/iwtit.png) center center no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
.index-why .container .list {
  margin: -30px 0;
}
.index-why .container .list .column {
  text-align: center;
  padding: 30px 0;
}
.index-why .container .list .column:hover .icon {
  border-color: #f6b72c;
}
.index-why .container .list .column:hover p {
  color: #f6b72c;
}
.index-why .container .list .column:hover:nth-of-type(1) .icon {
  background: url(../images/iw1-hv.png) center center no-repeat;
}
.index-why .container .list .column:hover:nth-of-type(2) .icon {
  background: url(../images/iw2-hv.png) center center no-repeat;
}
.index-why .container .list .column:hover:nth-of-type(3) .icon {
  background: url(../images/iw3-hv.png) center center no-repeat;
}
.index-why .container .list .column:hover:nth-of-type(4) .icon {
  background: url(../images/iw4-hv.png) center center no-repeat;
}
.index-why .container .list .column:hover:nth-of-type(5) .icon {
  background: url(../images/iw5-hv.png) center center no-repeat;
}
.index-why .container .list .column:nth-of-type(1) .icon {
  background: url(../images/iw1.png) center center no-repeat;
}
.index-why .container .list .column:nth-of-type(2) .icon {
  background: url(../images/iw2.png) center center no-repeat;
}
.index-why .container .list .column:nth-of-type(3) .icon {
  background: url(../images/iw3.png) center center no-repeat;
}
.index-why .container .list .column:nth-of-type(4) .icon {
  background: url(../images/iw4.png) center center no-repeat;
}
.index-why .container .list .column:nth-of-type(5) .icon {
  background: url(../images/iw5.png) center center no-repeat;
}
.index-why .container .list .column .icon {
  display: inline-block;
  width: 94px;
  height: 94px;
  border: 2px solid #fff;
  border-radius: 100%;
  margin-bottom: 25px;
  transition: 300ms;
}
.index-why .container .list .column p {
  font: 18px dv;
  color: #fff;
  text-transform: uppercase;
  transition: 300ms;
}
.index-case {
  padding: 55px 0 90px;
}
.index-case .tit {
  font: 36px dv;
  color: #f6b72c;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 50px;
}
.index-products p{
	padding:20px 0;
}
.index-products p a{
	font-size:18px; text-align:center; display:block;
}
/* .index-case .container .tit:after {
  content: "";
  width: 279px;
  height: 12px;
  background: url(../images/ictit.png) center center no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
} */
.index-case .container .content {
  position: relative;
}
.index-case .container .content #case1 {
  width: 53%;
}
.index-case .container .content #case1 .swiper-slide img {
  width: 100%;
}
.index-case .container .content #case2 {
  position: absolute;
  width: 21%;
  right: 0;
  bottom: 0;
}
.index-case .container .content #case2 .swiper-slide img {
  width: 100%;
}
.index-case .container .content .info {
  position: absolute;
  max-width: 420px;
  width: 100%;
  left: 40%;
  top: 75px;
  z-index: 9999;
  background: #fff;
  box-shadow: 3px 3px 10px rgba(173, 171, 171, 0.35);
  padding: 20px 30px;
}
.index-case .container .content .info .inner {
  display: none;
}
.index-case .container .content .info .inner.active {
  display: block;
}
.index-case .container .content .info .inner p:nth-of-type(1) {
  font: 20px r;
  color: #3e3a39;
}
.index-case .container .content .info .inner p:nth-of-type(2) {
  font: 16px/24px r;
  color: #3e3a39;
  margin: 20px 0 40px;
}
.index-case .container .content .info .inner a {
  font: 16px r;
  color: #ffbe30;
}
.index-case .container .content .num {
  font: 36px dv;
  color: #3e3a39;
  position: absolute;
  right: 90px;
  top: 40px;
}
.index-case .container .content .control {
  font-size: 0;
  position: absolute;
  bottom: 0;
  right: 220px;
  z-index: 99;
}
.index-case .container .content .control span {
  display: inline-block;
  width: 44px;
  height: 44px;
  background: #feb10d;
  text-align: center;
  cursor: pointer;
}
.index-case .container .content .control span i {
  font-size: 20px;
  color: #fff;
  line-height: 44px;
}
.index-case .container .content .control span:hover {
  background: #ffc545;
}
.index-factory {
  padding: 80px 0 80px;
  background: url(../images/ifacbg.jpg) center center no-repeat;
  background-size: cover;
}
.index-factory .factory-list .swiper-slide{
	background:rgba(255, 255, 255, 0.71);
}
.index-factory .factory-list {
	position: relative; height:379px !important;
}
.index-factory .swiper-wrapper{
/* 	height:379px !important; */
}
.index-factory .factory-list .swiper-slide {
  border: 1px solid #323232;
}
.index-factory .factory-list .icon {
  width: 44px;
  height: 44px;
  background: url(../images/fl_08.jpg) no-repeat center;
  position: absolute;
  right: -45px;
  bottom: 0;
  cursor: pointer;
}
.index-factory .factory-list .right {
  background: url(../images/fr_06.jpg) no-repeat center;
  bottom: 44px;
}
.index-factory .factory-list .grid-box {
  padding: 0; margin: 0 !important;display: block;
}
.index-factory .factory-list .grid-box .column:nth-child(2){
  padding: 0 !important; 
}
.index-factory .factory-list .grid-box .column:nth-child(1) {
  padding: 4% 5% 5% 3% !important;
}
.index-factory .factory-list .grid-box .column h2.h2 {
  font-size: 30px;
  color: #f6b72c; font-family: dv;
  text-transform: uppercase; position: relative;
}
.index-factory .factory-list .grid-box .column h2.h2:after {
  content: "";
  width: 150px;
  height: 1px;
  position: absolute;
  left: 90%;
  top:20px; background: #f6b72c; z-index: 99;
}
.index-factory .factory-list .grid-box .column h3.h3 {
  font-size: 18px;
  text-transform: uppercase; font-family: siva;
}
.index-factory .factory-list .grid-box .column p.p {
  line-height: 25px;
  font-size: 16px;
  color: #3e3a39;
  margin-top: 30px;
}
.index-factory .swiper-pagination {
  position: absolute;
  left: 30% !important;
  bottom: 30px !important;
  
}
.index-factory .swiper-pagination .swiper-pagination-bullet {
  background: #f6b72c;float: left;width: 8px !important;
  height: 8px !important; 
}
/*.index-factory .container .left {
  width: 45%;
}
.index-factory .container .left .inner {
  padding: 40px 30px;
  background: #fff;
}
.index-factory .container .left .inner p:nth-of-type(1) {
  font: 36px dv;
  color: #3e3a39;
  text-transform: uppercase;
}
.index-factory .container .left .inner p:nth-of-type(2) {
  font: 18px siva;
  color: #b7b3b7;
  margin-bottom: 35px;
}
.index-factory .container .left .inner p:nth-of-type(3) {
  font: 16px/30px l;
  color: #3e3a39;
  margin-bottom: 40px;
}
.index-factory .container .left .inner a {
  display: block;
  width: 170px;
  height: 43px;
  background: #f6b72c;
  text-align: center;
  font: 18px/43px l;
  color: #fff;
  text-transform: uppercase;
  transition: 300ms;
}
.index-factory .container .left .inner a:hover {
  background: #333;
}
.index-factory .container .right {
  width: 52%;
}
.index-factory .container .right #ifac .swiper-slide img {
  width: 100%;
}
.index-factory .container .right #ifac #ifac-prev,
.index-factory .container .right #ifac #ifac-next {
  width: 35px;
  height: 35px;
  border-radius: 100%;
  background: #fff;
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  text-align: center;
}
.index-factory .container .right #ifac #ifac-prev i,
.index-factory .container .right #ifac #ifac-next i {
  font-size: 20px;
  color: #000;
  line-height: 35px;
}*/
.index-product {
  padding: 95px 0 135px;
}
.index-product .tit {
  font: 36px dv;
  color: #3e3a39;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 45px;
}
.index-product .tit:after {
  content: "";
  width: 456px;
  height: 16px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background: url(../images/iptit.png) center center no-repeat;
}
.index-product .nav {
  text-align: center;
  font-size: 0;
  margin-bottom: 45px;
}
.index-product .nav li {
  display: inline-block;
  margin-right: 35px;
}
.index-product .nav li:last-of-type {
  margin-right: 0;
}
.index-product .nav li:hover a,
.index-product .nav li.active a {
  color: #edb12d;
}
.index-product .nav li:hover a:after,
.index-product .nav li.active a:after {
  opacity: 1;
}
.index-product .nav li a {
  display: inline-block;
  padding: 10px 15px;
  font: 18px r;
  color: #3e3a39;
  text-transform: uppercase;
  position: relative;
  transition: 300ms;
}
.index-product .nav li a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #edb12d;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 300ms;
}
.index-product #ip2 {
  margin-bottom: 55px;
}
.index-product #ip2 .swiper-slide .img-box img {
  width: 100%;
}
.index-product .link {
  font-size: 0;
  text-align: center;
}
.index-product .link a {
  display: inline-block;
  width: 170px;
  height: 43px;
  background: #f6b72c;
  text-align: center;
  font: 18px/43px l;
  color: #fff;
  text-transform: uppercase;
  transition: 300ms;
}
.index-product .link a:hover {
  background: #333;
}
.index-product .link a:first-child {
  margin-right: 55px;
}
.index-news {
  padding-bottom: 100px;
}
.index-news .container .tit {
  font: 36px dv;
  color: #3e3a39;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 15px;
  position: relative;
  margin-bottom: 50px;
}
.index-news .container .tit:after {
  content: "";
  width: 328px;
  height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  background: url(../images/intit.png) center center no-repeat;
}
.index-news .container .list {
  position: relative;
}
.index-news .container .list #in .swiper-slide {
  padding: 10px 20px 10px 0;
}
.index-news .container .list #in .swiper-slide .inner {
  position: relative;
  box-shadow: 2px 2px 16px rgba(173, 171, 171, 0.2);
  background: #fff;
}
.index-news .container .list #in .swiper-slide .inner .img-box {
  width: 44%;
}
.index-news .container .list #in .swiper-slide .inner .img-box img {
  width: 100%;
}
.index-news .container .list #in .swiper-slide .inner .info {
  width: 56%;
  padding: 25px 100px 30px;
}
.index-news .container .list #in .swiper-slide .inner .info p:nth-of-type(1) {
  font: 18px/24px r;
  color: #3e3a39;
  padding-bottom: 15px;
  border-bottom: 1px solid #a0a0a0;
  margin-bottom: 15px;
}
.index-news .container .list #in .swiper-slide .inner .info p:nth-of-type(2) {
  font: 16px/30px l;
  color: #3e3a39;
  margin-bottom: 20px;
}
.index-news .container .list #in .swiper-slide .inner .info > a {
  display: block;
  width: 170px;
  height: 43px;
  background: #f6b72c;
  text-align: center;
  font: 18px/43px l;
  color: #fff;
  text-transform: uppercase;
  transition: 300ms;
}
.index-news .container .list #in .swiper-slide .inner .info > a:hover {
  background: #333;
}
.index-news .container .list #in .swiper-slide .inner .date {
  position: absolute;
  width: 70px;
  height: 70px;
  background: url(../images/datebg.png) center center no-repeat;
  right: 0;
  bottom: 0;
  font: 14px/70px l;
  color: #fff;
  text-align: center;
}
.index-news .container .list .control {
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 99;
}
.index-news .container .list .control span {
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  text-align: center;
}
.index-news .container .list .control span:hover {
  background: #000;
}
.index-news .container .list .control span i {
  font-size: 14px;
  color: #fff;
  line-height: 20px;
}
.index-news .container .list .control span:first-child {
  margin-bottom: 7px;
}
#footer {
  background: #313131;
}
#footer .container .top {
  padding: 40px 0 20px;
  font-size: 0;
  border-bottom: 1px solid #fff;
}
#footer .container .top .item {
  display: inline-block;
  vertical-align: top;
}
#footer .container .top .item:nth-of-type(1) {
  width: 33%;
}
#footer .container .top .item:nth-of-type(1) .logo {
  margin-bottom: 20px;
}
#footer .container .top .item:nth-of-type(1) .erweima{
	padding: 10px;
	width: 100px;
	margin-top: 20px;
}
#footer .container .top .item:nth-of-type(1) .erweima img{
	width: 100%;
}
#footer .container .top .item:nth-of-type(2) {
  width: 32%;
}
#footer .container .top .item:nth-of-type(2) ul li {
  font: 18px l;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#footer .container .top .item:nth-of-type(2) ul li a:hover {
  color: #f6b72c;
}
#footer .container .top .item:nth-of-type(2) ul li:last-of-type {
  margin-bottom: 0;
}
#footer .container .top .item:nth-of-type(3) {
  width: 35%;
}
#footer .container .top .item:nth-of-type(3) ul li {
  font: 18px/30px l;
  color: #fff;
  margin-bottom: 10px;
}
#footer .container .top .item:nth-of-type(3) ul li:last-of-type {
  margin-bottom: 0;
}
#footer .container .bottom {
  padding: 15px 0;
  font: 18px l;
  color: #fff;
  text-align: center;
}
#footer .container .bottom a:hover {
  color: #f6b72c;
}
@media (max-width: 1440px) {
  #header .nav .container .logo img {
    width: 200px;
  }
  #header .nav .container .h-lan {
    margin-left: 40px;
  }
  #header .nav .container .h-lan > li > a {
    font-size: 14px;
  }
  #header .nav .container .menu-box .menu > li {
    margin-left: 30px;
  }
  #header .nav .container .menu-box .menu > li > a {
    font-size: 14px;
  }
  .index-banner .swiper-slide {
    height: 700px;
  }
  .index-banner .swiper-slide .inner p:nth-of-type(1) {
    font-size: 40px;
  }
  .index-banner .swiper-slide .inner p:nth-of-type(3) {
    margin-bottom: 40px;
  }
  .index-about .ia-top {
/*     position: static; */
/*     margin-bottom: 160px; */
  }
	.index-about .ia-top .ia-top-wrapper .container .left {
    margin-top: 98px;
}
}

@media (max-width: 1290px) {
	.container {
    max-width: 992px;
}
	#header .nav .container .menu-box .menu > li {
    margin-left: 10px;
}
}
@media (max-width: 992px) {
  #header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
  }
  #header .nav {
    padding: 8px 0;
    background: #333;
  }
  #header .nav .container .menu-box {
    display: none;
  }
  #header .nav .container .h-lan {
    display: none;
  }
  #header .nav .container .search-btn {
    display: none;
  }
  #header .nav .container .logo {
    width: 100%;
    text-align: center;
  }
  #header .nav .container .logo img {
    width: 130px;
  }
  #header .nav .container .toggle-btn {
    display: block;
  }
  #header .toggle-nav {
    display: block;
  }
  .index-banner {
    margin-top: 55px;
  }
  .index-banner .swiper-slide {
    height: 500px;
  }
  .index-banner #banner-prev,
  .index-banner #banner-next {
    display: none;
  }
  #footer .container .top .item:nth-of-type(1) .logo img {
    width: 200px;
  }
}

@media (max-width: 576px) {
  .index-banner .swiper-slide {
    height: 300px;
  }
  .index-banner .swiper-slide .inner p:nth-of-type(1) {
    font-size: 25px;
  }
  .index-banner .swiper-slide .inner p:nth-of-type(2) {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 15px;
  }
  .index-banner .swiper-slide .inner p:nth-of-type(3) {
    margin-bottom: 15px;
  }
  .index-banner .swiper-slide .inner p:nth-of-type(3) img {
    width: 50px;
  }
  .index-banner .swiper-slide .inner a {
    width: 120px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .index-about .ia-top .ia-top-wrapper .container .left {
    width: 100%;
    float: none;
    margin: 0 0 40px 0;
  }
  .index-about .ia-top .ia-top-wrapper {
    padding: 40px 0;
  }
  .index-about .ia-top .ia-top-wrapper .container .left p:nth-of-type(2) {
    margin: 10px 0;
    font-size: 14px;
  }
  .index-about .ia-top .ia-top-wrapper .container .left p:nth-of-type(1) {
    font-size: 20px;
  }
  .index-about .ia-top .ia-top-wrapper .container .right {
    width: 100%;
    float: none;
  }
  .index-about .ia-top {
    margin-bottom: 60px;
  }
  .index-about .ia-bottom {
    padding-bottom: 60px;
  }
  .index-about .ia-bottom .container .tit {
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .index-about .ia-bottom .container .tit:after,
  .index-about .ia-bottom .container .tit:before {
    display: none;
  }
  .index-about .ia-bottom .container .content {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .index-about .ia-bottom .container .link {
    width: 120px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .index-why {
    padding: 60px 0;
  }
  .index-why .container .tit {
    font-size: 20px;
    margin-bottom: 40px;
  }
  .index-why .container .tit:after {
    display: none;
  }
  .index-why .container .list .column p {
    font-size: 14px;
  }
  .index-case {
    padding: 60px 0;
  }
  .index-case .container .tit {
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
  .index-case .container .tit:after {
    display: none;
  }
  .index-factory .container .left .inner p:nth-of-type(1) {
    font-size: 20px;
  }
  .index-factory .container .left .inner p:nth-of-type(3) {
    font-size: 14px;
  }
  .index-factory .container .left .inner a {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .index-product {
    padding: 60px 0;
  }
  .index-product .tit {
    font-size: 20px;
    padding-bottom: 0;
  }
  .index-product .tit:after {
    display: none;
  }
  .index-product .nav li a {
    font-size: 14px;
  }
  .index-product .link a {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  .index-product .link a:first-child {
    margin-right: 20px;
  }
  .index-news {
    padding-bottom: 60px;
  }
  .index-news .container .tit {
    font-size: 20px;
    padding-bottom: 0;
    margin-bottom: 40px;
  }
  .index-news .container .tit:after {
    display: none;
  }
  .index-news .container .list #in .swiper-slide .inner .info > a {
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
  #footer .container .top .item:nth-of-type(2) ul li {
    font-size: 14px;
  }
  #footer .container .top .item:nth-of-type(3) ul li {
    font-size: 14px;
  }
  #footer .container .bottom {
    font-size: 14px;
  }
}

#cs{
	width: 100%;
}
#cs tr td{
	padding: 5px;
	border: 1px solid #000;
}
.wpulike{
	display: inline-block;
	margin-right: 15px;
}
.grid-box {
  display: inline-block;
  width: 100%;
  margin: 0 -15px;
}
.grid-box>.column,
.grid-box .swiper-slide.column{
  float: left;
  padding: 0 15px;
}
.i-product {
  padding: 132px 0 166px;
}
.i-product .i-tit {
  color: #1b1b1b;
}
.i-product .pro-list {
  margin-top: 69px;
}
.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 .con-box {
  position: relative;
  z-index: 10;
}
.i-product .pro-list .con-box a:hover {
  color: #f6b72c!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: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.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;
}
.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: #f6b72c;
  border-color: #f6b72c;
}
.i-whyUs .why-list > .column:hover .tit {
  color: #f6b72c;
}

@media screen and (max-width: 768px) {
  .f-bot {
    padding: 20px 0;
  }
  .f-bot a {
    display: block;
    line-height: 2em;
  }
}

.inner-page{
	font-family: l!important;
	font-size: 16px;
}
.inner-page .sideBar {
  padding: 25px 0 22px;
  background: #f6b72c;
}
.inner-page .sideBar .side-menu {
  position: relative;
  margin-top: 15px;
}
.inner-page .sideBar .side-menu .nowCat {
  background: black 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: black;
  left: 0;
  top: 100%;
}
.inner-page .sideBar .side-menu .cat-list li {
  padding: 6px 12px 6px 16px;
}
.inner-page .sideBar .side-menu .cat-list li a {
  display: block;
  color: white;
  padding: 5px;
  font-size: 16px;
}
.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;
}
.inner-page .inner-main-tit .nowTit {
  font-size: 34px;
  text-transform: capitalize;
}
.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;
}
.about-page .inner-main-box {
  padding: 90px 0 51px;
  background: #fbfbfb;
}
.about-page .inner-main-box .a-tit {
  margin: 47px 0 24px;
}
.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: 11px 0 88px;
}
.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);
  /* 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*/
}
.prodet-page .prodetTit {
  margin-bottom: 23px;
  color: #121212;
  font-size: 39px;
  text-transform: capitalize;
  text-align: center;
}
.prodet-page .prodet-pics {
  padding: 59px 0 82px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic {
  width: 40%;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic img {
  margin: 0 auto;
  width: 100%;
  border: 1px solid #eee;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul {
  margin: 15px -5px 0;
  padding: 0 20px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow {
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  background: black;
  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 ul .slick-arrow:hover {
  background: #f6b72c;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic 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: white;
  font-size: 14px;
  font-family: "FontAwesome";
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow.slick-prev {
  left: 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow.slick-next {
  right: 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow.slick-prev:after {
  content: "\f104";
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul .slick-arrow.slick-next:after {
  content: "\f105";
}
.prodet-page .prodet-pics .grid.two.column .pro-bPic ul li {
  padding: 0 5px;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one {
  padding-left: 5%;
  width: 60%;
}
.prodet-page .prodet-pics .grid.two.column .pro-det-one .proName {
  color: #121212;
  font-size: 39px;
  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;
}
.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: #f6b72c;
  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: #f6b72c;
  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-det-two {
  padding: 122px 0 146px;
  background: #efefef;
}
.prodet-page .recommand-product {
  padding: 31px 0 133px;
}
.prodet-page .recommand-product .i-product {
  padding: 0;
}
.cn-form{
	padding: 60px 0;
}
.cn-form .innerTit{
	font: 30px r;
	color: #000;
	text-transform: uppercase;
	margin-bottom: 30px;
}
.cn-form p {
  font-size: 18px;
  padding: 10px 0;
  color: #666;
}
.cn-form .formtit {
  margin-bottom: 26px;
  font-size: 22px;
  line-height: 23px;
  color: #444;
  text-align: center;
  padding-bottom: 18px;
  background: url(../images/form-tit-bg.jpg) no-repeat center bottom;
}
.cn-form li {
  margin-bottom: 13px;
  color: #444;
}
.cn-form li label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.cn-form .btnTjly {
  font-size: 15px;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  width: 100%;
  height: 38px;
  background: #1170d5;
  border: none;
  cursor: pointer;
  color: #fff;
}
.cn-form .btnTjly:hover {
  background: #000;
}
.cn-form .m-form-l {
  width: 49%;
}
.cn-form .m-form-l li .iptTxt {
  font-size: 13px;
  padding: 0 15px;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  width: 100%;
  border: 1px solid #dedede;
  height: 40px;
  outline: none;
  background: #fff;
  color: #777;
}
.cn-form .m-form-l li .iptTxt:focus {
  border-color: #1170d5;
  box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -webkit-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -moz-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -ms-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -o-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  outline: 0;
  background: rgba(251, 185, 8, 0.04);
}
.cn-form .m-form-l li .txtAre {
  width: 95%;
  height: 383px;
  border: 1px solid #dedede;
  outline: none;
  resize: none;
  padding: 14px;
  color: #ccc;
  line-height: 18px;
}
.cn-form .m-form-r {
  width: 49%;
}
.cn-form .m-form-r textarea {
  height: 315px;
  width: 100%;
  border: 1px solid #dedede;
  font-size: 13px;
  padding: 10px 15px;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
}
.cn-form .m-form-r textarea:focus {
  border-color: #1170d5;
  box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -webkit-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -moz-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -ms-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  -o-box-shadow: 0, 0, 6px, 6px, #1170d5 0 0 0 #000000;
  outline: 0;
  background: rgba(251, 185, 8, 0.04);
}
.cn-form div.wpcf7 .ajax-loader {
  display: block;
  margin: 0 auto;
  width: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.cn-form .yzm img {
  width: 19.4%;
  display: inline-block;
}
.cn-form .yzm input {
  font-size: 13px;
  padding: 0 15px;
  width: 75.6%;
  border: 1px solid #dedede;
  height: 30px;
  outline: none;
  background: #fff;
  color: #777;
}
.cn-form .m-form-r .pcsb{
  	display: none;
  }
.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%;
}
.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: #f6b72c;
}
.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: #f6b72c;
}
.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: 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: #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-top: 0;
}
.contact-page .c-list-box {
  padding: 70px 0 93px;
  background: #f2f2f2;
}
.contact-page .c-list-box .contactList {
  position: relative;
}
.contact-page .c-list-box .contactList .c-name {
  color: #292929;
  font-size: 39px;
  margin-bottom: 34px;
}
.contact-page .c-list-box .contactList .info {
  line-height: 34px;
  margin-top: 24px;
  font-size: 18px;
  color: #292929;
}
.contact-page .c-list-box .contactList .info i {
  width: 10px;
}
.contact-page .c-list-box .contactList .info .add {
  display: block;
  margin-bottom: 43px;
}
.contact-page .c-list-box .contactList .info .icon {
  color: #000;
  margin-right: 29px!important;
  font-size: 18px;
}
.contact-page .c-list-box .contactList .qr-box {
  position: absolute;
  right: 0;
  top: 70px;
  width: 158px;
  padding: 8px;
  background: #fff;
}
.faq-page .faq-list {
  padding: 20px 0 40px;
}
.faq-page .faq-list dt {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  padding: 16px 30px 14px;
  background-color: #343434;
  font-size: 18px;
  cursor: pointer;
  color: #9e9e9e;
  margin-bottom: 12px;
  transition: 0.5s ease;
  word-break: break-word;
  position: relative;
}
.faq-page .faq-list dt:hover,
.faq-page .faq-list dt.active {
  background: #f6b72c;
  color: #fff;
}
.faq-page .faq-list dt i {
  position: absolute;
  right: 10px;
  top: 20px;
}
.faq-page .faq-list dd {
  font-size: 14px;
  line-height: 22px;
  color: #757575;
  padding: 15px 30px;
  margin-bottom: 12px;
  display: none;
}
::-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;
  }
}
.button-group .button {
  background: #f6b72c !important;
}

@media screen and (max-width: 1200px){
	.inner-about .inner-about-2 .container #advantage .swiper-slide .content {
    padding-top: 0;
  }
  .inner-about .inner-about-2 .container #advantage .swiper-slide .content h3 {
    font-size: 25px;
    margin: 10px 0;
  }
  .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;
  }
  .faq-page .faq-list dt {
    font-size: 16px;
  }
  .grid-box {
    margin: 0;
  }
  .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;
  }
  .contact-page .c-list-box .contactList .info {
    font-size: 16px;
  }
  .news-page .new-list {
    padding-top: 20px !important;
  }
  .prodet-page .prodet-det-two {
    padding: 70px 0;
  }

}
.inner-banner .inner-tit {
    font-size: 38px;
		display:none;
  }
	.bread-crumbs{
		display:none;
	}
@media screen and (max-width: 1000px){
	.inner-banner .inner-tit {
    font-size: 38px;
		display:none;
  }
	.bread-crumbs{
		display:none;
	}
  .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;
  }

}

@media screen and (max-width: 992px){
	.inner-banner{
		margin-top: 55px;
	}
	.inner-about .inner-about-2 .container #advantage .control {
    display: none;
  }
  .inner-about .inner-about-1 .container .top .content h3 {
    font-size: 25px;
  }
  .inner-about .inner-about-3 .container .title h3 {
    font-size: 25px;
  }
}

@media screen and (max-width: 700px){
	.inner-banner {
    height: 260px;
    padding-top: 100px;
  }
  .inner-banner .inner-tit {
    font-size: 28px;
  }
  .inner-banner .bread-crumbs a, .inner-banner .bread-crumbs span {
    font-size: 12px;
  }
  .inner-page .inner-main-tit .nowTit {
    font-size: 18px;
  }
  .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%;
  }
  .faq-page .faq-list dt {
    font-size: 14px;
    padding: 8px 15px 8px 10px;
  }
  .faq-page .faq-list dt i {
    top: 12px;
  }
  .faq-page .faq-list {
    padding: 20px 0;
  }
  .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;
  }
  .contact-page .c-list-box .contactList .c-name {
    font-size: 18px;
  }
  .contact-page .c-list-box {
    padding: 40px 0;
  }
  .contact-page .c-list-box .contactList .info {
    font-size: 14px;
    line-height: 24px;
  }
  .button-group .button:nth-child(2) {
    display: none !important;
  }
  .cn-form .innerTit{
  	font-size: 20px;
  }
  .cn-form .m-form-l{
  	width: 100%;
  	float: none;
  }
  .cn-form .m-form-l .pcsb{
  	display: none;
  }
  .cn-form .m-form-r{
  	width: 100%;
  	float: none;
  }
  .cn-form .m-form-r .pcsb{
  	display: block;
  }

}


.inner-banner{
	margin-top: 105px;
  padding-top: 158px;
  color: #fff;
  text-align: center;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/inner-banner.jpg");
  background-size: cover;
}

.inner-banner .inner-tit {
  font-size: 45px;
  text-transform: uppercase;
}
.inner-banner .bread-crumbs a,
.inner-banner .bread-crumbs span {
  font-size: 14px;
  color: #fff;
}
.inner-banner .bread-crumbs a:hover {
  color: #d11a1a;
}
.inner-page .container .inner-pro-right h1{
font-size: 24px;
color:#f6b72c;
}
.inner-page .container .inner-pro-right .productdescrip{
font-size:14px;
line-height:26px;
margin-bottom:10px;
}


.inner-about .inner-about-1 {
  padding: 70px 0;
/*   background: #f2f2f2; */
}
.inner-about .inner-about-1 .container .top {
  margin-bottom: 60px;
}
.inner-about .inner-about-1 .container .top .content {
  width: 100%;
  padding-right: 0;
}
.inner-about .inner-about-1 .container .top .content h3 {
  font-size: 34px;
  color: #231f20;
  margin-bottom: 20px;
}
.inner-about .inner-about-1 .container .top .content p {
  font-size: 16px;
  line-height: 1.8;
  color: #424242;
}
.inner-about .inner-about-1 .container .top .img {
  width: 50%;
}
.inner-about .inner-about-1 .container .top .img img {
  width: 100%;
}
.inner-about .inner-about-1 .container .bottom .grid-box {
  margin: -15px;
}
.inner-about .inner-about-1 .container .bottom .grid-box .column {
  padding: 15px;
}
.inner-about .inner-about-1 .container .bottom .grid-box .column h3 {
  font-size: 20px;
  color: #221e1f;
  margin-bottom: 20px;
  position: relative;
}
.inner-about .inner-about-1 .container .bottom .grid-box .column h3:after {
  content: "";
  width: 50px;
  height: 1px;
  position: absolute;
  background: #231f20;
  left: 0;
  bottom: -10px;
}
.inner-about .inner-about-1 .container .bottom .grid-box .column p {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
}
.inner-about .inner-about-2 {
  padding: 70px 0;
  background: url(../images/about-2.jpg) center center no-repeat;
  background-size: cover;
}
.inner-about .inner-about-2 .container #advantage .swiper-slide .content {
  width: 30%;
  padding-top: 7.5%;
  padding-right: 20px;
}
.inner-about .inner-about-2 .container #advantage .swiper-slide .content p:nth-of-type(1) {
  font-size: 14px;
  color: #fff;
}
.inner-about .inner-about-2 .container #advantage .swiper-slide .content p:nth-of-type(2) {
  font-size: 16px;
  line-height: 1.8;
  color: #7c7c7c;
}
.inner-about .inner-about-2 .container #advantage .swiper-slide .content h3 {
  font-size: 34px;
  color: #fff;
  margin: 40px 0 20px;
}
.inner-about .inner-about-2 .container #advantage .swiper-slide .img {
  width: 70%;
}
.inner-about .inner-about-2 .container #advantage .swiper-slide .img img {
  width: 100%;
}
.inner-about .inner-about-2 .container #advantage .control {
  position: absolute;
  left: 0;
  bottom: 20%;
  z-index: 99;
}
.inner-about .inner-about-2 .container #advantage .control div {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}
.inner-about .inner-about-2 .container #advantage .control #adv-prev,
.inner-about .inner-about-2 .container #advantage .control #adv-next {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
.inner-about .inner-about-2 .container #advantage .control #adv-prev {
  background: url(../images/about-5.png) no-repeat;
}
.inner-about .inner-about-2 .container #advantage .control #adv-next {
  background: url(../images/about-4.png) no-repeat;
}
.inner-about .inner-about-2 .container #advantage .control .counter {
  font-size: 14px;
  color: #fff;
  margin: 0 10px;
}
.inner-about .inner-about-3 {
  padding: 70px 0;
}
.inner-about .inner-about-3 .container .title {
  text-align: center;
  margin-bottom: 40px;
}
.inner-about .inner-about-3 .container .title h3 {
  font-size: 34px;
  color: #231f20;
}
.inner-about .inner-about-3 .container .title p {
  font-size: 16px;
  line-height: 1.8;
  color: #424242;
  margin-top: 10px;
}
.inner-about .inner-about-3 .container .swiper-container {
  padding-bottom: 60px;
}
.inner-about .inner-about-3 .container .swiper-container .swiper-slide .img img {
  width: 100%;
}
.inner-about .inner-about-3 .container .swiper-container .swiper-slide h4 {
  font-size: 18px;
  color: #333;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  width:70%;
  margin: 0 auto;
  margin-bottom: 50px;
 /* display: none;*/
}
.inner-about .inner-about-honor .container .swiper-container .swiper-slide h4{
  font-size: 18px;
  color: #333;
  padding: 10px 0;
  text-align: center;
  border: none;
  width:70%;
  margin: 0 auto;
  margin-bottom: 0;
}
.inner-about .inner-about-3 .container .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
}
.inner-about .inner-about-4 {
  background:url(../images/why-bg_02.jpg) repeat;
}
.inner-page.inner-product {
  padding: 30px 0;
}
.inner-page.inner-product .container .inner-pro-left {
  width: 25%;
}
.inner-page.inner-product .container .inner-pro-left .tit {
 font-size: 30px;
  line-height: 70px;
  color: #fff;
  background: #000;
  padding-left: 30px;
  margin-bottom: 10px;
}
.inner-page.inner-product .container .inner-pro-left .nav>li {
  margin-bottom: 2px;
}
.inner-page.inner-product .container .inner-pro-left .nav>li:last-of-type {
  margin-bottom: 0;
}
.inner-page.inner-product .container .inner-pro-left .nav>li>a {
  display: block;
  font-size: 20px; line-height: 70px;

  color: #333;
  background: #e0dedd;
  padding-left: 30px;
  text-transform: capitalize;
}
.inner-page.inner-product .container .inner-pro-left .nav>li>a:hover{
	background: #0067a4;
	color: #fff;
}
.inner-page.inner-product .container .inner-pro-right {
  width: 75%;
  padding-left: 45px;
}
.inner-page.inner-product .container .inner-pro-right .grid-box {
  margin: -15px;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column {
  padding: 15px;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner{
	padding: 20px;
	box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2);
	position: relative;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner:after{
	content: "";
    background-image: url(../images/shadow.png);
    background-size: 100%;
    position: absolute;
    width: 100%;
    height: 37px;
    background-repeat: no-repeat;
    left: 0;
    bottom: -30px;
    z-index: -1;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner .img{
	border: 1px solid #7f7f7f;
	border-bottom: none;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner .img img{
	width: 100%;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner .link a{
	display: block;
	font-size: 16px;
	line-height: 53px;
	background: #232323;
	text-align: center;
	color: #fff;
}
.inner-page.inner-prodet .inner-prodet-1 {
  padding: 30px 0 80px;
  background: whitesmoke;
}
.inner-page.inner-prodet .inner-prodet-1 .container .left {
  width: 50%;
}
.inner-page.inner-prodet .inner-prodet-1 .container .left .pro-img {
  border: 1px solid #e0e0e0;
}
.inner-page.inner-prodet .inner-prodet-1 .container .left .pro-img img {
  width: 100%;
}
.inner-page.inner-prodet .inner-prodet-1 .container .right {
  width: 50%;
  padding: 2% 0 0 6%;
}
.inner-page.inner-prodet .inner-prodet-1 .container .right .wpulike{
	display: none;
}
.inner-page.inner-prodet .inner-prodet-1 .container .right .pro-name {
  font-size: 30px;
  color: #1b1b1b;
  margin-bottom: 20px;
}
.inner-page.inner-prodet .inner-prodet-1 .container .right .pro-info {
  font: 16px/25px r;
  color: #212121;
  padding: 30px 0;
  border-top: 1px solid #f6b72c;
  border-bottom: 1px solid #f6b72c;
  margin-bottom: 60px;
}
.inner-page.inner-prodet .inner-prodet-1 .container .right .pro-info .color .color-block{
  display: inline-block;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  margin: 0 5px;
  border-radius: 2px;
}
.inner-page.inner-prodet .inner-prodet-1 .container .right .cont {
  display: block;
  width: 315px;
  height: 70px;
  background: #f6b72c;
  text-align: center;
font-size: 18px; line-height: 70px;
  color: #fff;
  text-transform: uppercase;
}
.inner-page.inner-prodet .inner-prodet-2 {
  padding: 60px 0;
}
.inner-page.inner-prodet .inner-prodet-2 .tit {
  border-bottom: 6px solid #f6b72c;
}
.inner-page.inner-prodet .inner-prodet-2 .tit span {
  display: inline-block;font-size: 20px; line-height: 60px;
  text-transform: uppercase;
  background: #f6b72c;
  padding: 0 60px;
  color: #fff;
}
.inner-page.inner-prodet .inner-prodet-2 .content {
  padding-top: 30px;
}
.inner-page.inner-news {
  padding: 60px 0;
}
.inner-page.inner-news .container .nav {
  font-size: 0;
  text-align: center;
  border-bottom: 6px solid #f6b72c;
  margin-bottom: 40px;
}
.inner-page.inner-news .container .nav li {
  display: inline-block;
  margin-right: 10px;
}
.inner-page.inner-news .container .nav li:last-of-type {
  margin-right: 0;
}
.inner-page.inner-news .container .nav li:hover a,
.inner-page.inner-news .container .nav li.current-cat a {
  background: #f6b72c;
  color: #fff;
}
.inner-page.inner-news .container .nav li a {
  display: block;
  padding: 0 40px;
  font-size: 24px; line-height: 60px;
  color: #fff;
  text-transform: uppercase;
  background: #4d4d4d;
}
.inner-page.inner-news .container .list {
  overflow: hidden;
}
.inner-page.inner-news .container .list .grid-box {
  margin: -10px -5px;
}
.inner-page.inner-news .container .list .grid-box .column {
  padding: 10px 5px;
}
.inner-page.inner-news .container .list .grid-box .column .inner:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.inner-page.inner-news .container .list .grid-box .column .inner:hover .img {
  border-color: #f6b72c;
}
.inner-page.inner-news .container .list .grid-box .column .inner:hover .info > a {
  background: #f6b72c;
  border-color: #f6b72c;
  color: #fff;
}
.inner-page.inner-news .container .list .grid-box .column .inner .img {
  border-bottom: 5px solid #4d4d4d;
}
.inner-page.inner-news .container .list .grid-box .column .inner .img img {
  width: 100%;
}
.inner-page.inner-news .container .list .grid-box .column .inner .info {
  padding: 30px 15px;
  border: 1px solid #eeeeee;
  border-top: none;
}
.inner-page.inner-news .container .list .grid-box .column .inner .info p:nth-of-type(1) {
  font-size: 24px;
  color: #424242;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 20px;
}
.inner-page.inner-news .container .list .grid-box .column .inner .info p:nth-of-type(2) {
  font: 16px/25px r;
  color: #666;
  margin-bottom: 30px;
}
.inner-page.inner-news .container .list .grid-box .column .inner .info > a {
  display: block;
  width: 198px;
  height: 47px;
  border: 1px solid #333333;
  text-align: center;
  font: 18px/45px impact;
  color: #3f3a39;
  text-transform: capitalize;
}
.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: 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: #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;
}
.inner-form {
  padding: 80px 0;
  background: whitesmoke;
}
.inner-form .container .tit {
  text-align: center;
  margin-bottom: 30px;
}
.inner-form .container .tit p:nth-of-type(1) {
	font-size: 30px; line-height:45px;
  color: #333;
}
.inner-form .container .tit p:nth-of-type(2) {
  font: 18px r;
  color: #333;
}
.inner-form .container .form {
  font-size: 0;
}
.inner-form .container .form li {
  display: inline-block;
}
.inner-form .container .form li:nth-of-type(1) {
  width: 49%;
  margin: 0 2% 10px 0;
}
.inner-form .container .form li:nth-of-type(2) {
  width: 49%;
  margin: 0 0 10px 0;
}
.inner-form .container .form li:nth-of-type(3) {
  width: 100%;
  margin: 0 0 10px 0;
}
.inner-form .container .form li:nth-of-type(4) {
  width: 100%;
  margin: 0 0 10px 0;
  position: relative;
}
.inner-form .container .form li:nth-of-type(4) img{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
}
.inner-form .container .form li:not(:last-of-type) input {
  width: 100%;
  height: 55px;
  background: #fff;
  border: none;
  outline: none;
  padding: 0 30px;
  font-size: 20px; line-height: 55px;
  color: #ccc;
}
.inner-form .container .form li:not(:last-of-type) input::-webkit-input-placeholder {
  color: #ccc;
}
.inner-form .container .form li:not(:last-of-type) textarea {
  width: 100%;
  height: 150px;
  background: #fff;
  border: none;
  outline: none;
  padding: 0 30px;
  font-size: 20px; line-height: 55px;
  color: #ccc;
}
.inner-form .container .form li:not(:last-of-type) textarea::-webkit-input-placeholder {
  color: #ccc;
}
.inner-form .container .form li:last-of-type {
  width: 100%;
}
.inner-form .container .form li:last-of-type input {
  width: 100%;
  height: 55px;
  background: #f6b72c;
  font-size: 22px;
  color: #fff;
  text-transform: uppercase;
  border: none;
  outline: none;
}
.faq-page .faq-list {
  padding: 88px 0 115px;
}
.faq-page .faq-list dt {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  padding: 16px 30px 14px;
  background-color: #343434;
  font-size: 18px;
  cursor: pointer;
  color: #9e9e9e;
  margin-bottom: 12px;
  transition: 0.5s ease;
}
.faq-page .faq-list dt:hover, .faq-page .faq-list dt.active {
  background: #1170d5;
  color: #fff;
}
.faq-page .faq-list dd {
  font-size: 14px;
  line-height: 22px;
  color: #757575;
  padding: 15px 30px;
  margin-bottom: 12px;
  display: none;
}
::-webkit-input-placeholder {
  color: #777;
}
:-moz-placeholder {
  color: #777;
}
::-moz-placeholder {
  color: #777;
}
:-ms-input-placeholder {
  color: #777;
}
.m-page {
  text-align: center;
  padding: 45px 0;
  font-size: 1rem;
  margin-top: 40px;
}
.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: 28px;
  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*/
}
.map{
  position: relative;
  margin-top: 105px;
}
.map-hover{
/*   position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0,0,0,.6); */
}
.map-hover .inner{
	padding:80px 0;
}
.map-hover .inner .top{
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  position: relative;
}
.map-hover .inner .top .cont-info{
  width: 70%;
}
.map-hover .inner .top .cont-info p:nth-of-type(1){
  font-size: 48px;
  text-transform: uppercase;
}
.map-hover .inner .top .cont-info p:nth-of-type(2){
  font: 24px r;
  margin: 20px 0;
}
.map-hover .inner .top .cont-info ul{
  font-size: 0;
}
.map-hover .inner .top .cont-info ul li{
  display: inline-block;
  width: 50%;
  font: 24px r;
  margin-bottom: 10px;
}
.map-hover .inner .top .cont-info ul li:nth-of-type(3),
.map-hover .inner .top .cont-info ul li:nth-of-type(4){
  margin-bottom: 0;
}
.map-hover .inner .top .showmap{
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 315px;
  height: 65px;
  background: #f6b72c;
  text-align: center;
 font-size: 24px; line-height: 65px;
  text-transform: uppercase;
}
.map-hover .inner .bottom p{
	font-size:16px;line-height:30px;
}
.map .map-hover .inner .bottom{
  font: 24px r;
  color: #fff;
}
.gallery-page .container .pro-list{
  padding: 60px 0;
  overflow: hidden;
}
.gallery-page .container .pro-list .grid-box{
  margin: -20px -10px;
}
.gallery-page .container .pro-list .grid-box .column{
  padding: 20px 10px;
}
.gallery-page .container .pro-list .grid-box .column .img-box{
  margin-bottom: 20px;
}
.gallery-page .container .pro-list .grid-box .column .img-box img{
  width: 100%;
}
.gallery-page .container .pro-list .grid-box .column p{
  font: 18px r;
  color: #000;
  text-align: center;
}
.inner-contact-bottom{
  padding: 60px 15px;
  background: #f6b72c;
  text-align: center;
}
.inner-contact-bottom p{
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  color: #fff;
  margin-right: 30px;
}
.inner-contact-bottom a{
  display: inline-block;
  vertical-align: middle;
  width: 249px;
  height: 48px;
  border: 1px solid #fff; 
  font-size: 18px; line-height: 46px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
.image-gallery{
	margin-top: 15px;
}
.image-gallery li{
	width: 25%;
}
.image-gallery li img{
	border: 1px solid #e0e0e0;
}
.video-list .img-box{
  height: 450px;
}
.about-page .i-why-part3{
	padding:100px 0; background:url(../images/why-bg_02.jpg) repeat;
}
.about-page .i-why-part3 h2.h2{
	text-align:center; font-size:36px; color:#3e3a39; text-transform:uppercase; font-family:'bo';
}
.about-page .i-why-part3 h3.h3{
	font-size:16px; text-align:center; color:#3e3a39; position:relative;font-family: 'siva'; text-transform:capitalize;
}
.about-page .i-why-part3 h3.h3:before{
	content: '';position: absolute;
	width:112px; height:1px; background:#000; left:37%; top:10px;
}
.about-page .i-why-part3 h3.h3:after{
	content: '';position: absolute;
	width:112px; height:1px; background:#000; right:37%; top:10px;
}
.about-page .i-why-part3 p.p{
	text-align:center; font-size:14px; color:#595757; padding:10px 10%; line-height:26px;
}
.about-page .i-why-part3 .why-list{
	margin-top:60px;
}
.about-page .i-why-part3 .why-list .swiper-slide .img-box {
  position: relative;
}
.about-page .i-why-part3 .why-list .swiper-slide .img-box .layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9;
  opacity: 0;
  filter: alpha(opacity=100);
  left: 0;
  top: 0;
}
.about-page .i-why-part3 .why-list .swiper-slide .img-box .text {
  position: absolute;
  width: 100%;
  z-index: 99;
  height: 100%;
  left: 0;
  top: 0;
  padding-top: 45%;
}
.about-page .i-why-part3 .why-list .swiper-slide .img-box .text h3 {
  font-size: 34px;
  text-align: center;
	    font-family: 'DINOffcPro-CondBold';
  color: #ffffff;
}
.about-page .i-why-part3 .why-list .swiper-slide .img-box .text a.more {
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  margin: 0 auto;
  display: block;
  text-transform: uppercase;
}
.about-page .i-why-part3 .why-list .swiper-slide .img-box .text a.more p{
  font-size:12px !important;
  color: #FFFFFF;
  padding: 0 15px;
}
.about-page .i-why-part3 .why-list .swiper-slide .img-box:hover .layer {
  opacity: 1;
  filter: alpha(opacity=100);
}
.about-page .i-why-part3 .why-list .swiper-slide:not(.swiper-slide-active) {
  margin-top: 0;
}
.about-page .i-why-part3 .why-list .swiper-slide-active {
  margin-top: 80px;
}
.about-page .i-why-part3 .why-list .swiper-slide-prev,.about-page .i-why-part3 .why-list .swiper-slide-next {
  margin-top: 40px !important;
}


.quality-page {
  padding: 100px 0;
  background: #f2f2f2;
}
.quality-page h2.h2 {
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: #3e3a39;
  position: relative;
  padding-bottom: 10px;
}
.quality-page h2.h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 1px;
  background: #f6b72c;
  left: 50%;
  bottom: 0;
  margin-left: -40px;
}
.quality-page .grid-box{
	margin-top: 180px;
    background: #fff;
    width: 90%;
    margin-right: 10%;
}
.quality-page .grid-box .swiper-button-prev,
.quality-page .grid-box .swiper-container-rtl .swiper-button-next,
.quality-page .grid-box .swiper-button-next, 
.quality-page .grid-box .swiper-container-rtl .swiper-button-prev{
	background: #feb10d;
	text-align: center;
	line-height: 44px;
}
.quality-page .grid-box .fa{
	color: #fff;
	font-size: 18px;
	text-align: center;
}
.quality-page .grid-box2{
margin-left: 10%;
margin-right: 0;
}
.quality-page .grid-box .i-fl {
  width: 70%;
  margin-top: -80px;
}
.quality-page .grid-box .i-fr {
  width: 30%;
  padding: 5% 8% 5% 3%;
}
.quality-page .grid-box .i-fr h3 {
  color: #3e3a39;
  font-size: 30px;
  margin-bottom: 30px;
}
.quality-page .grid-box .i-fr p {
  line-height: 25px;
  color: #3e3a39;
}
.quality-page .grid-box2 .i-fr {
  padding: 10% 3% 5% 8%;
}


.innovating-page {
  background: url(../images/ivv-bg.jpg) no-repeat center;
  background-size: cover;
  padding-bottom: 100px;
}
.innovating-page p.tit {
  text-align: center;
  margin: 20px 0;
}
.innovating-page .grid-box {
  margin-top: 100px;
}
.innovating-page .grid-box .column {
  padding-right: 3%;
}
.innovating-page .grid-box .column .fl-list,
.innovating-page .grid-box .column .fl-list2 {
  position: relative;
}
.innovating-page .grid-box .column .fl-list .icon,
.innovating-page .grid-box .column .fl-list2 .icon {
  width: 44px;
  height: 44px;
  background: url(../images/fl_08.jpg) no-repeat center;
  position: absolute;
  left: -45px;
  bottom: 0;
  cursor: pointer;
}
.innovating-page .grid-box .column .fl-list .right,
.innovating-page .grid-box .column .fl-list2 .right {
  background: url(../images/fr_06.jpg) no-repeat center;
  bottom: 44px;
}
.innovating-page .grid-box .column .text {
  padding-top: 30px;
}
.innovating-page .grid-box .column .text h3 {
  text-align: right;
  color: #595757;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 24px;
}
.innovating-page .grid-box .column .text p {
  text-align: right;
  color: #595757;
}
.innovating-page .grid-box .column:nth-child(2) {
  padding-left: 3%;
  padding-right: 0;
}
.innovating-page .grid-box .column:nth-child(2) .fl-list,
.innovating-page .grid-box .column:nth-child(2) .fl-list2 {
  position: relative;
}
.innovating-page .grid-box .column:nth-child(2) .fl-list .icon,
.innovating-page .grid-box .column:nth-child(2) .fl-list2 .icon {
  left: auto;
  bottom: 0;
  right: -45px;
}
.innovating-page .grid-box .column:nth-child(2) .fl-list .right,
.innovating-page .grid-box .column:nth-child(2) .fl-list2 .right {
  bottom: 44px;
}
.innovating-page .grid-box .column:nth-child(2) .text {
  padding: 0 0 30px;
}
.innovating-page .grid-box .column:nth-child(2) .text h3,
.innovating-page .grid-box .column:nth-child(2) .text p {
  text-align: left;
}
.team {
  padding-bottom: 100px;
  background: url(../images/team-bot_11.jpg) no-repeat center;
  background-size: cover;
}
.team .team-list {
  position: relative; height:585px;
}
.team .team-list2{
	margin-top:100px;
}
.team .team-list .icon {
  width: 131px;
  height: 35px;
  background: url(../images/next_12.jpg) no-repeat center;
  position: absolute;
  right: 20%;
  bottom: 0;
  cursor: pointer;
  z-index: 9;
}
.team .team-list .swiper-slide {
  position: relative;
}
.team .team-list .swiper-slide .img {
  width: 60%;
}
.team .team-list .swiper-slide .text {
  position: absolute;
  width: 30%;
  padding: 5% 2%;
  background: #eee;
  right: 20%;
  top: 20%;
}
.team .team-list2 .swiper-slide .img {
  width: 60%; float:right;
}
.team .team-list2 .swiper-slide .text {
  right: auto;
	left:20%;
}
.team .team-list .swiper-slide .text h2 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.team .team-list .swiper-slide .text p {
  color: #595757;
}
.team .team-list2 .icon {
  left:20%;
	right:auto;
}

.inner-page h2.h2 {
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: #3e3a39;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.inner-page h2.h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 1px;
  background: #f6b72c;
  left: 50%;
  bottom: 0;
  margin-left: -40px;
}
.inner-page p.p{
	text-align: center;
    margin: 20px 0;
}
.inner-page h4.h4{
	text-align: center;
    margin: 40px 0; font-size: 30px; color: #f6b72c; font-weight: bold;
}

.sustainable {
  background: url(../images/sub-bg.jpg) no-repeat center;
  background-size: cover;
  padding-top: 100px;
}
.sustainable .grid-box {
	margin:0;
	display:block;
}
.sustainable .grid-box>.column,.sustainable .grid-box .swiper-slide.column {
    padding: 0;
}
.sustainable .i-sustainable {
  padding: 120px 0 80px;
  position: relative;
}
.sustainable .i-sustainable .name {
  width: 30%;
  padding: 4% 2%;
  background: #cecece;
  position: absolute;
  top: 0;
  left: 0;
}
.sustainable .i-sustainable .name p {
  color: #1b1b1b;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
}
.sustainable .i-sustainable .sus-list1,
.sustainable .i-sustainable .sus-list2 {
  margin-bottom: 100px;
  position: relative;
	background:url(../images/bg2.png) no-repeat right top;
	background-size:cover;
}
.sustainable .i-sustainable .sus-list1 .icon,
.sustainable .i-sustainable .sus-list2 .icon {
  width: 44px;
  height: 44px;
  background: url(../images/fl_08.jpg) no-repeat center;
  position: absolute;
  bottom: 8%;
  right: 8%;
  cursor: pointer;
  z-index: 8;
}
.sustainable .i-sustainable .sus-list1 .right,
.sustainable .i-sustainable .sus-list2 .right {
  background: url(../images/fr_06.jpg) no-repeat center;
  right: 4%;
}
.sustainable .i-sustainable .sus-list1 .swiper-slide,
.sustainable .i-sustainable .sus-list2 .swiper-slide {
  border: 1px solid #bdbcbc;
}
.sustainable .i-sustainable .sus-list1 .swiper-slide .grid-box .column.text,
.sustainable .i-sustainable .sus-list2 .swiper-slide .grid-box .column.text {
  padding: 8% 5%;
}
.sustainable .i-sustainable .sus-list1 .swiper-slide .grid-box .column.text h3,
.sustainable .i-sustainable .sus-list2 .swiper-slide .grid-box .column.text h3 {
  margin-bottom: 30px;
  text-align: right;
}
.sustainable .i-sustainable .sus-list1 .swiper-slide .grid-box .column.text h3 a,
.sustainable .i-sustainable .sus-list2 .swiper-slide .grid-box .column.text h3 a {
  color: #3e3a39;
  font-size: 30px;
}
.sustainable .i-sustainable .sus-list1 .swiper-slide .grid-box .column.text p,
.sustainable .i-sustainable .sus-list2 .swiper-slide .grid-box .column.text p,
.sustainable .i-sustainable .sus-list1 .swiper-slide .grid-box .column.text p span,
.sustainable .i-sustainable .sus-list2 .swiper-slide .grid-box .column.text p span{
  line-height: 25px;
  text-align: right; font-size:16px !important;
}
.sustainable .i-sustainable .sus-list2 .icon {
  left: 4%;
}
.sustainable .i-sustainable .sus-list2 .right {
  left: 8%;
}
.sustainable .i-sustainable .sus-list2 .swiper-slide .grid-box .column.text h3 {
  text-align: left;
}
.sustainable .i-sustainable .sus-list2 .swiper-slide .grid-box .column.text p {
  text-align: left;
}
.sustainable .i-sustainable2 {
  position: relative;
}
.sustainable .i-sustainable2 .name {
  top: 0;
  right: 0;
  left: auto;
}
.honor{
	padding: 100px 0;
	background: url(../images/honr-bg_02.jpg) no-repeat center;
	background-size: cover;
}

.honor .honor-lis{
	margin-top: 30px;
}


.cat-product-page {
  padding: 0px 0 80px;
}
.cat-product-page .cat-pro {
  margin: 80px 0 0;
}
.cat-product-page .cat-pro .i-cat-text {
  background: url(../images/cat-product-bg_03.jpg) no-repeat left top;
}

.cat-product-page .cat-pro:nth-child(2) .i-cat-text {
  background: url(../images/cat-product-bg_07.jpg) no-repeat right top;
}

.cat-product-page .cat-pro:nth-child(3) .i-cat-text {
  background: url(../images/cat-product-bg_10.jpg) no-repeat left top;
}
.cat-product-page .cat-pro:nth-child(4) .i-cat-text {
  background: url(../images/cat-product-bg_12.jpg) no-repeat right top;
}

.cat-product-page .cat-pro .i-cat-text .i-fl {
  width: 40%;
  padding: 5%;
  float: left;
}
.cat-product-page .cat-pro .i-cat-text .i-fl h2 {
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 5px;
  text-transform: uppercase;
}
.cat-product-page .cat-pro .i-cat-text .i-fl h2:after {
  content: '';
  position: absolute;
  width: 80px;
  height: 2px;
  left: 0;
  bottom: 0;
  background: #000000;
}
.cat-product-page .cat-pro .i-cat-text .i-fl h2 a {
  font-size: 36px;
}
.cat-product-page .cat-pro .i-cat-text .i-fl p {
  font-size: 16px;
  color: #2f2725;
  margin-bottom: 10px;
}
.cat-product-page .cat-pro .i-cat-text .i-fr {
  width: 60%;
  float: right;
}
.cat-product-page .cat-pro .pro-list,
.cat-product-page .cat-pro .pro-list2 {
  margin-top: 10px;
  padding: 0 50px;
  position: relative;
}
.cat-product-page .cat-pro .pro-list .fa,
.cat-product-page .cat-pro .pro-list2 .fa {
  color: #fff;
  font-size: 32px;
  position: absolute;
  left: 0;
  width: 40px;
  height: 100%;
  top: 0;
  background: #dddddd;
  text-align: center;
  padding-top: 7%;
  cursor: pointer;
}
.cat-product-page .cat-pro .pro-list .fa-angle-right,
.cat-product-page .cat-pro .pro-list2 .fa-angle-right {
  left: auto;
  right: 0;
}
.cat-product-page .cat-pro:nth-child(2n) .i-cat-text .i-fl {
  float: right;
}
.cat-product-page .cat-pro:nth-child(2n) .i-cat-text .i-fr {
  float: left;
}

.cat-product-page .cat-pro .more{
  text-align: right; display: block; margin-top: 20px;
}


.i-environment,.i-achievement{
	padding: 80px 0;
}
.i-environment .grid-box{
	margin-top: 40px;
}
.i-environment .grid-box .column img{
	display: block;
	margin:0 auto;
}
.i-quility{
	padding: 80px 0;
	background: url(../images/ach-bg.jpg) no-repeat center;
	background-size: cover;
}
.i-quility img{
	display: block;
	margin: 0 auto;
}
.i-quility p{
	text-align: center;
	font-size: 18px;
	padding: 10px 0;
	padding-top: 30px;
	text-transform: uppercase;
}
.i-quility .grid-box{
	margin-top: 50px;
}
.video_layer {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
	z-index: 998;
    background: rgba(0,0,0,.7);
}
.i_video {
    width: 536px;
    height: 253px;
    top: 45%;
    left: 56%;
    margin: -250px 0 0 -400px;
    z-index: 9999;
}
.i_video, .video_layer {
    position: absolute;
    display: none;
}
@media (max-width:1550px){
	.index-about .ia-top .ia-top-wrapper {
    max-width: 1230px;
}
	.index-about .ia-top .ia-top-wrapper .container .left p:nth-of-type(1) {
    font: 26px dv;
}
}
@media (max-width:1440px){
	.inner-banner{
		margin-top: 90px;
	}
	.inner-banner {
    height: 300px;
    background-size: 100% 100%;
}
	.map{
		margin-top: 90px;
	}
	.index-about .ia-top .ia-top-wrapper {
    max-width: 1200px;
}
}

@media (max-width: 1200px) {
	.inner-banner .inner-tit {
    font-size: 38px;
  }
	.inner-about .inner-about-2 .container #advantage .swiper-slide .content {
    padding-top: 0;
  }
  .inner-about .inner-about-2 .container #advantage .swiper-slide .content h3 {
    font-size: 25px;
    margin: 10px 0;
  }
  .inner-contact-bottom p{
    display: block;
    text-align: center;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .inner-contact-bottom a{
    display: block;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
	.inner-banner{
		margin-top: 59px;
	}
	.map{
		margin-top: 59px;
	}
  .inner-page.inner-product .container .inner-pro-left {
    display: none;
  }
  .inner-page.inner-product .container .inner-pro-right {
    width: 100%;
    float: none;
    padding: 0;
  }
  .inner-page.inner-product .container .inner-pro-right .grid-box .column .inner .pro-info {
    padding: 0 30px 30px;
  }
  .inner-page.inner-prodet .inner-prodet-1 .container .left {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .inner-page.inner-prodet .inner-prodet-1 .container .right {
    width: 100%;
    float: none;
    padding: 0;
  }
  .inner-page.inner-news .container .nav {
    display: none;
  }
  .map .map-hover .inner .top .cont-info{
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
  .map .map-hover .inner .top .showmap{
    position: static;
    display: block;
  }
  .map .map-hover .inner .bottom p{
    float: none;
  }
  .inner-about .inner-about-2 .container #advantage .control {
    display: none;
  }
  .inner-about .inner-about-1 .container .top .content h3 {
    font-size: 25px;
  }
  .inner-about .inner-about-3 .container .title h3 {
    font-size: 25px;
  }
}
@media (max-width: 768px) {
  .map .map-hover .inner .top .cont-info p:nth-of-type(1){
    font-size: 25px;
  }
  .map .map-hover .inner .top .cont-info p:nth-of-type(2){
    font-size: 16px;
    margin: 10px 0;
  }
  .map .map-hover .inner .top .cont-info ul li{
    width: 100%;
    font-size: 14px;
  }
  .map .map-hover .inner .top .cont-info ul li:nth-of-type(3){
    margin-bottom: 10px;
  }
  .map .map-hover .inner .top .showmap{
    width: 140px;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
  }
  .map .map-hover .inner .bottom{
    font-size: 14px;
  }
  .map .map-hover .inner .top{
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .inner-banner {
    height: 260px;
    padding-top: 100px;
  }
  .inner-banner .inner-tit {
    font-size: 28px;
  }
  .inner-banner .bread-crumbs a, .inner-banner .bread-crumbs span {
    font-size: 12px;
  }
}


@media (max-width: 768px) {
  .index-about .ia-top .ia-top-wrapper .container .left p:nth-of-type(1) {
    font-size: 25px;
  }
  .index-case .container .content #case1 {
    width: 100%;
    float: none;
  }
  .index-case .container .content #case2 {
    display: none;
  }
  .index-case .container .content .info {
    position: static;
    max-width: 100%;
  }
  .index-case .container .content .num {
    display: none;
  }
  .index-case .container .content .control {
    right: 0;
  }
  .index-factory .container .left {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .index-factory .container .right {
    width: 100%;
    float: none;
  }
  .index-news .container .list #in .swiper-slide .inner .img-box {
    width: 100%;
    float: none;
  }
  .index-news .container .list #in .swiper-slide .inner .info {
    width: 100%;
    float: none;
    padding: 40px 15px;
  }
  .index-news .container .list .control {
    display: none;
  }
  .index-news .container .list #in .swiper-slide {
    padding: 10px;
  }
  #footer .container .top .item {
    width: 100%!important;
    margin-bottom: 40px;
  }
  #footer .container .top .item:last-of-type {
    margin-bottom: 0;
  }
	.index-about .ia-top {
    position: relative;
    margin-top: 0;
    z-index: 999;
}
	.inner-banner {
    height: 150px !important;
    padding-top: 72px;
		background-size: 150% 100%;
}
	.cat-product-page .cat-pro .i-cat-text .i-fl h2 a {
    font-size: 14px;
}
	.cat-product-page .cat-pro .i-cat-text .i-fl h2 {
    margin-bottom: 5px;font-size: 14px;
    padding-bottom: 5px;
}
	.innovating-page {
    padding-bottom: 30px;
}
	.sustainable .i-sustainable .sus-list1 .icon, .sustainable .i-sustainable .sus-list2 .icon {
    right: 22%;
}
	.sustainable .i-sustainable .sus-list1 .right, .sustainable .i-sustainable .sus-list2 .right {
    right: 4%;
}
	.sustainable {
    padding-top: 30px;
}
	.sustainable .i-sustainable .sus-list1, .sustainable .i-sustainable .sus-list2 {
    margin-bottom: 30px;
}
	.team .team-list .swiper-slide .text {
    position: absolute;
    width: 30%;
    padding: 5% 2%;
    background: #eee;
    right: 0;
    top: 0;
		    right: 10%;
}
	.team .team-list .swiper-slide .text h2 {
    font-size: 14px;
    margin-bottom: 10px;
}
	.team .team-list .swiper-slide .text p{
		display:none;
	}	
	.quality-page .grid-box2 {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}
	.quality-page .grid-box {
    width:100%;
    margin-right: 0;
		margin-top:20px;
}
	.quality-page .grid-box .i-fl {
    width: 100%;
    margin-top: 0;
}
	.quality-page .grid-box .i-fr {
    width: 100%;
    padding: 5% 8% 5% 3%;
}
	.quality-page .grid-box .i-fr h3 {
    color: #3e3a39;
    font-size: 20px;
    margin-bottom: 15px;
}
	.inner-page.inner-news .container .list .grid-box .column {
    padding: 10px 5px;
		width:100%;
}
	#footer .container .top .item:nth-of-type(1) .erweima{
		display:none;
	}
}
@media (max-width: 700px) {
.inner-page.i-quility .grid-box.three>.column {
    width: 33.3%;
}
	.i-quility p {
    font-size: 16px;
}
}

.sus-list1 .swiper-wrapper{
	height:379px !important;
}
.mobile{
		display:none;
	}
@media (max-width: 576px) {
  .about-banner{
    background: url(../images/about-m.jpg) center center no-repeat!important;
    background-size: cover!important; 
  }
  .news-banner{
    background: url(../images/new-m.jpg) center center no-repeat!important;
    background-size: cover!important; 
  }
   .faqs-banner{
    background: url(../images/faq-m.jpg) center center no-repeat!important;
    background-size: cover!important; 
  }
  .inner-page.inner-prodet .inner-prodet-1 .container .right .pro-name {
    font-size: 25px;
  }
  .inner-page.inner-prodet .inner-prodet-1 .container .right .cont {
    width: 100%;
    height: 60px;
    line-height: 60px;
  }
  .inner-page.inner-prodet .inner-prodet-2 .tit {
    border: none;
  }
  .inner-page.inner-prodet .inner-prodet-2 .tit span {
    width: 100%;
    font-size: 18px;
    text-align: center;
    padding: 0;
  }
  .inner-form .container .form li {
    width: 100%!important;
  }
  .m-page{
  	margin-top: 0;
  	padding: 0 0 20px 0;
  }
  .video-list .img-box{
  height: 200px;
}
.gallery-page .container .pro-list .grid-box .column .img-box{
  margin-bottom: 0;
}
.gallery-page .container .pro-list .grid-box .column p{
  display: none;
}
.inner-about .inner-about-1 .container .top .img {
    width: 100%;
    float: none;
  }
  .inner-about .inner-about-1 .container .top .content {
    width: 100%;
    float: none;
    margin-bottom: 40px;
    padding: 0;
  }
  .inner-about .inner-about-2 .container #advantage .swiper-slide .img {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .inner-about .inner-about-2 .container #advantage .swiper-slide .content {
    width: 100%;
    float: none;
    padding: 0;
  }
  .inner-about .inner-about-3 .container .swiper-container {
    padding: 0;
  }
  .inner-about .inner-about-3 .container .swiper-container .swiper-pagination {
    display: none;
  }
	.sustainable .i-sustainable .sus-list1 .icon, .sustainable .i-sustainable .sus-list2 .icon {
    bottom: -44px;
}
	.sustainable .i-sustainable .sus-list1 .swiper-slide .grid-box .column.text h3 a, .sustainable .i-sustainable .sus-list2 .swiper-slide .grid-box .column.text h3 a {
    font-size: 20px;
}
	.sustainable .i-sustainable .name{
		width:60%;
	}
	.sustainable .i-sustainable .name p {
    font-size: 18px;
}
	.index-factory .factory-list {
	position: relative; height:auto !important;
}
.index-factory .swiper-wrapper{
	height:auto !important;
}
	.sus-list1 .swiper-wrapper{
	height:auto !important;
}
		.inner-about.about-page .grid-box.two>.column{
		padding:0 !important; margin-bottom:10px;
	}
		.index-news .container .list #in .swiper-slide .inner .date {
    font: 13px/70px l;
}
	.index-factory .container .right {
    right: 0;
}
	.index-factory .factory-list .grid-box .column h2.h2{
		font-size:16px;
		text-align:center;
	}
	.index-factory .factory-list .grid-box .column h2.h2:after {
    left: 81%;
}
	.index-factory .factory-list .grid-box .column p span, .index-factory .factory-list .grid-box .column p{
	font-size:14px !important;
	}
	.index-factory .factory-list .icon{
		display:none;
	}
	.index-banner{
		display:none;
	}
	.mobile{
		display:block;
		margin-top:55px;
	}
	.team .team-list{
		height:auto !important;
	}
}

.wpulike.wpulike-default{
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default{
  display: block;
} 
.post-views-box{
  position: relative;
  margin: -50px 0 0 100px;
}
.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;
}

