/* 字体引入 */
@font-face {
  font-family: 'r';
  src: url('../fonts/SourceHanSansCN-Regular.otf');
}
@font-face {
  font-family: 'm';
  src: url('../fonts/SourceHanSansCN-Medium.otf');
}
@font-face {
  font-family: 'h';
  src: url('../fonts/SourceHanSansCN-Heavy.otf');
}
@font-face {
  font-family: 'l';
  src: url('../fonts/SourceHanSansCN-Light.otf');
}
@font-face {
  font-family: 'b';
  src: url('../fonts/SourceHanSansCN-Bold.otf');
}
@font-face {
  font-family: 'ro-l';
  src: url('../fonts/Roboto-Light.woff.ttf');
}
/* 网站基本宽度（注意修改） */
.container {
  max-width: 1330px;
  padding: 0 15px;
}
#header {
  background: #fff;
}
#header .container {
  position: relative;
  z-index: 999;
  max-width: 1740px;
}
#header .container .h-lan {
  margin: 50px 0 0 30px;
}
#header .container .h-lan a:first-child {
  margin-right: 15px;
}
#header .container .logo {
  margin-top: 15px;
}
#header .container .search-box {
  width: 110px;
  height: 22px;
  border-radius: 11px;
  border: 1px solid #2ba0e0;
  overflow: hidden;
  position: relative;
  margin: 50px 0 0 20px;
}
#header .container .search-box input[type="text"] {
  width: 100%;
  height: 20px;
  border: none;
  outline: none;
  background: #fff;
  padding: 0 30px 0 15px;
}
#header .container .search-box input[type="submit"] {
  width: 14px;
  height: 14px;
  background: url(../images/search.png) center center no-repeat;
  border: none;
  outline: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#header .container .toggle-btn {
  border: none;
  outline: none;
  background-color: transparent;
  width: 46px;
  position: absolute;
  left: 15px;
  top: 15px;
  display: none;
}
#header .container .toggle-btn span {
  display: block;
  height: 1px;
  background: #333;
  margin-bottom: 11px;
  transition: 500ms;
}
#header .container .toggle-btn.active span:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: 13% top;
}
#header .container .toggle-btn.active span:nth-of-type(2) {
  opacity: 0;
}
#header .container .toggle-btn.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: 13% top;
}
#header .container .menu-box {
  padding-right: 45px;
  position: relative;
}
#header .container .menu-box::after {
  content: "";
  width: 1px;
  height: 14px;
  background: #000000;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#header .container .menu-box .menu {
  font-size: 0;
}
#header .container .menu-box .menu > li {
  display: inline-block;
  position: relative;
  margin-left: 65px;
}
#header .container .menu-box .menu > li:first-child {
  margin-left: 0;
}
#header .container .menu-box .menu > li:hover > a {
  color: #2ba0e0;
}
#header .container .menu-box .menu > li:hover > a:after {
  opacity: 1;
}
#header .container .menu-box .menu > li > a {
  font: bold 16px/117px r;
  color: #353535;
  display: block;
  position: relative;
}
#header .container .menu-box .menu > li > a:after {
  content: "";
  width: 100%;
  height: 3px;
  background: #2ba0e0;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transition: 300ms;
}
#header .container .menu-box .menu > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 160px;
  background: #333;
  overflow: hidden;
  display: none;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.08);
}
#header .container .menu-box .menu > li .sub-menu li a {
  color: #fff;
  font: 16px/40px r;
  display: block;
  transition: 300ms;
  text-align: center;
}
#header .container .menu-box .menu > li .sub-menu li a:hover {
  background-color: #2ba0e0;
}
#header .toggle-nav {
  position: fixed;
  left: -270px;
  top: 0;
  padding-top: 80px;
  width: 270px;
  height: 100%;
  background-color: #fff;
  overflow: auto;
  transition: 300ms;
  display: none;
  z-index: 998;
}
#header .toggle-nav.open {
  left: 0;
}
#header .toggle-nav .menu > li {
  padding: 0 15px;
}
#header .toggle-nav .menu > li > a {
  display: block;
  font: 16px/40px r;
  color: #333;
  text-transform: uppercase;
}
#header .toggle-nav .menu > li .sub-menu > li > a {
  display: block;
  font: 14px/35px r;
  color: #333;
  padding-left: 15px;
  text-transform: uppercase;
}
#header .toggle-nav .search-box2 {
  padding: 15px;
}
#header .toggle-nav .search-box2 input {
  width: 80%;
  height: 40px;
  border: none;
  font: 16px r;
  color: #000;
  padding-left: 15px;
  background-color: #ccc;
}
#header .toggle-nav .search-box2 button {
  width: 20%;
  height: 40px;
  border: none;
  background-color: #333;
}
#header .toggle-nav .search-box2 button i {
  font-size: 18px;
  color: #fff;
}
#header .toggle-nav .h-lan2 {
  padding: 10px;
}
#header .toggle-nav .h-lan2 .title {
  font: 16px/20px r;
  color: #333;
  margin-bottom: 15px;
  text-transform: uppercase;
}
#header .toggle-nav .h-lan2 .link {
  display: flex;
  justify-content: space-around;
}
#header .toggle-nav .h-lan2 .link a {
  font: 16px/30px r;
  color: #333;
  padding-left: 40px;
  text-transform: uppercase;
}
#header .toggle-nav .h-lan2 .link a:nth-of-type(1) {
  background: url(../images/en.png) left center no-repeat;
}
#header .toggle-nav .h-lan2 .link a:nth-of-type(2) {
  background: url(../images/cn.png) left center no-repeat;
}
.index-banner .swiper-slide {
  height: 800px;
  overflow: hidden;
}
.index-banner .swiper-slide:nth-of-type(1){
	background: url(../images/banner.jpg) center center no-repeat;
  background-size: cover;	
}
.index-banner .swiper-slide:nth-of-type(2){
	background: url(../images/banner2.jpg) center center no-repeat;
  background-size: cover;	
}
.index-banner .swiper-slide:nth-of-type(3){
	background: url(../images/banner3.jpg) center center no-repeat;
  background-size: cover;	
}
.index-banner .swiper-slide .container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.index-banner .swiper-slide .container p:nth-of-type(1) {
  font: 48px l;
  color: #fff;
}
.index-banner .swiper-slide .container p:nth-of-type(1) span {
  font: 24px ro-l;
  color: #fff;
  text-transform: uppercase;
  margin-left: 15px;
}
.index-banner .swiper-slide .container p:nth-of-type(2) {
  font: 48px h;
  color: #fff;
  margin: 20px 0 25px;
}
.index-banner .swiper-slide .container p:nth-of-type(2) span {
  color: #358bee;
  -webkit-text-stroke: #fff 1px;
}
.index-banner .swiper-slide .container p:nth-of-type(3) {
  max-width: 605px;
  font: 18px/27px r;
  color: #fff;
  margin-bottom: 35px;
}
.index-banner .swiper-slide .container a {
  display: block;
  width: 133px;
  height: 42px;
  background: #1e72d2;
  border-radius: 3px;
  text-align: center;
  font: 14px/42px l;
  color: #fff;
  border-right: 2px solid #004ca3;
  border-bottom: 2px solid #004ca3;
}
.index-banner #banner-prev,
.index-banner #banner-next {
  width: 45px;
  height: 75px;
  pointer-events: auto;
  cursor: pointer;
  text-align: center;
}
.index-banner #banner-prev i,
.index-banner #banner-next i {
  font-size: 30px;
  color: #828282;
  line-height: 75px;
}
.index-banner #banner-prev {
  background: rgba(255, 255, 255, 0.15) url(../images/banner-l.png) center center no-repeat;
}
.index-banner #banner-next {
  background: rgba(255, 255, 255, 0.15) url(../images/banner-r.png) center center no-repeat;
}
.index-banner #banner-page {
  bottom: 21px;
}
.index-banner #banner-page .swiper-pagination-bullet {
  width: 26px;
  height: 26px;
  background: #fff;
  border: 7px solid #bfbfbf;
  opacity: 1;
  margin: 0 8px;
}
.index-banner #banner-page .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border-color: #005abc;
}
.index-product {
  padding-top: 50px;
}
.index-product .top .container .tit {
  text-align: center;
  margin-bottom: 35px;
}
.index-product .top .container .tit p:nth-of-type(1) {
  font: 48px h;
  color: #000;
}
.index-product .top .container .tit p:nth-of-type(1) span {
  color: #088fd8;
}
.index-product .top .container .tit p:nth-of-type(2) {
  font: 30px ro-l;
  color: #088fd8;
  text-transform: uppercase;
  margin: 10px 0 20px;
}
.index-product .top .container .tit p:nth-of-type(3) {
  font: 14px l;
  color: #000;
}
.index-product .top .container .nav {
  font-size: 0;
  text-align: center;
  margin-bottom: 22px;
}
.index-product .top .container .nav li {
  display: inline-block;
}
.index-product .top .container .nav li:hover > a,
.index-product .top .container .nav li.active > a {
  background: #088fd8;
  color: #fff;
}
.index-product .top .container .nav li a {
  display: inline-block;
  padding: 10px 48px;
  font: 18px m;
  color: #000;
  border-radius: 24px;
  transition: 300ms;
}
.index-product .list {
  padding: 35px 0 45px;
  background: #f9f9f9;
}
.index-product .list .container #ip {
  margin-bottom: 30px;
}
.index-product .list .container #ip .swiper-slide {
  position: relative;
  background: #fff;
}
.index-product .list .container #ip .swiper-slide:hover:after {
  opacity: 1;
}
.index-product .list .container #ip .swiper-slide:hover .hover {
  opacity: 1;
  top: 50%;
}
.index-product .list .container #ip .swiper-slide:after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(8, 143, 216, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: 300ms;
}
.index-product .list .container #ip .swiper-slide img {
  width: 100%;
}
.index-product .list .container #ip .swiper-slide .hover {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 60%;
  transform: translateY(-50%);
  text-align: center;
  opacity: 0;
  transition: 300ms;
}
.index-product .list .container #ip .swiper-slide .hover p:nth-of-type(1) {
  font: 18px m;
  color: #fff;
  margin-bottom: 20px;
}
.index-product .list .container #ip .swiper-slide .hover a {
  display: inline-block;
  width: 120px;
  height: 40px;
  border: 1px solid #fff;
  font: 14px/38px l;
  color: #fff;
  text-align: center;
  transition: 300ms;
}
.index-product .list .container #ip .swiper-slide .hover a:hover {
  background: #fff;
  color: #088fd8;
}
.index-product .list .container .pro-link {
  display: block;
  width: 176px;
  height: 42px;
  border: 1px solid #088fd8;
  border-radius: 21px;
  margin: 0 auto;
  font: 19px/40px l;
  color: #000;
  text-align: center;
  transition: 300ms;
}
.index-product .list .container .pro-link:hover {
  background: #088fd8;
  color: #fff;
}
.index-about .top {
  padding: 50px 0 60px;
}
.index-about .top .container .tit {
  text-align: center;
  margin-bottom: 40px;
}
.index-about .top .container .tit p:nth-of-type(1) {
  font: 48px h;
  color: #000;
}
.index-about .top .container .tit p:nth-of-type(1) span {
  color: #088fd8;
}
.index-about .top .container .tit p:nth-of-type(2) {
  font: 30px ro-l;
  color: #088fd8;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.index-about .top .container .tit p:nth-of-type(3) {
  font: 14px l;
  color: #000;
}
.index-about .top .container .com-info {
  background: #f0f5f8;
}
.index-about .top .container .com-info .img-box {
  width: 50%;
}
.index-about .top .container .com-info .img-box img {
  width: 100%;
}
.index-about .top .container .com-info .com-info-r {
  width: 50%;
  padding: 55px 75px 30px 40px;
}
.index-about .top .container .com-info .com-info-r p:nth-of-type(1) {
  font: 30px b;
  color: #000;
  margin-bottom: 25px;
}
.index-about .top .container .com-info .com-info-r p:nth-of-type(2) {
  font: 14px/27px l;
  color: #000;
  margin-bottom: 35px;
}
.index-about .top .container .com-info .com-info-r a {
  display: block;
  width: 146px;
  height: 35px;
  border: 1px solid #088fd8;
  border-radius: 18px;
  text-align: center;
  font: 14px/33px l;
  color: #000;
  transition: 300ms;
}
.index-about .top .container .com-info .com-info-r a:hover {
  background: #088fd8;
  color: #fff;
}
.index-about .bottom {
  padding: 50px 0 30px;
  background: url(../images/iabg.jpg) center center no-repeat;
  background-size: cover;
}
.index-about .bottom .container .list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 25px;
}
.index-about .bottom .container .list .item {
  width: 23%;
  border: 1px solid #fff;
  padding: 30px 0;
  text-align: center;
}
.index-about .bottom .container .list .item p:nth-of-type(1) {
  font: 24px r;
  color: #fff;
  margin-bottom: 20px;
}
.index-about .bottom .container .list .item p:nth-of-type(1) span {
  font: 60px impact;
}
.index-about .bottom .container .list .item p:nth-of-type(2) {
  font: 18px r;
  color: #fff;
}
.index-about .bottom .container .bottom-des {
  font: 16px/32px l;
  color: #fff;
  text-align: center;
}
.index-why {
  padding: 55px 0 60px;
  position: relative;
}
.index-why:after {
  content: "";
  position: absolute;
  width: 65%;
  height: 370px;
  background: #088fd8;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.index-why .container .tit {
  text-align: center;
  margin-bottom: 40px;
}
.index-why .container .tit p:nth-of-type(1) {
  font: 48px h;
  color: #000;
  margin-bottom: 10px;
}
.index-why .container .tit p:nth-of-type(1) span:nth-of-type(1) {
  color: #088fd8;
}
.index-why .container .tit p:nth-of-type(1) span:nth-of-type(2) {
  font-size: 60px;
  color: #088fd8;
}
.index-why .container .tit p:nth-of-type(2) {
  font: 30px ro-l;
  color: #088fd8;
  text-transform: uppercase;
}
.index-why .container .tabs .tabs-nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.index-why .container .tabs .tabs-nav li {
  width: 23%;
  padding: 25px 15px;
  border: 1px solid #088fd8;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: 300ms;
}
.index-why .container .tabs .tabs-nav li:hover,
.index-why .container .tabs .tabs-nav li.active {
  background: #088fd8;
}
.index-why .container .tabs .tabs-nav li:hover:after,
.index-why .container .tabs .tabs-nav li.active:after {
  opacity: 1;
  pointer-events: auto;
}
.index-why .container .tabs .tabs-nav li:hover .info p:nth-of-type(1),
.index-why .container .tabs .tabs-nav li.active .info p:nth-of-type(1),
.index-why .container .tabs .tabs-nav li:hover .info p:nth-of-type(2),
.index-why .container .tabs .tabs-nav li.active .info p:nth-of-type(2) {
  color: #fff;
}
.index-why .container .tabs .tabs-nav li:nth-of-type(1):hover .icon,
.index-why .container .tabs .tabs-nav li:nth-of-type(1).active .icon {
  background: #fff url(../images/iw1-hv.png) center center no-repeat;
}
.index-why .container .tabs .tabs-nav li:nth-of-type(2):hover .icon,
.index-why .container .tabs .tabs-nav li:nth-of-type(2).active .icon {
  background: #fff url(../images/iw2-hv.png) center center no-repeat;
}
.index-why .container .tabs .tabs-nav li:nth-of-type(3):hover .icon,
.index-why .container .tabs .tabs-nav li:nth-of-type(3).active .icon {
  background: #fff url(../images/iw3-hv.png) center center no-repeat;
}
.index-why .container .tabs .tabs-nav li:nth-of-type(4):hover .icon,
.index-why .container .tabs .tabs-nav li:nth-of-type(4).active .icon {
  background: #fff url(../images/iw4-hv.png) center center no-repeat;
}
.index-why .container .tabs .tabs-nav li:after {
  content: "";
  width: 0;
  height: 0;
  border-width: 28px 16px;
  border-style: solid;
  border-color: #088fd8 transparent transparent transparent;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -56px;
  opacity: 0;
  pointer-events: none;
  transition: 300ms;
}
.index-why .container .tabs .tabs-nav li:nth-of-type(1) .icon {
  background: #088fd8 url(../images/iw1.png) center center no-repeat;
}
.index-why .container .tabs .tabs-nav li:nth-of-type(2) .icon {
  background: #088fd8 url(../images/iw2.png) center center no-repeat;
}
.index-why .container .tabs .tabs-nav li:nth-of-type(3) .icon {
  background: #088fd8 url(../images/iw3.png) center center no-repeat;
}
.index-why .container .tabs .tabs-nav li:nth-of-type(4) .icon {
  background: #088fd8 url(../images/iw4.png) center center no-repeat;
}
.index-why .container .tabs .tabs-nav li .icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  margin-right: 5px;
}
.index-why .container .tabs .tabs-nav li .info p:nth-of-type(1) {
  font: 22px b;
  color: #000;
}
.index-why .container .tabs .tabs-nav li .info p:nth-of-type(2) {
  font: 18px l;
  color: #000;
}
.index-why .container .tabs .tabs-content {
  display: none;
}
.index-why .container .tabs .tabs-content.active {
  display: block;
}
.index-why .container .tabs .tabs-content .img {
  width: 50%;
}
.index-why .container .tabs .tabs-content .img img {
  width: 100%;
}
.index-why .container .tabs .tabs-content .des {
  width: 50%;
  padding: 25px 0 0 15px;
}
.index-why .container .tabs .tabs-content .des p:nth-of-type(1) {
  font: 60px impact;
  color: #088fd8;
  padding-left: 60px;
  position: relative;
}
.index-why .container .tabs .tabs-content .des p:nth-of-type(1):after {
  content: "";
  width: 108px;
  height: 3px;
  background: #088fd8;
  position: absolute;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
}
.index-why .container .tabs .tabs-content .des p:nth-of-type(2) {
  font: 36px b;
  color: #000;
  margin-bottom: 70px;
}
.index-why .container .tabs .tabs-content .des ul li {
  font: 18px/30px l;
  color: #fff;
  margin-bottom: 30px;
  padding-left: 25px;
  background: url(../images/iw-jt.png) left 10px no-repeat;
}
.index-why .container .tabs .tabs-content .des ul li:last-of-type {
  margin-bottom: 0;
}
.index-custom {
  padding: 25px 0 60px;
}
.index-custom .container .tit {
  text-align: center;
  margin-bottom: 40px;
}
.index-custom .container .tit p:nth-of-type(1) {
  font: 48px h;
  color: #000;
  margin-bottom: 10px;
}
.index-custom .container .tit p:nth-of-type(1) span {
  color: #088fd8;
}
.index-custom .container .tit p:nth-of-type(2) {
  font: 30px ro-l;
  color: #088fd8;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.index-custom .container .tit p:nth-of-type(3) {
  font: 14px l;
  color: #000;
}
.index-custom .container .img img {
  width: 100%;
}
.index-news {
  padding: 30px 0 80px;
  background: #fbfbfb;
}
.index-news .container .news-l {
  width: 100%;
}
.index-news .container .news-l .tit {
  margin-bottom: 60px;
}
.index-news .container .news-l .tit p:nth-of-type(1) {
  font: 48px h;
  color: #000;
  margin-bottom: 10px;
}
.index-news .container .news-l .tit p:nth-of-type(1) span:nth-of-type(1) {
  color: #088fd8;
}
.index-news .container .news-l .tit p:nth-of-type(1) span:nth-of-type(2) {
  font: 30px ro-l;
  color: #088fd8;
  margin-left: 15px;
}
.index-news .container .news-l .tit p:nth-of-type(2) {
  font: 14px l;
  color: #000;
}
.index-news .container .news-l .list {
  padding: 35px 45px 45px 20px;
  border: 1px solid #e5e5e5;
  background: #fff;
  overflow:hidden;
}
.index-news .container .news-l .list .item {
width:48%; float:left;
  margin-bottom: 45px;
}

.index-news .container .news-l .list .item:nth-child(even) {
width:48%; float:right;
  margin-bottom: 45px;
}

.index-news .container .news-l .list .item:last-of-type {
  margin-bottom: 0;
}
.index-news .container .news-l .list .item .date {
  width: 12%;
  font: 16px arial;
  color: #005abc;
  text-align: center;
}
.index-news .container .news-l .list .item .date span {
  font-size: 48px;
  font-weight: bold;
}
.index-news .container .news-l .list .item .info {
  width: 88%;
}
.index-news .container .news-l .list .item .info p:nth-of-type(1) {
  font: 24px r;
  color: #000;
  margin-bottom: 15px;
}
.index-news .container .news-l .list .item .info p:nth-of-type(1) a {
  border-bottom: 1px solid #000;
}
.index-news .container .news-l .list .item .info p:nth-of-type(1) a:hover {
  color: #005abc;
}
.index-news .container .news-l .list .item .info p:nth-of-type(2) {
  font: 14px/23px l;
  color: #000;
}
.index-news .container .news-r {
  width: 35%;
  padding: 30px 30px 90px 30px;
  border: 1px solid #eeeeee;
  background: #fff;
  margin-top: 50px;
  position: relative;
}
.index-news .container .news-r:after {
  content: "";
  width: 100%;
  height: 30%;
  background: #088fd8;
  position: absolute;
  left: 0;
  top: 0;
}
.index-news .container .news-r #in .swiper-slide .img-box img {
  width: 100%;
}
.index-news .container .news-r #in .swiper-slide .info {
  padding: 15px;
}
.index-news .container .news-r #in .swiper-slide .info p:nth-of-type(1) {
  font: 22px r;
  color: #000;
}
.index-news .container .news-r #in .swiper-slide .info p:nth-of-type(1) a:hover {
  color: #088fd8;
}
.index-news .container .news-r #in .swiper-slide .info p:nth-of-type(2) {
  font: 16px arial;
  color: #000;
  margin: 10px 0;
}
.index-news .container .news-r #in .swiper-slide .info p:nth-of-type(3) {
  font: 14px/23px l;
  color: #000;
}
.index-service {
  padding-top: 45px;
}
.index-service .container .tit {
  text-align: center;
  margin-bottom: 55px;
}
.index-service .container .tit p:nth-of-type(1) {
  font: 48px h;
  color: #000;
  margin-bottom: 10px;
}
.index-service .container .tit p:nth-of-type(1) span {
  color: #088fd8;
}
.index-service .container .tit p:nth-of-type(2) {
  font: 30px ro-l;
  color: #088fd8;
  margin-bottom: 5px;
}
.index-service .container .tit p:nth-of-type(3) {
  font: 14px l;
  color: #000;
}
.index-service .container #iservice .swiper-slide .img img {
  width: 100%;
}
.index-service .container #iservice .swiper-slide .info {
  width: 73%;
  margin: 0 auto;
  background: #0088d2;
  padding: 25px 15px;
  position: relative;
  top: -85px;
  text-align: center;
}
.index-service .container #iservice .swiper-slide .info img {
  margin-bottom: 15px;
}
.index-service .container #iservice .swiper-slide .info p:nth-of-type(1) {
  font: 18px l;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.index-service .container #iservice .swiper-slide .info p:nth-of-type(1):after {
  content: "";
  width: 55px;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
}
.index-service .container #iservice .swiper-slide .info p:nth-of-type(2) {
  font: 14px l;
  color: #fff;
  text-transform: uppercase;
}
#footer .top {
  background: #232323;
}
#footer .top .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer .top .container .item {
  height: auto;
  padding: 75px 0 30px 40px;
  border-right: 1px solid #4f4f4f;
  position: relative;
}
#footer .top .container .item:first-child {
  border-left: 1px solid #4f4f4f;
}
#footer .top .container .item:first-child:before {
  content: "";
  width: 3px;
  height: 86px;
  background: #005abc;
  position: absolute;
  top: 45px;
  left: -2px;
}
#footer .top .container .item:after {
  content: "";
  width: 3px;
  height: 86px;
  background: #005abc;
  position: absolute;
  top: 45px;
  right: -2px;
}
#footer .top .container .item p {
/*  font: 18px m;*/
  color: #fff;
  margin-bottom: 20px;
}
#footer .top .container .item ul li {
  font: 14px l;
  color: #fff;
  margin-bottom: 15px;
}
#footer .top .container .item ul li a:hover {
  color: #005abc;
}
#footer .top .container .item ul li:last-of-type {
  margin-bottom: 0;
}
#footer .top .container .item:nth-of-type(1) {
  width: 14%;
}
#footer .top .container .item:nth-of-type(2) {
  width: 18%;
}
#footer .top .container .item:nth-of-type(3) {
  width: 17%;
}
#footer .top .container .item:nth-of-type(4) {
  width: 25%;
  padding-right: 40px;
}
#footer .top .container .item:nth-of-type(4) ul li {
  padding-left: 30px;
  line-height: 23px;
}

#footer .top .container .item:nth-of-type(5) ul li {
  padding-left: 30px;
  line-height: 23px;
}


#footer .top .container .item:nth-of-type(4) ul li:nth-of-type(1) {
  background: url(../images/map.png) left 3px no-repeat;
}
#footer .top .container .item:nth-of-type(4) ul li:nth-of-type(2) {
  background: url(../images/tel.png) left 3px no-repeat;
}
#footer .top .container .item:nth-of-type(4) ul li:nth-of-type(3) {
  background: url(../images/fax.png) left 3px no-repeat;
}
#footer .top .container .item:nth-of-type(4) ul li:nth-of-type(4) {
  background: url(../images/email.png) left 3px no-repeat;
}

#footer .top .container .item:nth-of-type(5) ul li:nth-of-type(5) {
background:#FF0000;
}

#footer .top .container .item:nth-of-type(6) {
  width: 26%;
}
#footer .top .container .item:nth-of-type(6) img {
  max-width: 170px;
  margin-bottom: 10px;
}
#footer .top .container .item:nth-of-type(5) p:nth-of-type(2) {
  font: 14px l;
  color: #fff;
}
#footer .bottom {
  padding: 10px 15px;
  background: #000;
  text-align: center;
  font: 14px l;
  color: #fff;
}
#footer .bottom a:hover {
  color: #0088d2;
}
@media (max-width: 1200px) {
  .index-why:after {
    display: none;
  }
  .index-why .container .tabs .tabs-content .des ul li {
    color: #000;
  }
}
@media (max-width: 992px) {
  #header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
  }
  #header .container {
    padding: 10px 15px;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.08);
  }
  #header .container .menu-box {
    display: none;
  }
  #header .container .search-box {
    display: none;
  }
  #header .container .h-lan {
    display: none;
  }
  #header .container .logo {
    margin: 0;
    width: 100%;
    text-align: center;
  }
  #header .container .logo img {
    width: 100px;
  }
  #header .container .toggle-btn {
    display: block;
  }
  #header .toggle-nav {
    display: block;
  }
  .index-banner {
    margin-top: 53px;
  }
  .index-banner .swiper-slide {
    height: 500px;
  }
  .index-banner .swiper-slide .container p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-banner .swiper-slide .container p:nth-of-type(2) {
    font-size: 30px;
    margin: 10px 0 15px;
  }
  .index-banner .swiper-slide .container p:nth-of-type(3) {
    font-size: 14px;
  }
  .index-banner #banner-prev,
  .index-banner #banner-next {
    display: none;
  }
  .index-banner #banner-page {
    display: none;
  }
  .index-product .top .container .tit p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-about .top .container .tit p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-why .container .tabs .tabs-nav li {
    width: 48%;
    margin-bottom: 20px;
  }
  .index-why .container .tabs .tabs-nav li:after {
    display: none;
  }
  .index-why .container .tit p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-why .container .tabs .tabs-content .des p:nth-of-type(2) {
    font-size: 30px;
  }
  .index-why .container .tabs .tabs-content .des ul li {
    background: none;
    padding: 0;
  }
  .index-custom .container .tit p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-news .container .news-l {
    width: 100%;
    float: none;
  }
  .index-news .container .news-r {
    width: 100%;
    float: none;
  }
  .index-news .container .news-l .tit p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-service .container .tit p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-service .container .tit p:nth-of-type(2) {
    font-size: 30px;
  }
  #footer .top .container .item {
    height: auto;
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .index-about .top .container .com-info .img-box {
    width: 100%;
    float: none;
  }
  .index-about .top .container .com-info .com-info-r {
    width: 100%;
    float: none;
    padding: 40px;
  }
  .index-about .bottom .container .list .item p:nth-of-type(1) span {
    font-size: 40px;
  }
  .index-why .container .tabs .tabs-content .img {
    width: 100%;
    float: none;
  }
  .index-why .container .tabs .tabs-content .des {
    width: 100%;
    float: none;
    padding-left: 0;
  }
  .index-why .container .tabs .tabs-content .des p:nth-of-type(1):after {
    display: none;
  }
  .index-why .container .tabs .tabs-content .des p:nth-of-type(1) {
    padding: 0;
  }
  .index-why .container .tabs .tabs-content .des p:nth-of-type(2) {
    margin-bottom: 30px;
  }
  #footer .top {
    padding: 40px 0;
  }
  #footer .top .container .item {
    border: none!important;
    padding: 0;
    margin-bottom: 40px;
  }
  #footer .top .container .item:after,
  #footer .top .container .item:before {
    display: none;
  }
  #footer .top .container .item:nth-of-type(1) {
    width: 50%;
  }
  #footer .top .container .item:nth-of-type(2) {
    width: 50%;
  }
  #footer .top .container .item:nth-of-type(3) {
    width: 50%;
  }
  #footer .top .container .item:nth-of-type(4) {
    width: 100%;
    margin-bottom: 0;
  }
  #footer .top .container .item:nth-of-type(5) {
    display: none;
  }
}
@media (max-width: 576px) {
  .index-banner .swiper-slide {
    height: 300px;
  }
  .index-banner .swiper-slide .container p:nth-of-type(1) {
    font-size: 16px;
  }
  .index-banner .swiper-slide .container p:nth-of-type(1) span {
    font-size: 16px;
  }
  .index-banner .swiper-slide .container p:nth-of-type(2) {
    font-size: 18px;
    margin: 5px 0;
  }
  .index-banner .swiper-slide .container p:nth-of-type(3) {
    margin-bottom: 10px;
  }
  .index-product .top .container .tit p:nth-of-type(1) {
    font-size: 20px;
  }
  .index-product .top .container .tit p:nth-of-type(2) {
    font-size: 20px;
    margin: 10px 0;
  }
  .index-product .top .container .nav li a {
    padding: 8px 20px;
    font-size: 14px;
  }
  .index-about .top .container .tit p:nth-of-type(1) {
    font-size: 20px;
  }
  .index-about .top .container .tit p:nth-of-type(2) {
    font-size: 20px;
    margin-bottom: 0;
  }
  .index-about .top .container .com-info .com-info-r p:nth-of-type(1) {
    font-size: 20px;
  }
  .index-about .top .container .com-info .com-info-r {
    padding: 30px;
  }
  .index-about .bottom .container .list .item {
    width: 48%;
    margin-bottom: 20px;
  }
  .index-about .bottom .container .list .item p:nth-of-type(1) span {
    font-size: 30px;
  }
  .index-about .bottom .container .list .item p:nth-of-type(1) {
    font-size: 18px;
  }
  .index-about .bottom .container .list .item p:nth-of-type(2) {
    font-size: 14px;
  }
  .index-about .bottom .container .bottom-des {
    font-size: 14px;
  }
  .index-why .container .tit p:nth-of-type(1) {
    font-size: 20px;
  }
  .index-why .container .tit p:nth-of-type(1) span:nth-of-type(2) {
    font-size: 25px;
  }
  .index-why .container .tit p:nth-of-type(2) {
    font-size: 20px;
  }
  .index-why .container .tabs .tabs-nav li {
    width: 100%;
  }
  .index-why .container .tabs .tabs-nav li .info p:nth-of-type(1) {
    font-size: 18px;
  }
  .index-why .container .tabs .tabs-nav li .info p:nth-of-type(2) {
    font-size: 16px;
  }
  .index-why .container .tabs .tabs-content .des p:nth-of-type(1) {
    font-size: 30px;
  }
  .index-why .container .tabs .tabs-content .des p:nth-of-type(2) {
    font-size: 20px;
  }
  .index-why .container .tabs .tabs-content .des ul li {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .index-custom .container .tit p:nth-of-type(1) {
    font-size: 20px;
  }
  .index-custom .container .tit p:nth-of-type(2) {
    font-size: 20px;
  }
  .index-news {
    padding-bottom: 40px;
  }
  .index-news .container .news-l .tit p:nth-of-type(1) {
    font-size: 20px;
  }
  .index-news .container .news-l .tit p:nth-of-type(1) span:nth-of-type(2) {
    font-size: 20px;
  }
  .index-news .container .news-l .list {
    padding: 20px;
  }
  .index-news .container .news-l .list .item .date {
    float: none;
    display: inline-block;
    width: auto;
    margin-bottom: 20px;
  }
  .index-news .container .news-l .list .item .info {
    width: 100%;
    float: none;
  }
  .index-news .container .news-l .list .item .info p:nth-of-type(1) {
    font-size: 18px;
  }
  .index-news .container .news-l .list .item .date span {
    font-size: 30px;
  }
  .index-news .container .news-r {
    padding: 15px;
  }
  .index-news .container .news-r #in .swiper-slide .info p:nth-of-type(1) {
    font-size: 18px;
  }
  .index-service {
    padding-bottom: 40px;
  }
  .index-service .container .tit p:nth-of-type(1) {
    font-size: 20px;
  }
  .index-service .container .tit p:nth-of-type(2) {
    font-size: 20px;
  }
  .index-service .container #iservice .swiper-slide .info {
    width: 100%;
    top: 0;
  }
  #footer .bottom {
    font-size: 12px;
  }
}
#cs{
  width: 100%;
}
#cs tr td{
  padding: 5px;
  font-size: 16px;
  border: 1px solid #000;
}
.inner-banner{
  padding-top: 158px;
  color: #fff;
/*  text-align: center;*/
text-align:left;
font-weight:800;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../images/inner-banner.jpg");
  background-size: cover;
}

.inner-banner .inner-tit {
  font-size: 45px;
  text-transform: uppercase;
}
.inner-banner .bread-crumbs a,
.inner-banner .bread-crumbs span {
  font-size: 14px;
  color: #fff;
}
.inner-banner .bread-crumbs a:hover {
  color: #d11a1a;
}
.inner-page {
  padding: 55px 0 80px;
}
.inner-page .grid {
  display: inline-block;
  width: 100%;
}
.inner-page .grid > .sideBar.wide.column {
  width: 22%!important;
  float: left;
}
.inner-page .grid > .sideBar.wide.column .side-tit {
  color: #000000;
}
.inner-page .grid > .sideBar.wide.column .side-tit h2 {
  font-size: 24px;
  line-height: 80px;
  background: #0088d2;
  color: #fff;
  padding-left: 15px; 
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.inner-page .grid > .sideBar.wide.column .side-tit span {
  font-size: 14px;
}
.inner-page .grid > .sideBar.wide.column .side-tit span a {
  color: #000;
}
.inner-page .grid > .sideBar.wide.column .side-menu {
  margin-bottom: 64px;
}
.inner-page .grid > .sideBar.wide.column .side-menu li a {
  color: #000000;
  font-size: 16px;
  display: block;
  height: 40px;
  line-height: 40px;
  background: #efefef;
  padding-left: 19px;
  margin-bottom: 2px;
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow:hidden;
}
.inner-page .grid > .sideBar.wide.column .side-menu li li a {
  padding-left: 35px;
  position:relative;
}
.inner-page .grid > .sideBar.wide.column .side-menu li li a:after {
  content:'';
  width:5px;
  height:1px;
  background:#222;
  position:absolute;
  top:50%;
  left:19px;
  display:block;
}
.inner-page .grid > .sideBar.wide.column .side-menu li a:hover,
.inner-page .grid > .sideBar.wide.column .side-menu li a.active {
  background: #2ba0e0;
  color: #ffffff;
}
.inner-page .grid > .sideBar.wide.column .side-menu li a:hover:after,
.inner-page .grid > .sideBar.wide.column .side-menu li a.active:after {
  background:#fff;
}
.inner-page .grid > .sideBar.wide.column .side-contact {
  padding: 10px 24px 10px 16px;
  background: #efefef;
}
.inner-page .grid > .sideBar.wide.column .side-contact p {
  color: #000000;
  font-size: 16px;
  line-height: 25px;
  margin-top: 25px;
}
.inner-page .grid > .sideBar.wide.column .side-contact p i{
	margin-right: 15px;
}
.inner-page .grid > .sideBar.wide.column .side-contact p:first-child {
  margin-top: 0;
}
.inner-page .grid > .sideBar.wide.column .side-contact p a {
  color: #000000;
}
.inner-page .grid > .sideBar.wide.column .side-contact .side-social {
  margin-top: 16px;
}
.inner-page .grid > .sideBar.wide.column .side-contact .side-social a {
  display: inline-block;
  width: 21px;
  height: 21px;
  text-align: center;
  line-height: 21px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: #272636;
  color: #efefef;
}
.inner-page .grid > .sideBar.wide.column .side-contact .side-social a .icon {
  margin-right: 0;
}
.inner-page .grid > .sideBar.wide.column .side-contact .side-social a:hover {
  background: #d11a1a;
  color: #fff;
}
.inner-page .inner-tit {
  color: #000000;
  font-size: 40px;
  text-transform: uppercase;
}
.inner-page .inner-txt {
  color: #000000;
  font-size: 16px;
  line-height: 35px;
}
.inner-page .grid > .page-rightBar.wide.column {
  width: 78%!important;
  padding-left: 3.1rem!important;
  float: right;
}
.prodetFeedback {
  padding: 70px 0 100px;
  background: #fff;
  display: inline-block;
  width: 100%;
}
.prodetFeedback .m-form-l li{
  margin-bottom: 20px;
}
.prodetFeedback .ptForm {
  margin-top: 83px;
}
.prodetFeedback .ptForm label {
  font-size: 16px;
  color: #3d3d3d;
  font-weight: 500;
  margin-bottom: 0;
}
.prodetFeedback .ptForm input,
.prodetFeedback .ptForm textarea {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  background: none;
  color: #3d3d3d;
  font-size: 16px;
  width: 100%;
  outline: none;
  resize: none;
  border: none;
  border-bottom: 1px solid #bfbfbf;
}
.prodetFeedback .ptForm .fbTop {
  margin-bottom: 62px;
}
.prodetFeedback .ptForm .fbTop li {
  float: left;
  width: 31%;
  margin-right: 2%;
}
.prodetFeedback .ptForm .fbTop li:last-child {
  margin-right: 0;
}
.prodetFeedback .ptForm .fbTop li input {
  height: 15px;
  padding: 0 4px;
}
.prodetFeedback .ptForm .fbTop li input:focus {
  height: 43px;
  border-bottom: 3px solid #d11a1a;
}
.prodetFeedback .ptForm .fbBot {
  margin-bottom: 75px;
}
.prodetFeedback .ptForm .fbBot textarea {
  height: 16px;
  overflow: hidden;
}
.prodetFeedback .ptForm .fbBot textarea:focus {
  height: 55px;
  border-bottom: 3px solid #d11a1a;
}
.prodetFeedback .ptForm .fbBot .yzm-box {
  margin-top: 40px;
}
.prodetFeedback .ptForm .fbBot .yzm-box label {
  display: block;
}
.prodetFeedback .ptForm .fbBot .yzm-box input {
  max-width: 397px;
  height: 15px;
  padding: 0 4px;
}
.prodetFeedback .ptForm .fbBot .yzm-box input:focus {
  height: 43px;
  border-bottom: 3px solid #d11a1a;
}
.prodetFeedback .ptForm .fbBot .yzm-box img {
  display: inline-block;
}
.prodetFeedback .ptForm input[type="submit"] {
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  text-transform: capitalize;
  font-size: 16px;
  width: 288px;
  height: 53px;
  border: none;
  background: #d11a1a;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #fff;
  cursor: pointer;
}
.prodetFeedback .ptForm input[type="submit"]:hover {
  background-color: #222;
}
.about-page {
  padding-bottom: 0;
}
.about-page .page-rightBar {
  /*margin-top: 83px;*/
}
.about-page .about-article .video-box {
  margin-bottom: 77px;
}
.about-page .about-article .video-box span {
  margin-top: 9px;
  color: #000000;

  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  display: inline-block;
}
.about-page .about-article .video-box span .icon {
  font-size: 24px;
  vertical-align: middle;
}
.about-page .about-article h1 {
  margin-bottom: 33px;
}
.about-page .about-article .flbox {
  margin-top: 61px;
}
.about-page .a-factory {
  margin-top: 86px;
  margin-bottom: 0;
}
.about-page .a-factory .head-box {
  margin-bottom: 39px;
}
.about-page .a-factory .bot-box {
  padding: 63px 0 49px;
  background: #383838;
}
.about-page .a-factory .bot-box li .con-box .tit{
  margin-top: 10px;
}
.about-page .a-factory .bot-box li .con-box .tit a {
  overflow: visible;
  color: #ffffff;
  font-size: 16px;
}
.about-page .a-factory .bot-box li .con-box .more {
  margin-top: 17px;
  display: inline-block;
  color: #ffffff;
  font-size: 16px;
}
.product-yd-page {
  padding: 0;
}
.product-yd-page .procat-box {
  background: #ececec;
  padding: 47px 0 45px;
}
.product-yd-page .procat-box > .container > .grid .cat-con {
  width: 63.5%!important;
}
.product-yd-page .procat-box > .container > .grid .cat-con .tit a {
  color: #000000;
  font-size: 38px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-yd-page .procat-box > .container > .grid .cat-con .abst {
  color: #000000;
  font-size: 16px;
  line-height: 22px;
  margin: 54px 0 88px;
}
.product-yd-page .procat-box > .container > .grid .cat-con .more {
  color: #000000;
  font-size: 18px;
  text-transform: uppercase;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  display: block;
  width: 219px;
  height: 37px;
  line-height: 37px;
  text-align: center;
  background: #fff;
}
.product-yd-page .procat-box > .container > .grid .cat-con .more:hover {
  background: #d11a1a!important;
  color: #fff;
}
.product-yd-page .procat-box > .container > .grid .cat-pic {
  width: 36.5%!important;
  text-align: right;
}
.product-yd-page .procat-box > .container > .grid .cat-pic a {
  display: inline-block;
}
.product-yd-page .procat-box:nth-of-type(2n) {
  background: #fff;
}
.product-yd-page .procat-box:nth-of-type(2n) > .container > .grid .cat-con .more {
  background: #ececec;
}
/*.cat-box {
  margin-bottom: 50px;
}*/
.cat-box .intro {
  color: #000000;
  font-size: 16px;
  line-height: 23px;
}
.cat-box .return {
  color: #000000;
  font-size: 32px;
  text-transform: uppercase;
  margin-top: 10px;
  cursor: pointer;
}
.cat-box .return .icon {
  margin-right: 0;
  margin-left: 5px;
}
.pro-advantage {
  margin-top: 54px;
}
.pro-advantage .advan-list {
  margin-top: 53px;
}
.pro-advantage .advan-list .item {
  background: #fbfbfb;
}
.pro-advantage .advan-list .item:nth-of-type(2n) {
  background: #efefef;
}
.pro-advantage .advan-list .item .grid {
  display: table;
  height: 386px;
  width: 100%;
}
.pro-advantage .advan-list .item .grid .advan-pic,
.pro-advantage .advan-list .item .grid .advan-con {
  vertical-align: middle;
  display: table-cell;
}
.pro-advantage .advan-list .item .grid .advan-pic {
  width: 21.2%!important;
}
.pro-advantage .advan-list .item .grid .advan-con {
  width: 78.8%!important;
}
.pro-advantage .advan-list .item .grid .advan-con .tit {
  margin-bottom: 20px;
  color: #000000;
  font-size: 28px;
  text-transform: uppercase;
}
.pro-advantage .advan-list .item .grid .advan-con .abst {
  color: #000000;
  font-size: 16px;
  line-height: 34px;
}
.pro-advantage .advan-list .item .grid .advan-con .abst em,
.pro-advantage .advan-list .item .grid .advan-con .abst span {
  display: block;
}
.pro-advantage .advan-list .item .grid .advan-con .abst em {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: -6px;
}
.pro-advantage .advan-list .item .grid .advan-con .abst span {
  margin-bottom: 12px;
}
.pro-advantage .advan-list .item .grid .advan-con .abst span:last-child {
  margin-bottom: 0;
}
.product-page.lg-page{
  padding-bottom: 90px;
}
.product-page .pro-list li {
  float: left;
  width: 24.2%;
  margin-right: 1%;
  margin-bottom: 22px;
}
.product-page .pro-list li .img-box,
.prodet-parts .swiper-wrapper .img-box{
  border: 1px solid #eee;
  display: block;
}
.prodet-parts .swiper-wrapper {
  margin: -10px;
}
.prodet-parts .swiper-wrapper .swiper-slide {
  padding: 10px;
}
.product-page .pro-list li img {
  width: 100%;
}
.product-page .pro-list li:nth-of-type(4n) {
  margin-right: 0;
}
.product-page .pro-list li .tit {
  text-align: center;
  margin-top: 13px;
  height: 40px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.product-page .pro-list li .tit a {
  color: #000000;
  font-size: 14px;
  /*  text-transform: uppercase;*/
}
.prodet-page {
  padding-bottom: 0;
}
.prodet-page .prodet-tit {
  color: #000000;
  font-size: 40px;
  margin-bottom: 60px;
}
.prodet-page .prodet-top .prodet-pic {
	max-width:80%;
  border: 1px solid #ccc;
}
.prodet-page .prodet-top .prodet-pic img {
  width: 100%;
}

.prodet-page .prodet-top .prodet-box-one {
  width: 46.7%;
}
.prodet-page .prodet-top .prodet-box-one .pro-tit {
  color: #000000;
  font-size: 36px;
}

.prodet-page .prodet-top .prodet-box-one .image-thumb {
  margin-bottom: 45px;
}
.prodet-page .prodet-top .prodet-box-one .image-gallery:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
  clear: both;
}
.prodet-page .prodet-top .prodet-box-one  .image-gallery li {
  margin-right: 2%;
  width: 15.5%;
  padding: 0;
}
.prodet-page .prodet-top .prodet-box-one .det {
  margin: 30px 0 30px;
}
.prodet-page .prodet-top .prodet-box-one .det p {
  color: #000000;
  font-size: 20px;
  line-height: 32px;
}
.prodet-page .prodet-top .prodet-box-one .prodet-email {
  display: block;
  width: 245px;
  height: 53px;
  background: url("../images/prodet-fb.jpg") no-repeat center;
}
.prodet-page .prodet-bot {
  margin: 130px 0 69px;
}
.prodet-page .prodet-bot p {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
}
.prodet-parts .swiper-wrapper p {
  background:#fff;
  position:relative;
  z-index:1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding:5px 10px;
}
.prodet-page .prodet-bot td,
.prodet-page .prodet-bot th {
  padding:5px 10px;
}
.prodet-page .prodet-parts .list .item {
  margin-bottom: 117px;
}
.prodet-page .prodet-parts .list .item:last-child {
  margin-bottom: 0;
}
.prodet-page .prodet-parts .list .item .img-box {
  width: 34.2%!important;
}
.prodet-page .prodet-parts .list .item .con-box {
  width: 65.8%!important;
  padding-left: 2.6rem!important;
}
.prodet-page .prodet-parts .list .item .con-box .tit {
  color: #000000;
  font-size: 28px;
  margin-bottom: 26px;
}
.prodet-page .prodet-parts .list .item .con-box .table-box table {
  width: 100%;
}
.prodet-page .prodet-parts .list .item .con-box .table-box table tr {
  vertical-align: top;
}
.prodet-page .prodet-parts .list .item .con-box .table-box table tr:first-child td {
  padding-bottom: 14px;
}
.prodet-page .prodet-parts .list .item .con-box .table-box table tr:last-child td {
  padding-top: 14px;
}
.prodet-page .prodet-parts .list .item .con-box .table-box table tr:nth-of-type(2) td {
  padding: 14px 0;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}
.prodet-page .prodet-parts .list .item .con-box .table-box table tr td {
  color: #000000;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
}
.dz-page {
  padding: 0;
}
.dz-page .dz-tit {
  color: #000000;
  font-size: 30px;
  text-transform: uppercase;
}
.dz-page .dz-top {
  padding: 82px 0 40px;
}
.dz-page .dz-top .intro {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  margin: 21px 0 73px;
}
.dz-page .dz-top img {
  margin: 0 auto;
}
.dz-page {
  padding: 0;
}
.dz-page .cus-service{
  padding: 130px 0 108px;
  background: #e2e2e2;
}
.dz-page .cus-service .dz-tit{
  margin-bottom: 19px;
}
.dz-page .cus-service p{
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 90px;
}
.dz-page .cus-contact{
  height: 273px;
  background: url(../images/cus-contact-pic.jpg) no-repeat center;
  padding-top: 54px;
  overflow: hidden;
}
.dz-page .cus-contact .dz-tit{
  color: #fff;
}
.dz-page .cus-contact p{
  color: #fff;
  font-size: 23px;
  font-weight: bold;
}
.dz-page .cus-contact p span:last-child{
  margin-left: 72px;
}
.dz-page .dz-body {
  padding: 51px 0 110px;
  background: #f0f0f0;
}
.dz-page .dz-tit {
  color: #000000;
  font-size: 30px;
  text-transform: uppercase;
  margin-bottom: 53px;
}
.dz-page .dz-body .last-num .icon,
.dz-page .dz-body .last-num input {
  float: left;
  height: 19px;
  text-align: center;
  line-height: 19px;
}
.dz-page .dz-body .last-num .icon {
  margin-right: 0!important;
  width: 19px;
  font-size: 12px;
  color: #fff;
  background: #b6b6b6;
}
.dz-page .dz-body .last-num input {
  border: 1px solid #7d7d7d;
  background: #f0f0f0;
  color: #202020;
  font-size: 16px;
  -moz-appearance: textfield;
}
.dz-page .dz-body .last-num input::-webkit-outer-spin-button,
.dz-page .dz-body .last-num input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}
.dz-page .dz-body .dz-left-box {
  width: 48.4%!important;
  background: #fff;
}
.dz-page .dz-body .dz-left-box .dz-gallery img {
  width: 100%;
  display: none;
}
.dz-page .dz-body .dz-left-box .dz-gallery img:first-child {
  display: block;
}
.dz-page .dz-body .dz-left-box .select-box {
  padding: 31px 22px 0 27px;
}
.dz-page .dz-body .dz-left-box .select-box .sel-tit {
  color: #202020;
  font-size: 18px;
  margin-bottom: 19px;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li {
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  margin-bottom: 19px;
  cursor: pointer;
  color: #c7c7c7;
  font-size: 15px;
  float: left;
  width: 31.47%;
  margin-right: 2.79%;
  height: 49px;
  line-height: 49px;
  text-align: center;
  border: 1px solid #c7c7c7;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li:nth-of-type(3n) {
  margin-right: 0;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li:hover,
.dz-page .dz-body .dz-left-box .select-box .sel-list li.active {
  color: #d81e06;
  border-color: #d81e06;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li > i {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 16px;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed {
  position: relative;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed input {
  color: #c7c7c7;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: none;
  background: none;
  outline: none;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed input:focus {
  border: 1px solid #d81e06;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed ::-webkit-input-placeholder {
  color: #c7c7c7;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed :-moz-placeholder {
  color: #c7c7c7;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed ::-moz-placeholder {
  color: #c7c7c7;
}
.dz-page .dz-body .dz-left-box .select-box .sel-list li.cus-filed :-ms-input-placeholder {
  color: #c7c7c7;
}
.dz-page .dz-body .dz-left-box .select-box .dz-color {
  margin: 10px 0 41px;
}
.dz-page .dz-body .dz-left-box .settlement-box {
  padding: 0 22px 28px 27px;
}
.dz-page .dz-body .dz-left-box .settlement-box .item {
  padding: 0;
}
.dz-page .dz-body .dz-left-box .settlement-box .last-price span {
  color: #000000;
  font-size: 18px;
  margin-right: 6px;
}
.dz-page .dz-body .dz-left-box .settlement-box .last-price strong {
  color: #d81e06;
  font-size: 26px;
  font-weight: 500;
}
.dz-page .dz-body .dz-left-box .settlement-box .add-to-list {
  width: 31.2%;
}
.dz-page .dz-body .dz-left-box .settlement-box .add-to-list button {
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  cursor: pointer;
  outline: none;
  height: 47px;
  line-height: 47px;
  width: 100%;
  background: #d81e06;
  border: none;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  color: #fff;
  font-size: 18px;
}
.dz-page .dz-body .dz-left-box .settlement-box .add-to-list button:hover {
  background: #222;
}
.dz-page .dz-body .dz-right-box {
  padding-left: 4.9%!important;
}
.dz-page .dz-body .dz-right-box .inner-box {
  height: 100%;
  background: #fff;
}
.dz-page .dz-body .dz-right-box .inner-box .r-tit {
  line-height: 84px;
  background: #474747;
  text-align: center;
  color: #fff;
  font-size: 30px;
}
.dz-page .dz-body .dz-right-box .inner-box .last-table {
  padding-top: 29px;
  text-align: center;
}
.dz-page .dz-body .dz-right-box .inner-box .last-table input[type="checkbox"] {
  width: 16px;
  height: 16px;
  outline: none;
}
.dz-page .dz-body .dz-right-box .inner-box .last-table .t-head > .column {
  color: #000000;
  font-size: 16px;
  text-transform: uppercase;
}
.dz-page .dz-body .dz-right-box .inner-box .last-table .last-list {
  margin-top: 22px;
  padding-top: 25px;
  overflow-y: auto;
  height: 420px;
}
.dz-page .dz-body .dz-right-box .inner-box .last-table .last-list .one-box {
  margin-bottom: 49px;
}
.dz-page .dz-body .dz-right-box .inner-box .last-table .last-list .one-box > .column {
  color: #000000;
  font-size: 18px;
}
.dz-page .dz-body .dz-right-box .inner-box .last-table .last-list .one-box > .column .last-num {
  display: inline-block;
}
.dz-page .dz-body .dz-right-box .inner-box .last-table .last-list .one-box > .column.t_del .icon {
  cursor: pointer;
}
.dz-page .dz-body .dz-right-box .inner-box .total-price {
  padding: 0 16px 0 12px;
  margin-top: 66px;
}
.dz-page .dz-body .dz-right-box .inner-box .total-price span {
  vertical-align: middle;
  color: #000000;
  font-size: 18px;
  display: block;
  border-bottom: 1px dashed #d7d7d7;
  padding-bottom: 14px;
  padding-left: 5px;
}
.dz-page .dz-body .dz-right-box .inner-box .total-price span em {
  color: #d81e06;
  font-size: 26px;
  display: inline-block;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form {
  margin-top: 20px;
  padding: 0 16px 0 17px;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column {
  margin: 0 0 7px 0!important;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-txt,
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-ipt input {
  height: 32px;
  line-height: 32px;
  color: #5a5a5a;
  font-size: 18px;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-txt {
  background: #dbdbdb;
  padding-left: 16px!important;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-ipt input,
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-ipt textarea {
  display: block;
  width: 100%;
  border: none;
  background: #f0f0f0;
  outline: none;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column .ipt-ipt input {
  padding: 0 15px;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column.ipt-area .ipt-txt,
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column.ipt-area .ipt-ipt textarea {
  height: 78px;
  line-height: normal;
  padding: 8px 15px!important;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .grid.two.column.ipt-area .ipt-ipt textarea {
  resize: none;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .f-sub {
  margin-top: 19px;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .f-sub p.fl {
  margin-top: 5px;
  width: 70%;
  color: #d4d4d4;
  font-size: 16px;
  line-height: 18px;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .f-sub input[type="submit"] {
  cursor: pointer;
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  height: 47px;
  background: #d81e06;
  width: 26%;
  color: #fff;
  font-size: 18px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border: none;
}
.dz-page .dz-body .dz-right-box .inner-box .dz-form .f-sub input[type="submit"]:hover {
  background: #222;
}
.news-page .newslist li {
  padding: 0 10px 8px 20px;
  border-bottom: 1px dashed #ccc;
  margin-bottom: 20px;
}
.news-page .newslist li .new-r {
  width: 100%;
}
.news-page .newslist li .new-r h3 {
  font-size: 18px;
  font-weight: 600;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
}
.news-page .newslist li .new-r h3 a {
  color: #555;
  font-size: 18px;
}
.news-page .newslist li .new-r i.new-update,
.news-page .newslist li .new-r p.new-abst {
  color: #777;
  font-size: 14px;
}
.news-page .newslist li .new-r i.new-update {
  display: block;
  margin: 10px 0;
}
.news-page .newslist li .new-r p.new-abst {
  line-height: 1.8em;
  font-size: 15px;
}
.news-page .newslist li .new-r:hover h3 a {
  color: #2ba0e0;
}
.newdet-page .news {

}
.newdet-page .news .news_title h1 {
  padding-bottom: 10px;
  font-size: 20px;
  text-align: center;
  color: #333;
}
.newdet-page .news .news_date {
  font-size: 13px;
  line-height: 22px;
  text-align: center;
  border-bottom: 1px solid #CCC;
  padding-bottom: 5px;
}
.newdet-page .news .news_abst {
  border-bottom: 1px dashed #CCC;
  padding: 10px 0;
  font-size: 14px;
}
.newdet-page .news .news_abst p {
  display: inline-block;
}
.newdet-page .news .news_contents {
  color: #000;
  font-size: 14px;
  line-height: 24px;
  clear: both;
  margin-top: 10px;
  border-bottom: 1px dashed #CCC;
  padding: 20px 0;
}
.newdet-page .news .news_contents a {
  color: #000;
  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: #000;
  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: #999;
  font-size: 15px;
  margin-left: 5px;
}
.newdet-page .news .news_next a:hover {
  width: 100%;
  height: 25px;
  line-height: 25px;
  color: #000;
}
.newdet-page .news .newsnav {
  margin-bottom: 30px;
}
.contact-page {
  padding: 0;
}
.contact-page .c-list-box {
  padding: 68px 0 112px;
  background: #f9f9f9;
}
.contact-page .c-list-box .contactList p{
  font-size: 16px;
  line-height: 25px;
}
.contact-page .c-list-box .contactList .grid-box .column{
  font-size: 16px;
  position: relative;
  padding: 0 15px;
}
.contact-page .c-list-box .contactList .grid-box .column:last-of-type:after{
  display: none;
}
.contact-page .c-list-box .contactList .grid-box .column:after{
  content: "";
  position: absolute;
  width: 1px;
  height: 50px;
  background: #000;
  right: 0;
  top: 0;
}
.contact-page .c-list-box .tit {
  color: #000000;
  font-size: 48px;
  margin-bottom: 86px;
}
.contact-page .c-list-box .c-name {
  color: #676767;
  font-size: 21px;
  margin-bottom: 38px;
}
.contact-page .c-list-box .info {
  line-height: 30px;
  margin-top: 24px;
  font-size: 18px;
  color: #676767;
}
.contact-page .c-list-box .info .add {
  display: block;
  margin-bottom: 40px;
}
.contact-page .c-list-box .info .fa {
  color: #a0a0a0;
  margin-right: 16px;
  font-size: 20px;
  width: 20px;
  text-align: center;
}
.contact-page .c-list-box .info a {
  color: #676767;
}
.faq-page .faq-list dt {
  color: #000000;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}
.faq-page .faq-list dd {
  font-size: 14px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ddd;
}
.cn-form {
  width: 100%;
  height: auto;
  padding: 35px 45px 25px;
  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;
  font-weight: 600;
  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: #333;
  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: #e9322d;
  box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
  -webkit-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
  -moz-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
  -ms-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
  -o-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
  outline: 0;
  background: rgba(255, 43, 66, 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: 237px;
  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: #e9322d;
  box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
  -webkit-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
  -moz-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
  -ms-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
  -o-box-shadow: 0, 0, 6px, 6px, #f8b9b7 0 0 0 #000;
  outline: 0;
  background: rgba(255, 43, 66, 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%;
}
.cn-form .yzm input {
  font-size: 13px;
  padding: 0 15px;
  width: 75.6%;
  border: 1px solid #dedede;
  height: 50px;
  outline: none;
  background: #fff;
  color: #777;
}
::-webkit-input-placeholder {
  color: #777;
}
:-moz-placeholder {
  color: #777;
}
::-moz-placeholder {
  color: #777;
}
:-ms-input-placeholder {
  color: #777;
}
.recommend-product {
  margin: 50px 0;
}
.recommend-product ul li {
  float: left;
  width: 23%;
  margin-left: 2.6%;
}
.recommend-product ul li p {
  color: #222;
  margin-top: 8px;
  text-align: center;
}
.recommend-product ul li:first-child {
  margin-left: 0;
}
.zoom-box {
  position: relative;
}
.zoom-box .pic-zoom {
  opacity: 0;
  filter: alpha(opacity=0);
  transition: 0.4s ease;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  -ms-transition: 0.4s ease;
  -o-transition: 0.4s ease;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6) url(../images/zoom.png) no-repeat center center;
}
.zoom-box:hover .pic-zoom {
  opacity: 1;
  filter: alpha(opacity=1);
}
.zoom-pic {
  overflow: hidden;
}
.zoom-pic img {
  transition: 0.6s ease;
  -webkit-transition: 0.6s ease;
  -moz-transition: 0.6s ease;
  -ms-transition: 0.6s ease;
  -o-transition: 0.6s ease;
}
.zoom-pic img:hover {
  transform: translate(0, 0) rotate(0) scale(1.05, 1.05) skew(0, 0) rotateX(0) rotateY(0);
  -webkit-transform: translate(0, 0) rotate(0) scale(1.05, 1.05) skew(0, 0) rotateX(0) rotateY(0);
  -moz-transform: translate(0, 0) rotate(0) scale(1.05, 1.05) skew(0, 0) rotateX(0) rotateY(0);
  -ms-transform: translate(0, 0) rotate(0) scale(1.05, 1.05) skew(0, 0) rotateX(0) rotateY(0);
  -o-transform: translate(0, 0) rotate(0) scale(1.05, 1.05) skew(0, 0) rotateX(0) rotateY(0);
}
.white-zoom {
  position: relative;
}
.white-zoom:after {
  transition: 0.2s linear;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  content: '';
  position: absolute;
  z-index: 2;
  width: 1px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  left: 50%;
  top: 50%;
}
@media screen and (min-width: 768px) {
  .around-line > li {
    float: left;
    position: relative;
    cursor: pointer;
  }
  .around-line > li > a {
    color: #fff;
    display: block;
    text-decoration: none;
  }
  .around-line > li:before,
  .around-line > li:after {
    content: '';
    opacity: 0;
    filter: alpha(opacity=0);
    transition: 0.5s ease;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    -ms-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    position: absolute;
  }
  .around-line > li:before {
    top: 0;
    left: 0;
    right: 100%;
    bottom: 100%;
    border-top: 1px solid rgba(0, 148, 217, 0.8);
    border-left: 1px solid rgba(0, 148, 217, 0.8);
  }
  .around-line > li:after {
    right: 0;
    bottom: 0;
    top: 100%;
    left: 100%;
    border-bottom: 1px solid rgba(0, 148, 217, 0.8);
    border-right: 1px solid rgba(0, 148, 217, 0.8);
  }
  .around-line > li:hover:before {
    bottom: 0;
    right: 0;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .around-line > li:hover:after {
    top: 0;
    left: 0;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .around-line > li.active:before {
    bottom: 0;
    right: 0;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .around-line > li.active:after {
    top: 0;
    left: 0;
    opacity: 1;
    filter: alpha(opacity=100);
  }
}
.m-page {
  text-align: center;
  line-height: 22px;
  font-size: 0;
  letter-spacing: -0.307em;
  word-wrap: normal;
  white-space: nowrap;
  color: #d81e06;
  margin-top: 38px;
}
.m-page a,
.m-page span {
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100%;
  margin: 0 5px;
  border: 1px solid #ddd;
  font-size: 16px;
  letter-spacing: normal;
  background: #fff;
  -webkit-transition: background-color 0.1s;
  -moz-transition: background-color 0.1s;
  -ms-transition: background-color 0.1s;
  -o-transition: background-color 0.1s;
  transition: background-color 0.1s;
}
.m-page a {
  text-decoration: none;
  color: #000;
}
.m-page a:first-child,
.m-page a:last-child {
  background-image: url(../images/m-page-arr-r.png);
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #cdcdcd;
  box-shadow: none;
}
.m-page a:first-child {
  background-image: url(../images/m-page-arr-l.png);
}
.m-page a:hover {
  color: #fff;
  background-color: #d11a1a;
}
.m-page a:active {
  background: #d11a1a;
}
.m-page span.current,
.m-page span.current:hover,
.m-page span.current:active {
  cursor: default;
  color: #fff;
  background: #d11a1a;
}
.fbTop .screenshot,
.screenshot_form{
  display: none!important;
}
/*
.logo a img {
  width: auto;
  height: auto;
  max-width:65%;
  display: block;
}*/



.tab-tab  table td{border: 1px solid #f7f7f7;
  line-height: 1.5em;
  padding-left: 20px;
  padding-top: 6px;
  padding-bottom: 6px;}
.tab-tab table{
  border: 1px solid #f7f7f7;

}

#test-video,
.video-layer{
  position: fixed;
  display: none;
}
#test-video{
  width: 690px;
  height: 400px;
  top:30%;
  left: 50%;
  margin-left: -345px;
  z-index: 1001;
}
.video-layer{
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background:rgba(0,0,0,.8);
  z-index: 1000;
}
.video-box img{
  cursor: pointer;
}
.pp_gallery ul a img{
  width: 50px;
}
a.pp_previous,
a.pp_next,
#hoverNav a{
  transition: 0s;
}


.about-tab .a {    font-size: 30px;}



.i-scroll-bar {
  padding-bottom: 98px;
  /*background:#f3f3f3;*/
}
.i-scroll-bar .head-box {
  margin-bottom: 75px;
}
.i-scroll-bar .head-box .tab-arr {
  margin-top: 31px;
}
.i-scroll-bar .head-box .tab-arr .fa,
.i-scroll-bar .head-box .tab-arr a {
  display: inline-block;
  height: 39px;
  line-height: 39px;
  text-align: center;
  background: #000;
  transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  -o-transition: 0.3s ease;
}
.i-scroll-bar .head-box .tab-arr .fa:hover,
.i-scroll-bar .head-box .tab-arr a:hover {
  background: #2ba0e0;
}
.i-scroll-bar .head-box .tab-arr .fa {
  margin-right: 5px;
  width: 42px;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  position: relative;
  top: 0;
}
.i-scroll-bar .head-box .tab-arr a {
  padding: 0 37px;
  color: #fff;
  font-size: 16px;
}
.i-scroll-bar .scroll-box {
  margin: -10px;
}
.i-scroll-bar .scroll-box li {
  width: 338px;
  padding: 10px;
}

.i-scroll-bar .scroll-box li .con-box a:hover {
  color: #ffffff!important;
}
.i-scroll-bar .scroll-box li .con-box .tit a {
  display: block;
  color: #000000;
  font-size: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.i-scroll-bar .scroll-box li .con-box .abst {
  color: #000000;
  font-size: 16px;
  line-height: 20px;
  margin: 21px 0 27px;
}
.i-scroll-bar .scroll-box li .con-box .more {
  color: #000000;
  font-weight: bold;
}



.wpulike.wpulike-default{
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default{
  display: block;
}
.post-views-box{
  position: relative;
  margin: -50px 0 0 100px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png)!important;
  filter: none;
}
.wpulike{
  z-index: 10;
}
.wpulike.post-views-box{
  z-index: 5;
}


.nivo-directionNav{
  display: none;
}
.spinner {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.container1 > div, .container2 > div, .container3 > div {
  width: 6px;
  height: 6px;
  background-color: #333;

  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.circle1 { top: 0; left: 0; }
.circle2 { top: 0; right: 0; }
.circle3 { right: 0; bottom: 0; }
.circle4 { left: 0; bottom: 0; }

.container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.container3 .circle1 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
}
.button-group .button {
  background-color:#d11a1a !important;
}

.about-article p{
  font-size: 14px;
  line-height: 32px;
  margin-bottom: 10px;
}

.about-article h4{
  font-size: 20pt;
}

.about-article p strong{
  font-size: 16px;
}

.side-contact .add{

  font-size: 14px;
}
.con{background: #f8f8f8;}

.init-5 .app-list{
  margin-top: 107px;
}
.init-5 .app-list>div .the_pic img{
  width: 100%;
}
.init-5 .app-list>div .the_con{
  padding: 0 105px 0 72px;
}
.init-5 .app-list>div .layout-tab{
  height: 100%;
}
.init-5 .app-list>div .the_con .tit{
  color: #363636;
  font-size: 29px;
  line-height: 43px;
}
.init-5 .app-list>div .the_con .intro{
  margin-top: 35px;
  color: #363636;
  line-height: 24px;
  font-size: 14px;
}
.about-article h3 { font-size: 26px;
  text-align:center;
  font-weight: bold;
}

.about-article p { font-size: 14x;
  /*text-align:center;*/
}


.about-article h4 { font-size: 16px;
  text-align:center;
  font-weight: bold;
}

.about-article h5 { font-size: 14px;
  text-align:center;
  font-weight: bold;
}
@media screen and (max-width: 1000px){
  .inner-page .grid > .sideBar.wide.column {
    display: none;
  }
  .inner-page .grid > .page-rightBar.wide.column {
    width: 100% !important;
    padding-left: 0 !important;
  }
  .product-page .pro-list li,.product-page .pro-list li:nth-of-type(4n) {
    width: 32%;
    margin-right: 2%;
  }
  .product-page .pro-list li:nth-of-type(3n) {
    margin-right: 0;
  }
  .cat-box .return {
    font-size: 24px;
  }
  .i-scroll-bar .scroll-box li .con-box .tit a {
    font-size: 18px;
    margin-top: 5px;
  }
  .about-page .a-factory .bot-box li .con-box .more {
    margin-top: 5px;
  }
  .inner-page .inner-tit {
    font-size: 30px;
  }
  .product-page.lg-page {
    padding-bottom: 30px;
  }
  .prodet-page .prodet-top .prodet-box-one,
  .prodet-page .prodet-top .prodet-pic {
    width: 100%;
    float: none;
  }
  .prodet-page .prodet-top .prodet-pic {
    text-align: center;
  }
  .prodet-page .prodet-top .prodet-pic img {
    width: auto;
    margin: 0 auto;
  }
  .prodet-page .prodet-tit {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .prodetFeedback .ptForm .fbBot {
    margin-bottom: 50px;
  }
  .contact-page .c-list-box .tit {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .inner-banner .inner-tit {
    font-size: 38px;
  }
  .contact-page .c-list-box .contactList .grid-box .column{
    margin-bottom: 20px;
  }
  .contact-page .c-list-box .contactList .grid-box .column:after{
    display: none;
  }

}

@media screen and (max-width: 700px){
  .inner-banner {
    height: 260px;
    padding-top: 100px;
  }
  .inner-banner .inner-tit {
    font-size: 28px;
  }
  .inner-banner .bread-crumbs a, .inner-banner .bread-crumbs span {
    font-size: 12px;
  }
  .about-article p {
    font-size: 12px;
    line-height: 24px;
  }
  .about-page .a-factory {
    margin-top: 30px;
    padding-bottom: 30px;
  }
  .prodetFeedback .ptForm .fbTop li {
    width: 100%;
    padding-top: 10px;
  }
  .prodetFeedback .ptForm .fbTop li input {
    height: 40px;
  }
  .prodetFeedback .ptForm .fbBot textarea {
    height: 120px;
  }
  .prodetFeedback .ptForm .fbBot textarea:focus {
    height: 120px;
  }
  .prodetFeedback .ptForm .fbBot .yzm-box input {
    max-width: 200px;
    height: 40px;
  }
  .prodetFeedback .ptForm {
    margin-top: 40px;
  }
  .product-page .pro-list li, .product-page .pro-list li:nth-of-type(3n),.product-page .pro-list li:nth-of-type(4n) {
    width: 49%;
    margin-right: 2%;
  }
  .product-page .pro-list li:nth-of-type(2n) {
    margin-right: 0;
  }
  .prodet-page .prodet-tit {
    font-size: 20px;
  }
  .prodetFeedback {
    padding: 40px 0;
  }
  .news-page .newslist li .new-r h3 a {
    font-size: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    max-height: 43px;
  }
  .news-page .newslist li .new-r p.new-abst {
    font-size: 12px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
  }
  .newdet-page .news .news_title h1 {
    font-size: 16px;
  }
  .newdet-page .news .news_abst,.newdet-page .news .news_contents p, .newdet-page .news .news_contents div, .newdet-page .news .news_contents span, .newdet-page .news .news_contents table {
    font-size: 12px;
  }
  .newdet-page .news .news_next a {
    font-size: 12px;
    line-height: 18px;
  }
  .contact-page .c-list-box .tit {
    font-size: 24px;
  }
  .contact-page .c-list-box .c-name {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .contact-page .c-list-box .info {
    font-size: 13px;
    line-height: 24px;
  }
  .button-group .button#zh_en {
    display: none !important;
  }
.cn-form{
		padding: 35px 15px;
	}
	.cn-form .m-form-l{
		width: 100%;
		float: none;
	}
.cn-form .m-form-r{
		width: 100%;
		float: none;
	}
}
.weix{ width:130px; overflow:hidden; margin-right:50px;}


@media screen and (max-width: 700px){.index-news .container .news-l .list .item:nth-child(even) {
    width: 100%;
    float: right;
    margin-bottom: 45px;
}


.index-news .container .news-l .list .item {
width:100%; float:left;
  margin-bottom: 45px;
}



}

