/* 字体引入 */
@font-face {
  font-family: 'r';
  src: url('../fonts/Roboto-Regular.woff.ttf');
}
@font-face {
  font-family: 'b';
  src: url('../fonts/Roboto-Regular.woff.ttf');
}
@font-face {
  font-family: 'teko';
  src: url('../fonts/Teko-Regular.otf');
}
/* 网站基本宽度（注意修改） */
.container {
  box-sizing: content-box;
  padding: 0 15px;
  transition: 300ms ease;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@keyframes map {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: scale(6);
  }
}
/* 手机端头部 */
#m-header-wrapper {
  display: none;
}
#m-header-wrapper .overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
}
#m-header-wrapper .m-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 100%;
  height: 45px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  transition: 300ms;
}
#m-header-wrapper .m-header.active {
  left: 200px;
}
#m-header-wrapper .m-header .container {
  height: 100%;
  position: relative;
}
#m-header-wrapper .m-header .container .toggle-btn {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
#m-header-wrapper .m-header .container .toggle-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #333;
  margin-bottom: 5px;
  transition: 300ms;
}
#m-header-wrapper .m-header .container .toggle-btn span:last-of-type {
  margin-bottom: 0;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: left center;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(2) {
  opacity: 0;
}
#m-header-wrapper .m-header .container .toggle-btn.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: left center;
}
#m-header-wrapper .m-header .container .logo {
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#m-header-wrapper .m-header .container .logo img {
  width: 90px;
}
#m-header-wrapper .m-toggle-nav {
  position: fixed;
  width: 200px;
  height: 100%;
  left: -200px;
  top: 0;
  overflow-y: auto;
  background: #333;
  z-index: 9999;
  transition: 300ms;
  padding: 15px 0;
}
#m-header-wrapper .m-toggle-nav.active {
  left: 0;
}
#m-header-wrapper .m-toggle-nav h1 {
  font: 14px sans-serif;
  color: #fff;
  text-transform: uppercase;
  padding: 0 15px 20px;
}
#m-header-wrapper .m-toggle-nav h1 .icon {
  font-size: 14px;
  color: #fff;
  margin-right: 10px;
}
#m-header-wrapper .m-toggle-nav .menu-box {
  padding-bottom: 25px;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a {
  display: block;
  font: 12px/40px sans-serif;
  color: #fff;
  padding-left: 15px;
  text-transform: uppercase;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #fff;
  display: none;
  transition: 300ms;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li > a i.active {
  transform: translateY(-50%) rotate(180deg);
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li .sub-menu {
  background: #000;
  padding: 5px 0;
  display: none;
}
#m-header-wrapper .m-toggle-nav .menu-box .menu > li .sub-menu li a {
  display: block;
  font: 12px/40px sans-serif;
  padding-left: 15px;
  color: #fff;
  text-transform: uppercase;
}
#m-header-wrapper .m-toggle-nav .search-box {
  padding: 15px 15px 35px;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .search-box input[type="text"] {
  width: 100%;
  height: 30px;
  border: none;
  outline: none;
  padding: 0 40px 0 10px;
  font: 12px sans-serif;
  color: #333;
}
#m-header-wrapper .m-toggle-nav .search-box button {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 15px;
  top: 15px;
  border: none;
  outline: none;
  text-align: center;
  background: #000;
}
#m-header-wrapper .m-toggle-nav .search-box button i {
  font-size: 12px;
  line-height: 30px;
  color: #fff;
}
#m-header-wrapper .m-toggle-nav .lan h1 {
  padding-bottom: 10px;
  position: relative;
}
#m-header-wrapper .m-toggle-nav .lan h1 i.fa-angle-down {
  position: absolute;
  right: 15px;
  top: 1px;
  font-size: 16px;
  color: #fff;
  transition: 300ms;
}
#m-header-wrapper .m-toggle-nav .lan h1 i.fa-angle-down.active {
  transform: rotate(180deg);
}
#m-header-wrapper .m-toggle-nav .lan ul {
  background: #000;
  display: none;
}
#m-header-wrapper .m-toggle-nav .lan ul li a {
  display: block;
  font: 12px/30px sans-serif;
  color: #fff;
  padding-left: 15px;
}
#header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  padding-top: 25px;
  transition: background 300ms;
}
#header.inner-header {
  position: static;
  background: #fff;
  padding: 15px 0;
}
#header.inner-header .container .h-lan {
  margin-top: 10px;
}
#header.inner-header .container .h-lan > a {
  color: #000;
}
#header.inner-header .container .search-btn {
  margin-top: 16px;
  background: url(../images/inner-search.png) no-repeat;
}
#header.inner-header .container .menu-box {
  margin-top: 10px;
}
#header.inner-header .container .menu-box .menu > li > a {
  color: #000;
}
#header.active {
  position: fixed;
}
#header.active ~ .inner-banner {
  margin-top: 141px;
}
#header .container {
  max-width: 1760px;
}
#header .container .h-lan {
  position: relative;
}
#header .container .h-lan > a {
  font: 14px/30px r;
  color: #000;
}
#header .container .h-lan .children {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 9999;
  width: 100px;
  background: #000;
  padding: 5px 0;
  display: none;
  border-radius: 5px;
}
#header .container .h-lan .children li a {
  display: block;
  font: 14px/30px r;
  color: #fff;
  padding-left: 15px;
}
#header .container .h-lan .children li a:hover {
  text-decoration: underline;
}
#header .container .search-btn {
  width: 18px;
  height: 18px;
  background: url(../images/search.png) no-repeat;
  margin: 6px 15px 0 100px;
  cursor: pointer;
}
#header .container .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .container .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .container .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .container .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 24px;
  font-family: r;
  color: #000;
  padding: 10px 0;
}
#header .container .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .container .search-box form input[type="submit"]:hover {
  opacity: 0.7;
}
#header .container .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#header .container .menu-box .menu {
  font-size: 0;
}
#header .container .menu-box .menu > li {
  display: inline-block;
  vertical-align: top;
  margin-right: 70px;
  position: relative;
}
#header .container .menu-box .menu > li:last-of-type {
  margin-right: 0;
}
#header .container .menu-box .menu > li > a {
  font: 25px teko;
  color: #000000;
  text-transform: uppercase;
}
#header .container .menu-box .menu > li .sub-menu {
  position: absolute;
  width: 200px;
  left: -70%;
  top: 100%;
  z-index: 9999;
  background: #fff;
  display: none;
}
#header .container .menu-box .menu > li .sub-menu li{
  border-bottom: 1px solid #e6e6e6;
	position:relative;
}
#header .container .menu-box .menu > li .sub-menu ul {
	left:100%;
	top:0;
	display:none !important;
}
#header .container .menu-box .menu > li .sub-menu li:hover ul {
	display:block !important;
}
#header .container .menu-box .menu > li .sub-menu li:last-of-type{
  border-bottom: none;
}
#header .container .menu-box .menu > li .sub-menu li a {
  display: block;
  font: 16px/50px impact;
  color: #333;
  text-transform: capitalize;
  transition: 300ms;
  text-align: center;
}
#header .container .menu-box .menu > li .sub-menu li a:hover{
  color: #0061ae;
}
#index-banner #banner .swiper-slide img {
  width: 100%;
}
#index-banner #banner #banner-l,
#index-banner #banner #banner-r {
  width: 60px;
  height: 80px;
  background: rgba(0, 0, 0, 0.65);
  text-align: center;
}
#index-banner #banner #banner-l i,
#index-banner #banner #banner-r i {
  line-height: 80px;
  font-size: 20px;
  color: #fff;
}
#index-banner #banner #banner-l {
  left: 0;
}
#index-banner #banner #banner-r {
  right: 0;
}
#index-body .i-product {
  padding: 80px 0 100px;
  background: #fff;
}
#index-body .i-product .i-pro-top .container .i-pro-tit {
  width: 400px;
  padding: 20px 30px;
  background: #d02127;
}
#index-body .i-product .i-pro-top .container .i-pro-tit p:nth-of-type(1) {
  font: italic 38px/41px impact;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 6px;
  margin-top:30px;
  margin-bottom: 45px;
  border-bottom: 2px solid #fff;
}
#index-body .i-product .i-pro-top .container .i-pro-tit p:nth-of-type(1) img {
  vertical-align: middle;
  margin: 0 10px;
}
#index-body .i-product .i-pro-top .container .i-pro-tit p:nth-of-type(2) {
  font: 14px/22px Calibri;
  color: #fff;
}
#index-body .i-product .i-pro-top .container .i-pro-nav {
  padding-top: 6%;
}
#index-body .i-product .i-pro-top .container .i-pro-nav a {
  font: 18px b;
  color: #000;
  text-transform: uppercase;
  position: relative;
}
#index-body .i-product .i-pro-top .container .i-pro-nav a:hover:after {
  width: 100%;
}
#index-body .i-product .i-pro-top .container .i-pro-nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  background: #e70016;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -10px;
  transition: 300ms;
}
#index-body .i-product .i-pro-top .container .i-pro-nav span {
  margin: 0 20px;
  font-size: 18px;
  font-weight: bold;
}
#index-body .i-product .i-pro-top .container .i-pro-nav span:last-of-type {
  display: none;
}
#index-body .i-product .i-pro-bottom {
  padding: 0 12%;
  position: relative;
}
#index-body .i-product .i-pro-bottom #ip .swiper-slide {
  opacity: 0.5;
  transition: 300ms;
}
#index-body .i-product .i-pro-bottom #ip .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#index-body .i-product .i-pro-bottom #ip .swiper-slide.swiper-slide-next {
  opacity: 1;
}
#index-body .i-product .i-pro-bottom #ip .swiper-slide img {
  width: 100%;
	max-width:400px;
	display:block;
	margin:0 auto;
}
#index-body .i-product .i-pro-bottom #ip .swiper-slide p {
  font: 18px b;
  color: #000;
  text-transform: uppercase;
  text-align: center;
	margin-top:20px;
}
#index-body .i-product .i-pro-bottom #ip-l,
#index-body .i-product .i-pro-bottom #ip-r {
  width: 60px;
  height: 80px;
  background: #000;
  text-align: center;
}
#index-body .i-product .i-pro-bottom #ip-l i,
#index-body .i-product .i-pro-bottom #ip-r i {
  line-height: 80px;
  font-size: 20px;
  color: #fff;
}
#index-body .i-product .i-pro-bottom #ip-l {
  left: 0;
}
#index-body .i-product .i-pro-bottom #ip-r {
  right: 0;
}
#index-body .i-about {
  padding: 70px 0;
  background: url(../images/iabg.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-about .container .i-about-left {
  width: 55%;
}
#index-body .i-about .container .i-about-left p:nth-of-type(1) {
  font: italic 72px impact;
  color: #000;
  text-transform: uppercase;
}
#index-body .i-about .container .i-about-left p:nth-of-type(1) img {
  margin-left: 60px;
  vertical-align: middle;
}
#index-body .i-about .container .i-about-left p:nth-of-type(2) {
  font: italic 42px impact;
  color: #ffffff;
  text-transform: uppercase;
  margin: 5px 0 15px;
}
#index-body .i-about .container .i-about-left p:nth-of-type(3) {
  font: 18px/27px Calibri;
  color: #fff;
}
#index-body .i-about .container .i-about-right {
  width: 33%;
  overflow: hidden;
}
#index-body .i-about .container .i-about-right .grid-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: -10px 0;
}
#index-body .i-about .container .i-about-right .grid-box .column {
  text-align: center;
  padding: 10px 0;
}
#index-body .i-about .container .i-about-right .grid-box .column p {
  font: 18px impact;
  color: #fff;
  text-transform: uppercase;
  margin-top: 15px;
}
#index-body .i-map .left {
  width: 40%;
  background: #d9dee5;
  padding: 90px 0 0;
  height: 810px;
}
#index-body .i-map .left .inner {
  max-width: 315px;
  width: 100%;
  padding-left: 15px;
}
#index-body .i-map .left .inner p:nth-of-type(1) {
  font: 22px b;
  color: #242a33;
  text-transform: uppercase;
  margin-bottom: 18px;
}
#index-body .i-map .left .inner ul {
  margin-bottom: 20px;
}
#index-body .i-map .left .inner ul li {
  padding-left: 70px;
  font: 20px/40px Calibri;
  color: #313131;
  margin-bottom: 30px;
}
#index-body .i-map .left .inner ul li:nth-of-type(1) {
  background: url(../images/map1.jpg) left center no-repeat;
}
#index-body .i-map .left .inner ul li:nth-of-type(2) {
  background: url(../images/map2.jpg) left center no-repeat;
}
#index-body .i-map .left .inner ul li:nth-of-type(3) {
  background: url(../images/map3.jpg) left center no-repeat;
}
#index-body .i-map .left .inner ul li:nth-of-type(4) {
  background: url(../images/map4.jpg) left center no-repeat;
}
#index-body .i-map .left .inner ul li:nth-of-type(5) {
  background: url(../images/map5.jpg) left center no-repeat;
}
#index-body .i-map .left .inner ul li:nth-of-type(6) {
  background: url(../images/map6.jpg) left center no-repeat;
}
#index-body .i-map .left .inner ul li:nth-of-type(7) {
  background: url(../images/map7.jpg) left center no-repeat;
}
#index-body .i-map .left .inner ul li:nth-of-type(8) {
  background: url(../images/map8.jpg) left center no-repeat;
  margin-bottom: 0;
}
#index-body .i-map .left .inner a {
  display: block;
  width: 90px;
  height: 30px;
  border: 1px solid #a7afb2;
  font: 14px/28px Calibri;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  transition: 300ms;
}
#index-body .i-map .left .inner a:hover {
  background: #a7afb2;
}
#index-body .i-map .right {
  width: 60%;
  height: 810px;
  background: #242a33;
  padding: 90px 0 0;
}
#index-body .i-map .right .inner {
  max-width: 810px;
  width: 100%;
  padding-left: 40px;
  padding-right: 15px;
}
#index-body .i-map .right .inner .tit {
  margin-bottom: 40px;
}
#index-body .i-map .right .inner .tit .top {
  font: 22px b;
  color: #fff;
  text-transform: uppercase;
  padding-bottom: 25px;
  border-bottom: 1px solid #454a51;
  margin-bottom: 13px;
}
#index-body .i-map .right .inner .tit .bottom ul li {
  font: 16px Calibri;
  color: #fff;
  margin-bottom: 6px;
}
#index-body .i-map .right .inner .tit .bottom ul li:last-of-type {
  margin-bottom: 0;
}
#index-body .i-map .right .inner .tit .bottom a {
  display: block;
  width: 135px;
  height: 45px;
  background: #af000d;
  font: 15px/45px Calibri;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  margin-top: 10px;
}
#index-body .i-map .right .inner .map {
  position: relative;
}
#index-body .i-map .right .inner .map:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #af000d;
  left: 35%;
  top: 40%;
}
#index-body .i-map .right .inner .map:before {
  content: "ZHENHUA";
  position: absolute;
  left: 36%;
  top: 30%;
  font: 25px b;
  color: #fff;
  text-transform: uppercase;
}
#index-body .i-map .right .inner .map img {
  width: 100%;
}
#index-body .i-map .right .inner .map .animate {
  position: absolute;
  left: 35%;
  top: 40%;
}
#index-body .i-map .right .inner .map .animate span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: #fff;
  opacity: 0;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform-origin: right top;
}
#index-body .i-map .right .inner .map .animate span:nth-of-type(1) {
  animation: map 3s 0s infinite;
}
#index-body .i-map .right .inner .map .animate span:nth-of-type(2) {
  animation: map 3s 0.4s infinite;
}
#index-body .i-map .right .inner .map .animate span:nth-of-type(3) {
  animation: map 3s 0.8s infinite;
}
#index-body .i-news {
  padding: 100px 0 110px;
  background: #eeeeee;
}
#index-body .i-news .container .i-news-top {
  margin-bottom: 75px;
}
#index-body .i-news .container .i-news-top .i-news-tit p:nth-of-type(1) {
  font: 36px b;
  color: #000000;
  text-transform: uppercase;
  padding-top: 15px;
  position: relative;
  margin-bottom: 10px;
}
#index-body .i-news .container .i-news-top .i-news-tit p:nth-of-type(1):after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background: #7d7d7d;
  left: 0;
  top: 0;
}
#index-body .i-news .container .i-news-top .i-news-tit p:nth-of-type(2) {
  font: 13px r;
  color: #aaaaaa;
}
#index-body .i-news .container .i-news-top .i-news-tit p:nth-of-type(2):after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #cccccc;
  margin-left: 10px;
}
#index-body .i-news .container .i-news-top .i-news-nav {
  margin-top: 55px;
}
#index-body .i-news .container .i-news-top .i-news-nav a {
  font: 16px r;
  color: #363636;
  position: relative;
}
#index-body .i-news .container .i-news-top .i-news-nav a:first-child {
  margin-right: 50px;
}
#index-body .i-news .container .i-news-top .i-news-nav a:hover:after {
  transform: translateX(0);
  opacity: 1;
}
#index-body .i-news .container .i-news-top .i-news-nav a:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #d60019;
  left: 0;
  bottom: -8px;
  transform: translateX(-10px);
  opacity: 0;
  transition: 300ms;
}
#index-body .i-news .container .i-news-bottom {
  padding-bottom: 105px;
  position: relative;
}
#index-body .i-news .container .i-news-bottom #in {
  transition: 300ms;
}
#index-body .i-news .container .i-news-bottom #in:hover {
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.3);
}
#index-body .i-news .container .i-news-bottom #in .swiper-slide {
  background: #fff;
}
#index-body .i-news .container .i-news-bottom #in .swiper-slide .img-box {
  width: 50%;
}
#index-body .i-news .container .i-news-bottom #in .swiper-slide .img-box img {
  width: 100%;
}
#index-body .i-news .container .i-news-bottom #in .swiper-slide .info {
  width: 50%;
  padding: 5%;
}
#index-body .i-news .container .i-news-bottom #in .swiper-slide .info p:nth-of-type(1) {
  font: 20px b;
  color: #363636;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
}
#index-body .i-news .container .i-news-bottom #in .swiper-slide .info p:nth-of-type(1):after {
  content: "";
  position: absolute;
  width: 44px;
  height: 2px;
  background: #d60019;
  left: 0;
  bottom: 0;
}
#index-body .i-news .container .i-news-bottom #in .swiper-slide .info p:nth-of-type(2) {
  font: 14px/24px r;
  color: #676767;
  margin-bottom: 30px;
}
#index-body .i-news .container .i-news-bottom #in .swiper-slide .info p:nth-of-type(3) {
  font: 14px r;
  color: #363636;
}
#index-body .i-news .container .i-news-bottom #in-page {
  left: 0;
  right: 0;
  bottom: 0;
}
#index-body .i-news .container .i-news-bottom #in-page .swiper-pagination-bullet {
  width: 72px;
  height: 6px;
  background: #b7b7b7;
  border-radius: 2px;
  opacity: 1;
  margin: 0 9px;
}
#index-body .i-news .container .i-news-bottom #in-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #e70016;
}
#index-body .i-contact {
  padding: 110px 0 60px;
  background: url(../images/icbg.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-contact .container .i-cont-left {
  width: 50%;
}
#index-body .i-contact .container .i-cont-left p {
  font: 40px impact;
  color: #000000;
  margin: 25px 0 40px;
}
#index-body .i-contact .container .i-cont-left ul {
  margin-bottom: 100px;
}
#index-body .i-contact .container .i-cont-left ul li {
  font: 18px r;
  color: #000;
  margin-bottom: 15px;
}
#index-body .i-contact .container .i-cont-left ul li:last-of-type {
  margin-bottom: 0;
}
#index-body .i-contact .container .i-cont-left .share i {
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  color: #464646;
  margin-right: 20px;
}
#index-body .i-contact .container .i-cont-left .share i:last-of-type {
  margin-right: 0;
}
#index-body .i-contact .container .i-cont-right {
  width: 50%;
}
#index-body .i-contact .container .i-cont-right p:nth-of-type(1) {
  font: 36px impact;
  color: #000;
  text-transform: uppercase;
}
#index-body .i-contact .container .i-cont-right p:nth-of-type(2) {
  font: 18px r;
  color: #a6abaa;
  margin: 20px 0 55px;
}
#index-body .i-contact .container .i-cont-right ul {
  font-size: 0;
}
#index-body .i-contact .container .i-cont-right ul li {
  display: inline-block;
  vertical-align: top;
}
#index-body .i-contact .container .i-cont-right ul li:nth-of-type(1) {
  width: 48%;
  margin: 0 4% 20px 0;
}
#index-body .i-contact .container .i-cont-right ul li:nth-of-type(2) {
  width: 48%;
  margin: 0 0 20px 0;
}
#index-body .i-contact .container .i-cont-right ul li:nth-of-type(3) {
  width: 100%;
  margin-bottom: 40px;
}
#index-body .i-contact .container .i-cont-right ul li:not(:last-of-type) input {
  width: 100%;
  height: 48px;
  border-radius: 24px;
  border: 2px solid #a7a7a7;
  background: rgba(255, 255, 255, 0.42);
  outline: none;
  font: 16px/44px r;
  color: #a6abaa;
  padding: 0 25px;
}
#index-body .i-contact .container .i-cont-right ul li:not(:last-of-type) textarea {
  width: 100%;
  height: 135px;
  border-radius: 24px;
  border: 2px solid #a7a7a7;
  background: rgba(255, 255, 255, 0.42);
  outline: none;
  font: 16px/44px r;
  color: #a6abaa;
  padding: 0 25px;
}
#index-body .i-contact .container .i-cont-right ul li:last-of-type input {
  width: 157px;
  height: 48px;
  border-radius: 24px;
  background: #d60019;
  border: none;
  outline: none;
  font: 23px r;
  color: #fff;
}
#footer {
  background: url(../images/footbg.jpg) center center no-repeat;
  background-size: cover;
}
#footer .container .footer-top {
  padding: 75px 0 95px;
  font-size: 0;
}
#footer .container .footer-top .item {
  display: inline-block;
  vertical-align: top;
}
#footer .container .footer-top .item:nth-of-type(1) {
  width: 29%;
}
#footer .container .footer-top .item:nth-of-type(1) p:nth-of-type(1) {
  font: 24px r;
  color: #fff;
}
#footer .container .footer-top .item:nth-of-type(1) p:nth-of-type(2) {
  font: 14px/24px r;
  color: #959595;
  margin: 15px 0;
}
#footer .container .footer-top .item:nth-of-type(1) .search-box input[type="text"] {
  display: block;
  max-width: 270px;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  outline: none;
  padding: 0 10px;
  font: 14px r;
  color: #fff;
  margin-bottom: 15px;
}
#footer .container .footer-top .item:nth-of-type(1) .search-box input[type="submit"] {
  width: 130px;
  height: 40px;
  background: #d60019;
  border-radius: 3px;
  font: 16px r;
  color: #fff;
  border: none;
  outline: none;
}
#footer .container .footer-top .item:nth-of-type(2) {
  width: 18%;
}
#footer .container .footer-top .item:nth-of-type(2) p {
  font: bold 18px Calibri;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#footer .container .footer-top .item:nth-of-type(2) ul li {
  font: 14px r;
  color: #959595;
  margin-bottom: 10px;
}
#footer .container .footer-top .item:nth-of-type(2) ul li a:hover {
  color: #d60019;
}
#footer .container .footer-top .item:nth-of-type(2) ul li:last-of-type {
  margin-bottom: 0;
}
#footer .container .footer-top .item:nth-of-type(3) {
  width: 24%;
}
#footer .container .footer-top .item:nth-of-type(3) p {
  font: bold 18px Calibri;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#footer .container .footer-top .item:nth-of-type(3) ul {
  font-size: 0;
}
#footer .container .footer-top .item:nth-of-type(3) ul li {
  display: inline-block;
  width: 100%;
  font: 14px r;
  color: #959595;
  margin-bottom: 10px;
}
#footer .container .footer-top .item:nth-of-type(3) ul li a:hover {
  color: #d60019;
}
#footer .container .footer-top .item:nth-of-type(4) {
  width: 16%;
}
#footer .container .footer-top .item:nth-of-type(4) p {
  font: bold 18px Calibri;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
#footer .container .footer-top .item:nth-of-type(4) ul li {
  font: 14px r;
  color: #959595;
  margin-bottom: 10px;
}
#footer .container .footer-top .item:nth-of-type(4) ul li a:hover {
  color: #d60019;
}
#footer .container .footer-top .item:nth-of-type(4) ul li:last-of-type {
  margin-bottom: 0;
}
#footer .container .footer-top .item:nth-of-type(5) {
  width: 13%;
  margin-top: 20px;
}
#footer .container .footer-top .item:nth-of-type(5) .erweima {
  padding: 3px;
  background: #fff;
}
#footer .container .footer-top .item:nth-of-type(5) .erweima img {
  width: 100%;
}
#footer .container .footer-bottom {
  padding: 20px 0;
  font: 14px r;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}
.inner-banner .sidebar {
  padding: 17px 0;
  background: #0061ae;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3) inset;
}
.inner-banner .sidebar.active {
  position: fixed;
  width: 100%;
  left: 0;
  top: 78px;
  z-index: 9998;
}
.inner-banner .sidebar .container h1 {
  font: 24px impact;
  color: #f8f8f8;
  text-transform: uppercase;
}
.inner-banner .sidebar .container ul {
  font-size: 0;
}
.inner-banner .sidebar .container ul li {
  display: inline-block;
  vertical-align: top;
  font: 18px/29px impact;
  color: #f8f8f8;
  text-transform: uppercase;
}
.inner-banner .sidebar .container ul span {
  margin: 0 15px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}
.inner-banner .sidebar .container ul span:last-of-type{
  display: none;
}
.inner-banner .banner{
  position: relative;
  background: url(../images/inner-banner.jpg) center center no-repeat;
  background-size: cover;
}
.inner-banner .banner .container {
  height: 300px;
  position: relative;
}
.inner-banner .banner.about-banner .container {
  height: 900px;
}
.inner-banner .banner .container .bread {
  padding-top: 15px;
  font: 16px r;
  color: #fff;
}
.inner-banner .banner .container .bread a,
.inner-banner .banner .container .bread span {
  font: 16px r;
  color: #fff;
  text-transform: uppercase;
}
.inner-banner .banner .container .inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 50px;
  font: 60px impact;
  text-transform: uppercase;
	color: #f8f8f8;
}
.inner-banner .banner .about-banner-bar{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #0061ae;
  background: rgba(0,0,0,.5);
}
.inner-banner .banner .about-banner-bar ul{
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0;
}
.inner-banner .banner .about-banner-bar ul li{
  padding: 80px 15px;
  border-left: 1px solid #0061ae;
  display: inline-block;
  width: 33.33%;
  text-align: center;
}
.inner-banner .banner .about-banner-bar ul li:last-of-type{
  border-right: 1px solid #0061ae;
}
.inner-banner .banner .about-banner-bar ul li p:nth-of-type(1){
  font: 30px impact;
  color: #fff;
  margin-bottom: 10px;
}
.inner-banner .banner .about-banner-bar ul li p:nth-of-type(2){
  font: 16px r;
  color: #fff;
}
.inner-page.inner-about .inner-about-1 {
  padding: 60px 0;
  background: rgba(230, 230, 230, 0.451);
}
.inner-page.inner-about .inner-about-1 .tit {
  text-align: center;
  margin-bottom: 40px;
}
.inner-page.inner-about .inner-about-1 .tit p:nth-of-type(1) {
  font: 48px impact;
  color: #212121;
  margin-bottom: 10px;
}
.inner-page.inner-about .inner-about-1 .tit p:nth-of-type(2) {
  font: 16px r;
  color: #757575;
}
.inner-page.inner-about .inner-about-1 .content .left {
  width: 50%;
  padding-right: 40px;
}
.inner-page.inner-about .inner-about-1 .content .left ul li {
  margin-bottom: 20px;
  padding-left: 50px;
}
.inner-page.inner-about .inner-about-1 .content .left ul li:last-of-type {
  margin-bottom: 0;
}
.inner-page.inner-about .inner-about-1 .content .left ul li:nth-of-type(1) {
  background: url(../images/ia1-1.png) left top no-repeat;
}
.inner-page.inner-about .inner-about-1 .content .left ul li:nth-of-type(2) {
  background: url(../images/ia1-2.png) left top no-repeat;
}
.inner-page.inner-about .inner-about-1 .content .left ul li:nth-of-type(3) {
  background: url(../images/ia1-3.png) left top no-repeat;
}
.inner-page.inner-about .inner-about-1 .content .left ul li p:nth-of-type(1) {
  font: 24px impact;
  color: #212121;
  margin-bottom: 5px;
}
.inner-page.inner-about .inner-about-1 .content .left ul li p:nth-of-type(2) {
  font: 16px/25px r;
  color: #212121;
}
.inner-page.inner-about .inner-about-1 .content .right {
  width: 50%;
}
.inner-page.inner-about .inner-about-1 .content .right img {
  width: 100%;
}
.inner-page.inner-about .inner-about-2 .grid-box {
  background: rgba(230, 230, 230, 0.451);
}
.inner-page.inner-about .inner-about-2 .grid-box .column img {
  width: 100%;
}
.inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(2) {
  padding: 3% 10% 0 4%;
}
.inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(2) > p:nth-of-type(1) {
  font: 48px impact;
  color: #212121;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(2) > p:nth-of-type(2) {
  font: 16px/25px r;
  color: #212121;
  margin-bottom: 20px;
}
.inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(2) .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(2) .list .item {
  text-align: center;
}
.inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(2) .list .item p:nth-of-type(1) {
  font: 48px impact;
  color: #212121;
}
.inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(2) .list .item p:nth-of-type(2) {
  font: 16px r;
  color: #474747;
}
.inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(3) {
  padding: 3% 4% 0 10%;
}
.inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(3) p:nth-of-type(1) {
  font: 48px impact;
  color: #212121;
  margin-bottom: 30px;
}
.inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(3) p:nth-of-type(2) {
  font: 16px/25px r;
  color: #212121;
}
.inner-page.inner-about .inner-about-3 {
  padding: 70px 0;
  background: rgba(230, 230, 230, 0.451);
}
.inner-page.inner-about .inner-about-3 .container{
  max-width: 1440px;
}
.inner-page.inner-about .inner-about-3 .container .tit {
  text-align: center;
  margin-bottom: 40px;
}
.inner-page.inner-about .inner-about-3 .container .tit p:nth-of-type(1) {
  font: 48px impact;
  color: #212121;
  margin-bottom: 10px;
}
.inner-page.inner-about .inner-about-3 .container .tit p:nth-of-type(2) {
  font: 16px/25px r;
  color: #757575;
}
.inner-page.inner-about .inner-about-3 .container .list {
  position: relative;
}
.inner-page.inner-about .inner-about-3 .container .list #honour .swiper-slide:hover .img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.inner-page.inner-about .inner-about-3 .container .list #honour .swiper-slide:hover p {
  color: #0061ae;
}
.inner-page.inner-about .inner-about-3 .container .list #honour .swiper-slide .img {
  margin-bottom: 20px;
}
.inner-page.inner-about .inner-about-3 .container .list #honour .swiper-slide .img img {
  width: 100%;
}
.inner-page.inner-about .inner-about-3 .container .list #honour .swiper-slide p {
  font: 16px/25px r;
  color: #333;
  text-align: center;
}
.inner-page.inner-about .inner-about-3 .container .list #honour-l {
  left: -50px;
}
.inner-page.inner-about .inner-about-3 .container .list #honour-r {
  right: -50px;
}
.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: 30px/70px impact;
  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: 20px/70px impact;
  color: #333;
  background: #e0dedd;
  padding-left: 30px;
  text-transform: capitalize;
  position: relative;
}
.inner-page.inner-product .container .inner-pro-left .nav>li>a i{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.inner-page.inner-product .container .inner-pro-left .nav>li .children{
  border-left: 1px solid #0061ae;
  border-right: 1px solid #0061ae;
  padding: 0 40px;
  display: none;
}
.inner-page.inner-product .container .inner-pro-left .nav>li .children li{
  border-bottom: 1px solid #0061ae;
}
.inner-page.inner-product .container .inner-pro-left .nav>li .children li:last-of-type{
  border-bottom: none;
}
.inner-page.inner-product .container .inner-pro-left .nav>li .children li a{
  display: block;
  font: 16px/50px r;
  color: #000;
}
.inner-page.inner-product .container .inner-pro-right {
  width: 75%;
  padding-left: 45px;
  overflow: hidden;
}
.inner-page.inner-product .container .inner-pro-right .des {
  margin-bottom: 30px;
}
.inner-page.inner-product .container .inner-pro-right .des p:nth-of-type(1) {
  font: 34px impact;
  color: #000;
  margin-bottom: 20px;
}
.inner-page.inner-product .container .inner-pro-right .des p:nth-of-type(2) {
  font: 18px/25px r;
  color: #6e7073;
}
.inner-page.inner-product .container .inner-pro-right .grid-box {
  margin: -5px;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column {
  padding: 5px;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner:hover .pro-name {
  background: #0061ae;
  color: #fff;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner:hover .pro-info a {
  border-color: #0061ae;
  background: #0061ae;
  color: #fff;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner .pro-name {
  font: 16px/45px impact;
  color: #fff;
  background: #616161;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
	padding: 0 15px;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner .pro-info {
  padding: 0 20px 30px;
  border: 1px solid #e0e0e0;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner .pro-info .img img {
  width: 100%;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner .pro-info p {
  font: 14px/25px r;
  color: #424242;
  margin-bottom: 30px;
	min-height: 80px;
}
.inner-page.inner-product .container .inner-pro-right .grid-box .column .inner .pro-info a {
  display: block;
  height: 48px;
  font: 18px/46px impact;
  color: #616161;
  border: 1px solid #e0e0e0;
  text-align: center;
  text-transform: uppercase;
}
.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: 30px impact;
  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 #0061ae;
  border-bottom: 1px solid #0061ae;
  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: #0061ae;
  text-align: center;
  font: 18px/70px impact;
  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 #0061ae;
}
.inner-page.inner-prodet .inner-prodet-2 .tit span {
  display: inline-block;
  font: 24px/60px impact;
  text-transform: uppercase;
  background: #0061ae;
  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 #0061ae;
  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: #0061ae;
  color: #fff;
}
.inner-page.inner-news .container .nav li a {
  display: block;
  padding: 0 40px;
  font: 24px/60px impact;
  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: #0061ae;
}
.inner-page.inner-news .container .list .grid-box .column .inner:hover .info > a {
  background: #0061ae;
  border-color: #0061ae;
  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: 24px impact;
  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;
	max-width:100%;
}
.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: 30px/45px impact;
  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: 20px/55px impact;
  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: 20px/55px impact;
  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: #0061ae;
  font: 22px impact;
  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;
}
.map .map-hover{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0,0,0,.6);
}
.map .map-hover .inner{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.map .map-hover .inner .top{
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #fff;
  position: relative;
}
.map .map-hover .inner .top .cont-info{
  width: 70%;
}
.map .map-hover .inner .top .cont-info p:nth-of-type(1){
  font: 48px impact;
  color: #fff;
  text-transform: uppercase;
}
.map .map-hover .inner .top .cont-info p:nth-of-type(2){
  font: 24px r;
  color: #fff;
  margin: 20px 0;
}
.map .map-hover .inner .top .cont-info ul{
  font-size: 0;
}
.map .map-hover .inner .top .cont-info ul li{
  display: inline-block;
  width: 50%;
  font: 24px r;
  color: #fff;
  margin-bottom: 10px;
}
.map .map-hover .inner .top .cont-info ul li:nth-of-type(3),
.map .map-hover .inner .top .cont-info ul li:nth-of-type(4){
  margin-bottom: 0;
}
.map .map-hover .inner .top .showmap{
  position: absolute;
  right: 0;
  bottom: 30px;
  width: 315px;
  height: 65px;
  background: #d02127;
  text-align: center;
  font: 24px/65px impact;
  color: #fff;
  text-transform: uppercase;
}
.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: #d02127;
  text-align: center;
}
.inner-contact-bottom p{
  display: inline-block;
  vertical-align: middle;
  font: 24px impact;
  color: #fff;
  margin-right: 30px;
}
.inner-contact-bottom a{
  display: inline-block;
  vertical-align: middle;
  width: 249px;
  height: 48px;
  border: 1px solid #fff; 
  font: 18px/46px impact;
  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;
}
@media (max-width: 1200px) {
  #index-body .i-about .container .i-about-left p:nth-of-type(1) {
    font-size: 40px;
  }
  #index-body .i-about .container .i-about-left p:nth-of-type(2) {
    font-size: 30px;
  }
  .inner-page.inner-about .tit p:nth-of-type(1) {
    font-size: 30px!important;
  }
  .inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(2) > p:nth-of-type(1) {
    font-size: 30px;
  }
  .inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(2) .list .item p:nth-of-type(1) {
    font-size: 30px;
  }
  .inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(3) p:nth-of-type(1) {
    font-size: 30px;
  }
  .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) {
  #header {
    display: none;
  }
  #m-header-wrapper {
    display: block;
  }
  #index-banner {
    margin-top: 45px;
  }
  #index-body .i-section {
    padding: 60px 0;
  }
  #index-body .i-product .i-pro-top {
    margin-bottom: 40px;
  }
  #index-body .i-product .i-pro-top .container .i-pro-nav {
    display: none;
  }
  #index-body .i-product .i-pro-top .container .i-pro-tit {
    width: 100%;
  }
  #index-body .i-news .container .i-news-top {
    margin-bottom: 40px;
  }
  #index-body .i-news .container .i-news-bottom {
    padding-bottom: 40px;
  }
  .inner-banner {
    margin-top: 45px;
  }
  .inner-banner .sidebar {
    display: none;
  }
  .inner-page.inner-about .inner-about-2 .grid-box .column {
    width: 100%;
  }
  .inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(2) {
    padding: 40px 15px 20px;
  }
  .inner-page.inner-about .inner-about-2 .grid-box .column:nth-of-type(3) {
    padding: 20px 15px 40px;
  }
  .inner-page.inner-about .inner-about-1 .content .right {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  .inner-page.inner-about .inner-about-1 .content .left {
    width: 100%;
    float: none;
  }
  .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;
  }
}
@media (max-width: 768px) {
  #index-body .i-about .container .i-about-left {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  #index-body .i-about .container .i-about-right {
    width: 100%;
    float: none;
  }
  #index-body .i-contact .container .i-cont-left {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  #index-body .i-contact .container .i-cont-right {
    width: 100%;
    float: none;
  }
  #index-body .i-contact .container .i-cont-left ul {
    margin-bottom: 60px;
  }
  #footer .container .footer-top .item:nth-of-type(1) {
    width: 100%;
    margin-bottom: 40px;
  }
  #footer .container .footer-top .item:nth-of-type(2) {
    width: 50%;
    margin-bottom: 40px;
  }
  #footer .container .footer-top .item:nth-of-type(3) {
    width: 50%;
    margin-bottom: 40px;
  }
  #footer .container .footer-top .item:nth-of-type(4) {
    width: 50%;
  }
  #footer .container .footer-top .item:nth-of-type(5) {
    display: none;
  }
  .inner-page.inner-about .inner-about-3 .container .list #honour-l,
  .inner-page.inner-about .inner-about-3 .container .list #honour-r {
    display: none;
  }
  .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;
  }
}
@media (max-width: 576px) {
  #index-banner #banner #banner-l,
  #index-banner #banner #banner-r {
    display: none;
  }
  #index-body .i-product .i-pro-top .container .i-pro-tit p:nth-of-type(1) {
    font-size: 25px;
  }
  #index-body .i-product .i-pro-bottom {
    padding: 0 15px;
  }
  #index-body .i-product .i-pro-bottom #ip .swiper-slide {
    opacity: 1;
    transform: scale(1);
  }
  #index-body .i-product .i-pro-bottom #ip-l,
  #index-body .i-product .i-pro-bottom #ip-r {
    display: none;
  }
  #index-body .i-about .container .i-about-left p:nth-of-type(1) {
    font-size: 30px;
  }
  #index-body .i-about .container .i-about-left p:nth-of-type(1) img {
    width: 30px;
  }
  #index-body .i-about .container .i-about-left p:nth-of-type(2) {
    font-size: 25px;
  }
  #index-body .i-about .container .i-about-right .grid-box .column {
    width: 50%;
  }
  #index-body .i-map .left {
    width: 100%;
    height: auto;
    padding: 60px 0;
  }
  #index-body .i-map .left .inner {
    max-width: 100%;
  }
  #index-body .i-map .right {
    width: 100%;
    padding: 60px 0;
    height: auto;
  }
  #index-body .i-map .right .inner {
    padding-left: 15px;
  }
  #index-body .i-map .right .inner .map:before {
    font-size: 16px;
  }
  #index-body .i-news .container .i-news-bottom #in .swiper-slide .img-box {
    width: 100%;
    float: none;
  }
  #index-body .i-news .container .i-news-bottom #in .swiper-slide .info {
    width: 100%;
    float: none;
  }
  #index-body .i-news .container .i-news-top .i-news-tit p:nth-of-type(1) {
    font-size: 25px;
  }
  #index-body .i-news .container .i-news-top .i-news-nav {
    display: none;
  }
  #index-body .i-news .container .i-news-bottom {
    padding: 0;
  }
  #index-body .i-news .container .i-news-bottom #in-page {
    display: none;
  }
  #index-body .i-contact .container .i-cont-left p {
    font-size: 25px;
  }
  #index-body .i-contact .container .i-cont-right p:nth-of-type(1) {
    font-size: 25px;
  }
  #index-body .i-contact .container .i-cont-right ul li {
    width: 100% !important;
  }
  #index-body .i-map .left .inner ul{
  	font-size: 0;
  }
  #index-body .i-map .left .inner ul li{
  	display: inline-block;
  	width: 50%;
  	font-size: 14px;
  	vertical-align: top;
  }
  #footer .container .footer-top {
    padding: 60px 0;
  }
  #footer .container .footer-top .item:nth-of-type(2) {
    width: 100%;
  }
  #footer .container .footer-top .item:nth-of-type(3) {
    width: 100%;
  }
  #footer .container .footer-top .item:nth-of-type(4) {
    width: 100%;
  }
  .inner-banner .banner .container {
    height: 300px;
  }
  .inner-banner .banner .container .inner {
    font-size: 30px;
  }
  .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;
  }
  .inner-banner .banner .about-banner-bar{
    position: static;
  }
  .inner-banner .banner .about-banner-bar ul li{
    width: 100%;
    border: none!important;
  }
  .inner-banner .banner.about-banner .container{
    height: 300px;
  }
  .inner-banner .banner .about-banner-bar ul li p:nth-of-type(1){
    font-size: 20px;
  }
  .inner-contact-bottom p{
    font-size: 20px;
  }
  .inner-banner .banner .about-banner-bar ul li{
  	padding: 30px 15px;
  }
  .m-page{
  	margin-top: 0;
  	padding: 0 0 20px 0;
  }
}
