﻿
/*-------------------------------------------reset------------------------------------------------*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
	margin:0;
	padding:0; font:14px "微软雅黑","Open Sans",Helvetica,Arial,sans-serif;line-height:26px;color:#565656;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,
img {
	border:0;
}
/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
input,
address,
caption,
cite,
code,
dfn,
em,
i,
th,
var {
	font-style:normal;
	font-weight:normal;
}
/*
	TODO Figure out where this list-style rule is best set. Hedger has a request to investigate.
*/
li {
	list-style:none;
}
a{text-decoration:none;}
caption,
th {
	text-align:left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight:normal;
}
q:before,
q:after {
	content:'';
}
abbr,
acronym {
	border:0;
	font-variant:normal;
}
button,input,
textarea,
select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
/*to enable resizing for IE*/
button,input,
textarea,
select {
	*font-size:100%;
}
/*because legend doesn't inherit in IE */
legend {
	color:#000;
}

/*全局定义*/
body{  background:#fff;}
.wrap {text-align: left; margin: 0px auto; width: 1000px;}
a:link, a:visited {text-decoration:none; }
a:hover { text-decoration:none; }
/*-------------------------------------base.css-------------------------------------------*/
/*文字排版*/
.f12{font-size:12px;}
.f14{font-size:14px;}
.f15{font-size:15px;}
.f16{font-size:16px;}
.f17{font-size:17px}
.f18{font-size:18px}
.fb{font-weight:bold;}
.fn{font-weight:normal;}
.t2{text-indent:2em;}
.unl,a.unl,body a.unl,body *.unl,body a.unl:link,body a.unl:visited{text-decoration:underline;}
.no_unl{text-decoration:none;}
.yahei{font-family:Microsoft YaHei;}
/*定位*/
.tl{text-align:left;}
.tc{text-align:center;}
.tr{text-align:right;}
.bc{margin-left:auto;margin-right:auto;}
/*
	fl包含display inline  是为了解决ie6双边距  
	如果.fl用在ul(可能还有别的标签)标签上会出现类似text-indent的bug  
	可以通过给li标签浮动修正 或者覆盖掉此处的display属性
*/
.fl{float:left;display:inline;}
.fr{float:right;display:inline;}
.cb{clear:both;}
.cl{clear:left;}
.cr{clear:right;}
/*
	不加block在标准浏览器中无法清除ie6、7可以但下面多一像素
	height:0px;时ie6中无法清除(给浮动块margin可以看出)
*/
.clear{clear:both;overflow:hidden;display:block;height:0px;_height:1px; font:300 1px/1px arial;}
/*
	clearfix清除浮动后在ie6、7中会忽略浮动框的margin-bottom
	并且偶尔会由于layout被激活而出现一些bug  如多出间隙等
	此时可以使用.clear来避免这种bug 或者两者结合使用
*/
.clearfix:after{content:'.';display:block;height:0;clear:both;visibility:hidden;}
.clearfix{*zoom:1;}
.clearfix .clear{_height:0px;}
/*
	一般情况下使用clearfix即可
	出现忽略margin等情况是clearfix与clear一起使用
	单独使用clear一般可以清除浮动，但ie6会多一个像素
*/
.vm{vertical-align:middle;}
.pr{position:relative;}
.pa{position:absolute;}
.abs-right{position:absolute;right:0;}
.zoom{zoom:1;}
.hidden{visibility:hidden;}
.ovh{overflow:hidden}
/*
	block 如img标签有时需要此class来消除空行
*/
.block{display:block;}
.none{display:none;}
/*
	常用的变量css可以在项目css中写出
	如：.w10{width:10px;}
		.m10{margin:10px;}
		.p10{padding:10px;}
	可在项目中给出语义化class名
	如：.wNormal{width:100px;}
		.wPage{width:950px;}
	等..
*/
/*
	其它需要的在项目css中写出
	height等使用较少，这里不给出
	边距提供0 5 10 15 20
	宽度提供 10 20 30 40 50 100 150 200 250 300 350 400 450 500 600 700 800 900 1000
	p放在前面 pl,pr,pt,pb等放在后面 便于覆盖
*/
/*width*/
.w10{width:10px;}
.w20{width:20px;}
.w30{width:30px;}
.w40{width:40px;}
.w50{width:50px;}
.w70{width:70px;}
.w90{width:90px;}
.w100{width:100px;}
.w120{width:130px;}
.w140{width:140px;}
.w150{width:150px;}
.w190{width:190px;}
.w200{width:200px;}
.w250{width:250px;}
.w300{width:300px;}
.w350{width:350px;}
.w400{width:400px;}
.w450{width:450px;}
.w500{width:500px;}
.w600{width:600px;}
.w700{width:700px;}
.w800{width:800px;}
.w900{width:900px;}
.w1000{width:1000px;}
.w1{width:100%;}

/*height*/
.h100{height:100px;}
/*padding*/
.p5{padding:5px;}
.p10{padding:10px;}
.p15{padding:15px;}
.p20{padding:20px;}
.pl0{padding-left:0;}
.pl5{padding-left:5px;}
.pl8{padding-left:8px;}
.pl10{padding-left:10px;}
.pl15{padding-left:15px;}
.pl20{padding-left:20px;}
.pl25{padding-left:25px;}
.pl30{padding-left:30px;}
.pr0{padding-right:0;}
.pr5{padding-right:5px;}
.pr10{padding-right:10px;}
.pr15{padding-right:15px;}
.pr20{padding-right:20px;}
.pt0{padding-top:0;}
.pt5{padding-top:5px;}
.pt8{padding-top:8px;}
.pt10{padding-top:10px;}
.pt15{padding-top:15px;}
.pt20{padding-top:20px;}
.pt30{padding-top:30px;}
.pb0{padding-bottom:0;}
.pb5{padding-bottom:5px;}
.pb10{padding-bottom:10px;}
.pb15{padding-bottom:15px;}
.pb20{padding-bottom:20px;}
.pb30{padding-bottom:30px;}
/*margin*/
.m5{margin:5px;}
.m10{margin:10px;}
.m15{margin:15px;}
.m20{margin:20px;}
.ml0{margin-left:0;}
.ml5{margin-left:5px;}
.ml10{margin-left:10px;}
.ml15{margin-left:15px;}
.ml20{margin-left:20px;}
.ml30{margin-left:30px;}
.ml70{margin-left:70px;}
.mr0{margin-right:0;}
.mr5{margin-right:5px;}
.mr10{margin-right:10px;}
.mr15{margin-right:15px;}
.mr20{margin-right:20px;}
.mt0{margin-top:0;}
.mt5{margin-top:5px;}
.mt10{margin-top:10px;}
.mt15{margin-top:15px;}
.mt20{margin-top:20px;}
.mt30{margin-top:30px;}
.mb0{margin-bottom:0;}
.mb5{margin-bottom:5px;}
.mb10{margin-bottom:10px;}
.mb15{margin-bottom:15px;}
.mb20{margin-bottom:20px;}

/* 隐藏超出部分 */
.ofh{ overflow:hidden;}

/* 行高 */
.lh_16 {line-height:1.6;}
.lh_18{ line-height:1.8;}
.lh_22{ line-height:22px;}
.lh_24{ line-height:24px;}
.lh_26{ line-height:26px;}
.lh_28{ line-height:28px;}
.lh_30{ line-height:30px;}
.lh_32{ line-height:32px;}

.bgcorfff{ background:#fff;}

.blank5{height:5px;clear:both;display:block;}
.blank15{height:15px;clear:both;display:block;}
.blank10{height:10px;clear:both;display:block;}

/*颜色预定义 可以随时增加
-------------------------------------------------------------- */
.black {color:#000;}
.white {color:#fff;}
.red {color:#ea544a;}
.grey {color:#454545;}
.orange {color:#ff7200;}
.blue {color:#0e8cfd;}
.navy {color:#183b7d;}
.grayc{ color:#666;}
.grayish{ color:#909190;}
.green{color:#68c349}
.color_333{color:#333333;}
.color_666{color:#666666;}
.color_999{color:#999999;}
.color_blue{color:#0449be;}
.color_org{color:#ff6600;}
.color_r{color:#d30009;}
.color_sr{color:#ad0000;}
.color_z{color:#450b0d;}
.color_tuhuang{color:#8d6449;}


/*全局*/
@font-face {
  font-family: 'iconfont';  /* project id 1018195 */
  src: url('../font/font_1018195_54n8yxvf36m.eot');
  src: url('../font/font_1018195_54n8yxvf36m.eot') format('embedded-opentype'),
  url('../font/font_1018195_54n8yxvf36m.woff2') format('woff2'),
  url('../font/font_1018195_54n8yxvf36m.woff') format('woff'),
  url('../font/font_1018195_54n8yxvf36m.ttf') format('truetype'),
  url('../font/font_1018195_54n8yxvf36m.svg') format('svg');
}
.iconfont{
  font-family:"iconfont" !important;
  font-size:16px;font-style:normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
img{ max-width: 100%;}
.gray{background: #f3f3f3;}
.layui-form-select dl dd.layui-this {background-color: #00518a;}
.layui-form-checkbox[lay-skin=primary]:hover i {border-color: #00518a;}
.layui-form-checked[lay-skin=primary] i {border-color: #00518a;background-color: #00518a;}
.layui-laypage .layui-laypage-curr .layui-laypage-em {background-color: #00518a;}
.layui-btn {background-color: #00518a;cursor: pointer;}
@media (min-width: 1200px) {
.container {width: 1200px;}
}
/*header*/
.header{width:100%; position: fixed; top:0;z-index:100000}
.top{color: #FFF; height: 26px;line-height: 26px;background: #00518a;}
.top .text-left{color: #FFF; font-size:12px;}
.top .text-right{color: #FFF; font-size:12px;}
.top a i{margin: 0 10px 0 0;color: #FFF; font-size:12px;}
.top a{color:#FFF; float: right;}
.top span{color:#FFF; float: right; padding: 0 10px;}
.top #language{float: right; text-align: center; max-width:85px;  margin: 0 10px 0 20px; position:relative;}
.top #language img{ width:20px; height:20px; position:absolute; top:3px; left:5px;}
.top .layui-input { height: 26px;line-height: 26px;border: none;padding: 0 20px 0 30px;background:none; color: #FFF; font-size:12px;}
.top .layui-edge{border-top-color: #FFF;}
.top .cart i{float: right; color: #FFF; font-size: 16px;}

.login_on{float: right; margin-right: -10px;position: relative;}
.login_on i{padding: 0 10px 0 0;}
.login_on .down{padding: 0 0 0 10px; font-size: 10px;}
.login_on ul{position:absolute;top:26px;z-index: 1000; border: 1px solid #e5e5e5;background: url(../image/w_80-8f576686ac76b82c92638a94495fa9f2.png);text-align: center;padding: 5px 0;right: 0; display: none;}
.login_on ul li{  overflow: hidden;}
.login_on ul li a{ color: #333; display: block; width: 100%;padding: 5px 20px;}
.login_on:hover ul{display: block;}
.login_on ul li:hover a{ background: #00518a; color:#FFF;}

/*navigation*/
.navigation{ width: 100%;height: 105px; background: url(../image/nav_bj-b76234cdb723a66741e780e36f0e4fa2.png); border-bottom: 1px solid #e5e5e5;}
.navigation .logo img{max-width: 200px; margin: 15px 0 0 0;}
.navigation .nav { text-align: right;}
.navigation .nav ul{ float: right;}
.navigation .nav li{ float: left; position: relative;}
.navigation .nav li a{ padding: 12px 10px; margin: 23px 10px; font-size: 16px; display: inline-block;}
.navigation .nav li:hover .a{ border-bottom: 4px solid #00518a; color: #00518a;}
.navigation .nav li:hover dl{ display: block;}
.navigation .nav li dl{border: 1px solid #e5e5e5;border-radius: 10px;background: url(../image/nav_bj-b76234cdb723a66741e780e36f0e4fa2.png);  position: absolute;top:80px; left:10px;display: none;padding: 5px 0;}
.navigation .nav li dl dt{ text-align: center;padding: 8px 12px; margin:2px 10px;border-bottom: 1px solid #e5e5e5;}
.navigation .nav li dl dt:last-child{border-bottom:none;}
.navigation .nav li dl a{padding: 0px;margin:0px; text-align: center;font-size: 14px;}
.navigation .nav li dl dt:hover a {color: #00518a;}
.navigation .active{ border-bottom: 4px solid #00518a; color: #00518a;}
/*移动端导航*/
.sp_header{height:50px;overflow:hidden;background: url(../image/nav_bj-b76234cdb723a66741e780e36f0e4fa2.png);position:fixed;z-index:10;width:100%;}
.sp_logo{padding:5px;float:left;height:50px}
.sp_logo img{margin:auto;max-height:40px;}
.sp_nav{width:50px;float:right;position:relative;cursor:pointer;height:30px;margin-top:15px}
.sp_nav span{display:block;background:#00518a;width:24px;height:3px;position:absolute;left:10px;transition:all ease 0.35s}
.sp_nav span:nth-of-type(1){top:0px}
.sp_nav span:nth-of-type(2){top:8px}
.sp_nav span:nth-of-type(3){top:16px}
.sp_nav_se span:nth-of-type(1){top:10px;transform:rotate(45deg)}
.sp_nav_se span:nth-of-type(2){width:0}
.sp_nav_se span:nth-of-type(3){top:10px;transform:rotate(-45deg)}
.sjj_nav{position:fixed;z-index:9;background:#FFF;width:100%;font-size:14px;line-height:40px;top:-100%;left:0;overflow:auto;overflow-x:hidden;transition:top ease 0.35s;}
.nav_show{top:50px}
.sjj_nav>ul>li:first-child{overflow:hidden;border-top:0}
.sjj_nav>ul>li:first-child>a{float:left;width:calc(100% - 70px)}
.sjj_nav>ul>li:first-child .language{float:right;width:70px;overflow:hidden;line-height:30px;margin-top:5px}
.sjj_nav>ul>li:first-child .language a{width:35px;float:left;border-left:1px #ddd solid;text-align:center;color:#999;}
.sjj_nav ul li i{position:absolute;top:5px;right:0px;border-left:1px #ddd solid;height:30px;padding:0px 7px 0 7px;}
.sjj_nav ul li i svg{transform:rotate(-90deg);transition:all ease 0.35s}
.sjj_nav ul li .sjj_nav_i_se svg{transform:rotate(0deg)}
.sjj_nav ul li{border-top:1px #ddd solid;margin-left:20px;position:relative;line-height:40px;font-size:14px}
.sjj_nav>ul >li:last-child{border-bottom:1px #ddd solid;}
.sjj_nav ul li ul{display:none}
.sjj_nav ul li a{color:#666;width:80%}
.sjj_nav ul li ul li a{color:#999;display:block;text-align:left;}
.sjj_nav ul li i svg{width:20px;height:20px;fill:#555;}
.sjj_nav ul li .sjj_nav_i_se svg{fill:#00518a}
.sjj_nav ul li ul li>ul{margin-left:10px}

.sjj_nav ul li .iconfont{position: inherit;border-left:none;}

/* 底部 */
.foot {padding: 16px 0 0 0;background: url(../image/footer-dc7c3e59d1a57001280570a1fc8518f5.jpg); color:#FFF}
.foot .left{}
.foot .left .title{ color:#FFF; font-size:18px;padding: 40px 0 30px 0;}
.foot .left .title a{ color:#d6d6d6;}
.foot .left ul{ padding-bottom: 30px;}
.foot .left li{ color:#bcbcbc; font-size:12px; line-height: 30px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis}
.foot .left li a{ color:#bcbcbc;}
.foot .right{}
.foot .right h3{color:#FFF;font-size:20px;padding: 40px 0 10px 0;}
.foot .right h3 i{font-size:26px; padding: 0 10px 0 0;}
.foot .right dl{}
.foot .right dl dt{ float: left; text-align: center; margin: 0 20px 0 0;}
.foot .right dl dt span{ display: block; color: #FFF; line-height: 40px;}
.foot .right dl dt img{ width:111px; height:111px}
.foot .bottom{ color:#bcbcbc; text-align:center; font-size:12px; border-top:1px solid #909090; line-height:40px;}
@media (max-width:1199px) {
.foot {padding: 10px 0;}
.foot .bottom{padding: 0 20px; color:#bcbcbc; text-align:center; font-size:12px; border-top: none; line-height:20px;}
}

/* 左侧导航 */
.aside{position:fixed;right:0;top:60%;z-index:10000}
.aside li{width:70px; height:60px;line-height:60px;background-color:#00518a;text-align:center;margin-bottom:10px;cursor:pointer;position:relative;border-radius: 10px 0 0 10px;}
.aside li i{font-size:32px;color:#FFF;;}
.ewm{position:absolute;top:0px;right:70px;width:100px;height:100px;padding:5px;background:#348acb;display:none}
.ewm img{ width:100px;}
.weixin_btn:hover .ewm{ display:block }
.aside .weixin_btn i{ font-size: 40px;}
.qq_meassage{position:absolute;right:-300px;top:0;width:250px;line-height:20px;background-color:#348acb;text-align:left;font-size:20px;color:#fff;transition: all linear 300ms;z-index:-1; min-height:60px; padding:10px 20px;}
.qq_meassage p{line-height:30px; color:#FFF}
.qq_btn:hover .qq_meassage{right:0px;}
#goTopBtn i{font-size:40px;}

@media (max-width:768px) {
.aside li{width:40px; height:40px;line-height:40px;margin-bottom:5px;}
.aside li i{font-size:20px;color:#FFF;}
.aside .weixin_btn i{ font-size:22px;}
.qq_meassage{width:200px;min-height:40px; line-height:20px;}
.ewm{right:40px;}
#goTopBtn i{font-size:24px;}
}

.transition {
  -webkit-transition:0.5s ease-out;
  -moz-transition:0.5s ease-out;
  -ms-transition:0.5s ease-out;
  -o-transition:0.5s ease-out;
  transition:0.5s ease-out;}
.show {
  -webkit-animation:show 0.8s linear;
  -moz-animation:show 0.8s linear;
  -ms-animation:show 0.8s linear;
  -o-animation:show 0.8s linear;
  animation:show 0.8s linear;}
  		
@-webkit-keyframes show{
  25% {
    left:-450px;
  }

  50% {
    z-index:5;
    left:-500px;
    -webkit-transform:rotate3d(0,1,0,0deg);
  }

  70% {
    z-index:5;
    left:-250px;
    -webkit-transform:rotate3d(0,1,0,180deg);
  }

  100% {
    z-index:5;
    left:0px;
    -webkit-transform:rotate3d(0,1,0,360deg);
  }
}
  		
@-moz-keyframes show{
  25% {
    left:-450px;
  }

  50% {
    z-index:5;
    left:-500px;
    -moz-transform:rotate3d(0,1,0,0deg);
  }

  70% {
    z-index:5;
    left:-250px;
    -moz-transform:rotate3d(0,1,0,180deg);
  }

  100% {
    z-index:5;
    left:0px;
    -moz-transform:rotate3d(0,1,0,360deg);
  }
}
  		
@-ms-keyframes show{
  25% {
    left:-450px;
  }

  50% {
    z-index:5;
    left:-500px;
    -ms-transform:rotate3d(0,1,0,0deg);
  }

  70% {
    z-index:5;
    left:-250px;
    -ms-transform:rotate3d(0,1,0,180deg);
  }

  100% {
    z-index:5;
    left:0px;
    -ms-transform:rotate3d(0,1,0,360deg);
  }
}
  		
@-o-keyframes show{
  25% {
    left:-450px;
  }

  50% {
    z-index:5;
    left:-500px;
    -o-transform:rotate3d(0,1,0,0deg);
  }

  70% {
    z-index:5;
    left:-250px;
    -o-transform:rotate3d(0,1,0,180deg);
  }

  100% {
    z-index:5;
    left:0px;
    -o-transform:rotate3d(0,1,0,360deg);
  }
}
  		
@keyframes show{
  25% {
    left:-450px;
  }

  50% {
    z-index:5;
    left:-500px;
    transform:rotate3d(0,1,0,0deg);
  }

  70% {
    z-index:5;
    left:-250px;
    transform:rotate3d(0,1,0,180deg);
  }

  100% {
    z-index:5;
    left:0px;
    transform:rotate3d(0,1,0,360deg);
  }
}