@charset "UTF-8";
@font-face {
  font-family: 'FontDinnexw01';
  src: url('../fonts/dinnexw01.eot?v=4.7.0');
  src: url('../fonts/dinnexw01.eot?#iefix&v=4.7.0') format('embedded-opentype'), 
	  url('../fonts/dinnexw01.woff2?v=4.7.0') format('woff2'), 
	  url('../fonts/dinnexw01.woff?v=4.7.0') format('woff'), 
	  url('../fonts/dinnexw01.ttf?v=4.7.0') format('truetype'), 
	  url('../fonts/dinnexw01.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'FontDinnexw01-r';
  src: url('../fonts/dinnexw01-regular.eot?v=4.7.0');
  src: url('../fonts/dinnexw01-regular.eot?#iefix&v=4.7.0') format('embedded-opentype'), 
	  url('../fonts/dinnexw01-regular.woff2?v=4.7.0') format('woff2'), 
	  url('../fonts/dinnexw01-regular.woff?v=4.7.0') format('woff'), 
	  url('../fonts/dinnexw01-regular.ttf?v=4.7.0') format('truetype'), 
	  url('../fonts/dinnexw01-regular.svg?v=4.7.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fdn-b{
	font-family: 'FontDinnexw01';
}
.fdn{
	font-family: 'FontDinnexw01-r';
}
html{
  min-width: 1200px;
  overflow-x: auto;
}
body{
	background-color: #fff;
	color: #666;
	font-size: 12px;
	line-height: 1.7;
	font-weight: 100;

}
@media only screen and (max-width : 1024px) {
  body{
    font-weight: normal;
  }
}
a{
	color: #666;
	transition:color 0.3s,background-color 0.3s, border-color 0.3s ;
}
a:hover{
	color: #000;
}
::placeholder{
	color: #c4c4c4;
}
::-webkit-input-placeholder {
  color: #c4c4c4;
}
:-moz-placeholder {/* Firefox 18- */
  color: #c4c4c4;
}
::-moz-placeholder{/* Firefox 19+ */
 color: #c4c4c4;
}
:-ms-input-placeholder {
  color: #c4c4c4;
}

/*按钮*/
.btn-md,.btn-lg,.btn-sm,.btn-xs{
    display: inline-block;
    width: 160px;
    height: 44px;
    line-height: 40px;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
    border-radius: 26px;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition:all .5s;    
            transition:all .5s;
}
.btn-xs{
    width: 78px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
}
.btn-sm{
    width: 108px;
    height: 36px;
    line-height: 36px;
    font-size: 12px;
}
.btn-lg{
  width: 378px;
  height: 52px;
  line-height: 52px;
  font-size: 16px;
}
.btn-black{
	background-color: #333;
	border-color: #333;
	color: #fff;
}
.btn-black:hover{
  background-color: #000;
  border-color: #000;
  color: #fff;
}
.btn-white{
	background-color: #fff;
	border-color: #333;
	color: #333;
}
.btn-white:hover{
  background-color: #333;
  border-color: #333;
  color: #fff;
}

/*文字*/
.text-danger{
  color: #e81111;
}

/*框架*/
.container{
	width: 1200px;
	margin: 0 auto;
}

.lazy{
    background: url(../img/lazy.png) no-repeat center center #fff;
    background-size: 80%;
    border: none;
}
.lazy[style]{
  background-size: cover;
}


/**头部**/
.header{
  border-bottom: 1px solid #ddd;
}
.hd-top{
  height: 44px;
  line-height: 44px;
  background-color: #fbfbfb;
}
.hd-icon{
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: center;
  vertical-align: -5px;
}
.icon-search{
  width: 36px;
  height: 44px;
  background-image: url(../img/ico-search.png);
}
.ico-msg{
  background-image: url(../img/ico-msg.png);
}
.ico-cart{
  background-image: url(../img/ico-cart.png);
}
.ico-user{
  background-image: url(../img/ico-user.png);
}
.hd-cart,.hd-msg{
  width: 36px;
  text-align: center;
}
.hd-cart,.hd-msg,.hd-user{
  position: relative;
  margin-left: 35px;
}
.hd-user{
  z-index: 10;
}
.hd-num{
  position: absolute;
  display: block;
  min-width: 16px;
  height: 16px;
  border: 1px solid #fff;
  border-radius: 16px;
  background-color: #333;
  color: #fff;
  text-align: center;
  font-size: 12px;
  right: -4px;
  top: 6px;
  line-height: 16px;
}
.hd-user:hover .hd-down{
  display: block;

}
.hd-down{
  display: none;
  position: absolute;
  top: 44px;
  left: 50%;
  width: 140px;
  margin-left: -70px;
  padding-top: 12px;
  
}
.hd-down a{
  display: block;
  line-height: 50px;
  text-align: center;
  border-bottom: 1px solid #f1f1f1;
  font-size: 13px;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,.1);
}
.hd-down a:hover{
  background-color: #fbfbfb;
}
.hd-down .fa{
  position: absolute;
  left: 50%;
  top: -4px;
  color: #fff;
  font-size: 22px;
  margin-left: -6px;
  line-height: 1;
  
}
.hd-down .fa:before{
  text-shadow: 0 -5px 15px rgba(0,0,0,.05)
}
.hd-search{
  font-size: 13px;
}
.hd-search-box{
  display: none;
}
.hd-search-sel{
  position: relative;
  width: 66px;
  text-align: center;
  line-height: 44px;
  cursor: pointer;
  z-index: 10;
}
.hd-search-sel:before{
    content: "\f106";
    position: absolute;
    right: 7px;

}
.hd-search-sel dd{
  display: none;
  position: absolute;
  left: 0;
  top: 44px;
  right: 0;
  background-color: #fbfbfb;
}
.hd-search-sel:hover:before{
  content: "\f107";
}
.hd-search-sel:hover dd{
  display: block;
}
.hd-search-keyword{
  width: 180px;
  line-height: 22px;
  margin-top: 12px;
  font-size: 13px;
  padding: 0 15px;
  background: none;
  border: none;
  color: #666;
}
.hd-search-sub{
  width: 36px;
  height: 44px;
  background: url(../img/ico-search.png) no-repeat center;
  cursor: pointer;
}
.hd-search-colse{
  display: block;
  width: 36px;
  height: 44px;
  background: url(../img/ico-close.png) no-repeat center;
  cursor: pointer;
}

.hd-logo{
  display: block;
  margin-top: 26px;
}
.menu{
  position: relative;
  padding-top: 26px;
  height: 74px;
  z-index: 9;
}
.menu>ul{
  /*margin-right: -24px;*/
  float: left;
}
.menu>ul>li{
  float: left;
  line-height: 54px;
  height: 75px;
  padding: 0 24px;
  font-size: 15px;
}
.menu>ul>li:last-child{
  padding-right: 0;
}
.menu>ul>li>a{
  display: inline-block;
  min-width: 42px;
  height: 70px;
  border-bottom: 4px solid transparent; 
  text-align: center;
}
.menu>ul>li.cur>a,.menu>ul>li:hover>a{
  color: #000;
  border-bottom-color: #333;
}
.menu>ul>li:hover .menu-son,.menu>ul>li:hover .menu-down{
  display: block;
}
.menu-son{
  display: none;
  width: 748px;
  position:  absolute;
  right: 0;
  top: 101px;
  padding: 40px 100px 40px 116px;
  background-color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,.05);
  line-height: 28px;
  font-size: 14px;
}
.menu-son dl{
  padding: 14px 0;
}
.menu-son dt{
  float: left;
  position: relative;
  padding-left: 36px;
  padding-right: 27px;
  text-align:justify;
  min-width: 56px;
  height: 28px;
  overflow: hidden;
}
.justify_fix{display:inline-block; width:100%; height:0; overflow:hidden;}
.menu-son dt .ico{
  display:block;
  position: absolute;
  left: 0;
  height: 22px;
  width: 22px;
  top: 3px;
  background-position: center;
  color: #333;
  /*background-size: contain;*/
}
.menu-son dt:after{
  content: '';
  display: block;
  position: absolute;
  right: 0;
  height: 16px;
  width: 1px;
  top: 6px;
  overflow: hidden;
  background-color: #ebebeb;
}
.menu-son dt.no-after:after{
  display: none;
}
.menu-son dd{
  float: right;
  width: 600px;
}
.menu-son dd span{
  display: block;
  float: left;
  width: 100px;
  height: 28px;
}

.menu-down{
  display: none;
  position: absolute;
  top: 74px;
  left: 50%;
  width: 140px;
  margin-left: -70px;
  box-shadow: 0 5px 20px rgba(0,0,0,.1);
  border-radius: 2px;
}
.menu-down a{
  display: block;
  line-height: 50px;
  text-align: center;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
  background-color: #fff;
  
}
.menu-down a:last-child{
  border-bottom: none;
}
.menu-down a:hover{
  background-color: #fbfbfb;
}
.menu-down .fa{
  position: absolute;
  left: 50%;
  top: -16px;
  color: #fff;
  font-size: 22px;
  margin-left: -6px;
  line-height: 1;
  
}
.menu-down .fa:before{
  text-shadow: 0 -5px 15px rgba(0,0,0,.05)
}


/***底部**/
.footer{
  margin-top: 70px;
  padding-top: 45px;
  border-top: 1px solid #f1f1f1; 
}
.ft-logo{
  width: 190px;
  padding-top: 40px;
}
.ft-menu{
  width: 670px;
  padding: 30px 0 56px 12px;
  border-left: 1px solid  #f1f1f1; 
  border-right: 1px solid  #f1f1f1; 
  line-height: 37px;
  font-size: 14px;
}
.ft-menu dl{
  float: left;
  margin-left: 80px;
}
.ft-menu dt{
  font-weight: normal;
}
.ft-menu dt a{
  color: #333;
}
.ft-menu dd a{
  color: #8a8a8a;
}
.ft-menu a:hover{
  color: #000;
}
.ft-share{
  padding-top: 37px;
}
.ft-share li{
  position: relative;
  display: inline-block;
  margin-left: 46px;
  text-align: center;
  z-index: 1;
}
.ft-share .fa{
  width: 38px;
  height: 38px;
  margin-bottom: 15px;
  border-radius: 50%;
  line-height: 38px;
  border: 1px solid #6a6a6a;
  font-size: 20px;
  transition: border-color 0.3s;
}
.ft-share .ewm{
  display: none;
  position: absolute;
  left: 50%;
  margin-left: -68px;
  bottom: 105%;
  width: 120px;
  height: 120px;
  padding: 8px 8px 13px;
  background: url(../img/ewm-wx-bg.png) no-repeat;
  
}
.ft-share .ewm img{
  width: 120px;
  height: 120px;
}
.ft-share li:hover .ewm{
  display: block;
}
.ft-share a:hover .fa{
  border-color: #000;
}
.ft-copyright{
  margin-top: 40px;
  color: #8a8a8a;
  background-color: #f7f7f7;
  line-height: 44px;
  height: 44px;
}


/***侧边浮动**/
.side-float{
  position: fixed;
  right: 1px;
  bottom: 20%;
  width: 60px;
  z-index: 11;
}
.side-float li{
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 1px;
}
.side-float li a{
  display: block;
  padding-top: 42px;
  text-align: center;
  line-height: 1;
  font-size: 11px;
  color: #4d4d4d;
  background-color: #f5f5f5;
  height: 18px;
  background-image: url(../img/side-icon.png) ;
}
.side-float li a.app{
  background-position: 0 0 ;
}
.side-float li a.ser{
  background-position: 0 -61px
}
.side-float li a.gotop{
  background-position: 0 -122px;
}
.side-float li a:hover{
  background-color: #969696;
  color: #fff;
}
.side-float li a:hover.app{
  background-position: -61px 0 ;
}
.side-float li a:hover.ser{
  background-position: -61px -61px
}
.side-float li a:hover.gotop{
  background-position: -61px -122px;
}
.side-float .ewm{
  display: none;
  position: absolute;
  right: 49px;
  top: -7px;
  width: 139px;
  height: 139px;
  padding: 8px 13px 8px 8px;
  background: url(../img/ewm-app-bg.png);
}
.side-float .ewm img{
  width: 139px;
  height: 139px;
}
.side-float li:hover .ewm{
  display: block;
}


/*****/
.site-path{
  padding: 20px 0;
  line-height: 20px;
  font-size: 12px;
  color: #999;
}


/**数量加减**/
.amount-wrap{
  width: 116px;
  height: 26px;
}
.amount-decrease,.amount-increase{
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid #efefef;
  color: #b8b8b8;
  border-radius: 50%;
  box-shadow: 0 0 2px rgba(0,0,0,.1);
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  cursor: pointer;
  font-weight: normal;
  background-color: #fff;
  transition:all 0.3s;
}
.amount-decrease:hover,.amount-increase:hover{
  color: #909090;
  border-color: #ddd;
}
.amount-input{
  width: 64px;
  border: none;
  text-align: center;
  height: 24px;
  line-height: 24px;
  font-size: 13px;
  color: #666;
  background: none;
}

/**商品列表**/
.pro-list{
  overflow-x: hidden;
}
.pro-list ul{
  margin: 0 -26px;
}
.pro-list li{
  float: left;
  width: 261px;
  margin: 0 26px;
  margin-bottom: 68px;
}

.pro-list li .box{
  display: block;
}
.pro-list li .box:hover{

}

.pro-list li .img{
  position: relative;
  width: 260px;
  height: 260px;
  overflow: hidden;
  transition: all 1.2s cubic-bezier(0.23, 1, 0.38, 1);
}
.pro-list li img{
  display: block;
  width: 100%;
  height: 100%;
}
.pro-list li:hover .img{
  transform: scale(1.06);
}

.pro-list li .color{
  margin: 12px 0 0;
  padding: 10px 0;
  height: 16px;
  border-bottom: 2px solid #f6f6f6;
}
.pro-list li .color i{
  float: left;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 3px solid #fff;
  position: relative;
  margin: 0 4px 0 0;
}
.pro-list li .color i:after{
  content: '';
  position: absolute;
  left: -3px;
  top: -3px;
  width: 14px;
  height: 14px;
  border: 1px solid #f1f1f1;
  border-radius: 50%;
}
.pro-list li .color p{
  float: right;
  font-size: 13px;
  color: #7a7a81;
  line-height: 16px;
}
.pro-list li .text{
  padding: 20px 0 10px;
}
.pro-list li .tit{
  font-size: 14px;
  color: #333333;
  line-height: 24px;
  margin-bottom: 2px;
  transition: all 0.3s ease;
}
.pro-list li .text p{
  font-size: 18px;
  color: #333333;
  line-height: 28px;
  height: 28px;
  transition: all 0.3s ease;
}
.pro-list li .text del{
  font-size: 14px;
  color: #aaaaaa;
  margin-left: 8px;
  font-family: 'FontDinnexw01-r';
}

.pro-list li:hover .tit,.pro-list li:hover .text p{
  color: #000;
}


/**分页**/
.page {
  text-align: center;
}
.page-cent {
  padding-top: 70px;
  display: inline-block;
}
.page-cent > * {
  display: inline-block;
}
.page-item {
  color: #666;
  font-size: 18px;
  margin: 0 12px;
  padding: 0 3px;
  cursor: pointer;
  line-height: 23px;
  font-family: 'FontDinnexw01-r';
}
.page-item:hover {
  color: #333;
}
.page-item.on {
  color: #333;
  border-bottom: 2px solid #333;
  font-weight: normal;
}
.page-item.not {
  cursor: default;
}
.page-prev,
.page-next {
  width: 15px;
  height: 15px;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  color: #999;
  transition:color 0.3s;
}
.page-prev {
  margin-right: 40px;
}
.page-next{
  margin-left: 40px;
}
.page-prev:hover,.page-next:hover{
  color: #333;
}


.search-no{
  text-align: center;
  padding: 160px 0 220px;
}
.search-no img{
  display: block;
  margin: 0 auto 0;
}
.search-no p{
  margin: 30px 0 0;
  font-size: 14px;
  color: #999999;
  line-height: 24px;
}

/**百度分享 自定义样式**/

.bdshare_popup_bottom,.bdshare_popup_top{
  display: none!important;
}
.bdshare_popup_list{
  padding-left: 8px!important;
}
.bdshare_popup_list li{
  width: 36px!important;
  height: 36px!important;
  margin-left: 10px!important;
}
.bdshare_popup_list li a{
  width: 32px!important;
  height: 32px!important;
  padding: 0!important;
  color: transparent;
  overflow: hidden;
  background-position:center center!important;
}
.bdshare_popup_list li a:hover{
  background-color: none!important;
  border-color: transparent!important;
}
.bdshare_popup_list li a.popup_weixin{
  background-image: url(../img/share_wechat.png);
}
.bdshare_popup_list li a.popup_sqq{
  background-image: url(../img/share_qq.png);
}
.bdshare_popup_list li a.popup_qzone{
  background-image: url(../img/share_zone.png);
}
.bdshare_popup_list li a.popup_tsina{
  background-image: url(../img/share_weibo.png);
}
.bd_weixin_popup{
  position: fixed!important;
  top: 30%!important;
}
.bd_weixin_popup_foot{
  display: none!important;
}

#cnzz_stat_icon_1272933968{
  position: absolute;
  bottom: 10px;
  left: 50%;
  margin-left: 540px;
}