/* 字体引入 */
@font-face {
  font-family: 'b';
  src: url('../fonts/Rajdhani-Bold.otf');
}
@media screen and (max-width: 1000px){
  .catmold1,.catmold2 {
    display: none !important;
  }

}
@font-face {
  font-family: 'r';
  src: url('../fonts/Lato-Regular.pfb.ttf');
}
@font-face {
  font-family: 'lato-b';
  src: url('../fonts/Lato-Bold.pfb.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 h2 {
  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 h2 .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 h2 {
  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 h2 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 h2 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 {
  padding-top: 15px;
}
#header .container {
  position: relative;
}
#header .container .logo {
  text-align: center;
}
#header .container .menu-box .menu {
  font-size: 0;
  text-align: center;
}
#header .container .menu-box .menu > li {
  display: inline-block;
  margin-right: 90px;
  text-align: left;
  padding-top: 15px;
  line-height: 50px;
  position: relative;
}
#header .container .menu-box .menu > li:last-of-type {
  margin-right: 0;
}
#header .container .menu-box .menu > li > a {
  font: bold 20px arial;
  color: #000;
  text-transform: uppercase;
  transition: .3s;
}
#header .container .menu-box .menu > li:hover > a {
  color: #db001d;
}
#header .container .menu-box .menu > li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
#header .container .menu-box .menu > li .sub-menu {
  position: absolute;
  width: 245px;
  left: 0;
  top: 120%;
  opacity: 0;
  visibility: hidden;
  background: #000;
  transition: .3s;
  z-index: 99;
}
#header .container .menu-box .menu > li .sub-menu li a {
  display: block;
  font: 16px/40px arial;
  color: #fff;
  padding-left: 15px;
  text-transform: capitalize;
  transition: .3s;
}
#header .container .menu-box .menu > li .sub-menu li a:hover {
  background: #db001d;
}
/*二级分类*/
#header .container .menu-box .menu > li > .sub-menu > li:hover > .sub-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}
#header .container .menu-box .menu > li > .sub-menu > li {
	position: relative;
}
#header .container .menu-box .menu > li > .sub-menu > li .sub-menu {
  position: absolute;
  width: 245px;
  left: 100%;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background: #000;
  transition: .3s;
  z-index: 99;
}
#header .container .menu-box .menu > li > .sub-menu > li .sub-menu li a {
  display: block;
  font: 16px/40px arial;
  color: #fff;
  padding-left: 15px;
  text-transform: capitalize;
  transition: .3s;
}
#header .container .menu-box .menu > li > .sub-menu > li .sub-menu li a:hover {
  background: #db001d;
}
/*END*/

#header .container .side {
  position: absolute;
  right: -115px;
  bottom: 0;
  font-size: 0;
}
#header .container .side .search-btn {
  display: inline-block;
  width: 23px;
  height: 22px;
  background: url(../images/search.png) no-repeat;
  cursor: pointer;
}
#header .container .side .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .container .side .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .container .side .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .container .side .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 .side .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 .side .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#header .container .side .h-lan {
  display: inline-block;
  margin-left: 25px;
  position: relative;
}
#header .container .side .h-lan span {
  display: block;
  font: bold 20px/65px arial;
  cursor: pointer;
  color: #000;
  transition: .3s;
}
#header .container .side .h-lan span i {
  margin-left: 5px;
}
#header .container .side .h-lan:hover span {
  color: #db001d;
}
#header .container .side .h-lan:hover .children {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
#header .container .side .h-lan .children {
  position: absolute;
  left: 0;
  top: 120%;
  opacity: 0;
  visibility: hidden;
  background: #000;
  width: 100px;
  transition: .3s;
  z-index: 99;
}
#header .container .side .h-lan .children a {
  display: block;
  font: 16px/40px arial;
  color: #fff;
  padding-left: 15px;
  transition: .3s;
}
#header .container .side .h-lan .children a:hover {
  background: #db001d;
}
#index-banner #banner .swiper-slide {
  height: 880px;
}
#index-banner #banner .swiper-slide:nth-of-type(1) {
  background: url(../images/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 p:nth-of-type(1) {
  text-align: center;
  font: 72px/90px b;
  color: #fff;
  margin-bottom: 40px;
}
#index-banner #banner .swiper-slide .container p:nth-of-type(2) {
  font-size: 0;
  text-align: center;
}
#index-banner #banner .swiper-slide .container p:nth-of-type(2) a {
  display: inline-block;
  width: 220px;
  height: 60px;
  background: #ffffff url(../images/jt.png) center right 20px no-repeat;
  padding: 0 85px 0 25px;
  font: 18px/60px b;
  color: #010101;
  transition: .3s;
}
#index-banner #banner .swiper-slide .container p:nth-of-type(2) a:first-of-type {
  margin-right: 25px;
}
#index-banner #banner .swiper-slide .container p:nth-of-type(2) a:hover,
#index-banner #banner .swiper-slide .container p:nth-of-type(2) a.active {
  background: #db001d url(../images/jt-hv.png) center right 20px no-repeat;
  color: #fff;
}
#index-body .i-tit {
  font-size: 0;
  text-align: center;
}
#index-body .i-tit p {
  display: inline-block;
  vertical-align: middle;
}
#index-body .i-tit p:nth-of-type(1) {
  font: 36px b;
  color: #000;
  max-width: 490px;
  text-align: right;
}
#index-body .i-tit p:nth-of-type(2) {
  font: 36px b;
  color: #ed1d24;
}
#index-body .i-tit span {
  display: inline-block;
  width: 1px;
  height: 117px;
  background: #cdcdcd;
  margin: 0 30px;
  vertical-align: middle;
}
#index-body .i-hot {
  border-bottom: 2px solid #f0f0f0;
}
#index-body .i-hot #ihot .swiper-slide:nth-of-type(2n) {
  background: #f0f0f0;
}
#index-body .i-hot #ihot .swiper-slide:nth-of-type(2n) .inner:before {
  color: #fff;
}
#index-body .i-hot #ihot .swiper-slide:nth-of-type(2n-1) .inner:before {
  color: #f0f0f0;
}
#index-body .i-hot #ihot .swiper-slide .inner {
  position: relative;
  z-index: 2;
  padding: 45px 40px;
}
#index-body .i-hot #ihot .swiper-slide .inner .left {
  width: 50%;
}
#index-body .i-hot #ihot .swiper-slide .inner .left p:nth-of-type(1) {
  font: 16px r;
  color: #ed1d24;
}
#index-body .i-hot #ihot .swiper-slide .inner .left p:nth-of-type(2) {
  font: 24px b;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 215px;
}
#index-body .i-hot #ihot .swiper-slide .inner .left a {
  font: 16px b;
  color: #000000;
  text-transform: uppercase;
}
#index-body .i-hot #ihot .swiper-slide .inner .left a img {
  margin-left: 20px;
  vertical-align: middle;
}
#index-body .i-hot #ihot .swiper-slide .inner .right {
  width: 50%;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
}
#index-body .i-hot #ihot .swiper-slide .inner:before {
  content: attr(data-text);
  position: absolute;
  z-index: 1;
  font-size: 200px;
  font-family: b;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  text-transform: uppercase;
}
#index-body .i-about {
  padding: 75px 0 125px;
}
#index-body .i-about .container .i-tit {
  margin-bottom: 60px;
}
#index-body .i-about .container .i-about-content .left {
  width: 62%;
  padding-right: 25px;
}
#index-body .i-about .container .i-about-content .left p {
  font: 16px/24px r;
  color: #333;
  margin-bottom: 30px;
}
#index-body .i-about .container .i-about-content .left .chuangbox {
  font: 16px/24px r;
  color: #333;
  margin-bottom: 30px;
  line-height: 28px;
}
#index-body .i-about .container .i-about-content .left .chuangbox h1 {
  display: inline;
}
#index-body .i-about .container .i-about-content .left a {
  display: block;
  width: 202px;
  height: 58px;
  background: #ed1d24;
  font: 24px/58px lato-b;
  color: #fff;
  text-align: center;
  text-transform: capitalize;
  transition: .3s;
}
#index-body .i-about .container .i-about-content .left a:hover {
  background: #000;
}
#index-body .i-about .container .i-about-content .right {
  width: 38%;
}
#index-body .i-about .container .i-about-content .right img {
  width: 100%;
}

#index-body .i-about .container .i-about-content .play {
    position: absolute;
    top: 60%;
    left: 80%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-family: "BebasNeue";
    color: white;
    line-height: 1;
    cursor: pointer;
    cursor: hand;
}
#index-body .i-about .container .i-about-content .play img {
   display: block;
    margin: 0 auto 25px;
}
#index-body .i-why {
  padding: 70px 0;
  background: url(../images/i-why-bg.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-why .container .i-why-left {
  width: 54%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#index-body .i-why .container .i-why-left p:nth-of-type(1) {
  font: bold 30px arial;
  color: #ed1d24;
  margin-bottom: 15px;
}
#index-body .i-why .container .i-why-left p:nth-of-type(2) {
  font: bold 60px/70px arial;
  color: #fff;
  max-width: 500px;
}
#index-body .i-why .container .i-why-right {
  width: 46%;
}
#index-body .i-why .container .i-why-right .item {
  padding-left: 80px;
  margin-bottom: 25px;
}
#index-body .i-why .container .i-why-right .item:last-of-type {
  margin-bottom: 0;
}
#index-body .i-why .container .i-why-right .item:nth-of-type(1) {
  background: url(../images/i-why-1.png) left top no-repeat;
}
#index-body .i-why .container .i-why-right .item:nth-of-type(2) {
  background: url(../images/i-why-2.png) left top no-repeat;
}
#index-body .i-why .container .i-why-right .item:nth-of-type(3) {
  background: url(../images/i-why-3.png) left top no-repeat;
}
#index-body .i-why .container .i-why-right .item:nth-of-type(4) {
  background: url(../images/i-why-4.png) left top no-repeat;
}
#index-body .i-why .container .i-why-right .item:nth-of-type(5) {
  background: url(../images/i-why-5.png) left top no-repeat;
}
#index-body .i-why .container .i-why-right .item p:nth-of-type(1) {
  font: bold 24px arial;
  color: #fff;
  margin-bottom: 10px;
}
#index-body .i-why .container .i-why-right .item p:nth-of-type(2) {
  font: 16px/20px r;
  color: #fff;
}
#index-body .i-pro {
  padding: 60px 0 70px;
}
#index-body .i-pro .container .i-tit {
  margin-bottom: 50px;
}
#index-body .i-pro .container .i-tit p:nth-of-type(1) {
  max-width: 365px;
}
#index-body .i-pro .container .i-pro-list {
  overflow: hidden;
}
#index-body .i-pro .container .i-pro-list .grid-box {
  margin: -10px;
}
#index-body .i-pro .container .i-pro-list .grid-box .column {
  padding: 10px;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner:hover .pro-img:after {
  opacity: 1;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner:hover .pro-img a {
  margin-left: 0;
  opacity: 1;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .pro-img {
  margin-bottom: 10px;
  position: relative;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .pro-img > img {
  width: 100%;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .pro-img:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #ed1d24;
  z-index: 1;
  opacity: 0;
  transition: .3s;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .pro-img a {
  position: absolute;
  width: 181px;
  height: 51px;
  border: 1px solid #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font: 18px/49px r;
  color: #fff;
  text-align: center;
  transition: .3s;
  text-transform: capitalize;
  margin-left: -30px;
  opacity: 0;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .pro-img a img {
  margin-left: 25px;
  vertical-align: middle;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .pro-img a:hover {
  background: #000;
  border-color: #000;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .pro-info p:nth-of-type(1) {
  font: bold 24px arial;
  color: #000;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .pro-info p:nth-of-type(1) > a:hover {
  color: #db001d;
}
#index-body .i-pro .container .i-pro-list .grid-box .column .inner .pro-info p:nth-of-type(2) {
  font: 16px/24px r;
  color: #333333;
}
#index-body .i-contact {
  padding: 65px 0 95px;
  background: url(../images/i-contact-bg.jpg) center center no-repeat;
  background-size: cover;
}
#index-body .i-contact .container .i-contact-tit {
  text-align: center;
  margin-bottom: 50px;
}
#index-body .i-contact .container .i-contact-tit p:nth-of-type(1) {
  font: 36px b;
  color: #ed1d24;
  margin-bottom: 10px;
}
#index-body .i-contact .container .i-contact-tit p:nth-of-type(2) {
  font: 16px r;
  color: #fff;
}
#index-body .i-contact .container .form {
  overflow: hidden;
}
#index-body .i-contact .container .form ul {
  font-size: 0;
  margin: -8px -20px;
}
#index-body .i-contact .container .form ul li {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  padding: 8px 20px;
}
#index-body .i-contact .container .form ul li:not(:last-of-type) input {
  width: 100%;
  height: 40px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.55);
  font: 16px/40px r;
  color: #fff;
  padding: 0 15px;
}
#index-body .i-contact .container .form ul li:not(:last-of-type) textarea {
  width: 100%;
  height: 80px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.55);
  font: 16px/40px r;
  color: #fff;
  padding: 0 15px;
}
#index-body .i-contact .container .form ul li:last-of-type p {
  font: 16px r;
  color: #fff;
  margin-bottom: 20px;
}
#index-body .i-contact .container .form ul li:last-of-type input {
  width: 118px;
  height: 32px;
  background: #ed1d24;
  font: 14px r;
  color: #fff;
  border: none;
  outline: none;
}
#index-body .i-news {
  padding: 70px 0;
}
#index-body .i-news .container .i-tit {
  margin-bottom: 50px;
}
#index-body .i-news .container .i-tit p:nth-of-type(1) {
  max-width: 365px;
}
#index-body .i-news .container .i-news-list {
  overflow: hidden;
}
#index-body .i-news .container .i-news-list .grid-box {
  margin: -10px;
}
#index-body .i-news .container .i-news-list .grid-box .column {
  padding: 10px;
}
#index-body .i-news .container .i-news-list .grid-box .column .news-img {
  margin-bottom: 10px;
  position: relative;
}
#index-body .i-news .container .i-news-list .grid-box .column .news-img img {
  width: 100%;
}
#index-body .i-news .container .i-news-list .grid-box .column .news-img .date {
  position: absolute;
  left: 20px;
  top: 20px;
  font: 14px b;
  color: #fff;
  text-transform: uppercase;
}
#index-body .i-news .container .i-news-list .grid-box .column .news-info p:nth-of-type(1) {
  font: 20px b;
  color: #000;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#index-body .i-news .container .i-news-list .grid-box .column .news-info p:nth-of-type(1) a:hover {
  color: #db001d;
}
#index-body .i-news .container .i-news-list .grid-box .column .news-info p:nth-of-type(2) {
  font: 16px/24px r;
  color: #666666;
  margin-bottom: 15px;
}
#index-body .i-news .container .i-news-list .grid-box .column .news-info > a {
  display: block;
  width: 118px;
  height: 35px;
  border: 1px solid #000000;
  font: 16px/33px r;
  color: #000;
  text-align: center;
  text-transform: capitalize;
  transition: .3s;
}
#index-body .i-news .container .i-news-list .grid-box .column .news-info > a:hover {
  background: #000;
  color: #fff;
}
#index-body .i-partner {
  padding: 105px 0;
  background: #f5f5f5;
}
#index-body .i-partner .container #ipart .swiper-slide img {
  width: 100%;
}
#footer {
  background: #000000;
}
#footer .footer-top {
  padding: 60px 0 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}
#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: 35%;
  padding-right: 40px;
}
#footer .footer-top .container .item:nth-of-type(2) {
  width: 16%;
  margin-top: 15px;
}
#footer .footer-top .container .item:nth-of-type(3) {
  width: 25%;
  margin-top: 15px;
}
#footer .footer-top .container .item:nth-of-type(4) {
  width: 24%;
  margin-top: 15px;
}
#footer .footer-top .container .item:nth-of-type(4) ul li {
  line-height: 26px;
  padding-left: 35px;
}
#footer .footer-top .container .item .logo {
  text-align: center;
  margin-bottom: 35px;
}
#footer .footer-top .container .item .logo img{
	width: 100px;
}
#footer .footer-top .container .item .company {
  font: 16px/24px r;
  color: #fff;
}
#footer .footer-top .container .item .tit {
  font: 20px b;
  color: #fff;
  margin-bottom: 15px;
  margin-left: 35px;
}
#footer .footer-top .container .item ul li {
  font: 16px r;
  color: rgba(255, 255, 255, 0.65);
  text-transform: capitalize;
  margin-bottom: 15px;
  position: relative;
}
#footer .footer-top .container .item ul li:nth-child(6)~li {display:none;}
#footer .footer-top .container .item ul li:hover a {
  color: #db001d;
}
#footer .footer-top .container .item ul li:hover img {
  transform: translateX(5px);
}
#footer .footer-top .container .item ul li img {
  margin-right: 10px;
  vertical-align: middle;
  transition: .3s;
}
#footer .footer-top .container .item ul li i {
  color: #db001d;
  position: absolute;
  left: 0;
  top: 5px;
}
#footer .footer-top .container .item ul li:last-of-type {
  margin-bottom: 0;
}
#footer .footer-bottom {
  padding: 20px 15px;
  font: 16px r;
  color: #fff;
  text-align: center;
}
#footer .footer-bottom a:hover {
  color: #db001d;
}
@media (max-width: 1440px) {
  #header .container .side {
    right: 15px;
    top: 0;
  }
}
@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 p:nth-of-type(1) {
    font-size: 30px;
    line-height: 40px;
  }
  #index-body .i-section {
    padding: 60px 0!important;
  }
  #index-body .i-tit {
    text-align: left;
  }
  #index-body .i-tit p {
    display: block;
    font-size: 25px!important;
  }
  #index-body .i-tit p:nth-of-type(1) {
    text-align: left;
  }
  #index-body .i-tit span {
    display: none;
  }
  #index-body .i-about .container .i-tit {
    margin-bottom: 40px;
  }
  #index-body .i-why .container .i-why-left p:nth-of-type(1) {
    font-size: 25px;
    margin-bottom: 0;
  }
  #index-body .i-why .container .i-why-left p:nth-of-type(2) {
    font-size: 25px;
    line-height: 30px;
  }
}
@media (max-width: 768px) {
  #index-body .i-about .container .i-about-content .right {
    width: 100%;
    float: none;
    margin-bottom: 40px;
  }
  #index-body .i-about .container .i-about-content .left {
    width: 100%;
    float: none;
    padding: 0;
  }
  #index-body .i-about .container .i-about-content .left a {
    width: 140px;
    height: 50px;
    font-size: 16px;
    line-height: 50px;
  }
  #index-body .i-why .container .i-why-left {
    width: 100%;
    position: static;
    transform: translateY(0);
    margin-bottom: 40px;
  }
  #index-body .i-why .container .i-why-right {
    width: 100%;
    float: none;
  }
  #footer .footer-top .container .item {
    width: 100%!important;
    margin-bottom: 40px;
  }
  #footer .footer-top .container .item:last-of-type {
    margin-bottom: 0;
  }
  #footer .footer-top .container .item:nth-of-type(1) {
    padding: 0;
  }
}
@media (max-width: 576px) {
  #index-banner #banner .swiper-slide {
    height: 300px;
  }
  #index-banner #banner .swiper-slide .container p:nth-of-type(1) {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
  }
  #index-banner #banner .swiper-slide .container p:nth-of-type(2) {
    display: none;
  }
  #index-body .i-hot #ihot .swiper-slide .inner {
    padding: 40px 15px;
  }
  #index-body .i-hot #ihot .swiper-slide .inner .right {
    position: static;
    width: 100%;
    transform: translateY(0);
    margin-bottom: 40px;
  }
  #index-body .i-hot #ihot .swiper-slide .inner .left {
    float: none;
    width: 100%;
  }
  #index-body .i-hot #ihot .swiper-slide .inner .left p:nth-of-type(2) {
    margin-bottom: 0px;
  }
  #index-body .i-hot #ihot .swiper-slide .inner:before {
    display: none;
  }
  #index-body .i-tit p {
    font-size: 20px!important;
  }
  #index-body .i-why .container .i-why-left p:nth-of-type(1) {
    font-size: 20px;
  }
  #index-body .i-why .container .i-why-left p:nth-of-type(2) {
    font-size: 20px;
  }
  #index-body .i-why .container .i-why-right .item p:nth-of-type(1) {
    font-size: 20px;
  }
  #index-body .i-pro .container .i-pro-list .grid-box .column .inner .pro-info p:nth-of-type(1) {
    font-size: 18px;
  }
  #index-body .i-contact .container .i-contact-tit p:nth-of-type(1) {
    font-size: 20px;
  }
  #index-body .i-contact .container .form ul li {
    width: 100%;
  }
}

#cs{
	width: 100%;
	margin: 20px 0;
}
#cs tr td{
	padding: 5px;
	font-size: 16px;
	border: 1px solid #000;
}
.inner-banner {
  position: relative;
  padding-top: 140px;
  height: 400px;
  background: url("../images/inner-banner.jpg") no-repeat center;
  background-size: cover;
  text-align: center;
  overflow: hidden;
}
.inner-banner .inner-tit {
  color: #fff;
  font-size: 1.8rem;
  text-transform: capitalize;
}
.inner-banner .bread-crumbs {
  font-size: 1.143rem;
}
.inner-banner .bread-crumbs, .inner-banner .bread-crumbs a, .inner-banner .bread-crumbs span {
  color: #fff;
}
.inner-banner .bread-crumbs a:hover {
  color: #db001d;
}
.inner-banner #bdt-header-animation {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.sideBar {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 5;
  background: #383838;
}
.sideBar .inner-main-tit {
  line-height: 61px;
  color: #fafafc;
  font-size: 1.6rem;
  text-transform: capitalize;
}
.sideBar .side-menu {
  position: relative;
  padding-top: 27px;
  cursor: pointer;
  height: 61px;
}
.sideBar .side-menu span.line {
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  -ms-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  display: block;
  width: 14px;
  height: 1px;
  background: #fff;
  margin-bottom: 3px;
}
.sideBar .side-menu.active span.line:first-of-type {
  transform: translate(0, 0) rotate(45deg) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -webkit-transform: translate(0, 0) rotate(45deg) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -moz-transform: translate(0, 0) rotate(45deg) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -ms-transform: translate(0, 0) rotate(45deg) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -o-transform: translate(0, 0) rotate(45deg) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  margin-bottom: -1px;
  margin-top: 6px;
}
.sideBar .side-menu.active span.line:last-of-type {
  transform: translate(0, 0) rotate(-45deg) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -webkit-transform: translate(0, 0) rotate(-45deg) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -moz-transform: translate(0, 0) rotate(-45deg) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -ms-transform: translate(0, 0) rotate(-45deg) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
  -o-transform: translate(0, 0) rotate(-45deg) scale(1, 1) skew(0, 0) rotateX(0) rotateY(0);
}
.sideBar .side-menu.active span.line:nth-of-type(2) {
  display: none;
}
.sideBar .side-menu .cat-list {
  position: absolute;
  right: 0;
  top: 100%;
  background: #f7f7f7;
  width: 184px;
  display: none;
  z-index: 103;
}
.sideBar .side-menu .cat-list li {
  font-size: 16px;
}
.sideBar .side-menu .cat-list li a {
  display: block;
  line-height: 35px;
  color: #101010;
  padding-left: 14px;
}
.sideBar .side-menu .cat-list li a:hover, .sideBar .side-menu .cat-list li a.active {
  color: #fff;
  background: #db001d;
}
.about-page{
	font-family: r;
	font-size: 16px;
}
.inner-page p {
  color: #3a3a3a;
  line-height: 30px;
  font-size: 1.4rem;
}
.about-page .a-tit h3 {
  color: #363636;
  font-size: 2.857rem;
}
.about-page .a-tit p {
  color: #363636;
  margin-top: -6px;
}
.about-page .about-artical {
  padding: 51px 0 63px;
  background: #fafafc;
}
.about-page .about-artical .con-box {
  margin-top: 53px;
}
.about-page .about-artical .con-box img {
  margin-bottom: 50px;
}
.about-page .about-artical .con-box p {
  margin-bottom: 29px;
}
.about-page .a-factory .swiper-slide > a {
  position: relative;
  display: block;
}
.about-page .a-factory .swiper-slide > a img {
  width: 100%;
}
.about-page .a-factory .swiper-slide > a:after {
  transition: 1s ease;
  -webkit-transition: 1s ease;
  -moz-transition: 1s ease;
  -ms-transition: 1s ease;
  -o-transition: 1s ease;
  content:'';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}
.about-page .a-factory .swiper-slide > a:hover:after {
  opacity: 0;
  filter: alpha(opacity=0);
}
.about-page .a-culture {
  padding: 88px 0 155px;
}
.about-page .a-culture .a-tit {
  margin-bottom: 95px;
}
.about-page .i-network {
  background-image: url("../images/a-network-bg.jpg");
  padding-top: 155px;
}
.about-page .i-network .con-box {
  margin-right: -150px;
}
.about-page .i-network .intro, .about-page .i-network .add-sale {
  color: #fff;
}
.about-page .i-network .tit {
  color: #389dee;
}
.about-page .i-network .add-sale {
  max-width: 630px;
  font-size: 1.1423rem;
  margin-top: 14px;
}
.about-page .a-whyUs {
  padding: 118px 0 50px;
  background: #fafafc;
}
.about-page .a-whyUs .why-list {
  margin-top: 91px!important;
}
.about-page .a-whyUs .why-list > .column {
  margin-bottom: 74px!important;
}
.about-page .a-whyUs .why-list > .column > .img {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  width: 116px!important;
  height: 116px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 2px solid #676767;
  background-repeat: no-repeat;
  background-position: center;
}
.about-page .a-whyUs .why-list > .column > .con {
  width: 78.65%!important;
  padding-left: 5.3%!important;
}
.about-page .a-whyUs .why-list > .column > .con h3 {
  color: #6a6a6a;
  font-size: 1.571rem;
}
.about-page .a-whyUs .why-list > .column > .con p {
  font-size: 1.1428rem;
  margin-top: 12px;
  padding-right: 6%;
}
.about-page .a-whyUs .why-list > .column:hover .img {
  background-color: #db001d;
  border-color: #db001d;
}
.about-page .a-whyUs .why-list > .column.custom > .img {
  background-image: url("../images/i-why-ico01.png");
}
.about-page .a-whyUs .why-list > .column.custom:hover .img {
  background-image: url("../images/i-why-ico01-h.png");
}
.about-page .a-whyUs .why-list > .column.quality > .img {
  background-image: url("../images/i-why-ico02.png");
}
.about-page .a-whyUs .why-list > .column.quality:hover .img {
  background-image: url("../images/i-why-ico02-h.png");
}
.about-page .a-whyUs .why-list > .column.cost > .img {
  background-image: url("../images/i-why-ico06.png");
}
.about-page .a-whyUs .why-list > .column.cost:hover .img {
  background-image: url("../images/i-why-ico06-h.png");
}
.about-page .a-whyUs .why-list > .column.service > .img {
  background-image: url("../images/i-why-ico04.png");
}
.about-page .a-whyUs .why-list > .column.service:hover .img {
  background-image: url("../images/i-why-ico04-h.png");
}
.about-page .a-whyUs .why-list > .column.capacity > .img {
  background-image: url("../images/i-why-ico03.png");
}
.about-page .a-whyUs .why-list > .column.capacity:hover .img {
  background-image: url("../images/i-why-ico03-h.png");
}
.about-page .a-whyUs .why-list > .column.ship > .img {
  background-image: url("../images/i-why-ico05.png");
}
.about-page .a-whyUs .why-list > .column.ship:hover .img {
  background-image: url("../images/i-why-ico05-h.png");
}
.product-page {
  padding: 20px 0 60px;
  background: #fafafc;
}
.product-page .pro-list {
  padding: 0;
}
.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*/
}
.prodet-page .pro-main-tit {
  color: #2d2d2d;
  font-size: 2.357rem;
  margin-bottom: 57px;
}
.prodet-page .det-head {
  padding: 56px 0 73px;
  background: #fafafc;
}
.prodet-page .det-head .pro-pic {
  width: 38.6%!important;
}
.prodet-page .det-head .pro-pic img {
  width: 100%;
}

.prodet-page .det-head .pro-det-one {
  padding-left: 11.25%!important;
  width: 61.4%!important;
}
.prodet-page .det-head .pro-det-one .pro-tit {
  color: #2d2d2d;
  font-size: 2.357rem;
}
.prodet-page .det-head .pro-det-one .cname {
  color: #2d2d2d;
  font-size: 1.4286rem;
  margin-top: 2px;
}
.prodet-page .det-head .pro-det-one .pro-links {
  margin: 20px 0 62px;
}
.prodet-page .det-head .pro-det-one .pro-links a {
  margin-bottom: 6px;
  color: #2d2d2d;
  font-size: 1.2rem;
  display: block;
  position: relative;
  background: #fff;
  max-width: 456px;
  line-height: 38px;
  padding: 0 36px 0 26px;
}
.prodet-page .det-head .pro-det-one .pro-links a .icon {
  position: absolute;
  right: 9px;
  top: 7px;
  font-size: 1.5rem;
  color: #e5e5e5;
}
.prodet-page .det-head .pro-det-one .pro-links a:hover {
  background: #db001d;
  color: #fff;
}
.prodet-page .det-head .pro-det-one .pro-img-gallery .image-gallery:after {
  content:'';
  display: block;
  width: 0;
  clear: both;
  height: 0;
}
.prodet-page .det-head .pro-det-one .pro-img-gallery .image-gallery li {
  padding: 0;
  float: left;
  width: 15%;
  margin-right: 8px;
  border: 1px solid #f4f4f4;
}
.prodet-page .det-body {
  padding: 85px 0 153px;
  background: #fff;
}
.prodet-page .det-fot {
  padding: 76px 0 90px;
  background: #fafafc;
}
.prodet-page .det-fot .pro-main-tit {
  margin-bottom: 0;
}
.prodet-page .det-fot .pro-list {
  padding: 0;
  margin-top: 50px;
}
.news-page .new-list {
  padding-top: 78px!important;
}
.news-page .new-list li {
  padding-bottom: 52px;
  margin-bottom: 65px;
  border-bottom: 2px solid #777777;
}
.news-page .new-list li:last-child {
  margin-bottom: 0;
}
.news-page .new-list li .new-con .tit a {
  max-height: 48px;
  overflow: hidden;
  display: block;
  color: #777777;
  font-size: 1.6rem;
  line-height: 24px;
}
.news-page .new-list li .new-con .tit a:hover {
  color: #db001d;
}
.news-page .new-list li .new-con .abst {
  color: #777777;
  font-size: 1.2rem;
  line-height: 27px;
  margin: 35px 0 45px;
}
.news-page .new-list li .new-con .abst a {
  color: #db001d;
}
.news-page .new-list li .new-con .date span {
  color: #777777;
}
.news-page .new-list li .new-con .date span:last-child {
  margin-left: 20px;
  text-transform: capitalize;
}
.news-page .new-list li:last-child {
  margin-bottom: 50px;
}
.news-page .new-list li .new-pic.five {
  width: 30%;
}
.news-page .new-list li .new-con.eleven {
  width: 70%;
  padding-left: 5%;
}
.newdet-page .news {
  padding: 50px 0 60px!important;
  color: #777777;
}
.newdet-page .news .news_title h1 {
  padding-bottom: 10px;
  font-size: 20px;
  text-align: center;
  color: #222;
}
.newdet-page .news .news_date {
  text-align: center;
  line-height: 22px;
  border-bottom: 1px solid #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 a {
  color: #555;
  font-size: 16px;
  line-height: 24px;
}
.newdet-page .news .news_contents p, .newdet-page .news .news_contents div, .newdet-page .news .news_contents span, .newdet-page .news .news_contents table {
  color: #555;
  font-size: 14px;
  line-height: 24px;
  clear: both;
}
.newdet-page .news .news_next {
  width: 99%;
  margin-top: 0px;
  padding-left: 5px;
  border-top: 0px solid #CCC;
  text-align: left;
  padding-top: 10px;
}
.newdet-page .news .news_next a {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #777;
  font-size: 15px;
  margin-left: 5px;
}
.newdet-page .news .news_next a:hover {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #000;
}
.newdet-page .news .newsnav {
  margin-bottom: 30px;
}
.contact-page .c-info {
  padding: 98px 0 110px;
  background: #fafafc;
}
.contact-page .c-info .c-info-box {
  width: 50%;
}
.contact-page .c-info .c-tit h3 {
  color: #2d2d2d;
  font-size: 2.714rem;
}
.contact-page .c-info .c-tit p {
  margin-top: -7px;
}
.contact-page .c-info .clist {
  margin-top: 42px;
  color: #2d2d2d;
  line-height: 36px;
  font-size: 1.4285rem;
  position: relative;
}
.contact-page .c-info .clist i {
  display: block;
  margin-bottom: 26px;
}
.contact-page .c-info .clist .qr-code {
  position: absolute;
  right: 1rem;
  bottom: 0;
  width: 145px;
  padding: 5px;
  background: #e9e9e9;
}
.faq-page .faq-list {
  padding: 88px 0 115px;
}
.faq-page .faq-list dt {
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  padding: 16px 30px 14px;
  background-color: #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: #db001d;
  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;
}
.inner-page .pro-list {
  margin-top: 36px;
}
.inner-page .pro-list h1 {
  font-size: 26px;
  font-weight: bold;
}
.inner-page .pro-list .catmold2 {
  line-height: 28px;
  font-size: 14px;
  margin-bottom: 10px;
  color: #2d2d2d;
}
.inner-page .pro-list .swiper-slide {
  border: 1px solid #f3f3f3;
}
.inner-page .pro-list .swiper-slide .tit {
  text-align: center;
  padding: 25px 0;
  background: #fff;
  font-size: 1.4rem;
}
.inner-page .pro-list .swiper-slide .tit a {
  color: #2d2d2d;
  display: block;
  position: relative;
  padding: 0 42px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.inner-page .pro-list .swiper-slide .tit a:before, .inner-page .pro-list .swiper-slide .tit a:after {
  content:'';
  position: absolute;
  top: 49.9%;
  height: 1px;
  width: 25px;
  background: #000;
}
.inner-page .pro-list .swiper-slide .tit a:before {
  left: 0;
}
.inner-page .pro-list .swiper-slide .tit a:after {
  right: 0;
}
@media screen and (max-width: 768px) {
  .inner-banner {
    height: 200px;
    padding-top: 70px;
  }
  .about-page .a-culture {
    padding: 60px 0 50px;
  }
  .about-page .a-culture .a-tit {
    margin-bottom: 50px;
  }
  .about-page .i-network .add-sale {
    display: none;
  }
  .about-page .i-network .con-box {
    margin-right: 0;
    margin-top: 90%;
  }
  .about-page .a-whyUs {
    padding-top: 60px;
  }
  .about-page .a-whyUs .why-list {
    margin-top: 50px!important;
  }
  .about-page .a-whyUs .why-list > .column > .img {
    display: none;
  }
  .prodet-page .det-head .pro-det-one .pro-links {
    margin: 40px 0;
  }
  .prodet-page .det-head .pro-det-one .pro-img-gallery .image-gallery li {
    width: 25%;
  }
  .prodet-page .det-body {
    padding: 50px 0;
  }
  .contact-page .c-info .clist .qr-code {
    display: none;
  }
  .layer-form .contact100-form-title {
    min-height: 88px;
    font-size: 24px;
  }
  .layer-form input.input100 {
    height: 40px;
  }
  .layer-form textarea.input100 {
    min-height: 110px;
  }
  .faq-page .faq-list dt i.icon {
    display: none;
  }
}

#index-body .a-more{
  background: rgba(224, 0, 0, 0.66);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.4rem;
  width: 169px;
  line-height: 55px;
  text-align: center;
  margin-top: 40px;
}
#index-body .a-more:hover{
  background: #000;
}

.h-lan a{
  display: block;
/*   width: 30px; */
  height: 30px;
/*   text-align: center; */
  line-height: 30px!important;
/*   border-radius: 50%; */
  color: #fff;
/*   background: #555; */
}
.h-lan a:hover{
  background: #db001d;
}
.qr-box{
  width: 100px;
  padding: 5px;
  background: #fff;
  position: absolute;
  left: -120px;
  bottom: 0;
}

.contact-page .cn-form {
  width: 48%;
  padding: 25px 35px 15px;
  border: 1px solid #dddddd;
  background: #fff;
}
.cn-form p {
  font-size: 18px;
  padding: 10px 0;
  color: #666;
}
.cn-form .formtit {
  margin-bottom: 26px;
  font-size: 22px;
  line-height: 23px;
  color: #444;
  text-align: center;
  padding-bottom: 18px;
  background: url(../images/form-tit-bg.jpg) no-repeat center bottom;
}
.cn-form li {
  margin-bottom: 13px;
  color: #444;
}
.cn-form li label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.cn-form .btnTjly {
  font-size: 15px;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  width: 100%;
  height: 38px;
  background: #db001d;
  border: none;
  cursor: pointer;
  color: #fff;
}
.cn-form .btnTjly:hover {
  background: #000;
}
.cn-form .m-form-l {
  width: 49%;
}
.cn-form .m-form-l li .iptTxt {
  font-size: 13px;
  padding: 0 15px;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  width: 100%;
  border: 1px solid #dedede;
  height: 40px;
  outline: none;
  background: #fff;
  color: #777;
}
.cn-form .m-form-l li .iptTxt:focus {
  border-color: #db001d;
  box-shadow: 0, 0, 6px, 6px, #db001d 0 0 0 #000000;
  -webkit-box-shadow: 0, 0, 6px, 6px, #db001d 0 0 0 #000000;
  -moz-box-shadow: 0, 0, 6px, 6px, #db001d 0 0 0 #000000;
  -ms-box-shadow: 0, 0, 6px, 6px, #db001d 0 0 0 #000000;
  -o-box-shadow: 0, 0, 6px, 6px, #db001d 0 0 0 #000000;
  outline: 0;
  background: rgba(251, 185, 8, 0.04);
}
.cn-form .m-form-l li .txtAre {
  width: 95%;
  height: 383px;
  border: 1px solid #dedede;
  outline: none;
  resize: none;
  padding: 14px;
  color: #ccc;
  line-height: 18px;
}
.cn-form .m-form-r {
  width: 49%;
}
.cn-form .m-form-r textarea {
  height: 315px;
  width: 100%;
  border: 1px solid #dedede;
  font-size: 13px;
  padding: 10px 15px;
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
}
.cn-form .m-form-r textarea:focus {
  border-color: #db001d;
  box-shadow: 0, 0, 6px, 6px, #db001d 0 0 0 #000000;
  -webkit-box-shadow: 0, 0, 6px, 6px, #db001d 0 0 0 #000000;
  -moz-box-shadow: 0, 0, 6px, 6px, #db001d 0 0 0 #000000;
  -ms-box-shadow: 0, 0, 6px, 6px, #db001d 0 0 0 #000000;
  -o-box-shadow: 0, 0, 6px, 6px, #db001d 0 0 0 #000000;
  outline: 0;
  background: rgba(251, 185, 8, 0.04);
}
.cn-form div.wpcf7 .ajax-loader {
  display: block;
  margin: 0 auto;
  width: auto;
  background-repeat: no-repeat;
  background-position: center;
}
.cn-form .yzm img {
  width: 19.4%;
  display: inline-block;
}
.cn-form .yzm input {
  font-size: 13px;
  padding: 0 15px;
  width: 75.6%;
  border: 1px solid #dedede;
  height: 30px;
  outline: none;
  background: #fff;
  color: #777;
}
@media screen and (max-width: 1200px){
  .contact-page .c-info .c-info-box,
  .contact-page .cn-form{
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  .qr-box{
    display: none;
  }
}

@media only screen and (min-width: 992px) {
  .i-product .ui.column.grid > [class*="five wide computer"].column,
  .i-product .ui.grid > .column.row > [class*="five wide computer"].column,
  .i-product .ui.grid > .row > [class*="five wide computer"].column,
  .i-product .ui.grid > [class*="five wide computer"].column {
    width: 25% !important;
    float: left;
    padding: 10px;
  }
}
.i-product {
  display: inline-block;
  width: 100%;
}
.i-product .i-tit {
  color: #1b1b1b;
}
.i-product .pro-list {
  margin-top: 69px;
}
.i-product .pro-list > .column {
  margin-bottom: 19px;
}
.i-product .pro-list .con-box {
  position: relative;
  z-index: 10;
}
.i-product .pro-list .con-box a:hover {
  color: #db001d!important;
}
.i-product .pro-list .con-box .inner-box {
  background: #fff;
  padding: 10px 15px 5px;
}
.i-product .pro-list .con-box .inner-box .tit a {
  display: block;
  color: #1b1b1b;
  font-size: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.i-product .pro-list .con-box .inner-box .abst {
  margin: 12px 0 18px;
  color: #9e9c9f;
  font-size: 16px;
  line-height: 28px;
}
.i-product .pro-list .con-box .inner-box .more {
  color: #1b1b1b;
  font-size: 16px;
}
.i-product .pro-list .con-box .inner-box .more .icon {
  margin-left: 14px;
}

.spinner {
  margin: 0 auto;
  width: 50px;
  height: 60px;
  text-align: center;
  font-size: 10px;
  position: absolute;
  top: 60%;
  left: 50%;
  margin-top: -30px;
  margin-left: -25px;
}

.spinner > div {
  background-color: #ebebeb;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: stretchdelay 1.2s infinite ease-in-out;
  animation: stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
       transform: scaleY(1.0);
       -webkit-transform: scaleY(1.0);
     }
}
.grid-box {
  display: inline-block;
  width: 100%;
  margin: -10px;
}
.grid-box .column {
  float: left;
  padding: 10px;
}
.button-group .button {
  background: #db001d !important;
}
.cn-form .m-form-r li.pcsb {
  display: none;
}
@media screen and (max-width: 1000px){
  .prodet-page .det-head .pro-det-one {
    width: 100% !important;
    padding-left: 0 !important;
  }
  .prodet-page .det-head .pro-pic {
    width: 100% !important;
    text-align: center;
  }
  .prodet-page .det-head .pro-pic img {
    margin: 0 auto;
  }
  .prodet-page .pro-main-tit {
    font-size: 2rem;
  }
  .prodet-page .det-fot .pro-list .grid-box .column:last-child {
    display: none;
  }
  .grid-box.four>.column {
    width: 33.3333%;
  }
  .inner-banner .inner-tit {
    font-size: 2.7rem;
  }
  .news-page .new-list li .new-con.eleven {
    width: 100%;
    padding-left: 0;
  }
  .news-page .new-list li .new-pic.five {
    display: none;
  }
  .contact-page .cn-form {
    margin-top: 40px;
  }

}

@media screen and (max-width: 700px){
  #mapContainer {
    height: 250px !important;
  }
  .button-group .button:nth-child(2) {
    display: none;
  }
  .contact-page .c-info .c-tit h3 {
    font-size: 2rem;
  }
  .inner-page p {
    font-size: 15px;
  }
  .cn-form .m-form-l {
    width: 100%;
  }
  .cn-form .m-form-r {
    width: 100%;
  }
  .cn-form .m-form-r li.pcsb {
    display: block;
  }
  .cn-form .m-form-l li.pcsb {
    display: none;
  }
  .cn-form .m-form-r textarea {
    height: 120px;
  }
  .contact-page .cn-form {
    padding: 10px;
  }
  .inner-banner .inner-tit {
    font-size: 2rem;
  }
  .inner-banner .bread-crumbs {
    font-size: 1rem;
  }
  .sideBar .inner-main-tit {
    font-size: 1.2rem;
  }
  .sideBar .side-menu {
    display: none;
  }
  .grid-box.four>.column {
    width: 100%;
  }
  .inner-page .pro-list .swiper-slide .tit {
    padding: 15px 0;
  }
  .grid-box {
    margin: 0;
  }
  .grid-box .column {
    padding: 0;
    margin-bottom: 15px;
  }
  .prodet-page .det-head .pro-det-one .cname {
    font-size: 1.2rem;
  }
  .prodet-page .det-head .pro-det-one .pro-links a {
    font-size: .8rem;
  }
  .prodet-page .pro-main-tit {
    font-size: 1.5rem;
  }
  .news-page .new-list li .new-con .tit a {
    font-size: 1.5rem;
  }
  .news-page .new-list li .new-con .abst {
    font-size: 1rem;
    line-height: 24px;
    margin: 15px 0;
  }
  .news-page .new-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  #cs td, #cs th {
    font-size: 12px;
  }
  .prodet-page .det-head .pro-det-one .cname {
    font-size: .9rem;
  }


}

@media (max-width:992px){
	.inner-banner{
		margin-top: 45px;
	}
}
