@charset "utf-8";

/* CSS Document */

body,
ul,
li,
p,
h1,
h2,
h3,
h4,
h5,
h6,
img,
br,
hr,
table,
tr,
td,
dl,
dt,
dd,
form {
	margin: 0;
	padding: 0;
}

html {
	font-family: Microsoft YaHei, sans-serif, Arial;
	/*默认字体*/
	font-size: 100%;
	/* 在用户调整窗口大小时，字体大小做相应调整。 */
	-ms-text-size-adjust: 100%;
	/* IE浏览器 */
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	background: #fff;
}

body {
	border: 0;
	word-break: break-all;
	word-wrap: break-word;
	font-size: 14px;
	line-height: 24px;
	color: #585858;
	text-align: center;
}


/* 设置内容左对齐，恢复因BODY设置剧中产生的继承 */

body div {
	text-align: left;
}


/* 标签属性，textarea,input 强制输入时内容超出时换行 */

textarea,
input {
	word-wrap: break-word;
	word-break: break-all;
	padding: 0px;
}


/* 清除ul列表标记的样式，ul列表更多的用在不需要列表前置符号的样式里 */

li {
	padding: 0;
	margin: 0;
	list-style: none outside none;
}


/* dl dt dd */

dt {
	font-weight: bold;
}


/* 定义图片边框，当图片作为链接内容被填充时，会有默认边框出现，重定义掉 */


/* 定义图片边框，当图片作为链接内容被填充时，会有默认边框出现，重定义掉 */

img {
	border: 0 none;
	vertical-align: middle;
	-ms-interpolation-mode: bicubic;
}


/* 定义默认的链接样式，仅仅是作为默认样式提供，可以在各自的实例中覆盖掉 */

a:link,
a:visited {
	text-decoration: none;
}

a {
	background-color: transparent;
	color: #585858;
	display: inline-block;
	text-decoration: none;
}

a:focus {
	outline: 0;
}

a:active,
a:hover {
	outline: 0;
	color: #095cb1;
}


/* 去掉链接的虚线框 */

a {
	outline: none;
	star: expression(this.onFocus=this.blur());
}


/* 定义H系列标签，覆盖H系列标签默认属性 */

h1 {
	font-size: 24px;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 18px;
}

h4 {
	font-size: 16px;
}

h5 {
	font-size: 14px;
}

h6 {
	font-size: 12px;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

hr {
	/*hr 标签定义水平线：*/
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	height: 0;
}

pre {
	font-family: monospace, serif;
	font-size: 1em;
	white-space: pre-wrap;
}

q {
	quotes: "\201C" "\201D" "\2018" "\2019";
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

svg:not(:root) {
	overflow: hidden;
}

button,
input,
select,
textarea {
	background-color: transparent;
	outline: 0 none;
	vertical-align: baseline;
	*vertical-align: middle;
	font-family: inherit;
	/* 更改关联字体属性在IE8/9浏览器中没有被继承的问题 */
	font-size: 100%;
	/* 更改字体大小属性在IE8/9浏览器中没有被继承的问题 */
	margin: 0;
	/* 调整边距设置在Firefox 4+, Safari 5, 和 Chrome浏览器中的兼容性问题 */
	border: 0;
}

button,
input {
	line-height: normal;
}

button:focus,
input:focus {
	outline: none;
	border: 0;
}

button,
select {
	text-transform: none;
}

select,
button,
.pointer {
	cursor: pointer;
}

input[type="button"],
input[type="reset"],
input[type="submit"],
label[for],
input[type='image'] {
	-webkit-appearance: button;
	cursor: pointer;
	*overflow: visible;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
	*height: 13px;
	*width: 13px;
}

input[type="search"] {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
	/*resize: none;*/
}

button,
select {
	text-transform: none;
}

[hidden] {
	display: none;
}

a[href],
input[type='submit'],
input[type='image'],
label[for],
select,
button,
.pointer {
	cursor: pointer;
}


/*input placeholder*/

:-moz-placeholder {
	color: #999;
}

::-webkit-input-placeholder {
	color: #999;
}


/**/


/*
自定义文本选择
*/

::selection {
	background-color: #0d64b6;
	color: #fff;
}

::-moz-selection {
	background-color: #0d64b6;
	color: #fff;
}

::-webkit-selection {
	background-color: #0d64b6;
	color: #fff;
}

table {
	border-spacing: 0;
	/* 设置相邻单元格的边框间的距离为0 */
	border-collapse: collapse;
	/* 为表格设置合并边框模型 */
}

th {
	text-align: left;
	font-weight: normal;
}

caption {
	text-align: left;
}


/**/

body {
	min-width: 1300px;
	overflow-x: hidden;
}

.container {
	width: 1300px !important;
	margin: auto;
	position: relative;
}

.mx1200 {
	width: 1200px !important;
	margin: auto;
	position: relative;
}

.container-fluid {
	width: 100%;
	margin: auto;
	position: relative;
}

.mx1200:after,
.containe-fluid:after,
.container:after {
	clear: both;
}

.mx1200:before,
.container-fluid:before,
.container:before {
	display: table;
	content: " "
}

.line {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}

.f-l {
	float: left !important;
	display: inline;
}

.f-r {
	float: right !important;
	display: inline;
}

.ov-h {
	overflow: hidden !important;
}

.ta-l {
	text-align: left !important;
}

.ta-c {
	text-align: center !important;
}

.ta-r {
	text-align: right !important;
}


/*fz*/

.fz12 {
	font-size: 12px !important;
}

.fz14 {
	font-size: 14px !important;
}

.fz16 {
	font-size: 16px !important;
}

.fz18 {
	font-size: 18px !important;
}

.fz20 {
	font-size: 20px !important;
}

.fz22 {
	font-size: 22px !important;
}

.fz24 {
	font-size: 24px !important;
}

.fz30 {
	font-size: 30px !important;
}


/*5*/

.m5 {
	margin: 5px !important;
}

.mt5 {
	margin-top: 5px !important;
}

.mb5 {
	margin-bottom: 5px !important;
}

.ml5 {
	margin-left: 5px !important;
}

.mr5 {
	margin-right: 5px !important;
}

.p5 {
	padding: 5px !important;
}

.pt5 {
	padding-top: 5px !important;
}

.pb5 {
	padding-bottom: 5px !important;
}

.pl5 {
	padding-left: 5px !important;
}

.pr5 {
	padding-right: 5px !important;
}
/*10*/

.m10 {
	margin: 10px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.ml10 {
	margin-left: 10px !important;
}

.mr10 {
	margin-right: 10px !important;
}

.p10 {
	padding: 10px !important;
}

.pt10 {
	padding-top: 10px !important;
}

.pb10 {
	padding-bottom: 10px !important;
}

.pl10 {
	padding-left: 10px !important;
}

.pr10 {
	padding-right: 10px !important;
}

/*14*/

.m14 {
	margin: 14px !important;
}

.mt14 {
	margin-top: 14px !important;
}

.mb14 {
	margin-bottom: 14px !important;
}

.ml14 {
	margin-left: 14px !important;
}

.mr14 {
	margin-right: 14px !important;
}

.p14 {
	padding: 14px !important;
}

.pt14 {
	padding-top: 14px !important;
}

.pb14 {
	padding-bottom: 14px !important;
}

.pl14 {
	padding-left: 14px !important;
}

.pr14 {
	padding-right: 14px !important;
}

/*16*/

.m16 {
	margin: 16px !important;
}

.mt16 {
	margin-top: 16px !important;
}

.mb16 {
	margin-bottom: 16px !important;
}

.ml16 {
	margin-left: 16px !important;
}

.mr16 {
	margin-right: 16px !important;
}

.p16 {
	padding: 16px !important;
}

.pt16 {
	padding-top: 16px !important;
}

.pb16 {
	padding-bottom: 16px !important;
}

.pl16 {
	padding-left: 16px !important;
}

.pr16 {
	padding-right: 16px !important;
}

/*20*/

.m20 {
	margin: 20px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.ml20 {
	margin-left: 20px !important;
}

.mr20 {
	margin-right: 20px !important;
}

.p20 {
	padding: 20px !important;
}

.pt20 {
	padding-top: 20px !important;
}

.pb20 {
	padding-bottom: 20px !important;
}

.pl20 {
	padding-left: 20px !important;
}

.pr20 {
	padding-right: 20px !important;
}

/*24*/

.m24 {
	margin: 24px !important;
}

.mt24 {
	margin-top: 24px !important;
}

.mb24 {
	margin-bottom: 24px !important;
}

.ml24 {
	margin-left: 24px !important;
}

.mr24 {
	margin-right: 24px !important;
}

.p24 {
	padding: 24px !important;
}

.pt24 {
	padding-top: 24px !important;
}

.pb24 {
	padding-bottom: 24px !important;
}

.pl24 {
	padding-left: 24px !important;
}

.pr24 {
	padding-right: 24px !important;
}

/*30*/

.m30 {
	margin: 30px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.ml30 {
	margin-left: 30px !important;
}

.mr30 {
	margin-right: 30px !important;
}

.p30 {
	padding: 30px !important;
}

.pt30 {
	padding-top: 30px !important;
}

.pb30 {
	padding-bottom: 30px !important;
}

.pl30 {
	padding-left: 30px !important;
}

.pr30 {
	padding-right: 30px !important;
}
/**/

.fc999 {
	color: #999 !important;
}

.fc666 {
	color: #999 !important;
}

.fc444 {
	color: #444 !important;
}

.fc333 {
	color: #333 !important;
}
.fcfff{
	color: #fff !important;
}

