@charset "UTF-8";
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: #333333
}

a:hover {
	/*color: #e21b1b;*/
}

a,
span {
	vertical-align: middle;
}

img {
	border: 0;
	vertical-align: middle;
}

input,
button,
text {
	vertical-align: middle;
	outline: none;
	border: none;
}

button {
	padding: 0;
	cursor: pointer;
}

button::-moz-focus-inner {
	padding: 0;
}


/*for FireFox button 内置padding为0*/

textarea {
	outline: none;
	border: none;
	resize: none;
}

input,
textarea {
	box-sizing: content-box;
	outline: none;
	background: 0 0;
	font-family: "Microsoft YaHei"
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: #acacac;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #acacac;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	color: #acacac;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: #acacac;
}

table tr td,
table {
	border-collapse: collapse;
}


/* 可任意设置td,tr,table的边框而不会重合*/

body {
	position: relative;
	min-width: 1200px;
	font-size: 0;
	color: #000;
	font-family: "Microsoft YaHei";
}


/********************************通用样式*********************************/


/* 浮动 */

.rt {
	float: right;
}

.lf {
	float: left;
}


/*清除浮动*/

.clearfix {
	*zoom: 1;
}


/* 针对IE7 hack，触发IE7的haslayout，以清除浮动 */

.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	line-height: 0;
}

.clearfix:after {
	clear: both;
}


/* 居中 */

.centerWidth {
	width: 1200px;
	margin: 0 auto;
}


/*省略号：添加元素必定包含块级元素上（有float、block、inline-block等）*/

.ellipsis,
.e {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* hover效果 */

.m-opc:hover {
	opacity: 0.9;
}


/* 导航栏 */

.m-nav .a {
	display: block;
}


/* 图片宽高 */

.imgWh .img {
	width: 100%;
	height: 100%;
	vertical-align: top;
}


/* 背景图 */

.bgBox {
	position: relative;
	overflow: hidden;
}

.bgBox_img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}


/* 行内块级元素 */

.db {
	display: inline-block;
}


/* 单行文字 */

.one {
	line-height: 1;
}


/* 文字左排列 */

.text-lf {
	text-align: left;
}


/* 文字列表 */

.m-text-list li {
	box-sizing: border-box;
	float: left;
	width: 100%;
}

.m-text-list li:first-child {
	margin-top: 0;
}

.m-text-list .a {
	float: left;
	max-width: 65%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.m-text-list .d {
	float: right;
}


/* tab切换 */


/*.m-tab {
	overflow: hidden;
}*/

.tabItems>.item:first-child {
	display: block;
}


/* 左右两列等高 */

.m-overview {
	overflow: hidden;
}

.m-overview .row {
	padding-bottom: 99999px;
	margin-bottom: -99999px;
}


/* 图片hover收缩 */


/* 鼠标离开时的过渡还原动画 */

.m_scaleS_img .a .img {
	transition: 1s;
	-webkit-transition: 1s;
	/* Safari */
	transform: scale(1);
	-ms-transform: scale(1);
	/* IE 9 */
	-webkit-transform: scale(1);
	/* Safari and Chrome */
}

.m_scaleS_img .a:hover .img {
	transition: 1s;
	-webkit-transition: 1s;
	/* Safari */
	transform: scale(0.95);
	-ms-transform: scale(0.95);
	/* IE 9 */
	-webkit-transform: scale(0.95);
	/* Safari and Chrome */
}


/* 图片hover放大 */

.m_scaleB_img .a .img {
	transition: 1s;
	-webkit-transition: 1s;
	/* Safari */
	transform: scale(1);
	-ms-transform: scale(1);
	/* IE 9 */
	-webkit-transform: scale(1);
	/* Safari and Chrome */
}

.m_scaleB_img .a:hover .img {
	transition: 1s;
	-webkit-transition: 1s;
	/* Safari */
	transform: scale(1.05);
	-ms-transform: scale(1.05);
	/* IE 9 */
	-webkit-transform: scale(1.05);
	/* Safari and Chrome */
}


/* 图片hover抖动 */

.m_shake_img .a:hover .img {
	animation: myfirst 1s;
	-moz-animation: myfirst 1s;
	/* Firefox */
	-webkit-animation: myfirst 1s;
	/* Safari 和 Chrome */
	-o-animation: myfirst 1s;
	/* Opera */
}


/* 单行文本两端对齐 */

.one_jus {
	text-align: justify;
	text-align-last: justify;
}


/********************************动画*********************************/

@keyframes myfirst {
	0% {
		transform: rotate(10deg);
	}
	20% {
		transform: rotate(-10deg);
	}
	40% {
		transform: rotate(10deg);
	}
	60% {
		transform: rotate(-10deg);
	}
	80% {
		transform: rotate(10deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@-moz-keyframes myfirst
/* Firefox */

{
	0% {
		transform: rotate(10deg);
	}
	20% {
		transform: rotate(-10deg);
	}
	40% {
		transform: rotate(10deg);
	}
	60% {
		transform: rotate(-10deg);
	}
	80% {
		transform: rotate(5deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@-webkit-keyframes myfirst
/* Safari 和 Chrome */

{
	0% {
		transform: rotate(10deg);
	}
	20% {
		transform: rotate(-10deg);
	}
	40% {
		transform: rotate(10deg);
	}
	60% {
		transform: rotate(-10deg);
	}
	80% {
		transform: rotate(5deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@-o-keyframes myfirst
/* Opera */

{
	0% {
		transform: rotate(10deg);
	}
	20% {
		transform: rotate(-10deg);
	}
	40% {
		transform: rotate(10deg);
	}
	60% {
		transform: rotate(-10deg);
	}
	80% {
		transform: rotate(5deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

@keyframes mytwo {
	0% {
		transform: scale(1.2);
	}
	20% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.1);
	}
	60% {
		transform: scale(1.2);
	}
	80% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

@-moz-keyframes mytwo
/* Firefox */

{
	0% {
		transform: scale(1.2);
	}
	20% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.1);
	}
	60% {
		transform: scale(1.2);
	}
	80% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

@-webkit-keyframes mytwo
/* Safari 和 Chrome */

{
	0% {
		transform: scale(1.2);
	}
	20% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.1);
	}
	60% {
		transform: scale(1.2);
	}
	80% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

@-o-keyframes mytwo
/* Opera */

{
	0% {
		transform: scale(1.2);
	}
	20% {
		transform: scale(1);
	}
	40% {
		transform: scale(1.1);
	}
	60% {
		transform: scale(1.2);
	}
	80% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}


/********************************轮播*********************************/


/* 图片轮播 */

.m-lb-img {
	position: relative;
	overflow: hidden;
}

.lbItems,
.lbItems .a,
.lbItems .a img {
	width: 100%;
	height: 100%;
}

.lbItems .a {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
}

.lbIists {
	box-sizing: border-box;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	overflow: hidden;
}

.lbIists .a {
	display: block;
	max-width: 65%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: #fff;
}

.lbIists .a:hover {
	font-weight: bold;
}

.lbNums {
	position: absolute;
}

.lbNums span {
	float: left;
	border-radius: 50%;
	cursor: pointer;
}

.lbIndexs {
	position: absolute;
}

.lbBtns .btn {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	cursor: pointer;
	text-align: center;
	font-family: "宋体";
}

.lbBtns .lfBtn {
	left: 0;
}

.lbBtns .rtBtn {
	right: 0;
}


/* 背景图轮播 */

.m_lb_bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: -1;
}

.m_lb_bg .a {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.m_lb_bg .a .img {
	position: absolute;
	left: 50%;
	top: 0;
	width: auto;
	height: 100%;
	margin-left: -960px;
}


/* 文字轮播 */

.m-lb-tt {
	position: relative;
	overflow: hidden;
}

.lb-tt-bnr {
	height: 100%;
}

.lb-tt-item {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.lb-tt-item .title,
.lb-tt-item .atr {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.lb-tt-item .title {
	display: block;
	text-align: center;
}

.lb-tt-item .title:hover {
	text-decoration: underline;
}

.lb-tt-btn {
	position: absolute;
}

.lb-tt-btn .btn {
	cursor: pointer;
}

.nav {
	background: url(../img/nav_bg.jpg) repeat-x 0 0;
	height: 37px;
	width: 100%;
}

#menu {
	width: 100%;
}

.nav_home li {
	float: left;
	font-family: "FZYouHK_512B", "微软雅黑", "宋体";
	font-size: 16px;
	color: #fff;
	border-right: 1px solid #bfbfbf;
	display: block;
}

#nav li a {
	display: inline-block;
	color: #fff;
	padding: 0 26px;
	line-height: 37px;
}

#nav li a.active {
	background: #256DC3;
}

.nav_home ul li:hover a {
	background: #256DC3;
}

.header .top {
	overflow: hidden;
	padding: 15px 0;
}

.logo {
	float: left;
	/* width: 345px; */
}

.logo img {
	/* width: 190px; */
	max-height: 42px;
}

.search,
.tools {
	float: right;
	margin-top: 4px;
}

.search {
	position: relative;
	width: 300px;
}

.search-input {
	padding: 0 10px;
	box-sizing: border-box;
	width: 300px;
	height: 34px;
	font-size: 14px;
	color: #8e8e93;
	line-height: 34px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 20px;
}

.search-input:focus {
	outline: none;
	border-color: #8e8e93;
}

.search-btn {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 25px;
	height: 25px;
	background: #fff url(../img/search-btn.png) no-repeat center center;
	border-radius: 20px;
	background-size: 25px 25px;
	cursor: pointer;
	border: none;
}


/* 下拉 */

.m-drop-select {
	position: relative;
	box-sizing: border-box;
}

.m-drop-select .select {
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	position: relative;
}

.m-drop-select .select .tt {
	/* max-width: 80%; */
	overflow-x: auto;
}

.m-drop-select .select .arrow {
	transition: 1s;
	-webkit-transition: 1s;
	transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
}

.m-drop-select .select .arrow.cur {
	transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

.dropdown-menu {
	display: none;
	box-sizing: border-box;
	position: absolute;
	left: 0px;
	width: 100%;
	max-height: 100px;
	overflow: auto;
	z-index: 1;
	background: #fff;
}

.dropdown-menu .a:hover {
	font-weight: bold;
	text-decoration: underline;
}

.m-select {
	display: none;
}


/*padding*/

.pt10 {
	padding-top: 10px;
}

.pt20 {
	padding-top: 20px;
}

.pt40 {
	padding-top: 40px;
}

.pt23 {
	padding-top: 23px;
}

.pt25 {
	padding-top: 25px;
}

.pt35 {
	padding-top: 35px;
}

.pb70 {
	padding-bottom: 70px;
}

.pb46 {
	padding-bottom: 46px;
}

.pb12 {
	padding-bottom: 12px;
}

.pb50 {
	padding-bottom: 50px;
}

.pb20 {
	padding-bottom: 20px;
}


/*margin*/

.mt30 {
	margin-top: 30px;
}

.mt40 {
	margin-top: 40px;
}

.mt15 {
	margin-top: 15px;
}

.mt18 {
	margin-top: 18px;
}

.mt5 {
	margin-top: 5px;
}

.mt25 {
	margin-top: 25px;
}

.mt44 {
	margin-top: 44px;
}

.mt45 {
	margin-top: 45px;
}

.mt20 {
	margin-top: 20px;
}

.mt10 {
	margin-top: 10px;
}

.mt40 {
	margin-top: 40px;
}

.mt50 {
	margin-top: 50px;
}

.mr10 {
	margin-right: 10px;
}

.mr20 {
	margin-right: 20px;
}

.mr30 {
	margin-right: 30px;
}

.mr14 {
	margin-right: 14px;
}

.mr0 {
	margin-right: 0px!important;
}

.mr30 {
	margin-right: 30px;
}

.mr40 {
	margin-right: 40px;
}

.ml10 {
	margin-left: 10px;
}

.ml20 {
	margin-left: 20px;
}

.mb50 {
	margin-bottom: 50px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb35 {
	margin-bottom: 35px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb10 {
	margin-bottom: 10px;
}


/*底部*/

.footbgs {
	padding: 20px 0;
	background: #206fcc;
	width: 100%;
	border-top: 1px solid #ddd;
	margin-top: 30px;
}

.footer {
	padding: 20px 0;
	margin-top: 10px;
	color: #fff;
	overflow: hidden;
	margin: auto;
	box-sizing: border-box;
}

.wrap {
	margin-bottom: 40px;
}

.footer a {
	color: #fff;
}

.footer a:hover {
	color: #fff !important;
}

.youq {
	overflow: hidden;
	padding-bottom: 20px;
}

.youq li {
	float: left;
	padding: 0 10px;
	font-size: 14px;
}

.links {
	overflow: hidden;
}

.links ul.youq {
	width: 1040px;
	float: left;
}

.links .lian {
	float: left;
	width: 100px;
}

#link_896a3aee.links {
	text-align: left;
	font-size: 12px;
	padding-top: 20px;
}

#link_896a3aee.links ul {
	clear: both;
	padding-bottom: 20px;
}

#link_896a3aee.links li {
	float: left;
	margin-right: 10px;
	line-height: 1.8em;
	list-style: none;
	padding: 0;
}

#link_896a3aee.links em {
	clear: both;
	display: block;
}

#link_896a3aee.links #link_menu li {
	font-size: 14px;
	line-height: 2.5em;
	cursor: pointer;
	width: 5em;
	text-align: center;
}

#link_896a3aee.links #link_menu i {
	font-size: 12px;
	line-height: 2.9em;
	float: right;
	font-style: normal;
}

#link_896a3aee.links .on {
	font-weight: bold;
}

.goTop {
	position: fixed;
	bottom: 200px;
	right: 200px;
	width: 50px;
	height: 50px;
	overflow: hidden;
	background: url(../img/arr.png) no-repeat center center #fff;
	text-indent: -999em;
	transition: all 0.3s;
	cursor: pointer;
	background-color: #252525;
	background-size: 45%;
	border-radius: 50%;
	z-index: 999;
	cursor: pointer;
}

@media only screen and (min-width: 1500px) and (max-width: 1700px) {
	.goTop {
		right: 80px;
	}
}

@media only screen and (min-width: 1000px) and (max-width: 1500px) {
	.goTop {
		right: 0;
	}
}

.beian {
	font-size: 14px;
	text-align: center;
}

.guangao {
	width: 100%;
	height: 90px;
	position: relative;
	margin: 0 auto;
}

.guangao img.guang {
	width: 100%;
	height: 90px;
}

.guangao img.close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: -16px;
	right: -15px;
	z-index: 99;
	cursor: pointer;
}

.gaoindex {
	width: 300px;
	height: 300px;
	position: relative;
}

.gaoindex img.guang {
	width: 300px;
	height: 300px;
	border: 1px solid #eee;
	box-sizing: border-box;
}