@charset "utf-8";
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,a,abbr,address,big,em,img,q,small,strike,strong,
sub,sup,tt,var,i,dl,dt,dd,ol,ul,li,form,fieldset,label,table,caption,tbody,thead,tfoot,tr,th,td,article,
aside,canvas,details,figure,figcaption,header,footer,hgroup,menu,nav,output,section,time,mark,audio,
video,input,select,button{margin:0;padding:0;border:0;font-family:'微软雅黑',Arial;font-size:14px;}
/*去除默认样式*/
ul,ol,li{list-style:none;}
/*表格边框合并，边框距零*/
table{border-collapse:collapse;border-spacing:0;}
/*继承父元素的字体系列样式*/
input,select,textarea,button{font-family:inherit;}
/*a链接*/
a{text-decoration:none;color:#000;}
a:hover{text-decoration:none;}
/*去除点击高亮效果*/
a,button,input,select,img,label{-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent;outline:medium none;}
input::-moz-focus-inner{border:none;padding:0;}
select, input{vertical-align:middle;}
/*html5标签*/
header,footer,section,article,aside,nav,figure{display:block;}
/*长英文字母 数字 换行*/
p{word-break:break-all;word-wrap:break-word;}
/*去除默认样式*/
h1,h2,h3,h4,h5,h6,strong,i,em,address, caption, cite, code, dfn, th, var{font-weight:normal;font-style:normal;}
fieldset, img{border:none;display:block;}
/*去除长按a链接弹框*/
html,body{-webkit-touch-callout:none;}
/* 设置为100是方便用rem单位计算 */



*,  
::before,  
::after{  
    margin: 0;  
    padding: 0;  
      
    /*清除移动端默认的 点击高亮效果*/  
    -webkit-tap-highlight-color: transparent;  
    /*设置所有的都是以边框开始计算宽度 百分比*/  
    -webkit-box-sizing: border-box;  
    box-sizing: border-box;  
}  
  
body{  
    font-size: 14px;  
    font-family: "MicroSoft YaHei",sans-serif;  
    color: #333;  
}  
  
a{  
    color: #333;  
}  
  
a:hover{  
    text-decoration: none;  
}  
  
input{  
    border: none;  
    outline: none;  
    /*清除移动端默认的表单样式*/  
    -webkit-appearance: none;  
}  
  
ul,ol{  
    list-style: none;  
}  
/*清除浮动*/
.f_left{  
    float: left;  
}  
  
.f_right{  
    float: right;  
}  
  
.clearfix::before,  
.clearfix::after{  
    content: "";  
    height: 0;  
    line-height: 0;  
    display: block;  
    visibility: hidden;  
    clear: both;
}
.animation{
  transition: all .5s ease;
  -o-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
}
/*====================================banner==========================================*/
header{
  width: 100%;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
}
header .banner{
  width: 100%;
  overflow: hidden;
  position: relative;
  max-height: 600px;
  text-align: center;
}
header .banner .img{
  width: 1000%;
  position: relative;
  left: 0;
  top: 0;
}
header .banner .img li{
  width: 10%;
  float: left;
}
header .banner .img a{
  width: 100%;
}
header .banner .img li img{
  max-width: 100%;
  border: none;
  display: block;
}

header .banner .num{
  position: absolute;
  width: 100%;
  left: 0;
  /*padding: 10px;*/
  /*background: rgba(0,0,0,0.3);*/
  /*border-radius: 50px;*/
  bottom: 10px;
  text-align: center;
  /*right: 20px;*/
  /*margin: 0 42%;*/
}
header .banner .num li{
  width: 10px;
  height: 10px;
  background: #fff;
  /*border-radius: 10px;*/
  margin: 0 5px;
  cursor: pointer;
  /*float: left;*/
  display: inline-block;
  *zoom: 1;/*兼容ie7代码*/
  *display: inline;/*兼容ie7代码*/
  vertical-align: bottom;/*兼容ie7代码*/
  transition: all 1s ease;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
}
header .banner .num .active{
  height: 30px;
}

header .banner .btn{
  width: 50px;
  height: 50px;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 50%;
  margin-top: -25px;
  color: #fff;
  text-align: center;
  line-height: 50px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 50%;
  transition: all .5s ease;
  -moz-transition: all .5s ease;
  -webkit-transition: all .5s ease;
  -o-transition: all .5s ease;
}
header .banner .pext{
  left: -50px;
}
header .banner .next{
  right: -50px;
}
/*===========================================手机汉堡图标===========================================*/
.hamburger{
    float: right;
    position: fixed;
    top: 0px;
    right: 0px;
    display: none;
    color: #fff;
    z-index: 9999;
}
.hamburger {
  padding: 8px;
  /*display: inline-block;*/
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1); }
/*===========================================手机底部===========================================*/
.mobileflo{
  position: fixed;
  width: 100%;
  height: 40px;
  left: 0;
  bottom: 0;
  background: #1b78be;
  z-index: 2;
  display: none;
}
.mobileflo .mflo{
  float: left;
  width: 25%;
  text-align: center;
}
.mobileflo .mflo span{
  margin: 0 0 5px 0;
}
.mobileflo .mflo .iconfont{
  width: 25px;
  height: 25px;
  display: block;
  margin: 5px auto 0;
}
.mobileflo #phone .iconfont{
  background: url('/shop/images/xy_two/phone2.png') no-repeat;
}
.mobileflo #mailbox .iconfont{
  background: url('/shop/images/xy_two/mailbox.png') no-repeat;
}
.mobileflo #address .iconfont{
  background: url('/shop/images/xy_two/address.png') no-repeat;
}
.mobileflo #back .iconfont{
  background: url('/shop/images/xy_two/back.png') no-repeat;
}
/*===========================================遮罩===========================================*/
.mask{
    opacity:0.5;
    filter:Alpha(opacity=50);
    background:#000;
    position:fixed;
    left:0;
    top:0;
    z-index: 6;
    width: 100%;
    height: 100%;
    display: block;
}


/*颜色变换*/
.consulting-green{background: #bddc88;}
.consulting-green li:hover{background: #91c538;}


.consulting-red{background: #e88867;}
.consulting-red li:hover{background: #d93902;}
.consulting-red li div{background: #d93902;}

.consulting-blue{background: #7fcaee;}
.consulting-blue li:hover{background: #29a7e2;}
.consulting-blue li div{background: #29a7e2;}

/*================独立搜索页===================*/
.serch{width: 80%; margin: 20px auto;}
.serch form{overflow: hidden;}
.serch .text{width: 80%; *width: 80%; float: left; padding: 10px 1%; outline: none; display: block;}
.serch .submit{width: 20%; float: right; font-size: 18px; padding: 10px 0; color: #fff; display: block; cursor: pointer;}

/*导航小球*/
.plug-wrap{
	position:absolute;
	height:100px;
	background:rgba(0,0,0,0);
	top:0;
	left:0;
	width:0;
	height:0;
	z-index:800;
	display:none!important;
}

.plug-div {
	display:none;
	position:fixed;
	bottom:0;
	left:0px;
	z-index:900;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.plug-menu{
	-webkit-appearance:button;
	display:inline-block;
	width:36px!important;
	height:36px!important;
	border-radius:36px;
	position: absolute;
	bottom:17px;
	left: 17px;
	z-index:999;
	-moz-box-shadow:0 0 0 4px #FFFFFF, 0 2px 5px 4px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow:0 0 0 4px #FFFFFF, 0 2px 5px 4px rgba(0, 0, 0, 0.25);
	box-shadow:0 0 0 4px #FFFFFF, 0 2px 5px 4px rgba(0, 0, 0, 0.25);
	-webkit-transition: -webkit-transform 200ms;
	-webkit-transform:rotate(1deg);
	color:#fff;
	background-image:url("/shop/images/mobilediy/plug.png");
	background-repeat: no-repeat;
	-webkit-background-size: 80% auto;
	background-size: 80% auto;
	background-position: center center;
}
.plug-menu:before{
	font-size:20px;
	margin:9px 0 0 9px;
}
.plug-menu:checked{
	-webkit-transform:rotate(135deg);
}

.plug-phone>div {
	width:32px;
	height:32px;
	border-radius:32px;
	-moz-box-shadow:0 0 0 3px #FFFFFF, 0 2px 5px 3px rgba(0, 0, 0, 0.25);
	-webkit-box-shadow:0 0 0 3px #FFFFFF, 0 2px 5px 3px rgba(0, 0, 0, 0.25);
	box-shadow:0 0 0 3px #FFFFFF, 0 2px 5px 3px rgba(0, 0, 0, 0.25);
	position:absolute;
	bottom:0;
	left:0;
	margin-bottom:20px;
	margin-left:20px;
	z-index:900;
	-webkit-transition: -webkit-transform 200ms;
}
.plug-phone>div a{
	color:#ffffff;
	display: block;
	height: 100%;
	line-height: 33px;
	text-align: center;
	font-size:14px;
	text-decoration:none;
}

.plug-phone>div.on:nth-of-type(1) {-webkit-transform: translate(0, -100px) rotate(720deg);}

.plug-phone>div.on:nth-of-type(2) {-webkit-transform: translate(47px, -81px) rotate(720deg);}

.plug-phone>div.on:nth-of-type(3) {-webkit-transform: translate(81px, -45px) rotate(720deg);}

.plug-phone>div.on:nth-of-type(4) {-webkit-transform: translate(100px, 0) rotate(720deg);}

/*===========================瀑布流按钮设置=============================*/
.waterfall{
	overflow: hidden;
	text-align: center;
	margin: 20px auto;
}
.waterfall .waterfall-btn{
	position: relative;
	padding: 10px 25px;
	display: inline-block;
	*zoom: 1;
	*display: inline;
	border: 1px solid #1b78be;
	color: #1b78be;
	cursor: pointer;
}
.waterfall .waterfall-btn span{
	position: relative;
	z-index: 2;
}
.waterfall .waterfall-btn em{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: #1b78be;
	z-index: 1;
}
.waterfall .waterfall-btn:hover{
	color: #fff;
}
.waterfall .waterfall-btn:hover em{
	height: 100%;
}



.ndiy_footer nav .menu1 .mobile_fanjian{
	display:none;
}


.shopsort {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1008!important;;
	display: none;
	overflow: hidden;
}


.shopsort i{
	font-style: normal;
	list-style: none;

}

.shopsort li {
	font-style: normal;
	list-style: none;
	line-height:30px;
	min-height:30px;	
	padding: 5px 0 5px 10px;
	border-bottom: 1px solid #444;
}

.shopsort .soso{
	color:#FF6600;
}
.shopsort .e2 {
	position:absolute;
	right:0;
	width:100%;
	height:100%;
	background:#333;
	overflow-y:scroll;
	-webkit-overflow-scrolling:touch
}
.shopsort .e {
	position: absolute;
	right: -288px;
	width: 263px;
	height: 100%;
	color: #ececec;
	z-index: 100;
	-webkit-transition: right .5s ease;
}
.shopsort .es {
	right: 0;
}
.shopsort .e1 {
	display: block;
	width: 25px;
	height: 50px;
	text-align: center;
	line-height: 1.2em;
	cursor: pointer;
	border-radius: 3px 0 0 3px;
	background: no-repeat #333;
	background-size: 105px;
	padding: 10px 0 0 0;
	position: absolute;
	right: 100%;
	z-index: 102;
	margin-top: -40px;
	background-image: url("/images/esf/l_icon.png");
	background-position: -85px -45px;
}
.shopsort .e2a {
	overflow: hidden;
	padding: 0 10px 0 10px;
	display: none;
	padding-bottom: 20px;
}
.shopsort .e2s, .F .e3s {
	display: block;
}
.shopsort .e2a i {
	border-bottom: 2px solid #FFF;
	display: inline-block;
	padding: 0 11px;
	line-height: 43px;
}
.shopsort .e2a span{
	display: block;
	color: #ececec!important;
	font-size: 15px;
	height: 20px;
	line-height: 20px;
	border-bottom: 1px solid #444;
	padding: 13px 0 13px 11px;
}

.shopsort .e2a a {
	color: #ececec!important;
	font-size: 15px;
	line-height:30px;
	height:30px;
	padding: 13px 0 13px 11px;
}
.shopsort .e2a .e5 {
	background: #666!important;
}
.shopsort .e7 {
	position: absolute;
	z-index: 99;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
}

.shopsort .e2a p{
	display: block;
	color: #ececec!important;
	font-size: 15px;
	padding: 5px 0 5px 0px;
}

.shopsort .e2a .zilei{
	display: block;
	color: #ececec!important;
	font-size: 15px;
	padding: 5px 0 5px 10px;
}

html,body{
	overflow: hidden;
	/*background: #10275b;*/
	background: #eee;
}

/*===========================================头部设置===========================================*/
header{
	width: 100%;
	top: 0;
	left: 0;

	position: fixed;
	z-index: 5;
	transition: all 1s ease;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	
}
header .logo{
	/*max-width: 179px;*/
	float: left;
	margin-left: 60px; 
}
header .logo img{
	/*width: 100%;*/
	max-height:45px;
}
header .logo .company_name{
	width:100%;
	height:45px;
	line-height:45px;
	font-size:22px;
	font-weight:bold;
	color:#FFFFFF;
}
header .logo .logo-img2{display: none;}
header .contact{
	float: right;
	color: #fff;
	margin: 10px 60px 0 0;
}
header .contact li{
	float: left;
	padding-left: 20px;
	margin:  0 0 0 30px;
	cursor: pointer;
}
header .contact .phone{
	background: url('/shop/images/xy_two/phone.png') no-repeat;
	background-size: 20px;
}
header .contact .address{
	background: url('/shop/images/xy_two/address.png') no-repeat;
	background-size: 20px;
}
/*===========================================底部设置===========================================*/
footer{
	width: 100%;
	color: #fff;
	left: 0;
	bottom: 0;
	/*padding: 10px 0px;*/
	position: fixed;
	z-index: 5;
	transition: all 1s ease;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
}
footer nav{
	width: 100%;
	margin-left: 60px;
    float: left;
	transition: all 1s ease;
	-moz-transition: all 1s ease;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
}
footer nav a{
	color: #fff;
	transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
}

footer nav li{
	float: left;
	text-align: center;
	width: 110px;
	height:50px;
	padding: 10px 0;
	position: relative;
	cursor: pointer;
	transition: all .5s ease;
	-moz-transition: all .5s ease;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
}

footer nav .menu2{
	position: absolute;
	width: 100%;
	left: 0px;
	/*padding: 0 0 10px 0;*/
	background-color: var(--cc_menu_bgg);

	
	text-align: center;
	display: none;
	bottom:50px;
}
footer nav .menu2 li{
	padding: 5px 0;
	line-height:30px;
	height:40px;
	width: 100%;
	float: none;
}
footer nav li:hover .menu2{
	display:block;
}

footer nav li span{
	font-size: 10px;
}
footer .share{
	position: relative;
	float: right;
	margin: 5px 60px 0 0;
}
footer .share li{
	float: left;
	margin: 0 15px;
	cursor: pointer;
}
footer .share .erweima{
	position: absolute;
	width: 150px;
	height: 150px;
	top: -165px;
	left: 15px;
	display: none;
}
footer .share .erweima img{
	width: 100%;
}
footer .share .erweima:after{
	content:"";
	display:block;
	width:0;
	height:0;
	position:absolute;
	left:65px;
	top: 150px;
	border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
}
/*===========================================主体设置===========================================*/
section article{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;

	z-index: 1;
	overflow: hidden;
}

section .news-show .top_title{
 height:100px; 
 width:50%; 
 margin-right:auto; 
 margin-left:auto;
 line-height:100px;
 font-weight:600px;
 font-size:22px;
 text-align:center;
}


/*===========================================新闻动态详情页===========================================*/
section .news-show .box{
	width: 1200px;
	height: 80%;
	background: rgba(255,255,255,0.7);
	padding: 20px;
	overflow: auto;
	overflow-x: hidden;

	margin-right:auto;
	margin-left:auto;
}
section .news-show .box .title{
	line-height: 50px;
	text-align: center;
	border-bottom: 1px dashed #aaa;
	margin-bottom: 20px;
}
section .news-show .box .title h3{
	line-height: 30px;
	font-size: 18px;
}
section .news-show .box .title span{
	margin: 0 5px;
}
section .news-show .box .center p{
	line-height: 30px;
	text-indent: 2em;
}
section .news-show .box .center img{
	max-width: 100%;
	margin-right:auto;
	margin-left:auto;
}
section .news-show .box .article{
	margin: 20px 0 0;
}
section .news-show .box .article .pext{
	float: left;
}
section .news-show .box .article .next{
	float: right;
}
section .news-show .box .crumbs{
	color: #000;
	line-height: 30px;
	overflow: hidden;
	margin: 0 0 20px 0;
}
section .news-show .box .crumbs a{
	color: #000;
}
section .news-show .box .crumbs li{
	width: auto;
	height: auto;
	float: left;
	border: none;
	margin: 0;
	background: none;
}


.cac_menu_bg{
	color:#FFFFFF;
  	background-color: var(--cc_menu_bgg);
}
.cac_menu_bg a.active{
  background-color: var(--cc_menu_txt);
}
.cac_menu_bg a:not(.active):hover{
  background-color: var(--cc_menu_txt);
}
