﻿/* 字体引用 */
@charset "utf-8";
/*@font-face {
    font-family: 'webfont/heliosextthinregular';
    src: url('webfont/he_eth_-webfont.eot');
    src: url('webfont/he_eth_-webfont.eot?#iefix') format('embedded-opentype'),
         url('webfont/he_eth_-webfont.woff') format('woff'),
         url('webfont/he_eth_-webfont.ttf') format('truetype'),
         url('webfont/he_eth_-webfont.svg#heliosextthinregular') format('svg');
    font-weight: normal;
    font-style: normal;
}*/
/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td ,/* table elements 表格元素 */
div{
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
table{
	border-collapse:collapse;
	border-spacing:0;
}
*{
	box-sizing: border-box;
}
a:focus{
	outline: none;
}
/* 设置默认字体 */
body,
button, input, select, textarea {
    font: 12px/1 "Microsoft YaHei",Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; /* 用 ascii 字符表示，使得在任何编码下都无问题 */
}
body,a{
	color:#212224;
}
h1{ font-size: 18px; /* 18px / 12px = 1.5 */ }
h2{ font-size: 16px; }
h3{ font-size: 14px; }
h4, h5, h6 { font-size: 100%; }
h1,h2,h3,h4,h5,h6{
	font-weight: normal;
}
i,em,b{
	font-style: normal;
}
address, cite, dfn, em, var { font-style: normal; } /* 将斜体扶正 */
code, kbd, pre, samp, tt { font-family: "Courier New", Courier, monospace; } /* 统一等宽字体 */
small { font-size: 12px; } /* 小于 12px 的中文很难阅读，让 small 正常化 */
/* 重置列表元素 */
ul, ol {
	list-style: none;
}
/* 重置浏览器默认样式 select */
select,option,option select{
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;
}
/* 重置文本格式元素 */
a {
	text-decoration: none;
	outline:none;
	blur:expression(this.onFocus=this.blur());
}
/*a:hover { text-decoration: underline;}*/
abbr[title], acronym[title] { /* 注：1.ie6 不支持 abbr; 2.这里用了属性选择符，ie6 下无效果 */
    border-bottom: 1px dotted;
    cursor: help;
}
q:before, q:after {
	content: '';
}
/* 重置表单元素 */
legend {
 	color: #000;
 }
 /* for ie6 */
fieldset, img {
 	border: none; /* img 搭车：让链接里的 img 无边框  注：optgroup 无法扶正*/
 }
button, input, select, textarea {
    font-size: 100%; /* 使得表单元素在 ie 下能继承字体大小 */
}
/* 重置表格元素 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
table th,table td{
	border:1px solid #ddd;
}
/* 重置 hr */
hr {
    border: none;
    height: 1px;
}
/* 表单 在浏览器上的默认样式*/
input,input:focus,button,button:focus,textarea,textarea:focus{
	outline:none;
	border:none;
}
/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
html { overflow-y: scroll; }
/* ie7以下两个以上的 li浮动产生的空白间隙bug */
li{
	list-style: none;
	+vertical-align: top;
	_vertical-align: top;
}
/* ie下li元素的内联元素底部产生空白 */
li *{
	*zoom:1;
}
*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/* ie下图片标签上有空白 */
img{
	vertical-align: middle;
	*vertical-align:top;
}
/* ie下input标签文本居中 */
input{
	vertical-align: middle;
}



/* 以下为自用公共样式 */
/* 浮动 */
.fl,.fl-li li,.fl-a{
	float: left;
	_display: inline;
}
.fr,.fr-li li,.fr-a{
	float: right;
	_display: inline;
}
.w1200{
	width: 1200px;
	margin: 0 auto;
}
.padd{
	padding: 0.1px;
}
.opacity{
	filter:alpha(opacity=80);       /* IE */
	-moz-opacity:0.8;              /* 老版Mozilla */
	-khtml-opacity:08;
}
/* 清除浮动 */
.cb:after{
	content: ".";
	display: block;
	height: 0px;
	overflow: hidden;
	visibility: hidden;
	clear: both;
}
/* 内联块级元素 */
.ib,.flexslider .hd ul li{
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
body,html{
	width: 100%;
	*overflow-x: hidden;
	min-width: 1345px;
}
.flexslider .hd ul li{
    transition: all .5s cubic-bezier(0, 0.93, 1, 1);
    -webkit-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
    -moz-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
    -ms-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
    -o-transition: all .5s cubic-bezier(0, 0.93, 1, 1);
}
.jd-list ul li:hover img{
	-webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.th{
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}
.w{
	width: 100%;
}
.pr{
	position: relative;
}
.oh{
	overflow: hidden;
}
.br{
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#BF000000,endColorstr=#BF000000);
}
.w120{
	width: 120%;
}
/*公共样式结束*/
/*banner*/
.flexslider{
	width: 100%;
	height: 500px;
	overflow: hidden;
	position: relative;
}
.flexslider .bd{
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 0;
}
.flexslider .bd ul{
	width: 100%;
	height: 100%;
}
.flexslider .bd li{
	width: 100%;
	height: 500px;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
}
.flexslider .hd{
	position: absolute;
	width: 100%;
	height: 25px;
	left: 0;
	bottom: 33px;
	text-align: center;
}
.flexslider .hd ul li{
	width: 27px;
	height: 27px;
	background:url(../images/dot.png) 0px 0px no-repeat;
	cursor: pointer;
	float: none;
}
.flexslider .hd ul li.on{
	background-position: -32px 0;
}
.flexslider .bd li{
    -webkit-animation: scaleUpDown 6s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940);
 	animation: scaleUpDown 6s forwards cubic-bezier(0.250, 0.460, 0.450, 0.940); 
}
@-webkit-keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    to {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }
}
@keyframes scaleUpDown {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    to {
        -webkit-transform: scale(1.08);
        transform: scale(1.08);
    }
}
/*banner*/




a{
	color: inherit;
	-webkit-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;
}
a:hover{
	color: #fd5c0a;
}