/* 字体引入 */
@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: 'black';
  src: url('/fonts/roboto-black.ttf');
}
/* 网站基本宽度（注意修改） */
hr{width:80px;margin:20px 0px 20px 0px; color:#dedede;height:1px;border:none;border-top:2px  solid #cdcdcd; padding:6px 0px 10px 0px;}
.container {
  max-width: 1320px;
  padding: 0 15px; 
}
#header {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 9999;
}
/*#header.active {
  position: fixed;
}*/
#header.active .nav {
  padding: 10px 0;
  background: #000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}
#header .nav {
  position: relative;
  z-index: 999;
  padding-top: 29px;
	 transition: 500ms;
}
#header .nav .container .logo {
  margin: 0 0 0 0px;
}
#header .nav .container .logo img{
  margin: 0 0 0 0px; border:0px solid #f50; max-height:90px;
}
#header .nav .container .h-lan {
  margin: 20px 0 0 35px;
}
#header .nav .container .h-lan a {
  font: 16px r;
  color: #fff;
  margin-right: 20px;
}
#header .nav .container .h-lan a:last-of-type {
  margin-right: 20px;
}
#header .nav .container .search-btn {
  width: 17px;
  height: 17px;
  background: url(../images/search.png) center center no-repeat;
  border: none;
  outline: none;
  margin: 23px 0 0 28px;
}
#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: roboto;
  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 .menu-box {
  margin-top: 20px;
}
#header .nav .container .menu-box .menu {
  font-size: 0;
}
#header .nav .container .menu-box .menu > li {
  display: inline-block;
  position: relative;
  margin:0px 25px;
  padding-bottom: 5px;
}
#header .nav .container .menu-box .menu > li:first-child {
  margin-left: 0;
}
#header .nav .container .menu-box .menu > li > a {
  display: block;
  font: 18px r;
  color: #f4f4f4;
  text-transform: uppercase;
}
#header .nav .container .menu-box .menu > li .sub-menu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 160px;
  background: #000;
  overflow: hidden;
  display: none;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.08);
}
#header .nav .container .menu-box .menu > li .sub-menu li a {
  color: #fff;
  font: 14px/22px r;
  display: block;
  padding:6px 16px;
  margin:0px 0px;
  transition: 300ms;
  text-align: center;
  text-transform: uppercase;
}
#header .nav .container .menu-box .menu > li .sub-menu li a:hover {
  background-color: #fff;
  color: #000;
}
#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 r;
  color: #333;
  text-transform: uppercase;
}
#header .toggle-nav .menu > li .sub-menu > li > a {
  display: block;
  font: 14px/35px r;
  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 r;
  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 r;
  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 r;
  color: #333;
  text-transform: uppercase;
}
.metaslider{
	max-width: 100%!important;
}
.metaslider .flexslider{
	margin: 0!important;
}
.metaslider .flex-control-nav{
	display: none!important;
}
.index-banner .swiper-slide {
  height: 900px;
  background: url(../images/banner.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.index-banner .swiper-slide .container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 35px;
}
.index-banner .swiper-slide .container p:nth-of-type(1) {
  font: 18px l;
  color: #ea1d14;
}
.index-banner .swiper-slide .container p:nth-of-type(2) {
  max-width: 480px;
  font: 45px black;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.index-banner .swiper-slide .container a {
  width: 191px;
  height: 48px;
  display: block;
  border: 1px solid #ea1d14;
  font: 16px/46px black;
  color: #ea1d14;
  text-align: center;
  text-transform: capitalize;
  position: relative;
  transition: 300ms;
}
.index-banner .swiper-slide .container a:hover {
  background-color: #ea1d14;
  color: #fff;
}
.index-banner .swiper-slide .container a:hover:after {
  opacity: 0;
}
.index-banner .swiper-slide .container a:hover:before {
  opacity: 0;
}
.index-banner .swiper-slide .container a:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  background: #ea1d14;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 300ms;
}
.index-banner .swiper-slide .container a:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 1px;
  background: #ea1d14;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  transition: 300ms;
}
.index-about .index-about-top {
  padding: 75px 0;
  background: #f2f2f2;
}
.index-about .index-about-top .container {
  overflow: hidden;
}
.index-about .index-about-top .container .list {
  margin: 0 -48px;
  font-size: 0;
  transition: 500ms;
}
.index-about .index-about-top .container .list:hover .item .inner {
  transform: scale(0.8);
  filter: blur(5px);
 
}
.index-about .index-about-top .container .list .item {
  display: inline-block;
  width: 33.33%;
  vertical-align: top;height:70px;
  padding: 0px 48px; border:0px solid #F60;
}
.index-about .index-about-top .container .list .item:nth-of-type(1) .inner {
  background: url(../images/ia1.png) left 5px no-repeat; height:65px;
  
}
.index-about .index-about-top .container .list .item:nth-of-type(2) .inner {
  background: url(../images/ia2.png) left 5px no-repeat;height:65px;
}
.index-about .index-about-top .container .list .item:nth-of-type(3) .inner {
  background: url(../images/ia3.png) left 5px no-repeat;height:65px;
}
.index-about .index-about-top .container .list .item .inner {
  padding-left: 75px;
  cursor: pointer;
  transition: 500ms;
}
.index-about .index-about-top .container .list .item .inner:hover {
  transform: scale(1);
  filter: blur(0);
}
.index-about .index-about-top .container .list .item .inner p:nth-of-type(1) {
  font: 19px black;
  color: #252525;
  margin-bottom: 5px;
}
.index-about .index-about-top .container .list .item .inner p:nth-of-type(2) {
  font: 16px/19px l;
  color: #252525;
}
.index-about .index-about-bottom {
  padding: 140px 0 145px;
  background: url(../images/iabg.jpg) center center no-repeat;
  background-size: cover;
}
.index-about .index-about-bottom .container .left {
  width: 48%;
  padding-right: 50px;
}
.index-about .index-about-bottom .container .left p:nth-of-type(1) {
  max-width:570px;
  font: 36px/50px black;
  color: #252525;
  margin-bottom: 35px;
  font-weight:700;
}
.index-about .index-about-bottom .container .left p:nth-of-type(2) {
  font: 14px/25px r;
  color: #252525;
  margin-bottom: 16px;
}
.index-about .index-about-bottom .container .left p:nth-of-type(3) {
  font: 14px/25px r;
  color: #252525;
  margin-bottom:16px;
}
.index-about .index-about-bottom .container .left p:nth-of-type(4) {
  font: 14px/25px r;
  color: #252525;
  margin-bottom:36px;
}
.index-about .index-about-bottom .container .left a {
  width: 218px;
  height: 60px;
  border-radius: 3px;
  background: #ea1d14;
  display: block;
  font: 17px/60px l;
  color: #fff;
  text-align: center;
}
.index-about .index-about-bottom .container .right {
  width: 52%;
  border-radius: 3px;
  overflow: hidden;
}
.index-about .index-about-bottom .container .right img {
  width: 100%;
}
.index-why {
  padding: 100px 0 90px;
  background: url(../images/iwbg.jpg) center center no-repeat;
  background-size: cover;
}
.index-why .container {
  overflow: hidden;
}
.index-why .container .tit {
  font: 41px black;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.index-why .container .list {
  font-size: 0;
  margin-bottom: -55px;
}
.index-why .container .list .item {
  display: inline-block;
  vertical-align: top;
  width:27%;
  padding: 0 80px 55px 0;
}
.index-why .container .list .item:nth-of-type(4) {
  display: inline-block;
  vertical-align: top;
  width:19%;
  padding: 0 0px 55px 1%;
}
.index-why .container .list .item:nth-of-type(1) p:nth-of-type(1) {
  background: url(../images/iw1.png) right center no-repeat;
}
.index-why .container .list .item:nth-of-type(2) p:nth-of-type(1) {
  background: url(../images/iw2.png) right center no-repeat;
}
.index-why .container .list .item:nth-of-type(3) p:nth-of-type(1) {
  background: url(../images/iw3.png) right center no-repeat;
}
.index-why .container .list .item:nth-of-type(4) p:nth-of-type(1) {
  background: url(../images/iw6.png) right center no-repeat;
}
.index-why .container .list .item:nth-of-type(5) p:nth-of-type(1) {
  background: url(../images/iw5.png) right center no-repeat;
}
.index-why .container .list .item:nth-of-type(6) p:nth-of-type(1) {
  background: url(../images/iw4.png) right center no-repeat;
}
.index-why .container .list .item p:nth-of-type(1) {
  font: 24px black;
  color: #fff;
  margin-bottom: 20px;
  padding-right: 100px;
  min-height: 50px;
}
.index-why .container .list .item p:nth-of-type(2) {
  font: 14px/22px l;
  color: #d1d1d1;
}

.index-product {
  padding: 120px 0 55px;
  background: url(../images/ipbg.jpg) center center no-repeat;
  background-size: cover;
}
.index-product .container {
  overflow: hidden;
}
.index-product .container .tit {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 30px;
}
.index-product .container .tit:after {
  content: "";
  position: absolute;
  width: 160px;
  height: 2px;
  background: #ea1d14;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
.index-product .container .tit p:nth-of-type(1) {
  font: 45px black;
  color: #000;
}
.index-product .container .tit p:nth-of-type(2) {
  font: 15px l;
  color: #000;
}
.index-product .container .nav {
  margin-bottom: 85px;
  text-align: center;
}
.index-product .container .nav .nav-container {
  margin: 0 auto;
  overflow: hidden;
}
.index-product .container .nav .nav-container .nav-wrapper {
  font-size: 0;
  margin-bottom: 30px;
}
.index-product .container .nav .nav-container .nav-wrapper li {
  display: inline-block;
  font: 15px l;
  color: #000;
  padding: 0 15px;
}
.index-product .container .nav .nav-container .nav-control {
  font-size: 0;
  text-align: center;
}
.index-product .container .nav .nav-container .nav-control > div {
  display: inline-block;
  width: 23px;
  height: 23px;
  border: 1px solid #6d6d6d;
  text-align: center;
  color: #6d6d6d;
  cursor: pointer;
}
.index-product .container .nav .nav-container .nav-control > div i {
  line-height: 21px;
  font-size: 18px;
}
.index-product .container .nav .nav-container .nav-control > div:hover {
  background: #6d6d6d;
  color: #fff;
}
.index-product .container .nav .nav-container .nav-control > div:nth-of-type(1) {
  margin-right: 15px;
}
.index-product .container .ip-list {
  margin: -8px -10px;
}
.index-product .container .ip-list .column {
  padding: 8px 10px;
}
.index-product .container .ip-list .column .img-box {
  margin-bottom: 20px;
}
.index-product .container .ip-list .column .img-box img {
  width: 100%;
}
.index-product .container .ip-list .column p:nth-of-type(1) {
  font: 18px black;
  color: #000;
  margin-bottom: 5px;
  text-align: center;
}
.index-product .container .ip-list .column p:nth-of-type(1) a:hover {
  color: #ea1d14;
}
.index-product .container .ip-list .column p:nth-of-type(2) {
  font: 12px l;
  color: #000;
  text-align: center;
}
.index-product .container .ip-link {
  display: block;
  width: 171px;
  height: 48px;
  border: 1px solid #111111;
  text-align: center;
  font: 12px/46px l;
  color: #000;
  text-transform: uppercase;
  margin: 115px auto 0;
  position: relative;
  transition: 300ms;
  letter-spacing: 3px;
}
.index-product .container .ip-link:hover {
  background: #ea1d14; border:1px solid #ea1d14;
  color: #fff;
}
.index-product .container .ip-link:hover:after,
.index-product .container .ip-link:hover:before {
  opacity: 0;
}
.index-product .container .ip-link:after {
  content: "";
  width: 22px;
  height: 1px;
  background: #111;
  position: absolute;
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  transition: 300ms;
}
.index-product .container .ip-link:before {
  content: "";
  width: 22px;
  height: 1px;
  background: #111;
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  transition: 300ms;
}
.index-apl {
  padding: 80px 15px;
  background: url(../images/iaplbg.jpg) center center no-repeat;
  background-size: cover;
}
.index-apl .tit {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 80px;
}
.index-apl .tit:after {
  content: "";
  position: absolute;
  width: 160px;
  height: 2px;
  background: #ea1d14;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
.index-apl .tit p:nth-of-type(1) {
  font: 45px black;
  color: #000;
}
.index-apl .tit p:nth-of-type(2) {
  font: 15px l;
  color: #000;
}
.index-apl #iapl {
  margin-bottom: 55px;
}
.index-apl #iapl .swiper-slide .img-box img {
  width: 100%;
}
.index-apl #iapl .swiper-slide p:nth-of-type(1) {
  display: inline-block;
  font: 14px r;
  color: #fff;
  padding: 10px 25px;
  background: #ea1d14;
  margin: 20px 0 10px;
}
.index-apl #iapl .swiper-slide p:nth-of-type(2) {
  font: 21px r;
  color: #000;
}
.index-apl .control {
  font-size: 0;
  text-align: center;
}
.index-apl .control > div {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  text-align: center;
  cursor: pointer;
  color: #000;
}
.index-apl .control > div:hover {
  background: #000;
  color: #fff;
}
.index-apl .control > div:first-child {
  margin-right: 25px;
}
.index-apl .control > div i {
  line-height: 38px;
  font-size: 18px;
}
.index-faq {
  padding: 120px 0 125px;
  background: url(../images/ifaqbg11.jpg) center center no-repeat;
  background-size: cover;
}
.index-faq .container {
  overflow: hidden;
}
.index-faq .container .tit {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 120px;
}
.index-faq .container .tit:after {
  content: "";
  position: absolute;
  width: 160px;
  height: 2px;
  background: #ea1d14;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
.index-faq .container .tit p:nth-of-type(1) {
  font: 45px black;
  color: #000;
}
.index-faq .container .tit p:nth-of-type(2) {
  font: 15px l;
  color: #000;
}
.index-faq .container .list .item {
  width: 100%;
}
.index-faq .container .list .item .q {
  font: 16px black;
  color: #000;
  padding: 15px 0;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
  margin-top: -1px;
  cursor: pointer;
  position: relative;
  user-select: none;
}
.index-faq .container .list .item .q .icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.index-faq .container .list .item .q .icon.active span:first-child {
  transform: rotate(0);
  background: #505cfd;
}
.index-faq .container .list .item .q .icon span {
  display: block;
  width: 15px;
  height: 2px;
  background: #414044;
  transition: 300ms;
}
.index-faq .container .list .item .q .icon span:first-child {
  transform: rotate(90deg);
  position: relative;
  top: 2px;
}
.index-faq .container .list .item .a {
  font: 14px/25px r;
  color: #545454;
  padding: 20px 0 35px;
  display: none;
  user-select: none;
}
.index-faq .container .faq-link {
  display: block;
  width: 171px;
  height: 48px;
  border: 1px solid #111111;
  text-align: center;
  font: 12px/46px l;
  color: #000;
  text-transform: uppercase;
  margin: 80px auto 0;
  position: relative;
  transition: 300ms;
  letter-spacing: 3px;
}
.index-faq .container .faq-link:hover {
  background: #111;
  color: #fff;
}
.index-faq .container .faq-link:hover:after,
.index-faq .container .faq-link:hover:before {
  opacity: 0;
}
.index-faq .container .faq-link:after {
  content: "";
  width: 22px;
  height: 1px;
  background: #111;
  position: absolute;
  left: -11px;
  top: 50%;
  transform: translateY(-50%);
  transition: 300ms;
}
.index-faq .container .faq-link:before {
  content: "";
  width: 22px;
  height: 1px;
  background: #111;
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  transition: 300ms;
}
.index-team {
  height: 610px;
  background: url(../images/iteambg.jpg) center center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}
.index-team .inner {
  position: absolute;
  max-width: 830px;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 15px;
}
.index-team .inner p:nth-of-type(1) {
  font: 14px r;
  color: #f4f4f4;
}
.index-team .inner p:nth-of-type(2) {
  font: 43px black;
  color: #f4f4f4;
  margin: 10px 0;
}
.index-team .inner p:nth-of-type(3) {
  font: 16px/24px r;
  color: #f4f4f4;
}
.index-contact {
  background: url(../images/icbg.jpg) center center no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.index-contact .container .left {
  width: 55%;
  padding-right: 100px;
  overflow: hidden;
}
.index-contact .container .left p:nth-of-type(1) {
  font: 14px l;
  color: #000;
}
.index-contact .container .left p:nth-of-type(2) {
  font: 45px black;
  color: #000;
  margin: 15px 0 10px;
}
.index-contact .container .left p:nth-of-type(3) {
  font: 16px/32px l;
  color: #000;
  margin-bottom: 20px;
}
.index-contact .container .left .img-list {
  font-size: 0;
  margin: -5px;
}
.index-contact .container .left .img-list .item {
  display: inline-block;
  width: 25%;
  vertical-align: top;
  padding: 5px;
}
.index-contact .container .left .img-list .item img {
  width: 100%;
}
.index-contact .container .right {
  width: 45%;
  margin-top: 115px;
}
.index-contact .container .right ul {
  font-size: 0;
  text-align: right;
}
.index-contact .container .right ul li {
  display: inline-block;
}
.index-contact .container .right ul li:nth-of-type(1) {
  width: 47%;
  margin: 0 6% 20px 0;
}
.index-contact .container .right ul li:nth-of-type(2) {
  width: 47%;
  margin: 0 0 20px 0;
}
.index-contact .container .right ul li:nth-of-type(3) {
  width: 100%;
  margin: 0 0 20px 0;
}
.index-contact .container .right ul li:nth-of-type(4) {
  width: 100%;
  margin: 0 0 25px 0;
}
.index-contact .container .right ul li:not(:last-of-type) input {
  width: 100%;
  height: 55px;
  background: #f2f2f2;
  border: none;
  outline: none;
  font: 14px/55px l;
  color: #cdced0;
  padding: 0 25px;
}
.index-contact .container .right ul li:not(:last-of-type) input::-webkit-input-placeholder,
.index-contact .container .right ul li:not(:last-of-type) input::-moz-placeholder{
    color:#000;
}
    
.index-contact .container .right ul li:not(:last-of-type) input::-moz-placeholder{
    opacity: 1;
}
.index-contact .container .right ul li:not(:last-of-type) textarea {
  width: 100%;
  height: 125px;
  background: #f2f2f2;
  border: none;
  outline: none;
  font: 14px/55px l;
  color: #cdced0;
  padding: 0 25px;
}
.index-contact .container .right ul li:not(:last-of-type) textarea::-webkit-input-placeholder,
.index-contact .container .right ul li:not(:last-of-type) textarea::-moz-placeholder{
    color:#000;
}
    
.index-contact .container .right ul li:not(:last-of-type) textarea::-moz-placeholder{
    opacity: 1;
}
.index-contact .container .right ul li:last-of-type input {
  padding-right: 40px;
  border: none;
  outline: none;
  font: 14px l;
  color: #000;
  text-transform: uppercase;
  background: url(../images/ic-jt.jpg) right center no-repeat;
}
#footer {
  background: url(../images/footbg.jpg) center center no-repeat;
  background-size: cover;
}
#footer .container .top {
  padding: 65px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}
#footer .container .top .item:nth-of-type(1) {
  width: 15%;
}
#footer .container .top .item:nth-of-type(2) {
  width: 15%;
}
#footer .container .top .item:nth-of-type(3) {
  width: 15%;
}
#footer .container .top .item:nth-of-type(4) {
  width: 15%;
}
#footer .container .top .item:nth-of-type(4) img{
  margin-top: 30px;
  width: 120px;
}
#footer .container .top .item:nth-of-type(5) {
  width: 34%;
}
#footer .container .top .item p:nth-of-type(1) {
  font: 12px l;
  color: #f7fcf7;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#footer .container .top .item p:nth-of-type(2) {
  font: 24px l;
  color: #f7fcf7;
  margin-bottom: 20px;
}
#footer .container .top .item ul li {
  font: 16px l;
  color: #f7fcf7;
  margin-bottom: 8px;
}
#footer .container .top .item ul li a:hover {
  color: #ea1d14;
}
#footer .container .top .item ul li:last-of-type {
  margin-bottom: 0;
}
#footer .container .bottom {
  padding: 20px 0 30px; color:#f7f7f7;
}
#footer .container .bottom img{
max-width:220px;
}
#footer .container .bottom p {
  font: 16px l;
  color: #f7fcf7;
  margin-top: 25px;
}
#footer .container .bottom p a:hover {
  color: #ea1d14;
}
.video-wrapper{
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.5);
  left: 0;
  top: 0;
  z-index: 9999;
  display: none;
}
.video-wrapper .video{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
	max-width:1000px;
	width: 100%;
}
.video-wrapper .close{
  font-size: 30px;
  color: #fff;
  position: absolute;
  right: 40px;
  top: 40px;
  cursor: pointer;
}
.inner-banner {
  height: 360px;
  background: url(../images/inner-banner.jpg) center center no-repeat;
  background-size: cover;
  margin-top: 0px;
  position: relative;
}
.inner-banner .inner{
  position: absolute;
  width: 100%;
  text-align: center;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
}
.inner-banner .inner .bread{
  color: #fff;
  font-size: 18px;
  margin-bottom:10px;
}
.inner-banner .inner .bread a,
.inner-banner .inner .bread span{
  font: 18px l;
}
.inner-banner h1{
  font: 35px black;
  color: #fff;
  margin-bottom:16px;
}
.inner-nav {
  padding: 25px 0;
  background: #f4f4f3;
  text-align: center;
  font-size: 0;
}
.inner-nav li {
  display: inline-block;
  font: 18px r;
  color: #252525;
  padding: 0 27px;
}
.inner-nav li a:hover {
  color: #ea1d14;
}
.inner-nav li.current-cat{
  color: #ea1d14;
}
.inner-about .inner-about-1 {
  padding: 80px 0 155px;
}
.inner-about .inner-about-1 .container .tit {
  margin-bottom: 40px;
}
.inner-about .inner-about-1 .container .tit p:nth-of-type(1) {
  font: 40px black;
  color: #252525;
}
.inner-about .inner-about-1 .container .tit p:nth-of-type(2) {
  font: 20px l;
  color: #252525;
}
.inner-about .inner-about-1 .container .content img {
  width: 100%;
  margin-bottom: 60px;
}
.inner-about .inner-about-1 .container .content p {
  font: 14px/25px r;
  color: #252525;
  margin-bottom: 18px;
}
.inner-about .inner-about-1 .container .content p:last-of-type {
  margin-bottom: 0;
}
.inner-about .inner-about-2 {
  height: 445px;
  background: url(../images/videobg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}
.inner-about .inner-about-2 .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  cursor: pointer;
}
.inner-about .inner-about-2 .play img {
  vertical-align: middle;
  margin-right: 13px;
}
.inner-about .inner-about-2 .play .info {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}
.inner-about .inner-about-2 .play .info p:nth-of-type(1) {
  font: 30px r;
  color: #fff;
  text-transform: uppercase;
}
.inner-about .inner-about-2 .play .info p:nth-of-type(2) {
  font: 13px black;
  color: #fff;
  text-transform: uppercase;
}
.inner-about .inner-about-3 {
  padding: 75px 0 185px;
}
.inner-about .inner-about-3 .container .tit {
  margin-bottom: 50px;
}
.inner-about .inner-about-3 .container .tit p:nth-of-type(1) {
  font: 40px black;
  color: #252525;
}
.inner-about .inner-about-3 .container .tit p:nth-of-type(2) {
  font: 20px l;
  color: #252525;
}
.inner-about .inner-about-3 .container #honour .swiper-slide img {
  width: 100%;
}
.inner-about .inner-about-4 {
  padding: 80px 0 120px;
  background: #ececec;
}
.inner-about .inner-about-4 .container .tit {
  margin-bottom: 65px;
}
.inner-about .inner-about-4 .container .tit p:nth-of-type(1) {
  font: 40px black;
  color: #252525;
}
.inner-about .inner-about-4 .container .tit p:nth-of-type(2) {
  font: 20px l;
  color: #252525;
}
.inner-about .inner-about-4 .container #history {
  background: url(../images/hisbg.png) center center no-repeat;
  background-size: 100%;
}
.inner-about .inner-about-4 .container #history .swiper-slide div {
  padding-left: 25px;
}
.inner-about .inner-about-4 .container #history .swiper-slide div:nth-of-type(1) {
  padding-right: 110px;
  margin-bottom: 75px;
}
.inner-about .inner-about-4 .container #history .swiper-slide div:nth-of-type(2) {
  padding-left: 110px;
}
.inner-about .inner-about-4 .container #history .swiper-slide div p:nth-of-type(1) {
  font: 40px black;
  color: #252525;
  position: relative;
}
.inner-about .inner-about-4 .container #history .swiper-slide div p:nth-of-type(1):after {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 2px;
  position: absolute;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
  background: #252525;
}
.inner-about .inner-about-4 .container #history .swiper-slide div p:nth-of-type(2) {
  font: 16px/20px l;
  color: #252525;
}
.inner-about .inner-about-5 {
  padding: 70px 0 45px;
  background: url(../images/ia5bg.jpg) center center no-repeat;
}
.inner-about .inner-about-5 .container .tit {
  margin-bottom: 90px;
}
.inner-about .inner-about-5 .container .tit p:nth-of-type(1) {
  font: 40px black;
  color: #252525;
}
.inner-about .inner-about-5 .container .tit p:nth-of-type(2) {
  font: 20px l;
  color: #252525;
}
.inner-about .inner-about-5 .container .content .img {
  max-width: 75%;
  margin: 0 auto 135px;
}
.inner-about .inner-about-5 .container .content .img img {
  width: 100%;
}
.inner-tech .tit {
  text-align: center;
}
.inner-tech .tit p:nth-of-type(1) {
  font: 45px black;
  color: #ea1d14;
}
.inner-tech .tit p:nth-of-type(2) {
  font: 14px l;
  color: #252525;
}
.inner-tech .inner-tech-1 {
  padding: 80px 15px;
}
.inner-tech .inner-tech-1 .tit {
  margin-bottom: 130px;
}
.inner-tech .inner-tech-1 .img {
  max-width: 1440px;
  margin: 0 auto;
}
.inner-tech .inner-tech-1 .img img {
  width: 100%;
}
.inner-tech .inner-tech-2 {
  padding: 80px 0;
}
.inner-tech .inner-tech-2 .container {
  max-width: 1810px;
}
.inner-tech .inner-tech-2 .container .tit {
  margin-bottom: 40px;
}
.inner-tech .inner-tech-2 .container #technical1 .img-box,
.inner-tech .inner-tech-2 .container #technical2 .img-box {
  margin-bottom: 20px;
}
.inner-tech .inner-tech-2 .container #technical1 .img-box img,
.inner-tech .inner-tech-2 .container #technical2 .img-box img {
  width: 100%;
}
.inner-tech .inner-tech-2 .container #technical1 p,
.inner-tech .inner-tech-2 .container #technical2 p {
  font: 20px l;
  color: #252525;
  text-align: center;
}
.inner-tech .inner-tech-3 {
  padding: 40px 0;
}
.inner-tech .inner-tech-3 .container .tit {
  margin-bottom: 75px;
}
.inner-tech .inner-tech-3 .container #technical3 {
  margin-bottom: 135px;
}
.inner-tech .inner-tech-3 .container #technical3 img {
  width: 100%;
}
.inner-tech .inner-tech-3 .container .bar {
  height: 80px;
  background: #2e2e2e;
}
.inner-tech .inner-tech-3 .container .bar .cont-info {
  font-size: 0;
  padding-left: 35px;
}
.inner-tech .inner-tech-3 .container .bar .cont-info p {
  display: inline-block;
  font: 20px/80px l;
  color: #f7fcf7;
  padding-left: 70px;
}
.inner-tech .inner-tech-3 .container .bar .cont-info p:nth-of-type(1) {
  margin-right: 70px;
  background: url(../images/itemail.png) left center no-repeat;
}
.inner-tech .inner-tech-3 .container .bar .cont-info p:nth-of-type(2) {
  background: url(../images/ittel.png) left center no-repeat;
}
.inner-tech .inner-tech-3 .container .bar a {
  display: block;
  width: 280px;
  height: 80px;
  background: #ea1d14;
  text-align: center;
  font: 26px/80px l;
  color: #f7fcf7;
}
.sideBar {
  width: 21%;
}
.sideBar .sideBar-top {
  margin-bottom: 30px;
}
.sideBar .sideBar-top .tit {
  margin-bottom: 6px; background-color:#ea1d14;
}
.sideBar .sideBar-top .tit p:nth-of-type(1) {
  font: 25px black;
  color: #fff;
  padding:10px 16px;
}
.sideBar .sideBar-top .tit p:nth-of-type(2) {
  font: 15px l;
  color: #252525;
}
.sideBar .sideBar-top .nav li {
  margin-bottom: 2px;
}
.sideBar .sideBar-top .nav li:last-of-type {
  margin-bottom: 0;
}
.sideBar .sideBar-top .nav li a {
  display: block;
  font: 14px/40px l;
  color: #000;
  background: #e9e9e9;
  padding-left: 15px;
  transition: 300ms;
}
.sideBar .sideBar-top .nav li a:hover {
  background: #ea1d14;
  color: #fff;
}
.sideBar .sideBar-top .nav li.current-cat a{
  background: #ea1d14;
  color: #fff;
}
.sideBar .sideBar-bottom .tit {
  margin-bottom: 6px; background-color:#ea1d14;
  padding:10px 16px;
}
.sideBar .sideBar-bottom .tit p:nth-of-type(1) {
  font: 25px black;
  color: #fff;
}
.sideBar .sideBar-bottom .tit p:nth-of-type(2) {
  font: 15px l;
  color: #fff;
}
.sideBar .sideBar-bottom .cont-info {
  padding: 20px 15px;
  background: #f6f6f6;
  font: 15px/26px l;
  color: #252525;
}
.sideBar .sideBar-bottom .cont-info p{
margin-bottom:8px;
}
.sideBar .sideBar-bottom .cont-info span {
  font-weight: bold;
}
.inner-product {
  padding: 55px 0 60px;
}
.inner-product .container .pro-list1 {
  width: 100%;
  overflow: hidden;
}
.inner-product .container .pro-list1 .grid-box {
  margin: -13px;
}
.inner-product .container .pro-list1 .grid-box .column {
  padding: 13px;
}
.inner-product .container .pro-list1 .grid-box .column .img-box {
  margin-bottom: 20px;
}
.inner-product .container .pro-list1 .grid-box .column .img-box img {
  width: 100%;
}
.inner-product .container .pro-list1 .grid-box .column p {
  text-align: center; font-size:16px;
}
.inner-product .container .pro-list {
  width: 77%;
  overflow: hidden;
}
.inner-product .container .pro-list .grid-box {
  margin: -13px;
}
.inner-product .container .pro-list .grid-box .column {
  padding: 13px;
}
.inner-product .container .pro-list .grid-box .column .img-box {
  margin-bottom: 20px;
}
.inner-product .container .pro-list .grid-box .column .img-box img {
  width: 100%;
}
.inner-product .container .pro-list .grid-box .column p {
  text-align: center;
}
.inner-product .container .pro-list .grid-box .column p:nth-of-type(1) {
  font: 16px r;
  color: #000;
}
.inner-product .container .pro-list .grid-box .column p:nth-of-type(1) a:hover {
  color: #ea1d14;
}
.inner-product .container .pro-list .grid-box .column p:nth-of-type(2) {
  font: 12px l;
  color: #000;
}
.inner-product .container .prodet-content {
  width: 71%;
  margin-top: 75px;
}
.inner-product .container .prodet-content .inner-prodet-1 {
  margin-bottom: 50px;
}
.inner-product .container .prodet-content .inner-prodet-1 .pro-info {
  width: 50%;
  padding-right: 40px;
}
.inner-product .container .prodet-content .inner-prodet-1 .pro-info .pro-name {
  font: 28px black;
  color: #000;
  margin-bottom: 40px;
}
.image-gallery{
  margin-top: 20px;
}
.image-gallery li{
  width: 25%;
}
.inner-product .container .prodet-content .inner-prodet-1 .pro-info div p:nth-of-type(2n-1){
  font: 16px l;
  color: #000;
  margin-bottom: 15px;
}
.inner-product .container .prodet-content .inner-prodet-1 .pro-info div p:nth-of-type(2n){
  font: 14px/25px l;
  color: #000;
  margin-bottom: 15px;
}
.inner-product .container .prodet-content .inner-prodet-1 .pro-img {
  width: 50%;
}
.inner-product .container .prodet-content .inner-prodet-1 .pro-img img {
  width: 100%;
}
.inner-product .container .prodet-content .inner-prodet-details .tit {
  background: #ebebeb;
  height: 40px;
}
.inner-product .container .prodet-content .inner-prodet-details .tit p {
  display: inline-block;
  font: 14px/40px l;
  color: #fff;
  background: #ea1d14;
  padding: 0 40px;
}
.inner-product .container .prodet-content .inner-prodet-details .content{
  padding: 40px 0;
}
.inner-product .container .prodet-content .inner-prodet-2 .nav {
  font-size: 0;
  background: #ebebeb;
}
.inner-product .container .prodet-content .inner-prodet-2 .nav li {
  display: inline-block;
  padding: 12px 25px;
  font: 14px l;
  color: #000;
  cursor: pointer;
  transition: 300ms;
}
.inner-product .container .prodet-content .inner-prodet-2 .nav li:hover,
.inner-product .container .prodet-content .inner-prodet-2 .nav li.active {
  background: #ea1d14;
  color: #fff;
}
.inner-product .container .prodet-content .inner-prodet-2 .content {
  padding: 40px 0;
  display: none;
}
.inner-product .container .prodet-content .inner-prodet-2 .content table td{
border: 1px solid #eee;
    line-height: 1.5em;
    padding-left: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-top: 20px;
        padding-right: 12px;
}
.inner-product .container .prodet-content .inner-prodet-2 .content table tr:nth-child(1){
    background-color: #656565;
    color: #fff;
}
.inner-product .container .prodet-content .inner-prodet-details .content table{
    width: 100%;

}


.inner-product .container .prodet-content .inner-prodet-details .content table td{
border: 1px solid #eee;
    line-height: 1.5em;
    padding-left: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-top: 20px;
        padding-right: 12px;
}
.inner-product .container .prodet-content .inner-prodet-details .content table tr:nth-child(1){
    background-color: #656565;
    color: #fff;
}
.inner-product .container .prodet-content .inner-prodet-details .content table tr:nth-child(2){
    background-color: #656565;
    color: #fff;
}


.inner-product .container .prodet-content .inner-prodet-2 .content table{
    width: 100%;
        margin-top: 30px;
    margin-bottom: 30px;
}


.inner-product .container .prodet-content .inner-prodet-2 .content.active {
  display: block;
  	font: 14px/35px l;
    color: #000;
    margin-bottom: 20px;
}
.inner-product .container .prodet-content .inner-prodet-3 .tit {
  background: #ebebeb;
  height: 40px;
}
.inner-product .container .prodet-content .inner-prodet-3 .tit p {
  display: inline-block;
  font: 14px/40px l;
  color: #fff;
  background: #ea1d14;
  padding: 0 40px;
}
.inner-product .container .prodet-content .inner-prodet-3 .content {
  padding: 40px 0 55px;
  overflow: hidden;
}
.inner-product .container .prodet-content .inner-prodet-3 .content p {
  font: 16px/35px l;
  color: #000;
  margin-bottom: 20px;
}
.inner-product .container .prodet-content .inner-prodet-3 .content .img-list {
  margin: -5px;
}
.inner-product .container .prodet-content .inner-prodet-3 .content .img-list .column {
  padding: 5px;
}
.inner-product .container .prodet-content .inner-prodet-3 .content .img-list .column img {
  width: 100%;
}
.inner-product .container .prodet-content .inner-prodet-4 .tit {
  background: #ebebeb;
  height: 40px;
}
.inner-product .container .prodet-content .inner-prodet-4 .tit p {
  display: inline-block;
  font: 14px/40px l;
  color: #fff;
  background: #ea1d14;
  padding: 0 40px;
}
.inner-product .container .prodet-content .inner-prodet-4 .content {
  padding: 40px 0 55px;
}
.inner-product .container .prodet-content .inner-prodet-4 .content p {
  font: 16px/35px l;
  color: #000;
  margin-bottom: 45px;
}
.inner-product .container .prodet-content .inner-prodet-4 .content img {
  width: 100%;
}
.inner-product .container .prodet-content .inner-prodet-5 .tit {
  background: #ebebeb;
  height: 40px;
}
.inner-product .container .prodet-content .inner-prodet-5 .tit p {
  display: inline-block;
  font: 14px/40px l;
  color: #fff;
  background: #ea1d14;
  padding: 0 40px;
}
.inner-product .container .prodet-content .inner-prodet-5 .form {
  padding: 30px 0 0;
  font-size: 0;
  text-align: left;
}
.inner-product .container .prodet-content .inner-prodet-5 .form li {
  display: inline-block;
}
.inner-product .container .prodet-content .inner-prodet-5 .form li:nth-of-type(1) {
  width: 48%;
  margin: 0 2% 10px 0;
}
.inner-product .container .prodet-content .inner-prodet-5 .form li:nth-of-type(2) {
  width: 48%;
  margin: 0 2% 10px 0;
}
.inner-product .container .prodet-content .inner-prodet-5 .form li:nth-of-type(3) {
  width: 48%;
  margin: 0 2% 10px 0;
}
.inner-product .container .prodet-content .inner-prodet-5 .form li:nth-of-type(4) {
  width: 48%;
  margin: 0 0 10px 0;
}
.inner-product .container .prodet-content .inner-prodet-5 .form li:nth-of-type(5) {
  width: 100%;
  margin: 0 0 10px 0;
}
.inner-product .container .prodet-content .inner-prodet-5 .form li:not(:last-of-type) input {
  width: 100%;
  height: 35px;
  border: none;
  outline: none;
  background: #ebebeb;
  font: 14px/35px l;
  color: #343434;
  padding: 0 15px;
}
.inner-product .container .prodet-content .inner-prodet-5 .form li:not(:last-of-type) textarea {
  width: 100%;
  height: 145px;
  border: none;
  outline: none;
  background: #ebebeb;
  font: 14px/35px l;
  color: #343434;
  padding: 0 15px;
}
.inner-product .container .prodet-content .inner-prodet-5 .form li:last-of-type input {
  width: 156px;
  height: 38px;
  background: #ea1d14;
  border: none;
  outline: none;
  font: 14px l;
  color: #fff;
}
@media (max-width: 1200px) {
  #header .nav .container .logo {
    margin-left: 0;
  }
}
@media (max-width: 992px) {
  #header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
  }
  #header .nav {
    padding: 8px 0;
    background: #000;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
  }
  #header .nav .container .menu-box {
    display: none;
  }
  #header .nav .container .search-btn {
    display: none;
  }
  #header .nav .container .h-lan {
    display: none;
  }
  #header .nav .container .logo {
    width: 100%;
    text-align: center;
  }
  #header .nav .container .logo img {
    width: 100px;
  }
  #header .nav .container .toggle-btn {
    display: block;
  }
  #header .toggle-nav {
    display: block;
  }
  .index-banner {
    margin-top: 53px;
  }
  .index-banner .swiper-slide {
    height: 500px;
  }
  .index-banner .swiper-slide .container p:nth-of-type(2) {
    font-size: 30px;
  }
  .index-about .index-about-top {
    padding: 60px 0;
  }
  .index-about .index-about-bottom {
    padding: 60px 0;
  }
  .index-about .index-about-bottom .container .left p:nth-of-type(1) {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
  .index-about .index-about-bottom .container .left p:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .index-why {
    padding: 60px 0;
  }
  .index-why .container .list {
    margin: -15px;
  }
  .index-why .container .list .item {
    width: 50%;
    padding: 15px; 
  }
  .index-why .container .tit {
    font-size: 30px;
  }
  .index-product {
    padding: 60px 0;
  }
  .index-product .container .tit p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-product .container .tit {
    margin-bottom: 60px;
  }
  .index-product .container .nav {
    display: none;
  }
  .index-product .container .ip-link {
    margin-top: 60px;
  }
  .index-apl {
    padding: 60px 15px;
  }
  .index-apl .tit p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-apl .tit {
    margin-bottom: 60px;
  }
  .index-faq {
    padding: 60px 0;
  }
  .index-faq .container .tit {
    margin-bottom: 60px;
  }
  .index-faq .container .tit p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-contact {
    padding: 60px 0;
  }
  .index-contact .container .left p:nth-of-type(2) {
    font-size: 30px;
  }
  .inner-banner {
    margin-top: 53px;
    height: 300px;
  }
  .inner-about > div[class^=inner-about-] {
    padding: 60px 0 !important;
  }
  .inner-about > div[class^=inner-about-] .tit p:nth-of-type(1) {
    font-size: 30px !important;
  }
  .inner-tech > div[class^=inner-tech-] {
    padding: 60px 0 !important;
  }
  .inner-tech .tit {
    margin-bottom: 40px !important;
  }
  .inner-tech .tit p:nth-of-type(1) {
    font-size: 30px;
  }
  .inner-tech .inner-tech-3 .container .bar {
    padding-left: 0;
    height: auto;
  }
  .inner-tech .inner-tech-3 .container .bar .cont-info {
    float: none;
    text-align: center;
  }
  .inner-tech .inner-tech-3 .container .bar a {
    float: none;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .index-contact .container .left {
    width: 100%;
    float: none;
    padding: 0;
  }
  .index-contact .container .right {
    width: 100%;
    float: none;
    margin-top: 60px;
  }
  .index-why .container .list .item:nth-of-type(4) {
  vertical-align: top;
  width:100%; margin:20px auto;
  padding: 0 14px 0px 14px; border:0px solid #f60;
}
  #footer .container .top {
    padding: 60px 0;
  }
  #footer .container .top .item {
    margin-bottom: 60px; 
  }
  #footer .container .top .item:nth-of-type(1) {
    width: 50%;
  }
  #footer .container .top .item:nth-of-type(2) {
    width: 50%;
  }
  #footer .container .top .item:nth-of-type(3) {
    width: 50%;
  }
  #footer .container .top .item:nth-of-type(4) {
    width: 50%;
    margin-bottom: 0;
  }
  #footer .container .top .item:nth-of-type(5) {
  width: 100%;
}
  #footer .container .top .item p:nth-of-type(1) {
    margin-bottom: 5px;
  }
  #footer .container .top .item p:nth-of-type(2) {
    margin-bottom: 15px;
  }
  #footer .container .bottom .logo {
    text-align: center;
    float: none;
  }
  #footer .container .bottom p {
    text-align: center;
    float: none;
  }
  .inner-nav {
    display: none;
  }
  .sideBar {
    display: none;
  }
  .inner-product .container .pro-list {
    width: 100%;
  }
  .inner-product .container .prodet-content {
    width: 100%;
    float: none;
    margin-top: 0;
  }
  .inner-product .container .prodet-content .inner-prodet-1 .pro-img {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .inner-product .container .prodet-content .inner-prodet-1 .pro-info {
    width: 100%;
    float: none;
  }
}
@media (max-width: 576px) {
#header{
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}
  .index-banner{
  border:0px solid #F60; width:100%; margin-top:108px;
  }
  .index-banner .swiper-slide {
    height: 300px;
  }
  .index-banner .swiper-slide .container {
    padding-left: 15px;
  }
  .index-banner .swiper-slide .container p:nth-of-type(2) {
    font-size: 18px;
    font-family: l;
  }
  .index-banner .swiper-slide .container a {
    width: 120px;
    height: 40px;
    line-height: 38px;
    font-size: 14px;
  }
  .index-about .index-about-top .container .list .item {
    width: 100%;
    margin-bottom: 40px;
  }
  .index-about .index-about-top .container .list .item:last-of-type {
    margin-bottom: 0;
  }
  .index-about .index-about-top .container .list .item .inner {
    min-height: 70px;
  }
  .index-about .index-about-bottom .container .right {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .index-about .index-about-bottom .container .left {
    width: 100%;
    float: none;
    padding: 0;
  }
  .index-about .index-about-bottom .container .left p:nth-of-type(1) {
    font-size: 20px;
    line-height: 30px;
  }
  .index-why .container .list .item {
    width: 100%;
  }
  .index-why .container .tit {
    font-size: 25px;
  }
  .index-why .container .list .item p:nth-of-type(1) {
    font-size: 20px;
  }
  .index-product .container .tit p:nth-of-type(1) {
    font-size: 25px;
  }
  .index-apl .tit p:nth-of-type(1) {
    font-size: 25px;
  }
  .index-apl #iapl .swiper-slide p:nth-of-type(2) {
    font-size: 18px;
  }
  .index-faq .container .tit p:nth-of-type(1) {
    font-size: 25px;
  }
  .index-team {
    height: 400px;
  }
  .index-team .inner p:nth-of-type(2) {
    font-size: 25px;
  }
  .index-contact .container .left p:nth-of-type(2) {
    font-size: 25px;
  }
  #footer .container .bottom p {
    font-size: 14px;
  }
  #footer .container .top .item ul li {
    font-size: 14px;
  }
  .inner-banner {
    height: 200px;
  }
  .inner-banner h1 {
    font-size: 25px;
  }
  .inner-about > div[class^=inner-about-] .tit p:nth-of-type(1) {
    font-size: 25px !important;
  }
  .inner-about > div[class^=inner-about-] .tit p:nth-of-type(2) {
    font-size: 14px !important;
  }
  .inner-about .inner-about-1 .container .content img {
    margin-bottom: 40px;
  }
  .inner-about .inner-about-4 .container #history .swiper-slide div p:nth-of-type(1) {
    font-size: 25px;
  }
  .inner-tech .tit p:nth-of-type(1) {
    font-size: 25px;
  }
  .inner-tech .inner-tech-3 .container .bar {
    padding: 15px;
  }
  .inner-tech .inner-tech-3 .container .bar .cont-info {
    padding: 0;
    margin-bottom: 15px;
  }
  .inner-tech .inner-tech-3 .container .bar .cont-info p {
    font-size: 14px;
    line-height: 40px;
    display: block;
    text-align: center;
    margin: 0 !important;
    padding: 0;
    background: none !important;
  }
  .inner-tech .inner-tech-3 .container .bar a {
    width: 120px;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
  }
  .inner-tech .inner-tech-3 .container #technical3 {
    margin-bottom: 40px;
  }
  .inner-product {
    padding-bottom: 80px;
  }
  .inner-product .container .prodet-content .inner-prodet-1 .pro-info .pro-name {
    font-size: 20px;
  }
  .inner-product .container .prodet-content .inner-prodet-5 .form li:nth-of-type(1) {
    width: 100%;
    margin-right: 0;
  }
  .inner-product .container .prodet-content .inner-prodet-5 .form li:nth-of-type(2) {
    width: 100%;
    margin-right: 0;
  }
  .inner-product .container .prodet-content .inner-prodet-5 .form li:nth-of-type(3) {
    width: 100%;
  }
}

.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*/
}
.news-page{
    padding: 55px 0 60px;
}
.news-page .new-list {
  width: 77%;
}
.news-page .new-list li {
  padding-bottom: 52px;
  margin-bottom: 65px; font-family:roboto;
  border-bottom: 1px solid #ddd;
}
.news-page .new-list li:last-child {
  margin-bottom: 0;
}
.news-page .new-list li .new-con .tit a {
  max-height: 58px;
  overflow: hidden;
  display: block;
  color: #777777;
  font-size: 1.4rem;
  line-height: 26px;
}
.news-page .new-list li .new-con .tit a:hover {
  color: #e0140b;
}
.news-page .new-list li .new-con .abst {
  color: #777777;
  font-size: 1.2rem;
  line-height: 27px;
  margin: 35px 0 45px;
}
.news-page .new-list li .new-con .abst a {
  color: #1170d5;
}
.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;
}
.news-page .new-list li .new-pic.five {
  width: 30%;
}
.news-page .new-list li .new-con.eleven {
  width: 70%;
  padding-left: 5%;
}
.newdet-page{
  padding: 55px 0 50px; font-family:roboto;
}
.newdet-page .news {
  width: 100%;
  color: #777777;
}
.newdet-page .news .news_title h1 {
  padding-bottom: 10px;
  font-size: 20px;
  text-align: center;
  color: #222;
}
.newdet-page .news .news_date {
  text-align: center;
  line-height: 22px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
}
.newdet-page .news .news_abst {
  border-bottom: 1px solid #ddd;
  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 #ddd;
  padding: 20px 0 40px;
}
.newdet-page .news .news_contents a {
  color: #555;
  font-size: 16px;
  line-height: 24px;
}
.newdet-page .news .news_contents p, .newdet-page .news .news_contents div, .newdet-page .news .news_contents span, .newdet-page .news .news_contents table {
  color: #555;
  font-size: 14px;
  line-height: 24px;
  clear: both;
  margin-bottom:16px;
}
.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 .cn-form {
  width: 48%;
  padding: 25px 35px 15px;
  border: 1px solid #dddddd;
  background: #fff;
}
.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 .m-form-r .pcsb{
  display: none;
}
.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;
}
.contact-page .c-info {
  padding: 98px 0 110px;
  background: #fafafc;
}
.contact-page .c-info .c-info-box {
  width: 50%;
}
.contact-page .c-info .c-info-box>p{
  font: 16px/32px l;
  color: #000;
  line-height:36px;
}
.contact-page .c-info .c-tit h3 {
  color: #2d2d2d;
  font-size: 2.714rem;
}
.contact-page .c-info .c-tit p {
  font: 20px b;
  color: #000;
}
.contact-page .c-info .clist {
  margin-top: 42px;
  color: #2d2d2d;
  line-height: 36px;
  font-size: 1.4285rem;
  position: relative;
}
.contact-page .c-info .clist i {
  display: block;
  margin-bottom: 26px;
}
.contact-page .c-info .clist .qr-code {
  position: absolute;
  right: 1rem;
  bottom: 0;
  width: 145px;
  padding: 5px;
  background: #e9e9e9;
}
.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: #f4f4f3;
  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;
}
.product-page {
  padding: 60px 0;
}
.product-page h3{
font-size:30px;
}
.product-page .pro-list {
  overflow: hidden;
}
.product-page .pro-list .grid-box{
  margin: -10px;
}
.product-page .pro-list .grid-box .column{
  padding: 10px;
}
.product-page .pro-list .grid-box .column .img-box img{
  width: 100%;
}
.product-page .pro-list .grid-box .column .tit{
  font: 18px/40px l;
  color: #000;
  text-align: center;
}

@media screen and (max-width: 1200px){
  .contact-page .c-info .c-info-box,
  .contact-page .cn-form{
    width: 100%;
  }
}

@media screen and (max-width: 1000px){
  .news-page .new-list li .new-con.eleven {
    width: 100%;
    padding-left: 0;
  }
  .news-page .new-list li .new-pic.five {
    display: none;
  }
  .contact-page .cn-form {
    margin-top: 40px;
  }
  

}

@media screen and (max-width: 768px){
  .news-page{
    padding: 60px 0;
  }
  .news-page .new-list{
    width: 100%;
    float: none;
  }
  .newdet-page{
    padding: 60px 0;
  }
  .newdet-page .news{
    width: 100%;
    float: none;
  }
}

@media screen and (max-width: 700px){
  .news-page .new-list li .new-con .tit a {
    font-size: 1.5rem;
  }
  .news-page .new-list li .new-con .abst {
    font-size: 1rem;
    line-height: 24px;
    margin: 15px 0;
  }
  .news-page .new-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  #mapContainer {
    height: 250px !important;
  }
  .button-group .button:nth-child(2) {
    display: none;
  }
  .contact-page .c-info .c-tit h3 {
    font-size: 2rem;
  }
  .cn-form .m-form-l {
    width: 100%;
  }
  .cn-form .m-form-r {
    width: 100%;
  }
  .cn-form .m-form-r li.pcsb {
    display: block;
  }
  .cn-form .m-form-l li.pcsb {
    display: none;
  }
  .cn-form .m-form-r textarea {
    height: 120px;
  }
  .contact-page .cn-form {
    padding: 10px;
  }


}
