/* 字体引入 */
@font-face {
  font-family: 'b';
  src: url('../font/Raleway-Bold.ttf');
}
@font-face {
  font-family: 'r';
  src: url('../font/Raleway-Regular.ttf');
}
@font-face {
  font-family: 'm';
  src: url('../font/Raleway-Medium.ttf');
}
/* 网站基本宽度（注意修改） */
.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;
  }
}
/* 手机端头部 */
#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: 38px;
  z-index: 9999;
  transition: .3s;
}
#header.active {
  top: 0;
  position: fixed;
}
#header.active .container .header-wrapper {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}
#header .container .header-wrapper {
  height: 92px;
  background: #fff;
  border-radius: 6px;
  padding: 0 40px 0 30px;
  position: relative;
}
#header .container .header-wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.22);
  left: 0;
  top: -10px;
  border-radius: 6px;
  z-index: -1;
}
#header .container .header-wrapper .logo {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#header .container .header-wrapper .search-btn {
  width: 39px;
  height: 39px;
  border-radius: 100%;
  background: #ea5504 url(../image/search.png) center center no-repeat;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  margin-left: 55px;
}
#header .container .header-wrapper .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .container .header-wrapper .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .container .header-wrapper .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .container .header-wrapper .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 .header-wrapper .search-box form input[type="submit"] {
  width: 27px;
  height: 29px;
  background: url(../image/search.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .container .header-wrapper .search-box form input[type="submit"]:hover {
  opacity: 0.7;
}
#header .container .header-wrapper .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../image/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#header .container .header-wrapper .menu-box .menu {
  font-size: 0;
}
#header .container .header-wrapper .menu-box .menu > li {
  display: inline-block;
  margin-right: 50px;
  position: relative;
}
#header .container .header-wrapper .menu-box .menu > li:last-of-type {
  margin-right: 0;
}
#header .container .header-wrapper .menu-box .menu > li:after {
  content: "";
  width: 0;
  height: 3px;
  background: #ea5504;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  transition: .3s;
}
#header .container .header-wrapper .menu-box .menu > li > a {
  display: block;
  font: 16px/92px b;
  color: #000;
  text-transform: uppercase;
}






#header .container .header-wrapper .menu-box .menu > li .sub-menu {
  position: absolute;
  min-width: 160px;
  white-space: nowrap;
  background: #000;
  left: 0;
  top: 120%;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}
#header .container .header-wrapper .menu-box .menu > li .sub-menu li a {
  display: block;
  font: 16px/40px b;
  color: #fff;
  padding: 0 15px;
  text-transform: capitalize;
  transition: .3s;
}
#header .container .header-wrapper .menu-box .menu > li .sub-menu li a:hover {
  background: #ea5504;
}



#header .container .header-wrapper .menu-box .menu > li:hover:after {
  width: 100%;
}
#header .container .header-wrapper .menu-box .menu > li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
#index-banner #banner .swiper-slide {
  height: 853px;
  background: url(../image/banner.jpg) center center no-repeat;
  background-size: cover;
}
#index-banner #banner .swiper-slide .container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#index-banner #banner .swiper-slide .container .inner {
  max-width: 805px;
  padding-left: 40px;
}
#index-banner #banner .swiper-slide .container .inner p:nth-of-type(1) {
  font: 45px b;
  color: #ea5504;
  text-transform: uppercase;
  position: relative;
	text-shadow: 2px 2px 0px #000;
}
#index-banner #banner .swiper-slide .container .inner p:nth-of-type(2) {
  font: 30px b;
  color: #fff;
  text-transform: uppercase;
  position: relative;
	text-shadow: 2px 2px 0px #000;
}
#index-banner #banner .swiper-slide .container .inner p:nth-of-type(2):after {
  content: "";
  position: absolute;
  width: 4px;
  height: 55px;
  background: #ea5504;
  left: -26px;
  top: 10px;
}

#index-banner #banner .swiper-slide .container .inner p:nth-of-type(3) {
  font: 40px b;
  color: #ea5504;
  text-transform: uppercase;
  position: relative;
	
}
#index-banner #banner .swiper-slide .container .inner p:nth-of-type(4) {
  max-width: 635px;
  font: 20px r;
  color: #fff;
  margin: 10px 0;
}
#index-banner #banner .swiper-slide .container .inner a {
  display: block;
  width: 161px;
  height: 44px;
  background: #ea5504;
  font: 18px/44px m;
  color: #fff;
  text-align: center;
  transition: .3s;
}
#index-banner #banner .swiper-slide .container .inner a:hover {
  background: #000;
}
#index-banner .cont-info {
  background: #ea5504;
  overflow: hidden;
}
#index-banner .cont-info .grid-box .column {
  transform: skewX(-45deg);
}
#index-banner .cont-info .grid-box .column:nth-of-type(odd) {
  background: #ea5504;
}
#index-banner .cont-info .grid-box .column:nth-of-type(even) {
  background: #313131;
}
#index-banner .cont-info .grid-box .column .inner {
  height: 110px;
  transform: skewX(45deg);
  padding: 0 16%;
  font: 18px m;
  color: #fff;
  display: flex;
  align-items: center;
}
#index-banner .cont-info .grid-box .column .inner img {
  margin-right: 10px;
}
#index-body .i-about {
  padding: 105px 0 125px;
}
#index-body .i-about .container .i-about-left {
  width: 48%;
  padding-right: 20px;
}
#index-body .i-about .container .i-about-left > p:nth-of-type(1) {
  font: 36px b;
  color: #333333;
}
#index-body .i-about .container .i-about-left > p:nth-of-type(2) {
  font: 18px m;
  color: #666666;
  margin: 10px 0 50px;
  position: relative;
}
#index-body .i-about .container .i-about-left > p:nth-of-type(2):after {
  content: "";
  position: absolute;
  width: 88px;
  height: 4px;
  background: #ea5504;
  left: 0;
  bottom: -20px;
}
#index-body .i-about .container .i-about-left > p:nth-of-type(3) {
  font: 16px/28px r;
  color: #666666;
}
#index-body .i-about .container .i-about-left > p a {
	color: #ea5504;
	font-weight: 600;
}
#index-body .i-about .container .i-about-left .count {
  min-width: 700px;
  background: #434343;
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding: 0 25px;
  border-left: 7px solid #ea5504;
}
#index-body .i-about .container .i-about-left .count .grid-box .column {
  padding: 30px 20px;
  text-align: center;
	vertical-align: top;
  position: relative;
}
#index-body .i-about .container .i-about-left .count .grid-box .column p:nth-of-type(1) {
  font: 36px b;
  color: #fff;
  margin-bottom: 5px;
}
#index-body .i-about .container .i-about-left .count .grid-box .column p:nth-of-type(2) {
  font: 16px r;
  color: #fff;
}
#index-body .i-about .container .i-about-left .count .grid-box .column:after {
  content: "";
  width: 3px;
  height: 60px;
  background: #ea5504;
  position: absolute;
  left: 15px;
  top: 40px;
}
#index-body .i-about .container .i-about-right {
  width: 52%;
  position: relative;
}
#index-body .i-about .container .i-about-right .img {
  width: 100%;
}
#index-body .i-about .container .i-about-right .play {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -45px -45px;
  cursor: pointer;
  transition: .3s;
}
#index-body .i-about .container .i-about-right .play:hover {
  transform: scale(1.1);
}
#index-body .i-service {
  padding: 120px 0 110px;
  background: url(../image/i-service-bg.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-service .i-service-right {
  width: 55%;
  padding-right: 5%;
  overflow: hidden;
}
#index-body .i-service .i-service-right .grid-box {
  margin: -27px -25px;
}
#index-body .i-service .i-service-right .grid-box .column {
  padding: 27px 25px;
}
#index-body .i-service .i-service-right .grid-box .column:nth-of-type(1) .inner {
  background: url(../image/i-service-1.png) left top no-repeat;
}
#index-body .i-service .i-service-right .grid-box .column:nth-of-type(2) .inner {
  background: url(../image/i-service-2.png) left top no-repeat;
}
#index-body .i-service .i-service-right .grid-box .column:nth-of-type(3) .inner {
  background: url(../image/i-service-3.png) left top no-repeat;
}
#index-body .i-service .i-service-right .grid-box .column:nth-of-type(4) .inner {
  background: url(../image/i-service-4.png) left top no-repeat;
}
#index-body .i-service .i-service-right .grid-box .column:nth-of-type(5) .inner {
  background: url(../image/i-service-5.png) left top no-repeat;
}
#index-body .i-service .i-service-right .grid-box .column:nth-of-type(6) .inner {
  background: url(../image/i-service-6.png) left top no-repeat;
}
#index-body .i-service .i-service-right .grid-box .column .inner {
  padding-left: 95px;
}
#index-body .i-service .i-service-right .grid-box .column .inner p:nth-of-type(1) {
  font: 20px b;
  color: #fff;
  margin-bottom: 15px;
}
#index-body .i-service .i-service-right .grid-box .column .inner p:nth-of-type(2) {
  font: 16px/28px r;
  color: rgba(255, 255, 255, 0.66);
}
#index-body .i-service .i-service-left {
  width: 45%;
  padding-right: 5%;
}
#index-body .i-service .i-service-left img {
  width: 100%;
}
#index-body .i-pro {
  padding: 75px 0 125px;
}
#index-body .i-pro .container .i-pro-tit {
  font: 36px b;
  color: #333333;
  text-align: center;
}
#index-body .i-pro .container .i-pro-nav {
  font-size: 0;
  text-align: center;
  margin: 45px 0 60px;
}
#index-body .i-pro .container .i-pro-nav li {
  display: inline-block;
  transform: skewX(-30deg);
  background: #313131;
  margin-right: 25px;
  transition: .3s;
}
#index-body .i-pro .container .i-pro-nav li:last-of-type {
  margin-right: 0;
}
#index-body .i-pro .container .i-pro-nav li:hover,
#index-body .i-pro .container .i-pro-nav li.active {
  background: #ea5504;
}
#index-body .i-pro .container .i-pro-nav li:hover a,
#index-body .i-pro .container .i-pro-nav li.active a {
  color: #fff;
}
#index-body .i-pro .container .i-pro-nav li a {
  transform: skewX(30deg);
  display: block;
  font: 20px m;
  color: #fff;
  padding: 15px 25px;
  transition: .3s;
}
#index-body .i-pro .container .i-pro-list {
  overflow: hidden;
}
#index-body .i-pro .container .i-pro-list .grid-box {
  margin: -28px -27px;
}
#index-body .i-pro .container .i-pro-list .grid-box .column {
  padding: 28px 27px;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner {
  border: 1px solid #000000;
  padding: 35px;
  text-align: center;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner:hover .name {
  color: #ea5504;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .img img {
  width: 100%;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .name {
  font: 24px/45px b;
  color: #333333;
  margin-bottom: 15px;
  transition: .3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .link {
  font-size: 0;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .link span {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  height: 32px;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .link span:nth-of-type(1) {
  background: #313131 url(../image/i-pro-search.png) center center no-repeat;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .link span:nth-of-type(2) {
  font: 18px/32px m;
  color: #fff;
  text-align: center;
  background: #ea5504;
}
#index-body .i-contact {
  position: relative;
}
#index-body .i-contact .i-contact-left {
  width: 63%;
  height: 490px;
  background: url(../image/i-contact-bg1.jpg) right center no-repeat;
  background-size: cover;
}
#index-body .i-contact .i-contact-left .inner {
  max-width: 855px;
  width: 100%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 15px;
}
#index-body .i-contact .i-contact-left .inner p {
  font: 36px/60px b;
  color: #fff;
  max-width: 550px;
  margin-bottom: 50px;
}
#index-body .i-contact .i-contact-left .inner a {
  display: block;
  width: 147px;
  height: 41px;
  border: 2px solid #ea5504;
  text-align: center;
  font: 18px/37px r;
  color: #fff;
  transition: .3s;
}
#index-body .i-contact .i-contact-left .inner a:hover {
  background: #ea5504;
}
#index-body .i-contact .i-contact-right {
  width: 52%;
  height: 490px;
  background: url(../image/i-contact-bg2.png) left center no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
#index-body .i-contact .i-contact-right img {
  width: 60%;
}
#index-body .i-news {
  padding: 70px 0 100px;
  background: url(../image/i-news-bg.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-news .container .i-news-tit {
  text-align: center;
  margin-bottom: 55px;
}
#index-body .i-news .container .i-news-tit p:nth-of-type(1) {
  font: 36px b;
  color: #333333;
  margin-bottom: 50px;
  position: relative;
}
#index-body .i-news .container .i-news-tit p:nth-of-type(1):after {
  content: "";
  width: 118px;
  height: 5px;
  background: #ea5504;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -25px;
}
#index-body .i-news .container .i-news-tit p:nth-of-type(2) {
  font: 16px/28px r;
  color: #666666;
  max-width: 585px;
  margin: 0 auto;
}
#index-body .i-news .container .i-news-list {
  overflow: hidden;
}
#index-body .i-news .container .i-news-list .grid-box {
  margin: -15px;
}
#index-body .i-news .container .i-news-list .grid-box .column {
  padding: 15px;
}
#index-body .i-news .container .i-news-list .grid-box .column:hover .img img {
  transform: scale(1);
}
#index-body .i-news .container .i-news-list .grid-box .column:hover p:nth-of-type(1) {
  color: #ea5504;
}
#index-body .i-news .container .i-news-list .grid-box .column .img {
  overflow: hidden;
  position: relative;
}
#index-body .i-news .container .i-news-list .grid-box .column .img img {
  width: 100%;
  transform: scale(1.2);
  transition: .3s;
}
#index-body .i-news .container .i-news-list .grid-box .column .img .date {
  padding: 5px 12px;
  background: #ea5504;
  position: absolute;
  left: 0;
  bottom: 25px;
  font: 14px m;
  color: #fff;
}
#index-body .i-news .container .i-news-list .grid-box .column p:nth-of-type(1) {
  font: 20px b;
  color: #333333;
  margin: 15px 0 10px;
  transition: .3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#index-body .i-news .container .i-news-list .grid-box .column p:nth-of-type(2) {
  font: 16px/28px r;
  color: #666666;
}
#footer .footer-top {
  padding: 60px 0 30px;
  background: #1b1b1b;
}
#footer .footer-top .container {
  font-size: 0;
}
#footer .footer-top .container .item {
  display: inline-block;
  vertical-align: top;
}
#footer .footer-top .container .item:nth-of-type(1) {
  width: 34%;
  padding-right: 6%;
}
#footer .footer-top .container .item:nth-of-type(2) {
  width: 22%;
}
#footer .footer-top .container .item:nth-of-type(3) {
  width: 30%;
}
#footer .footer-top .container .item:nth-of-type(3) ul li {
  padding-left: 35px;
  min-height: 24px;
}
#footer .footer-top .container .item:nth-of-type(4) {
  width: 14%;
}
#footer .footer-top .container .item:nth-of-type(3) ul li:nth-of-type(1) {
  background: url(../image/foot-map.png) left center no-repeat;
}
#footer .footer-top .container .item:nth-of-type(3) ul li:nth-of-type(2) {
  background: url(../image/foot-tel.png) left center no-repeat;
}
#footer .footer-top .container .item:nth-of-type(3) ul li:nth-of-type(3) {
  background: url(../image/foot-email.png) left center no-repeat;
}
#footer .footer-top .container .item .tit {
  font: 20px b;
  color: #fff;
  margin-bottom: 25px;
}
#footer .footer-top .container .item .tit span {
  display: inline-block;
  width: 22px;
  height: 4px;
  background: #ea5504;
  vertical-align: middle;
  margin-right: 10px;
}
#footer .footer-top .container .item .content {
  font: 16px/30px r;
  color: #fff;
  margin-bottom: 35px;
}
#footer .footer-top .container .item .share i {
  font-size: 18px;
  color: #fff;
  margin-right: 15px;
  cursor: pointer;
  transition: .3s;
}
#footer .footer-top .container .item .share i:last-of-type {
  margin-right: 0;
}
#footer .footer-top .container .item .share i:hover {
  color: #ea5504;
}
#footer .footer-top .container .item .erweima{
	max-width: 100px;
}
#footer .footer-top .container .item .erweima img{
	width: 100%;
}
#footer .footer-top .container .item ul {
  padding-left: 35px;
}
#footer .footer-top .container .item ul li {
  font: 16px r;
  color: #fff;
  margin-bottom: 15px;
  text-transform: capitalize;
}
#footer .footer-top .container .item ul li:last-of-type {
  margin-bottom: 0;
}
#footer .footer-top .container .item ul li:hover {
  color: #ea5504;
}
#footer .footer-bottom {
  padding: 20px 15px;
  background: #000;
  font: 16px m;
  color: #fff;
  text-align: center;
}
@media (max-width: 1200px) {
  #index-body .i-contact .i-contact-left {
    width: 75%;
  }
  #index-banner .cont-info .grid-box .column {
    transform: skewX(0deg);
  }
  #index-banner .cont-info .grid-box .column .inner {
    transform: skewX(0deg);
    word-break: break-all;
  }
}
@media (max-width: 992px) {
  #header {
    display: none;
  }
  #m-header-wrapper {
    display: block;
  }
  #index-banner {
    margin-top: 45px;
  }
  #index-banner #banner .swiper-slide {
    height: 500px;
  }
  #index-banner #banner .swiper-slide .container .inner {
    padding: 0;
  }
  #index-banner #banner .swiper-slide .container .inner p:nth-of-type(1) {
    font-size: 25px;
  }
  #index-banner #banner .swiper-slide .container .inner p:nth-of-type(1):after {
    display: none;
  }
  #index-banner #banner .swiper-slide .container .inner p:nth-of-type(2) {
    font-size: 16px;
  }
  #index-body .i-section {
    padding: 60px 0 !important;
  }
  #index-body .i-about .container .i-about-left > p:nth-of-type(1) {
    font-size: 25px;
  }
  #index-body .i-about .container .i-about-left > p:nth-of-type(2) {
    font-size: 16px;
    line-height: 25px;
  }
  #index-body .i-about .container .i-about-left .count .grid-box .column p:nth-of-type(1) {
    font-size: 25px;
  }
  #index-body .i-service {
    padding: 60px 15px!important;
  }
  #index-body .i-service .i-service-left {
    width: 100%;
    float: none;
    padding: 0;
    margin-bottom: 40px;
  }
  #index-body .i-service .i-service-right {
    width: 100%;
    float: none;
    padding: 0;
  }
  #index-body .i-pro .container .i-pro-list .grid-box .column .inner .name {
    font-size: 16px;
    line-height: 25px;
  }
  #index-body .i-pro .container .i-pro-list .grid-box .column .inner .link span:nth-of-type(2) {
    font-size: 14px;
  }
  #index-body .i-pro .container .i-pro-nav li a {
    font-size: 16px;
  }
  #index-body .i-pro .container .i-pro-tit {
    font-size: 30px;
  }
  #index-body .i-contact .i-contact-left {
    width: 100%;
    float: none;
    background: url(../image/i-contact-bg1-2.jpg) right center no-repeat;
    background-size: cover;
    height: auto;
    padding: 60px 15px;
  }
  #index-body .i-contact .i-contact-left .inner {
    position: static;
    transform: translateY(0);
    padding: 0;
  }
  #index-body .i-contact .i-contact-right {
    display: none;
  }
  #index-body .i-contact .i-contact-left .inner p {
    font-size: 20px;
    line-height: 30px;
  }
  #index-body .i-news .container .i-news-tit p:nth-of-type(1) {
    font-size: 30px;
  }
  #index-banner .cont-info .grid-box .column {
    width: 100%;
  }
  #index-banner .cont-info .grid-box .column .inner {
    height: auto;
    padding: 30px 10%;
  }
}
@media (max-width: 768px) {
  #index-body .i-about .container .i-about-left {
    width: 100%;
    float: none;
    padding: 0;
  }
  #index-body .i-about .container .i-about-right {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  #index-body .i-about .container .i-about-left .count {
    min-width: 100%;
  }
  #footer .footer-top .container .item:nth-of-type(4) {
  display: none;
}
  #footer .footer-top .container .item {
    width: 100%!important;
    margin-bottom: 40px;
    padding: 0;
  }
  #footer .footer-top .container .item:nth-of-type(3) {
    margin-bottom: 0;
  }
  #footer .footer-bottom {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
	#index-body .i-about .container .i-about-left .count .grid-box .column {
		width: 100%;
	}
  #index-banner #banner .swiper-slide {
    height: 200px;
  }
	#index-banner #banner .swiper-slide .container .inner p:nth-of-type(1) {
		font-size: 16px;
	}
  #index-banner #banner .swiper-slide .container .inner p:nth-child(2),
	#index-banner #banner .swiper-slide .container .inner a {
    display: none;
  }
  #index-body .i-about .container .i-about-left .count .grid-box .column:after {
    display: none;
  }
  #index-body .i-service .i-service-right .grid-box .column {
    width: 100%;
  }
  #index-body .i-pro .container .i-pro-nav {
    display: none;
  }
  #index-body .i-pro .container .i-pro-list {
    margin-top: 40px;
  }
  #index-body .i-pro .container .i-pro-list .grid-box .column {
    width: 100%;
  }
  #index-banner .cont-info .grid-box .column .inner {
    font-size: 14px;
  }
}

#cs{
	width: 100%
}
#cs tr td{
	padding: 5px;
	font-size: 16px;
	border: 1px solid #333;
}
.m-page {
  text-align:center;
}
.m-page a,
.m-page span {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  border: 1px solid #e47116;
  color: #7b8393;
  text-align: center;
  line-height: 30px;
  margin: 0 10px;
  display: inline-block;
  font-size: 12px;
}
.m-page span,
.m-page a:hover {
  background: #e47116;
  color: white;
}
.inner-page{
	font-family: r;
}
.inner-page div#nav {
  border-bottom: 1px solid #d7d7d7;
  background:none;
  padding:0;
}
.inner-page div#nav ul.ui {
  margin: -1rem 0 0;
  position:relative;
}
.inner-page div#nav ul.ui li {
  font-size: 14px;
  color: #858586;
  line-height: 60px;
  padding: 1rem 0 0;
  text-align: center;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  position:static;
}
.inner-page div#nav ul.ui li a {
  color: inherit;
  display: block;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.inner-page div#nav ul.ui li:hover,
.inner-page div#nav ul.ui li.active {
  background: #e47116;
  color: white;
}
.inner-page div#nav ul.ui li ul {
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:#f9f9f9;
  z-index:1;
  display:none;
  margin-top:0;
  border:1px solid #ccc;
  border-top:none;
}
.inner-page div#nav ul.ui li ul li {
  line-height:45px;
  font-size:12px;
  border-left:1px solid #ededed;
}
.inner-page div#nav ul.ui li ul li:first-child {
  border-left:none;
}
.about-page .init-2 {
  padding: 40px 0;
}
.about-page .init-2 p {
  font-size: 14px;
  color: #666666;
  line-height: 24px;
  padding: 12px 0;
}
.product-page {
  background: #f6f7f9;
}
.product-page .init-1 {
  background: white;
}
.product-page .init-2 {
  padding: 70px 0 60px;
}
.product-page .init-2 ul {
  padding: 35px 80px;
  background: url("") #0251b8 no-repeat right bottom;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 30px 0 #aaaaaf;
  -webkit-box-shadow: 0 0 30px 0 #aaaaaf;
  -moz-box-shadow: 0 0 30px 0 #aaaaaf;
  -ms-box-shadow: 0 0 30px 0 #aaaaaf;
  -o-box-shadow: 0 0 30px 0 #aaaaaf;
}
.product-page .init-2 ul li .left {
  width: 50%;
  padding-right: 3%;
  margin-right: -5px;
  display: inline-block;
  vertical-align: middle;
}
.product-page .init-2 ul li .left a {
  display: block;
}
.product-page .init-2 ul li .right {
  width: 50%;
  display: inline-block;
  padding-left: 2%;
  vertical-align: middle;
}
.product-page .init-2 ul li .right h2 {
  font-size: 30px;
  color: white;
  line-height: 45px;
  font-weight: bold;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 225, 0.3);
}
.product-page .init-2 ul li .right h2 a {
  color: inherit;
}
.product-page .init-2 ul li .right h2:hover {
  color: #e47116;
}
.product-page .init-2 ul li .right p {
  font-size: 14px;
  color: white;
  line-height: 30px;
  margin: 30px 0;
}
.product-page .init-2 ul li .right a.more {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 20px;
  background: white;
  font-size: 14px;
  color: #e60012;
}
.product-page .init-2 ul li .right a.more:hover {
  background: #e47116;
  color: white;
}
.product-page .init-2 ul button.slick-arrow {
  background: none;
  width: 55px;
  height: 55px;
  border-radius: 100%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 24px;
  color: transparent;
  display: block;
  font-family: "FontAwesome";
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.product-page .init-2 ul button.slick-arrow:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.4);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.product-page .init-2 ul button.slick-arrow:hover {
  border-color: white;
}
.product-page .init-2 ul button.slick-arrow:hover:before {
  color: white;
}
.product-page .init-2 ul button.slick-prev {
  left: 10px;
}
.product-page .init-2 ul button.slick-prev:before {
  content: "\f104";
}
.product-page .init-2 ul button.slick-next {
  right: 10px;
}
.product-page .init-2 ul button.slick-next:before {
  content: "\f105";
}
.product-page .init-3{
	padding: 60px 0 0;
}
.product-page .init-3 ul {
  margin: -10px;
  display: inline-block;
  width: 100%;
}
.product-page .init-3 ul li {
  width: 25%;
  float: left;
  padding: 10px;
}
.product-page .init-3 ul li a {
  display: block;
}
.product-page .init-3 ul li a span {
  display: block;
  border: 1px solid #e4e7ee;
  overflow: hidden;
  background: #fff;
}
.product-page .init-3 ul li a span img {
  width: 100%;
}
.product-page .init-3 ul li a h2 {
  font-size: 14px;
  color: #7b8393;
  text-align: center;
  padding: 25px 15px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-weight: bold;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.product-page .init-3 ul li a h2:hover {
  color: #ff1a2a;
}
.product-page .init-4 {
  padding: 40px 0;
}
.prodet-page .init-2 {
  padding: 70px 0 60px;
}
.prodet-page .init-2 .prodet-scroll {
  width: 10%;
  display: inline-block;
  vertical-align: top;
}
.prodet-page .init-2 .prodet-scroll ul {
  padding: 20px 0;
}
.prodet-page .init-2 .prodet-scroll ul a {
  display: block;
  border: 1px solid #e5e5e5;
}
.prodet-page .init-2 .prodet-scroll ul button.slick-arrow {
  background: none;
  width: 55px;
  border-radius: 100%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 28px;
  color: transparent;
  display: block;
  font-family: "FontAwesome";
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  margin: 0 auto;
  position: relative;
  font-weight: bold;
}
.prodet-page .init-2 .prodet-scroll ul button.slick-arrow:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.prodet-page .init-2 .prodet-scroll ul button.slick-arrow:hover:before {
  color: #e47116;
}
.prodet-page .init-2 .prodet-scroll ul button.slick-prev:before {
  content: "\f106";
}
.prodet-page .init-2 .prodet-scroll ul button.slick-next:before {
  content: "\f107";
}
.prodet-page .init-2 .prodet-img {
  width: 50%;
  display: inline-block;
  margin-left: -5px;
  margin-right: -5px;
  padding: 0 15px;
  vertical-align: top;
}
.prodet-page .init-2 .prodet-img a#zoom1 img {
  border: 1px solid #d7d7d7;
}
.prodet-page .init-2 .prodet-title {
  width: 40%;
  display: inline-block;
  vertical-align: top;
}
.prodet-page .init-2 .prodet-title h1 {
  font-size: 24px;
  line-height: 24px;
  color: #454444;
  padding-bottom: 20px;
}
.prodet-page .init-2 .prodet-title .content {
  font-size: 14px;
  color: #999999;
  line-height: 24px;
  padding: 25px 0;
  border-top: 1px solid #d7d7d7;
  border-bottom: 1px solid #d7d7d7;
  margin:20px 0;
}
.prodet-page .init-2 .prodet-title .content p,
.prodet-page .init-2 .prodet-title .content * {
  line-height:inherit;
}
.prodet-page .init-2 .prodet-title a.more {
  display: inline-block;
  padding: 8px 25px;
  border-radius: 5px;
  background: #f2f2f2;
  font-size: 16px;
  color: #999999;
  margin-right: 20px;
}
.prodet-page .init-2 .prodet-title a.more.first {
  background: #e47116;
  color: white;
}
.prodet-page .init-2 .prodet-title a.more:hover {
  box-shadow: 0 5px 10px 0 #d1d1d1;
  -webkit-box-shadow: 0 5px 10px 0 #d1d1d1;
  -moz-box-shadow: 0 5px 10px 0 #d1d1d1;
  -ms-box-shadow: 0 5px 10px 0 #d1d1d1;
  -o-box-shadow: 0 5px 10px 0 #d1d1d1;
}
.prodet-page .init-3 .init-3-top ul {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid #d7d7d7;
  margin-bottom: -1px;
}
.prodet-page .init-3 .init-3-top ul li {
  padding: 10px 25px;
  background: #fbf9f9;
  border: 1px solid #ededed;
  float: left;
  font-size: 16px;
  color: #666666;
  text-align: center;
  cursor: pointer;
  cursor: hand;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.prodet-page .init-3 .init-3-top ul li a {
  color: inherit;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}
.prodet-page .init-3 .init-3-top ul li:hover,
.prodet-page .init-3 .init-3-top ul li.active {
  background: #e47116;
  color: white;
  border-color: #e47116;
}
.prodet-page .init-3 .init-3-bottom ul {
  padding: 25px 10px;
  border-bottom: 1px solid #ededed;
}
.prodet-page .init-3 .init-3-bottom ul li {
  display: none;
}
.prodet-page .init-3 .init-3-bottom ul li table {
  border-collapse: collapse;
  border: none;
  width: 100%;
}
.prodet-page .init-3 .init-3-bottom ul li table tr:nth-child(odd) {
  background: #dedede;
}
.prodet-page .init-3 .init-3-bottom ul li table tr td {
  border: none;
  padding: 5px 10px;
  font-size: 12px;
  color: #666666;
}
.prodet-page .init-4 {
  padding: 50px 0;
}
.prodet-page .init-4 h2 {
  border-bottom: 2px solid #e47116;
}
.prodet-page .init-4 h2 em {
  font-size: 18px;
  color: white;
  padding: 5px 25px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: #e47116;
  display: inline-block;
}
.prodet-page .init-4 ul {
  padding: 30px 10px;
  border-bottom: 1px solid #ededed;
  margin: -8px;
  position: relative;
}
.prodet-page .init-4 ul li {
  padding: 8px;
}
.prodet-page .init-4 ul li a {
  display: block;
}
.prodet-page .init-4 ul li a span {
  display: block;
  overflow: hidden;
  border: 1px solid #ededed;
}
.prodet-page .init-4 ul li a h3 {
  font-size: 14px;
  color: #666666;
  line-height: 18px;
  padding-top: 15px;
}
.prodet-page .init-4 ul li a h3:hover {
  color: #e47116;
}
.prodet-page .init-4 ul button.slick-arrow {
  background: none;
  border: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 34px;
  color: transparent;
  display: block;
  font-family: "FontAwesome";
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  text-align: center;
  width: 30px;
  height: 30px;
}
.prodet-page .init-4 ul button.slick-arrow:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #b6b2b2;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.prodet-page .init-4 ul button.slick-arrow:hover {
  background: #e47116;
}
.prodet-page .init-4 ul button.slick-arrow:hover:before {
  color: white;
}
.prodet-page .init-4 ul button.slick-prev {
  left: -30px;
}
.prodet-page .init-4 ul button.slick-prev:before {
  content: "\f104";
}
.prodet-page .init-4 ul button.slick-next {
  right: -30px;
}
.prodet-page .init-4 ul button.slick-next:before {
  content: "\f105";
}
.service-page .init-1 {
  background: #f6f7f9;
  padding: 70px 0;
  text-align: center;
}
.service-page .init-1 h2 {
  font-size: 60px;
  color: #222;
  text-align: center;
}
.service-page .init-1 .jc {
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}
.service-page .init-1 .jc i {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #0582d2;
  z-index: 0;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}
.service-page .init-1 .jc img {
  position: relative;
  z-index: 1;
}
.service-page .init-1 p {
  font-size: 14px;
  line-height: 24px;
  color: #999898;
  padding: 30px 5%;
}
.service-page .init-2 {
  padding: 100px 0;
  text-align: center;
}
.service-page .init-2 h2 {
  text-align: center;
  font-size: 34px;
  color: #283336;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: -1px;
}
.service-page .init-2 .map {
  display: inline-block;
  margin: 30px auto 0;
  position: relative;
  width: 90%;
}
.service-page .init-2 .map h3 {
  text-align: center;
  font-size: 30px;
  color: #283336;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 5%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40%;
  letter-spacing: -1px;
}
.service-page .init-2 .map li {
  font-size: 20px;
  color: #333333;
  line-height: 32px;
  position: absolute;
  font-weight: bold;
}
.service-page .init-2 .map li.ie1,
.service-page .init-2 .map li.ie5 {
  right: 10%;
}
.service-page .init-2 .map li.ie2,
.service-page .init-2 .map li.ie4 {
  right: 5%;
}
.service-page .init-2 .map li.ie3 {
  right: 2%;
}
.service-page .init-2 .map li.ie1 {
  top: 7%;
}
.service-page .init-2 .map li.ie2 {
  top: 25%;
}
.service-page .init-2 .map li.ie3 {
  top: 46%;
}
.service-page .init-2 .map li.ie4 {
  top: 68%;
}
.service-page .init-2 .map li.ie5 {
  top: 87%;
}
.service-page .init-2 dl {
  text-align: left;
}
.service-page .init-2 dt {
  font-size: 30px;
  color: #1c1e23;
  margin-top: 50px;
  font-weight: bold;
}
.service-page .init-2 dd {
  font-size: 16px;
  color: #999898;
  line-height: 24px;
  margin-top: 15px;
}
.service-page .init-3 {
  padding: 40px 0 100px;
  margin-top: 30px;
  border-top: 2px solid #ebe9e9;
}
.service-page .init-3 .init-3-top {
  display: inline-block;
  width: 100%;
  padding-bottom: 60px;
}
.service-page .init-3 .init-3-top li {
  width: 25%;
  float: left;
  text-align: center;
}
.service-page .init-3 .init-3-top li a {
  display: inline-block;
  line-height: 54px;
  font-size: 18px;
  padding: 0 40px;
  color: #1c1e23;
  background-color: transparent;
  cursor: pointer;
  cursor: hand;
  position: relative;
}
.service-page .init-3 .init-3-top li a:after {
  content: '';
  left: 50%;
  bottom: 100%;
  height: 0;
  border-left: 2px solid #ebe9e9;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  position: absolute;
}
.service-page .init-3 .init-3-top li a:hover,
.service-page .init-3 .init-3-top li.active a {
  color: #fff;
  background-color: #003b83;
}
.service-page .init-3 .init-3-top li a:hover:after,
.service-page .init-3 .init-3-top li.active a:after {
  height: 40px;
}
.service-page .init-3 .init-3-bottom li {
  display: block;
  background-color: #f6f7f9;
  display: none;
}
.service-page .init-3 .init-3-bottom li .left {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
}
.service-page .init-3 .init-3-bottom li .right {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-left: -5px;
  padding: 0 5%;
}
.service-page .init-3 .init-3-bottom li .right h3 {
  font-size: 28px;
  color: #1c1e23;
}
.service-page .init-3 .init-3-bottom li .right dd {
  font-size: 18px;
  color: #9e979a;
  line-height: 24px;
  margin-top: 25px;
}
.contact-page .init-1 h2 {
  font-size: 36px;
  color: black;
  font-weight: bold;
  text-align: center;
  padding: 50px 0 20px;
  border-bottom: 1px solid #eee;
  text-transform: capitalize;
}
.contact-page .init-1 ul {
  padding: 80px 0;
}
.contact-page .init-1 ul li {
  text-align: center;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.contact-page .init-1 ul li i {
  width: 100px;
  height: 100px;
  border: 2px solid #ccc;
  border-radius: 100%;
  line-height: 100px;
  text-align: center;
  font-size: 24px;
  color: #969696;
  margin: 0 auto;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.contact-page .init-1 ul li h3 {
  font-size: 14px;
  color: black;
  padding: 20px 0 10px;
  text-transform: capitalize;
}
.contact-page .init-1 ul li p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
}
.contact-page .init-1 ul li:hover {
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
  transform: translateY(-15px);
}
.contact-page .init-1 ul li:hover i {
  color: #e47116;
}
.contact-page .init-2 {
  border-top: 15px solid #d6d6d6;
  border-bottom: 15px solid #d6d6d6;
}
.contact-page .init-2 #map img,
.contact-page .init-2 #map label {
  max-width: none;
  width: auto;
}
.contact-page .init-3 h2 {
  font-size: 36px;
  color: black;
  font-weight: bold;
  text-align: center;
  padding: 50px 0 20px;
  border-bottom: 1px solid #eee;
}
.contact-page .init-3 ul {
  margin: -12px;
  width: 100%;
  padding: 70px 0;
  font-size: 0;
}
.contact-page .init-3 ul li {
  width: 50%;
  padding: 12px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font-size: 14px;
}
.contact-page .init-3 ul li input,
.contact-page .init-3 ul li textarea {
  outline: none;
  background: none;
  border: 1px solid #ccc;
  width: 100%;
  padding: 0 10px;
}
.contact-page .init-3 ul li input::-webkit-input-placeholder,
.contact-page .init-3 ul li textarea::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contact-page .init-3 ul li input:-moz-placeholder,
.contact-page .init-3 ul li textarea:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contact-page .init-3 ul li input::-moz-placeholder,
.contact-page .init-3 ul li textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contact-page .init-3 ul li input:-ms-input-placeholder,
.contact-page .init-3 ul li textarea:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.contact-page .init-3 ul li input:focus,
.contact-page .init-3 ul li textarea:focus {
  border-color: #e47116;
}
.contact-page .init-3 ul li input {
  line-height: 60px;
}
.contact-page .init-3 ul li input[type="submit"] {
  width: auto;
  display: inline-block;
  padding: 10px 50px;
  line-height: normal;
  color: white;
  font-size: 18px;
  background: #e47116;
  margin: 50px auto 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.contact-page .init-3 ul li input[type="submit"]:hover {
  box-shadow: 0 5px 10px 0 #ccc;
  -webkit-box-shadow: 0 5px 10px 0 #ccc;
  -moz-box-shadow: 0 5px 10px 0 #ccc;
  -ms-box-shadow: 0 5px 10px 0 #ccc;
  -o-box-shadow: 0 5px 10px 0 #ccc;
}
.contact-page .init-3 ul li textarea {
  height: 200px;
  max-width: 100%;
  min-width: 100%;
  line-height: 24px;
  padding-top: 15px;
}
.contact-page .init-3 ul li .yam {
  position: relative;
}
.contact-page .init-3 ul li .yam input {
  padding-right: 50%;
}
.contact-page .init-3 ul li .yam .img {
  position: absolute;
  right: 2px;
  top: 20px;
}
.contact-page .init-3 ul li .yam .img img,
.contact-page .init-3 ul li .yam .img p {
  display: inline-block;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  vertical-align: middle;
}
.faq-page .init-2 ul.faq {
  padding: 40px 0;
}
.faq-page .init-2 ul.faq li {
  display: block;
  padding: 20px 25px;
  margin-bottom: 10px;
  background: #f9f9f9;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  word-break: break-word;
}
.faq-page .init-2 ul.faq li h2 {
  font-size: 22px;
  color: #222;
  padding-bottom: 20px;
}
.faq-page .init-2 ul.faq li p {
  font-size: 16px;
  color: #585858;
}
.faq-page .init-2 ul.faq li:hover {
  box-shadow: 0 0 10px 0 #d1d1d1;
  -webkit-box-shadow: 0 0 10px 0 #d1d1d1;
  -moz-box-shadow: 0 0 10px 0 #d1d1d1;
  -ms-box-shadow: 0 0 10px 0 #d1d1d1;
  -o-box-shadow: 0 0 10px 0 #d1d1d1;
}
.faq-page .init-2 ul.faq li:hover h2 {
  color: #e47116;
}

.news-page .init-2 ul.newslist {
  padding: 40px 0;
}
.news-page .init-2 ul.newslist li {
  display: block;
  padding: 20px 25px;
  margin-bottom: 10px;
  background: #f9f9f9;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.news-page .init-2 ul.newslist li h2 {
  font-size: 22px;
  color: #222;
  padding-bottom: 20px;
}
.news-page .init-2 ul.newslist li h2 a {
  color:inherit;
}
.news-page .init-2 ul.newslist li time {
  font-size: 12px;
  color: #585858;
  display: block;
  padding: 10px 0;
}
.news-page .init-2 ul.newslist li p {
  font-size: 16px;
  color: #585858;
}
.news-page .init-2 ul.newslist li:hover {
  box-shadow: 0 0 10px 0 #d1d1d1;
  -webkit-box-shadow: 0 0 10px 0 #d1d1d1;
  -moz-box-shadow: 0 0 10px 0 #d1d1d1;
  -ms-box-shadow: 0 0 10px 0 #d1d1d1;
  -o-box-shadow: 0 0 10px 0 #d1d1d1;
}
.news-page .init-2 ul.newslist li:hover h2 {
  color: #e47116;
}

.news-page .init-2 ul.newslist {
  padding: 40px 0;
}
.news-page .init-2 ul.newslist li {
  display: block;
  padding: 20px 25px;
  margin-bottom: 10px;
  background: #f9f9f9;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.news-page .init-2 ul.newslist li h2 {
  font-size: 22px;
  color: #222;
  padding-bottom: 20px;
}
.news-page .init-2 ul.newslist li time {
  font-size: 12px;
  color: #585858;
  display: block;
  padding: 10px 0;
}
.news-page .init-2 ul.newslist li p {
  font-size: 16px;
  color: #585858;
}
.news-page .init-2 ul.newslist li:hover {
  box-shadow: 0 0 10px 0 #d1d1d1;
  -webkit-box-shadow: 0 0 10px 0 #d1d1d1;
  -moz-box-shadow: 0 0 10px 0 #d1d1d1;
  -ms-box-shadow: 0 0 10px 0 #d1d1d1;
  -o-box-shadow: 0 0 10px 0 #d1d1d1;
}
.news-page .init-2 ul.newslist li:hover h2 {
  color: #e47116;
}
.news-page .init-3 {
  padding: 40px 0;
}
.newsdet-page .init-2 {
  padding: 60px 0 40px;
}
.newsdet-page .init-2 div.newsdet h1 {
  font-size: 40px;
  color: #222;
  text-align: center;
}
.newsdet-page .init-2 div.newsdet .news_date {
  font-size: 14px;
  text-align: center;
  color: #585858;
  display: block;
  padding: 20px 0;
}
.newsdet-page .init-2 div.newsdet .news_contents {
  font-size: 16px;
  color: rgba(0,0,0.6);
  line-height: 28px;
}
.newsdet-page .init-2 div.newsdet .news_contents p {
  padding: 10px 0;
}
.newsdet-page .init-2 div.newsdet .news_contents a {
  color: #e47116;
}
.newsdet-page .init-3 .news_next {
  padding: 40px 0;
  font-size: 18px;
  color: #222;
}
.newsdet-page .init-3 .news_next a {
  color: inherit;
}
.newsdet-page .init-3 .news_next a:hover {
  color: #e47116;
}
.picture-page .init-2 {
  padding: 40px 0;
}
.picture-page .init-2 ul.picture {
  display: inline-block;
  width: 100%;
}
.picture-page .init-2 ul.picture li {
  width: 25%;
  float: left;
  padding: 15px 10px;
}
.picture-page .init-2 ul.picture li a {
  display: block;
  background: #f9f9f9;
  border: 1px solid #f9f9f9;
}
.picture-page .init-2 ul.picture li a em {
  display: block;
  overflow: hidden;
}
.picture-page .init-2 ul.picture li a h2 {
  color: #585858;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 20px 10px;
  text-transform: capitalize;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}
.picture-page .init-2 ul.picture li a h2:hover {
  color: #e47116;
}
.picture-page .init-3 {
  padding: 40px 0;
}

.about-page-company .init-2 {
  padding: 50px 0 60px;
}
.about-page-company .init-2 h2 {
  font-size: 30px;
  color: #394b50;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.about-page-company .init-2 h2 small {
  display: block;
  font-size: 16px;
  text-transform: none;
  line-height: normal;
  font-weight: normal;
}
.about-page-company .init-2 ul {
  margin: -30px -40px;
  display: inline-block;
  padding-top: 70px;
}
.about-page-company .init-2 ul li {
  width: 50%;
  display: inline-block;
  vertical-align: top;
  padding: 30px 40px;
  position: relative;
  margin-left: -3px;
}
.about-page-company .init-2 ul li .img {
  position: absolute;
  left: 45px;
  top: 30px;
}
.about-page-company .init-2 ul li .img img.img2 {
  display: none;
}
.about-page-company .init-2 ul li:hover .img img.img2 {
  display: block;
}
.about-page-company .init-2 ul li:hover .img img.img1 {
  display: none;
}
.about-page-company .init-2 ul li .content {
  padding-left: 80px;
}
.about-page-company .init-2 ul li .content h3 {
  font-size: 16px;
  color: #394b50;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 10px;
}
.about-page-company .init-2 ul li .content p {
  font-size: 13px;
  color: #7b7b7b;
  line-height: 22px;
}
.about-page-company .init-3 {
  background: #f6f7f9;
  position: relative;
}
.about-page-company .init-3 div.left {
  width: 50%;
}
.about-page-company .init-3 div.left img {
  width: 100%;
}
.about-page-company .init-3 div.right {
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.about-page-company .init-3 div.right .box {
  width: 50%;
  float: right;
  padding-left: 5%;
}
.about-page-company .init-3 div.right .box h2 {
  font-size: 25px;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
}
.about-page-company .init-3 div.right .box p {
  font-size: 14px;
  color: black;
  line-height: 27px;
  position: relative;
  margin: 60px 0 40px;
}
.about-page-company .init-3 div.right .box img {
  float: right;
}
.about-page-company .init-3 div.right .box .content {
  position: relative;
}
.about-page-company .init-3 div.right .box i {
  position: absolute;
  font-size: 60px;
  color: #e5e6e8;
}
.about-page-company .init-3 div.right .box i.left {
  top: -10px;
  left: -40px;
}
.about-page-company .init-3 div.right .box i.right {
  bottom: -50px;
  right: -20px;
}
.about-page-company .init-4 {
  padding: 90px 0;
}
.about-page-company .init-4 img {
  margin: 20px 0;
}
.about-page-company .init-4 p {
  font-size: 14px;
  color: black;
  line-height: 28px;
  font-family: Arial;
  padding: 15px 0;
}
@media screen and (max-width: 1440px){
  .about-page-company .init-3 div.right .box p {
    margin: 20px 0;
  }
  .about-page-company .init-3 div.right .box i {
    display: none;
  }
  .about-page-company .init-3 div.right .box .content {
    padding-left: 0;
  }

}
@media screen and (max-width: 1200px){
  .about-page-company .init-3 div.right .box img {
    display: none;
  }
}
.button-group .button {
  background-color: #e47116 !important;
}
@media screen and (max-width: 1200px){
  .faq-page .init-2 ul.faq li p {
    font-size: 14px;
  }
  .faq-page .init-2 ul.faq li h2 {
    font-size: 18px;
  }
  .about-page-company .init-3 div.right .box h2 {
    font-size: 24px;
  }
  .prodet-page .init-2 .prodet-title .content {
    font-size: 13px;
  }
  .prodet-page .init-2 .prodet-img {
    width: 40%;
  }
  .prodet-page .init-2 .prodet-title {
    width: 50%;
  }
  .prodet-page .init-4 h2 em,.prodet-page .init-3 .init-3-top ul li {
    font-size: 14px;
  }
  .newsdet-page .init-2 div.newsdet .news_contents {
    font-size: 14px;
  }
  .newsdet-page .init-2 div.newsdet h1 {
    font-size: 28px;
  }
  #mapContainer {
    height: 360px !important;
  }
  .contact-page .init-3 h2,.contact-page .init-1 h2 {
    font-size: 30px;
  }
  .contact-page .init-3 ul li input {
    line-height: 40px;
  }
  .contact-page .init-3 ul li .yam .img {
    top: 12px;
  }
  .about-page-company .init-2 ul li .content p {
    font-size: 12px;
  }
  .about-page-company .init-2 h2 {
    font-size: 24px;
  }
  .about-page-company .init-2 h2 small {
    font-size: 12px;
  }
  .about-page-company .init-3 div.right .box h2 {
    font-size: 18px;
  }
  .picture-page .init-2 ul.picture li,.product-page .init-3 ul li {
    width: 33.333%;
  }
  .prodet-page .init-2 .prodet-title {
    width: 100%;
    padding-top: 30px;
  }
  .prodet-page .init-2 .prodet-scroll {
    width: 20%;
  }
  .prodet-page .init-2 .prodet-img {
    width: 80%;
  }
  .news-page .init-2 ul.newslist li h2 {
    font-size: 18px;
    padding-bottom: 5px;
  }
  .news-page .init-2 ul.newslist li p {
    font-size: 13px;
  }
  .newsdet-page .init-2 div.newsdet h1 {
    font-size: 20px;
  }
  .newsdet-page .init-2 div.newsdet .news_contents {
    font-size: 12px;
    line-height: 24px;
  }
  .newsdet-page .init-3 .news_next {
    font-size: 14px;
    padding: 20px 0;
  }
  .contact-page .init-3 h2, .contact-page .init-1 h2 {
    font-size: 22px;
  }
  .contact-page .init-1 ul li p {
    font-size: 12px;
  }
}

@media screen and (max-width: 700px){
  .inner-page div#nav {
    display: none;
  }
  .about-page-company .init-2 h2 {
    font-size: 18px;
  }
  .about-page-company .init-2 ul li {
    width: 100%;
    padding: 0;
    margin: 15px 0;
  }
  .about-page-company .init-2 ul {
    margin: 20px 0;
  }
  .about-page-company .init-2 ul li .img {
    left: 10px;
  }
  .about-page-company .init-3 div.left {
    width: 100%;
  }
  .about-page-company .init-3 div.right {
    position: static;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 30px;
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
    transform: translate(0);
  }
  .about-page-company .init-3 div.right .box {
    width: 100%;
    padding-left: 0;
    float: none;
  }
  .about-page-company .init-3 div.right .box h2 {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .picture-page .init-2 ul.picture li, .product-page .init-3 ul li {
    width: 50%;
  }
  .faq-page .init-2 ul.faq li p {
    font-size: 12px;
  }
  .faq-page .init-2 ul.faq li h2 {
    font-size: 15px;
  }
  .product-page .init-2 {
    display: none;
  }
  .product-page .init-3 {
    padding-top: 30px;
  }
  .product-page .init-3 ul li a h2 {
    padding: 5px;
  }
  #cs td, #cs th {
    padding: 5px;
  }
  .prodet-page .init-2 .prodet-title .content {
    font-size: 12px;
  }
  .prodet-page .init-2 .prodet-title a.more.first {
    margin-bottom: 10px;
  }
  .prodet-page .init-4 h2 em, .prodet-page .init-3 .init-3-top ul li {
    font-size: 12px;
  }
  .news-page .init-2 ul.newslist li h2 {
    font-size: 15px;
  }
  .news-page .init-2 ul.newslist li {
    padding: 15px;
  }
  .newsdet-page .init-2 div.newsdet h1 {
    font-size: 16px;
  }
  .newsdet-page .init-2 div.newsdet .news_contents p {
    padding: 5px 0;
  }
  .contact-page .init-1 ul li {
    width: 50% !important;
    float: none;
    display: inline-block;
    vertical-align: top;
    margin-left: -5px;
    margin-top: 20px;
  }
  .contact-page .init-1 ul li:nth-child(2n) {
    margin-left: 0;
  }
  .contact-page .init-1 ul li i {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
  .contact-page .init-1 ul {
    padding: 40px 0;
  }
  .button-group .button:nth-child(2) {
    display: none;
  }
  .contact-page .init-3 ul li {
    width: 100%;
  }
  .contact-page .init-3 ul li input[type="submit"] {
    width: 100%;
    margin-top: 20px;
  }
  .contact-page .init-1 h2 {
    padding: 30px 0 10px;
  }

}
