﻿@charset "utf-8";
body,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
fieldset,
lengend,
button,
input,
textarea,
th,
td {
    margin: 0;
    padding: 0;
}
body,
button,
input,
select,
textarea {
    /* for ie */
    /*font: 12px/1 Tahoma, Helvetica, Arial, "宋体", sans-serif;*/
    font: 14px/1 '\u5fae\u8f6f\u96c5\u9ed1',Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif;
}
h1 {
    font-size: 18px;
    /* 18px / 12px = 1.5 */
}
h2 {
    font-size: 16px;
}
h3 {
    font-size: 14px;
}
h4,
h5,
h6 {
    font-size: 100%;
}
address,
cite,
dfn,
em,
var {
    font-style: normal;
}
small {
    font-size: 12px;
}
ul,
ol {
    list-style: none;
}
a {
    text-decoration: none;
    color: #000;
    outline: none;
}
a:hover {
    text-decoration: none;
}
abbr[title],
acronym[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
q:before,
q:after {
    content: '';
}
legend {
    color: #000;
}
fieldset,
img {
    border: none;
}
button,
input,
select,
textarea {
    font-size: 100%;
}
input {
    outline: none;
    border: 0;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    border: none;
    height: 1px;
}
/* 让非ie浏览器默认也显示垂直滚动条，防止因滚动条引起的闪烁 */
/*html {*/
    /*overflow-y: scroll;*/
/*}*/
.clearfix:after {
    content: "\200B";
    display: block;
    height: 0;
    clear: both;
}
.clearfix {
    *zoom: 1;
}
.fl {
    float: left;
}
.fr {
    float: right;
}
.hidden{
	display: none;
}
/*loading*/
.loading {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background: #0d0d0d;
}
.loading_all{
	width: 258px;
	height: 100px;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -50px 0 0 -129px;
}
.loading p {
	text-align: center;
	color: #fff;
	line-height: 30px;
	font-size: 25px;
}
.loading .logo1 {
	width: 52px;
	display: inline-block;
	-moz-animation: question 2s linear infinite;
	-webkit-animation: question 2s linear infinite;
	animation: question 2s linear infinite;
}
.loading .logo2 {
	width: 201px;
	display: inline-block;
}
@-moz-keyframes question {
	0% {
		-moz-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-moz-animation-timing-function: ease-out;
	}
	20% {
		-moz-transform: perspective(400px) translate3d(0, 0, 60px) rotate3d(0, 1, 0, -190deg);
		-moz-animation-timing-function: ease-out;
	}
	25% {
		-moz-transform: perspective(400px) translate3d(0, 0, 60px) rotate3d(0, 1, 0, -170deg);
		-moz-animation-timing-function: ease-in;
	}
	40% {
		-moz-transform: perspective(400px) scale3d(.95, .95, .95);
		-moz-animation-timing-function: ease-in;
	}
	50% {
		-moz-transform: perspective(400px);
		-moz-animation-timing-function: ease-in;
	}
}
@-webkit-keyframes question {
	0% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
	}
	20% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 60px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
	}
	25% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 60px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
	}
	40% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
		-webkit-animation-timing-function: ease-in;
	}
	50% {
		-webkit-transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
	}
}
@keyframes question {
	0% {
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		animation-timing-function: ease-out;
	}
	20% {
		transform: perspective(400px) translate3d(0, 0, 60px) rotate3d(0, 1, 0, -190deg);
		animation-timing-function: ease-out;
	}
	25% {
		transform: perspective(400px) translate3d(0, 0, 60px) rotate3d(0, 1, 0, -170deg);
		animation-timing-function: ease-in;
	}
	40% {
		transform: perspective(400px) scale3d(.95, .95, .95);
		animation-timing-function: ease-in;
	}
	50% {
		transform: perspective(400px);
		animation-timing-function: ease-in;
	}
}
.loadingDot {
	min-width: 2px;
	min-height: 2px;
	display: inline-block;
	box-shadow: 2px 0 currentColor, 6px 0 currentColor, 10px 0 currentColor;
	-webkit-animation: dot 2.4s infinite steps(1, start);
	-moz-animation: dot 2.4s infinite steps(1, start);
	animation: dot 2.4s infinite steps(1, start);
}
@-webkit-keyframes dot {
	25% {
		box-shadow: none;
	}
	50% {
		box-shadow: 2px 0 currentColor;
	}
	75% {
		box-shadow: 2px 0 currentColor, 6px 0 currentColor;
	}
}
@keyframes dot {
	25% {
		box-shadow: none;
	}
	50% {
		box-shadow: 2px 0 currentColor;
	}
	75% {
		box-shadow: 2px 0 currentColor, 6px 0 currentColor;
	}
}
@-moz-keyframes dot {
	25% {
		box-shadow: none;
	}
	50% {
		box-shadow: 2px 0 currentColor;
	}
	75% {
		box-shadow: 2px 0 currentColor, 6px 0 currentColor;
	}
}
/*footer*/
.footer {
    float: left;
    width: 100%;
    min-width: 1000px;
    position: relative;
    z-index: 8888;
    padding: 20px 0 40px 0;
    overflow: hidden;
    background-color: #000000;
}
.footer .wrap {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 1000px;
    margin: 0 auto
}
.footer .wrap .ti {
    text-indent: -999em
}
.footer .f_link {
    display: inline;
    float: left;
    width: 270px;
    height: 52px;
    margin: 30px 0 0 12px;
    //background: url(../images/f_logo.png) no-repeat 0 0;
}
.footer .f_link a {
    float: left;
    height: 52px
}
.footer .f_link a.jbt_link {
    width: 125px
}
.footer .f_link a.ltyx_link {
    width: 140px
}
.footer .f_txt {
    /*float: left;*/
    padding: 14px 0 0 10px;
	text-align: center;
    color: #a5a5a5
}
.footer .f_txt p {
    height: 24px;
    font: 400 12px/2em '\5FAE\8F6F\96C5\9ED1',tahoma,sans-serif
}
.footer .f_txt p a {
    color: #7b7f82;
    font: 400 12px/2em '\5FAE\8F6F\96C5\9ED1',tahoma,sans-serif;
    text-decoration: none
}
.footer .f_txt p a:hover {
    color: #7b7f82;
    text-decoration: underline
}
.footer .f_txt p a img {
    vertical-align: middle
}
.footer .f_txt p a:hover img {
    text-decoration: none
}
.footer .f_txt p span {
    font-family: Arial
}
