html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline}:focus{outline:0}table{border-collapse:separate;border-spacing:0}caption,th,td{text-align:left;font-weight:400}a img,iframe{border:0}ol,ul{list-style:none}input,textarea,select,button{font-size:100%;font-family:inherit}select{margin:inherit}ol{margin-left:2em}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}.clearfix{display:inline-block}.clearfix{display:block}
/*******reset end**********/
body {
  /* font: normal 100% Arial, Helvetica, sans-serif; */
  font:14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
  background: #fff;
}
div.mainWrap{min-width: 1600px}
ul {
  padding: 0px;
}
.w1200 {
  width: 1200px;
}
.w1400{
  width: 1400px;
  margin: 0 auto;
}
.emptyWrap{
  width: 1200px;
  min-height: 400px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 100px;
  color: #8d8989;
  text-align: center;
  background: url("../img/empty-bg.png") no-repeat center center;
}
#fixheader{
  position: absolute;
  left: 0;
  top:0;
  z-index: 99999;
  width: 100%;
}
.toMBg{
  /*background-color: rgba(255,255,255,0.5);*/
}
.haveBgColor{
  background-color: rgba(255,255,255,1);
}
#fixheader #commonheader{
  width:1400px;
  margin: 0 auto;
}
#topHeader {
  height: 80px;
  margin: 0 auto;
  position: relative;
}
#topHeader .log-left {
  position: absolute;
  left: 0px;
  top: 0px;
}
#topHeader .tel-right {
  position: absolute;
  right: 0px;
  top: 0px;
  line-height: 80px;
  font-size: 16px;
  color: #fff;
}
div#seqtip {
  background: #fff;
  min-width: 1400px;
  height: 1px;
  margin: 0 auto;
}
div#topNavWrap {
  height: 70px;
  margin: 0 auto;
  position: relative;
}
ul#firstNavUl {
  height: 70px;
}
ul#firstNavUl li.firstLi {
  list-style: none;
  position: relative;
  line-height: 70px;
  float: left;
}
ul#firstNavUl li.firstLi a{
  font-size:16px;
}
ul#firstNavUl li.firstLi a.firstA {
  display: block;
  line-height: 70px;
  color: #b5b5b5;
  min-width: 130px;
  text-align: center;
  text-decoration: none;
  font-weight: bolder;
}
ul#firstNavUl li.firstLi a.firstA:hover{
  color: #fff;
}
div.sonMenu li a:hover{
  color: #dcdcdc;
}
div.sonMenu {
  display: none;
  position: absolute;
  left: -20%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10000;
  height: 70px;
  min-width:420px;
  padding-left:20px;
}
div.sonMenu li {
  list-style: none;
  position: relative;
  display: inline-block;
}
div.sonMenu li a {
  display: inline-block;
  line-height: 70px;
  color: #fff;
  margin-right:20px;
  text-align: center;
  text-decoration: none;
  font-weight: bolder;
}
ul#firstNavUl li.firstLi a.active-a {
  color: #fff;
  font-weight: bolder;
}

div#topNavWrap .rightFind{
  position: absolute;
  right: -210px;
  top: 0px ;
  height: 70px;
}
div#topNavWrap .rightFind .langSelect{
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
div#topNavWrap .rightFind .langSelect a{
  width:30px;
  height: 18px;
  display: inline-block;
  text-decoration: none;
}
div#topNavWrap .rightFind .langSelect a:hover img{
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}
div#topNavWrap .rightFind .langSelect a img{
  width:29px;
  height: 18px;
}
/*****首页banner*****/
#topBannerWrap {
  /*background-color: #257fbb;*/
}
.mySwiper {
  width: 100%;
  height: 700px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.mySwiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 700px;
}
.mySwiper .hoverscalc {
  position: absolute;
  cursor: pointer;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.mySwiper .hoverscalc:hover {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -o-transform: scale(1.3);
  -ms-transform: scale(1.3);
}
/* 定义放大复原动画 */
@keyframes zoomInOut {
  0% {
    transform: scale(1); /* 初始状态，无缩放 */
  }
  50% {
    transform: scale(1.5); /* 中间状态，放大1.5倍 */
  }
  100% {
    transform: scale(1); /* 结束状态，复原到初始大小 */
  }
}

/* 应用动画到图片 */
.zoom-animation {
  animation: zoomInOut 2s; /* 应用zoomInOut动画，持续时间为2秒 */
  animation-fill-mode: forwards; /* 动画结束后保持最后一帧的状态（这里其实可以省略，因为动画结束正好是初始状态）*/
  animation-timing-function: ease-in-out; /* 动画的速度曲线，这里使用缓入缓出 */
}
.diqiuDiv{
  position: absolute;
  width: 440px;
  height: 390px;
  bottom: 5px;
  right: 164px;
}
.mySwiper .inbanner1 {
  width: 120px;
  height: 100px;
  top: 316px;
  right: 600px;
}
.mySwiper .inbanner2 {
  width: 160px;
  height: 120px;
  top: 198px;
  right: 505px;
}
.mySwiper .inbanner3 {
  width: 115px;
  height: 98px;
  top: 175px;
  right: 367px;
}
.mySwiper .inbanner4 {
  width: 144px;
  height: 90px;
  top: 248px;
  right: 141px;
}
.mySwiper .inbanner5 {
  width: 90px;
  height: 110px;
  top: 380px;
  right: 120px;
}
.mySwiper .inbanner6 {
  width: 75px;
  height: 108px;
  top: 554px;
  right: 150px;
}
.mySwiper .inbanner7 {
  width: 90px;
  height: 85px;
  top: 572px;
  right: 588px;
}
.mySwiper .inbanner8 {
  width: 234px;
  height: 45px;
  top: 450px;
  right: 530px;
}
/*****首页banner---end*****/
/*首页我们的产品*/
#home-product {
  margin: 10px auto 0;
  text-align: center;
}
#home-product h2 {
  height: 100px;
  line-height: 100px;
  font-size: 25px;
  color: #297bbd;
}
#home-product .homePWrap {
  display: flex;
  justify-content: space-between;
}
#home-product .homePWrap .homePItem {
  display: block;
  width: 246px;
  text-decoration: none;
  border: 2px solid #fff;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
#home-product .homePWrap .homePItem:hover {
  text-decoration: none;
  border: 2px solid #297bbd;
  /*transform: scale(1.1);*/
  /*-webkit-transform: scale(1.1);*/
  /*-moz-transform: scale(1.1);*/
  /*-o-transform: scale(1.1);*/
  /*-ms-transform: scale(1.1);*/
}
#home-product .homePWrap .homePItem h3 {
  height: 30px;
  line-height: 30px;
  font-size: 20px;
  color: #297bbd;
}
#home-product .homePWrap .homePItem div.PDesc {
  font-size: 15px;
  line-height: 30px;
  height:30px;
  overflow:hidden;
  color: #969fa9;
  margin-bottom: 15px;
}
#home-product .homePWrap .homePItem .imgwrap {
  width: 246px;
  height: 212px;
}
#home-product .homePWrap .homePItem .imgwrap img{
  width: 246px;
  height: 212px;
}
  /*首页我们的产品结束*/
div#homeyoushi {
  color: #fff;
  width: 1600px;
  height: 804px;
  margin: 100px auto 0;
  text-align: center;
  background: url("../img/homeYoushiBg.jpg") no-repeat center;
}
div#homeyoushi h2 {
  padding-top: 50px;
  font-size: 25px;
  height: 60px;
  line-height: 60px;
}

div#homeyoushi h3 {
  font-size: 16px;
  line-height: 40px;
}
div#homeyoushi .homeYoushiItemWrap {
  display: flex;
  justify-content: space-around;
  margin-top: 60px;
}
div#homeyoushi .itemYoushi {
  width: 322px;
  height: 440px;
  border: 2px solid #d7d7d7;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
div#homeyoushi .itemYoushi:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}
div#homeyoushi .itemYoushi h3 {
  font-size: 30px;
  height: 60px;
  line-height: 60px;
  margin-top: 260px;
  color: #08ca8f;
}
div#homeyoushi .itemYoushi .desc {
  height: 60px;
  padding: 10px;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}
div#homeyoushi .no1 {
  background: url("../img/youshi/1.jpg") no-repeat center;
}
div#homeyoushi .no2 {
  background: url("../img/youshi/2.jpg") no-repeat center;
}
div#homeyoushi .no3 {
  background: url("../img/youshi/3.jpg") no-repeat center;
}
div#homeyoushi .no4 {
  background: url("../img/youshi/4.jpg") no-repeat center;
}
/*首页关于我们*/
div#homeaboutwrap {
  width: 1400px;
  height: 650px;
  margin: 80px auto 0;
}
div#homeaboutwrap h2 {
  text-align: center;
  font-size: 25px;
  color: #297bbd;
  line-height: 40px;
}
div#homeaboutwrap .h2desc {
  text-align: center;
  color: #000;
  font-size: 16px;
  line-height: 25px;
}
div#homeaboutwrap .bottomwrap {
  margin-top: 50px;
}
div#homeaboutwrap .bottomwrap .leftimgWrap {
  width: 695px;
  height: 506px;
  float: left;
}
div#homeaboutwrap .bottomwrap .leftimgWrap .theimg {
  width: 695px;
  height: 476px;
}
div#homeaboutwrap .bottomwrap .leftimgWrap .imgtip {
  height: 30px;
  line-height:30px;
  text-align:center;
  font-size:16px;
  color:#808080;
}
div#homeaboutwrap .bottomwrap .rightWrap {
  width: 600px;
  height: 476px;
  float: right;
  background: #fff;
}
div#homeaboutwrap .bottomwrap .rightWrap .righttopimg {
  text-align: center;
  width: 490px;
  height: 258px;
}
div#homeaboutwrap .bottomwrap .rightWrap .rightdesc {
  color: #333;
  margin-top: 20px;
  font-size: 16px;
  text-indent: 2em;
  line-height: 25px;
}
/*合作伙伴*/
div.homecooperWrap {
  width: 1400px;
  height: 330px;
  margin: 50px auto 0;
}
div.homecooperWrap h2 {
  text-align: center;
  font-size: 25px;
  color: #297bbd;
  line-height: 40px;
}
div.homecooperWrap h3 {
  text-align: center;
  color: #333333;
  font-size: 18px;
  line-height: 30px;
}
#homecooperUl {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
#homecooperUl div.item {
  width: 185px;
  height: 200px;
  text-align: center;
}
#homecooperUl div.item img {
  width: 185px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
#homecooperUl div.item img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

#homecooperUl div.item p {
  font-size: 18px;
  text-align: center;
  color: #333333;
  line-height: 30px;
}
/* 发展历程 */
#aboutTimeWrap {
  width: 1400px;
  height: 800px;
  margin: 40px auto 0px;
  position: relative;
}
#aboutTimeWrap h2 {
  height: 40px;
  line-height: 40px;
  font-size: 25px;
  color: #297bbd;
  text-align: center;
}
/* 发展历程 end */

div#certWrap {
  width: 1400px;
  margin: 40px auto;
}
div#certWrap h2 {
  text-align: center;
  font-size: 25px;
  color: #297bbd;
  line-height: 40px;
}
div#certWrap h3 {
  text-align: center;
  color: #333333;
  font-size: 18px;
  line-height: 30px;
}

.cert-container {
  position: relative;
  width: 1400px;
  padding: 0px 30px;
  overflow: hidden;
  margin: 20px auto 0px;
}
.cert-container .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cert-container .swiper-slide img {
  width: 214px;
  height: 302px;
  border: 1px solid #000;
}
/**联系我们*/
#contactBanner{
width:1600px;
height:550px;
margin:0 auto;
position:relative;
}
@keyframes scaleAnimation {
  0% {
    transform: scale(1); /* 原始大小 */
  }
  50% {
    transform: scale(0.2); /* 缩放到0.8倍大小 */
  }
  100% {
    transform: scale(1); /* 回到原始大小 */
  }
}
#xingxingshow{
  display:block;
  position:absolute;
  width:50px;
  height:50px;
    top: 378px;
  left: 50%;
  animation: scaleAnimation 2s ease-in-out infinite;
}

#contactDescWrap{
width:1400px;
margin:40px auto 0;
}
#contactDescWrap h2 {
  height: 40px;
  line-height: 40px;
  font-size: 25px;
  color: #297bbd;
  text-align: center;
}
#contactDescWrap .h2desc {
    text-align: center;
    color: #000;
    font-size: 16px;
    line-height: 25px;
}
#contactDescWrap .leftMap{
  width:740px;
  height:540px;
  background:green;
  float:left;
  margin-top:40px;
}
#contactDescWrap .rightDescWrap{
  width:560px;
  height:540px;
  float:right;
  margin-top:40px;
}
#contactDescWrap .rightDescWrap h3{
  height:50px;
  line-height:50px;
  color:#000;
  font-size:25px;
  font-weight:bolder;
}
#contactDescWrap .rightDescWrap .pdesc{
font-size:16px;
line-height:25px;
color:#3d3d3e;
}
#contactDescWrap .rightDescWrap .titleTip{
font-size:16px;
line-height:40px;
  font-weight:bolder;
color:#3d3d3e;
}
#contactDescWrap .rightDescWrap .emailTip{
font-size:16px;
line-height:30px;
color:#3d3d3e;
}
#contactDescWrap .rightDescWrap .bottomImgWrap{
margin-top:50px;
}
#contactDescWrap .rightDescWrap .wximgItem{
float:left;
text-align:center;
}
#contactDescWrap .rightDescWrap .wximgItem img{
width:134px;
height:134px;}
#contactDescWrap .rightDescWrap .wximgItem p{
font-size:16px;
text-align:center;
font-weight:bolder;
}
#contactDescWrap .rightDescWrap .wximgItem2{
margin-left:30px
}

/**联系我们 end*/
/**在线留言*/
div#msgWrap{
width:1400px;
height:350px;
margin:100px auto 0px;
}
#msgWrap .leftInputWrap{
width:680px;
float:left;
}
#msgWrap .leftInputWrap .itemMsgDiv{
  margin-top: 20px;
}
#msgWrap .msgTip{
  font-size: 12px;
  color: #cccccc;
}
#msgWrap .leftInputWrap .leftbottom{
  margin-top:20px;
}
#msgWrap label{
  line-height:50px;
  color:#000;
  font-size:16px;
  display:inline-block;
  width:100px;
  text-align:left;
  margin-left:30px;
}
#msgWrap .inputclass{
  border: none;
  background-color: #dcdcdc;
  min-height:50px;
  padding:0 10px;
  width:180px;
}
#msgWrap .leftInputWrap img{
vertical-align:middle;
}

#msgWrap .rightInputWrap{
width:660px;
height:100px;
float:right;
}
#msgWrap .rightInputWrap .msglabel{
float:left;}

#msgWrap .rightInputWrap textarea{
display:block;
float:left;
width:500px;
height:100px !important;
padding:10px;
}
#msgWrap .btnWrap{
width:1400px;
text-align:center;
margin-top:30px;
}
#msgWrap .btnsubmit{
cursor:pointer;
padding:10px 40px;
background:#558ddc;
text-align:center;
border:none;
color:#fff;
font-size:16px;
}
#msgWrap .btnsubmit:hover{
  background:#126fb8;
}
/**在线留言 end*/
/****产品中心****/
#productBanner{
width:1600px;
height:530px;
margin:0 auto;
}
#oilsiteWrap{
width:1400px;
margin:30px auto 0;
}
.sectionWrap h2{
    height: 40px;
    line-height: 40px;
    font-size: 25px;
    color: #297bbd;
    text-align: center;
}
.sectionWrap .h2desc {
    text-align: center;
    color: #000;
    font-size: 16px;
    line-height: 40px;
}
.sectionWrap .colorHui{
  color:#969fa9;
}
#oilsiteWrap img{
width:1357px;
height:410px;
display:block;
margin:0 auto;
margin-top:30px;
}

#productListWrap{
width:1400px;
margin:30px auto 0px;
}
#productListWrap .titleH2{
height:50px;
width:400px;
float:left;
line-height:50px;
font-size:25px;
color:#666666;
}
#productListWrap .titleH2 span{
font-size:16px;
padding-left:15px;
}
#productListWrap #productMenu{
height:50px;
float:right;
}
#productListWrap #productMenu li{
float:left;
height:50px;
line-height:50px;
padding:0 20px;
font-size:18px;
cursor:pointer;
color:#666;
}
#productListWrap #productMenu li:hover{
  color: #297bbd;
}
#productListWrap #productMenu li.activeLi{
color:#fff;
background:#49bf8d;
}
#productListWrap .productContainer{
width:1400px;
margin-top:30px;
display:none;
}
#productListWrap .activeWrap{
display:block;
}
#productListWrap .productContainer .pItem{
width:428px;
height:360px;
border:1px solid #ccc;
float:left;
margin-right:36px;
margin-top:30px;
}
#productListWrap .productContainer .pItem .imgHref{
text-decoration:none;
width:428px;
height:290px;
overflow:hidden;
}
#productListWrap .productContainer .pItem .imgHref img{
width:428px;
height:290px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
#productListWrap .productContainer .pItem .imgHref img:hover{
  transform: scale(0.99);
  -webkit-transform: scale(0.99);
  -moz-transform: scale(0.99);
  -o-transform: scale(0.99);
  -ms-transform: scale(0.99);

}
#productListWrap .productContainer .pItem .nameHref{
display:inline-block;
width:428px;
  height:60px;
  text-align:center;
  line-height:60px;
  font-size:20px;
text-decoration:none;
color:#696969;
}
#productListWrap .productContainer .pItem .nameHref:hover{
color:#4f8e06;
}
#allHandleWrap{
margin-top:40px;
}
#allHandleWrap img{
display:block;
  margin: 30px auto 40px;
}
/***下载****/
#downWrap{
width:1400px;
margin:30px auto 0;
min-height:500px;
}
#downWrap .downItemA{
width:210px;
padding:3px;
display:block;
float:left;
margin-left:50px;
text-align:center;
cursor:pointer;
text-decoration:none;
border:2px solid #fff;
}
#downWrap .downItemA:hover {
  border:2px solid #2782bb;
}
#downWrap .downItemA:hover p{
color:#252624;
}
#downWrap .downItemA img{
width:208px;
height:168px
}
#downWrap .downItemA p{
line-height:25px;
height:50px;
font-size:16px;
color:#68a2d0;
font-weight:bolder;
  padding-top: 15px;
}
/***下载 end****/
/***客户服务****/
div#serviceWrap{
width:1400px;
margin:30px auto;
min-height:500px;
}
div#serviceWrap h2{
text-align:center;
font-size:20px;
color:#297bbd;
height:40px;
line-height:40px;
font-weight:bolder;
}
div#serviceWrap .topServiceMenu{
display:flex;
justify-content:space-evenly;
}
div#serviceWrap .itemAhref{
display:block;
height:40px;
width:300px;
text-align:center;
font-size:18px;
color:#2d2e2e;
line-height:40px;
border:1px solid #313131;
border-radius:10px;
text-decoration:none;
font-weight:bolder;
}
div#serviceWrap .itemAhref:hover{
background-color:#2967b1;
color:#fff;
}
div#serviceWrap .itemAhrefActive{
  background-color:#2967b1;
  color:#fff;
}
div#serviceWrap div.serviceContent{
padding:30px;
margin-top:20px;
}
div#serviceWrap div.serviceContent p{
font-size:16px;
color:#297bbd;
line-height:35px;
}
div#serviceWrap div.serviceContent .managerWrap{
  text-align:center;
}
div#serviceWrap div.serviceContent .managerWrap p.htip{
  line-height:50px;
  font-size:20px;
  color:#297bbd;
}
div#serviceWrap form.authForm{
  text-align:center;
}
div#serviceWrap form.authForm .tipTitle{
font-size:18px;
line-height:50px;
color:#297bbd;
}
div#serviceWrap form.authForm .input-text{
width:300px;
height:30px;
padding:3px;
border:1px solid #297bbd;
border-radius:3px;
}
div#serviceWrap form.authForm .btn-submit{
margin-top:20px;
background:#297bbd;
width:300px;
height:40px;
line-height:40px;
border:none;
color:#fff;
font-weight:bolder;
cursor:pointer;
}


/*产品分类列表页面*/
.proCatWrap{
  width: 1600px;
  min-height: 500px;
  margin: 30px auto 40px;
}
.proCatWrap .menuWrap{
  display: flex;
  justify-content: space-around;
}
.proCatWrap .menuWrap a{
  display: block;
  text-decoration: none;
  line-height: 40px;
  height: 40px;
  min-width: 100px;
  font-size: 25px;
  font-weight: bolder;
  color: #297bbd;
  text-align: center;
  border-bottom: 3px solid  #fff;
}
.proCatWrap .menuWrap a.activeCat{
  border-bottom: 3px solid  #7da0e7;
}
.proCatWrap .menuWrap a:hover{
  border-bottom: 3px solid  #7da0e7;
}
.proCatWrap .productContainer{
  width:1400px;
  margin-top:30px;
  display:none;
}
.proCatWrap .activeWrap{
  display:block;
}
.proCatWrap .productContainer .pItem{
  width:428px;
  height:360px;
  border:1px solid #ccc;
  float:left;
  margin-right:36px;
  margin-top:30px;
}
.proCatWrap .productContainer .pItem .imgHref{
  text-decoration:none;
  width:428px;
  height:290px;
  overflow:hidden;
}
.proCatWrap .productContainer .pItem .imgHref img{
  width:428px;
  height:290px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.proCatWrap .productContainer .pItem .imgHref img:hover{
  transform: scale(0.99);
  -webkit-transform: scale(0.99);
  -moz-transform: scale(0.99);
  -o-transform: scale(0.99);
  -ms-transform: scale(0.99);

}
.proCatWrap .productContainer .pItem .nameHref{
  display:inline-block;
  width:428px;
  height:60px;
  text-align:center;
  line-height:30px;
  font-size:20px;
  text-decoration:none;
  font-weight: bolder;
  color:#297bbd;
}
.proCatWrap .productContainer .pItem .nameHref:hover{
  color:#37658a;
}
/**产品详情***/
.proCatWrap .detailTopWrap{
  width: 1600px;
  margin-top: 30px;
}
.proCatWrap .catP{
  font-size: 16px;
  height: 60px;
  line-height: 60px;
}
.proCatWrap .catP a{
  color: #297bbd;
  padding-left: 10px;
}
.proCatWrap .detailTopWrap .leftimgWrap{
  width: 448px;
  height: 350px;
  float: left;
  border: 1px solid #000;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proCatWrap .detailTopWrap .leftimgWrap img {
  width: 428px;
  height: 290px;
}
.proCatWrap .detailTopWrap .rightWrap{
  width: 1090px;
  float: left;
  margin-left: 50px;
  color: #625f73;
}
.proCatWrap .detailTopWrap .rightWrap .pName{
  color:#625f73;
  font-size: 30px;
  line-height: 60px;
}
.proCatWrap .detailTopWrap .rightWrap .go-taobao{
  display: block;
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  padding-left: 15px;
  background:#0931df url("../img/taobao-ico.png") no-repeat 20px center;
}
.proCatWrap .detailTopWrap .rightWrap .go-taobao:hover{
  color: #d7d3d3;
}
.proCatWrap .detailTopWrap .rightWrap .pAttrTitle{
  font-size: 20px;
  line-height: 60px;
}
.proCatWrap .detailTopWrap .rightWrap .pAttrContent{
  font-size: 16px;
  line-height: 25px;
}
.proCatWrap .detailTopWrap .rightWrap .pAttrContent ol{
  list-style:decimal !important;
}
.proCatWrap .detailContentWrap{
  margin-top: 40px;
  padding: 10px;
  min-height: 400px;
  border: 1px solid #ccc;
}
.proCatWrap .detailContentWrap{
  line-height: 30px;
}








/*通用尾部*/
div#commonFooter {
  min-width: 1600px;
  height: 240px;
  margin: 40px auto 0;
  background: url("../img/siteBottom.jpg") repeat-y center;
}
div#commonFooter #footerWrap {
  width: 1400px;
  height: 240px;
  margin: 0 auto;
  position: relative;
}
div#commonFooter #footerWrap .leftlog {
  position: absolute;
  top: 50px;
  left: 0px;
  text-align: center;
}
div#commonFooter #footerWrap .leftlog img {
  width: 200px;
  height: 108px;
}
div#commonFooter #footerWrap .leftlog .nametip {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  font-weight: bolder;
}
div#commonFooter #footerWrap .centerTip {
  position: absolute;
  width: 480px;
  height: 100px;
  top: 85px;
  left: 300px;
  text-align: left;
}
div#commonFooter #footerWrap .centerTip p {
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

div#commonFooter #footerWrap .rightbottomMenu {
  position: absolute;
  width: 600px;
  top: 85px;
  right: 20px;
  text-align: right;
}
div#commonFooter #footerWrap .rightbottomMenu .menuAWrap {
  color: #fff;
}
div#commonFooter #footerWrap .rightbottomMenu .menuAWrap a {
  font-size: 14px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
div#commonFooter #footerWrap .rightbottomMenu .menuAWrap a:hover {
  color: #ffeebc;
}
div#commonFooter #footerWrap .rightbottomMenu .bimgWrap {
  margin-top: 20px;
}
div#commonFooter #footerWrap .rightbottomMenu .bimgWrap a {
  height: 32px;
  width: 32px;
  display: inline-block;
  position: relative;
  padding: 0 5px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
div#commonFooter #footerWrap .rightbottomMenu .bimgWrap a:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
}
#weixinBigImg{
  display: none;
  position: absolute;
  width: 200px;
  top: -102px;
  left: -201px;
  z-index: 99999;
}

div#footerAuthWrap {
  height: 50px;
  line-height: 50px;
  font-size: 14px;
  text-align: center;
  background: #4d4d4d;
  color: #fff;
}

/*fix右侧*/
.suspension {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: 85px;
  width: 70px;
  height: 240px;
}
.suspension-box {
  position: relative;
  float: right;
}
.suspension .a {
  display: block;
  width: 44px;
  height: 44px;
  background-color: #353535;
  margin-bottom: 4px;
  cursor: pointer;
  outline: none;
}
.suspension .a.active,
.suspension .a:hover {
  background: #297bbd;
}
.suspension .a .i {
  float: left;
  width: 44px;
  height: 44px;
  background-image: url(../img/rightfixbg.png);
  background-repeat: no-repeat;
  background-position: -15px -20px;
}
/* .suspension .a-service .i{background-position:0 0;} */
.suspension .a-service .i {
  width: 20px;
  height: 20px;
  margin-top: 12px;
  margin-left: 12px;
  background-image: url(../img/rightfixbg.png);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.suspension .a-service-phone .i {
  width: 20px;
  height: 20px;
  margin-top: 12px;
  margin-left: 12px;
  background-image: url(../img/rightfixbg.png);
  background-repeat: no-repeat;
  background-position: -27px 0;
}
.suspension .a-qrcode .i {
  background-position: -44px 0;
}
.suspension .a-cart .i {
  background-position: -88px 0;
}
.suspension .a-top {
  background: #d2d3d6;
  display: none;
}
.suspension .a-top:hover {
  background: #c0c1c3;
}
.suspension .d {
  display: none;
  width: 223px;
  background: #fff;
  position: absolute;
  right: 67px;
  min-height: 90px;
  border: 1px solid #e0e1e5;
  border-radius: 3px;
  box-shadow: 0px 2px 5px 0px rgba(161, 163, 175, 0.11);
}
.suspension .d .arrow {
  position: absolute;
  width: 8px;
  height: 12px;
  background: url(../img/side_bg_arrow.png) no-repeat;
  right: -8px;
  top: 31px;
}
.suspension .d-service {
  top: 0;
}
.suspension .d-service-phone {
  top: 34px;
}
.suspension .d-qrcode {
  top: 78px;
}
.suspension .d .inner-box {
  padding: 8px 22px 12px;
}
.suspension .d-service-item {
  border-bottom: 1px solid #eee;
  padding: 14px 0;
}
.suspension .d-service .d-service-item {
  border-bottom: none;
}
.suspension .d-service-item .circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f1f3;
  display: block;
  float: left;
}
.suspension .d-service-item .i-qq {
  width: 44px;
  height: 44px;
  background: url(../img/side_con_icon03.png) no-repeat center 15px;
  display: block;
  transition: all 0.2s;
  border-radius: 50%;
  overflow: hidden;
}
.suspension .d-service-item:hover .i-qq {
  background-position: center 3px;
}
.suspension .d-service-item .i-tel {
  width: 44px;
  height: 44px;
  background: url(../img/side_con_icon02.png) no-repeat center center;
  display: block;
}
.suspension .d-service-item h3 {
  float: left;
  width: 112px;
  line-height: 44px;
  font-size: 18px;
  margin-left: 12px;
  color: #000;
}
.suspension .d-service-item .text {
  float: left;
  width: 112px;
  line-height: 22px;
  font-size: 15px;
  margin-left: 12px;
}
.suspension .d-service-item .text .number {
  font-family: Arial, "HanHei SC", PingHei, "PingFang SC", "Helvetica Neue",
    Helvetica, Arial, "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei",
    sans-serif;
}
.suspension .d-service-item .text .number a {
  color: #fc8080 !important;
}
.suspension .d-service-intro {
  padding-top: 10px;
}
.suspension .d-service-intro p {
  float: left;
  line-height: 27px;
  font-size: 12px;
  width: 50%;
  white-space: nowrap;
  color: #888;
}
/*.suspension .d-service-intro i{background:url(../img/side_con_icon01.png) no-repeat center center;height:27px;width:14px;margin-right:5px;vertical-align:top;display:inline-block;}*/
.suspension .d-qrcode {
  text-align: center;
}
.suspension .d-qrcode .inner-box {
  padding: 20px 0;
}
.suspension .d-qrcode p {
  font-size: 16px;
  color: #93959c;
}
a.beianA{
  color: #c5c5c6;
}
#totop {
  width: 51px;
  height: 57px;
  cursor: pointer;
  position: fixed;
  right: 10px;
  bottom: 100px;
  background: #ccc url("../img/totop.jpg") no-repeat center;
  border: 1px solid #e2e2e2;
  opacity: 0.85;
  z-index: 100;
  display: none;
  mix-blend-mode: exclusion;
}
img.btmicon{width: 32px; height: 32px;}
/*通用尾部*/
