@import "base.css";

:root {
	--animate-duration: .5s;
	--animate-delay: .5s;
	--animate-repeat: 1
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}

	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		transform: translateY(20px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0)
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px)
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0)
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@font-face {
	font-family: "sySong";
	src: url("../fonts/sySong.woff2") format("woff2"), url("../fonts/sySong.woff") format("woff");
	font-style: normal;
	font-weight: normal
}

.sySong,
.tit h2 {
	font-family: "sySong"
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

#browser-modal {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-align: center;
	color: #303233;
	position: fixed;
	z-index: 9990009
}

#browser-modal .browser-modal-cover {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #222;
	opacity: .9;
	z-index: -1
}

#browser-modal .browser-content {
	width: 700px;
	margin-top: 120px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 80px;
	padding-top: 50px;
	background-color: #fff;
	border-radius: 5px
}

#browser-modal .browser-content .browser-dpc-logo img {
	height: 42px;
	margin: 45px auto 40px
}

#browser-modal .browser-content .browser-text-title {
	text-transform: uppercase;
	font-size: 24px
}

#browser-modal .browser-content .browser-text-desc {
	margin-top: 30px;
	margin-bottom: 20px;
	font-size: 14px
}

#browser-modal .browser-content .browser-list {
	width: 600px;
	margin: 20px auto;
	height: 130px
}

#browser-modal .browser-content .browser-item {
	float: left;
	width: 150px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-left: auto;
	margin-right: auto
}

#browser-modal .browser-content .browser-item .iconfont {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	font-size: 80px;
	line-height: 80px;
	margin-bottom: 10px
}

#browser-modal .browser-content .browser-item .iconchrome {
	background: url(../images/bro.png) no-repeat 0 0
}

#browser-modal .browser-content .browser-item .iconfirefox {
	background: url(../images/bro.png) no-repeat 0 -100px
}

#browser-modal .browser-content .browser-item .iconopera {
	background: url(../images/bro.png) no-repeat 0 -200px
}

#browser-modal .browser-content .browser-item .iconEdge {
	background: url(../images/bro.png) no-repeat 0 -300px
}

#browser-modal .browser-content .browser-item a {
	cursor: pointer;
	display: block
}

#browser-modal .browser-content .browser-item a img {
	display: block;
	margin: 0 auto;
	max-width: 100px;
	width: 100px;
	height: 100px
}

#browser-modal .browser-content .browser-item a h4 {
	text-align: center;
	margin-top: 20px;
	font-size: 18px;
	font-weight: 700
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box
}

body {
	overflow-x: hidden
}

section,
.w1400 {
	max-width: 1400px;
	margin: 0 auto
}

.cover_bg,
.cover_img>div:first-child {
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: cover
}

.cover_img {
	position: relative;
	overflow: hidden
}

a:hover .cover_img>div:first-child,
.cover_img:hover>div:first-child {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}

.link_news a:hover i {
	-webkit-transform: scale(.95);
	transform: scale(.95)
}

.cover_img div {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.slick-dots li {
	cursor: pointer
}

.no_scroll {
	overflow: hidden
}

header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 9999
}

header section {
	height: 106px;
	max-width: 1680px;
	z-index: 6
}

header.on {
	box-shadow: 0 2px 4px rgba(0, 0, 0, .2)
}

header:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	height: 0;
	background: #193366
}

header.on:before {
	height: 100%
}

header.on .t_nav li:hover .sub_nav {
	top: 100%
}

.t_logo,
.t_search,
.menu {
	z-index: 9999
}

.t_logo {
	line-height: 124px
}

.t_logo img {
	vertical-align: middle;
	display: inline-block;
	max-height: 72px;
	margin-top: -2px
}

header .fr a {
	display: inline-block;
	padding: 0 20px
}

.inset_bar img {
    width: 100%;
}

.t_search {
	right: -90px;
	width: 45px;
	height: 41px;
	background: #00b7ee url(../images/t_search.png) 50% no-repeat
}

.t_top>.i {
	background: #0068b7;
	position: relative
}

.t_top>.i:before,
.t_top>.i:after {
	content: '';
	position: absolute;
	top: 0
}

.t_top>.i:before {
	left: -21px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 41px 21px;
	border-color: transparent transparent #0068b7 transparent
}

.t_top>.i:after {
	width: 300%;
	height: 100%;
	left: 100%;
	background: #0068b7
}

.t_top a {
	color: #fff
}

.txt_l a {
	padding: 0 6px
}

.txt_r a {
	padding: 0 10px;
	line-height: 14px
}

.txt_r a:not(:first-child) {
	border-left: 1px solid #b8c3d8
}

.txt_r a:last-child {
	border: none
}

.i_arrow {
	border-style: solid;
	border-width: 4px 0 4px 4px;
	border-color: transparent transparent transparent #b8c3d8;
	margin: 0 0 0 6px;
	vertical-align: baseline
}

.t_nav {
	position: relative;
	margin: 0 -30px
}

.t_nav li {
	display: inline-block;
	position: relative;
	font-size: 18px;
	vertical-align: top
}

.t_nav h3 {
	font-weight: normal;
	position: relative;
	z-index: 3
}

.t_nav h3 a {
	font-size: 20px;
	display: block;
	color: #fff;
	line-height: 83px;
	padding: 0 30px
}

.t_nav a {
	display: block;
	color: #fff
}

.t_nav .sub_nav {
	position: absolute;
	top: calc(100% + 10px);
	font-size: 14px;
	background: rgba(28, 74, 164, .85);
	width: -webkit-max-content;
	width: -moz-max-content;
	min-width: 100%;
	opacity: 0;
	filter: alpha(opacity=0);
	visibility: hidden;
	z-index: 6
}

.t_nav li:hover .sub_nav {
	top: calc(100% - 8px);
	opacity: 1;
	filter: alpha(opacity=100);
	visibility: visible
}

.t_nav .sub_nav a {
	padding: 0 10px;
	font-size: 18px;
	color: #fff;
	line-height: 46px;
	white-space: nowrap;
	display: block
}

.t_nav .sub_nav a:hover {
	color: #f39800
}

.t_nav .sub_nav a:not(:first-child) {
	border-top: 1px solid rgba(255, 255, 255, .16)
}

.t_nav .sub_nav:before,
.t_nav .sub_nav:after {
	content: '';
	position: absolute
}

.t_nav .sub_nav:after {
	top: -8px;
	border-style: solid;
	border-width: 0 7px 8px 7px;
	border-color: transparent
}

.t_nav li:hover .sub_nav:after {
	border-color: transparent transparent rgba(28, 74, 164, .85) transparent
}

.search_wrap {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #666;
	transition: all 0.5s;
	z-index: 99999;
	display: none
}

.search_wrap .search_box {
	position: fixed;
	width: 80%;
	max-width: 660px;
	z-index: 999;
	z-index: 3;
	display: none
}

.search_wrap .i_txt {
	width: 100%;
	height: 50px;
	position: relative;
	border: none;
	background: none;
	padding: 0 96px 0 15px;
	background: #fff;
	font-size: 16px
}

.search_wrap .submit {
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 50px;
	cursor: pointer
}

.search_wrap .close {
	position: fixed;
	right: 5%;
	top: 10%;
	width: 32px;
	height: 32px;
	background: url(data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQ1IDc5LjE2MzQ5OSwgMjAxOC8wOC8xMy0xNjo0MDoyMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkM2MEUwM0UyRDE0QjExRUFCMkMxQzY0OTVDMkFDRDQyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkM2MEUwM0UzRDE0QjExRUFCMkMxQzY0OTVDMkFDRDQyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QzYwRTAzRTBEMTRCMTFFQUIyQzFDNjQ5NUMyQUNENDIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QzYwRTAzRTFEMTRCMTFFQUIyQzFDNjQ5NUMyQUNENDIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4tLD5kAAABQ0lEQVR42uyaSwrCMBCGh0LvZmnJGUQ8nidyIbgodF1wI0icSIpS6MOamSQ/Bv5NH5n52jSZzoSstUdWz+pYDYsy0Y51Zl1YNXmIod1ZJgMI430d2rUgohu9W8k6sQyl24z3sfw49nB09Ygu5TdjJnytli4wGUC8fFx9YcoQY5BUYVb5tPnGlCCmQFKB+cqHYB3FhFgCiQWzyaZYx5oQa0G0YH6yoWZIum91g1J9RjMcuq+YTzHo2401roMP0RgfqcikoT1tis18mmuA6FqktSqLL6haIYZ4iKMV9InHaZoRrGjkXBBK+w8t4I8dYvqFWBAhQhSIoBEijIf4sYL41YVIPkCkgyASdBApU4gkNkRZAaLQA1F6gyiGQpSnITYMVABbOBp3ss0EYg6mQ9nm1LuDew/T+mGWy8azyvvsfD88BRgACRoA/Uq+It4AAAAASUVORK5CYII=) no-repeat center;
	background-size: cover;
	cursor: pointer;
	transition-duration: .5s;
	z-index: 9999
}

.search_wrap .close:hover {
	transform: rotate(90deg)
}

.search_wrap .bck {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .6);
	z-index: 3
}

.slick-slider {
	position: relative;
	display: block;
	box-sizing: border-box;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
	-ms-touch-action: pan-y;
	touch-action: pan-y;
	-webkit-tap-highlight-color: transparent
}

.slick-list {
	position: relative;
	display: block;
	overflow: hidden;
	margin: 0;
	padding: 0
}

.slick-list:focus {
	outline: none
}

.slick-list.dragging {
	cursor: pointer;
	cursor: hand
}

.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0)
}

.slick-track {
	position: relative;
	top: 0;
	left: 0;
	display: block;
	margin-left: auto;
	margin-right: auto
}

.slick-track:before,
.slick-track:after {
	display: table;
	content: ''
}

.slick-track:after {
	clear: both
}

.slick-loading .slick-track {
	visibility: hidden
}

.slick-slide {
	display: none;
	float: left;
	height: 100%;
	min-height: 1px
}

[dir='rtl'] .slick-slide {
	float: right
}

.slick-slide img {
	display: block
}

.slick-slide.slick-loading img {
	display: none
}

.slick-slide.dragging img {
	pointer-events: none
}

.slick-initialized .slick-slide {
	display: block
}

.slick-loading .slick-slide {
	visibility: hidden
}

.slick-vertical .slick-slide {
	display: block;
	height: auto;
	border: 1px solid transparent
}

.slick-arrow.slick-hidden {
	display: none
}

.slick-arrow {
	cursor: pointer
}

.slick_bar a {
	padding-top: 750px
}

.slick_bar .slick-dots {
	position: absolute;
	font-size: 0;
	bottom: 0;
	text-align: center;
	z-index: 3;
	line-height: 45px;
	padding: 0 20px;
	background: rgba(2, 3, 69, .36)
}

.slick_bar .slick-dots:before,
.slick_bar .slick-dots:after {
	content: '';
	position: absolute;
	width: 0;
	height: 0
}

.slick_bar .slick-dots:before {
	left: -24px;
	border-style: solid;
	border-width: 0 0 45px 24px;
	border-color: transparent transparent rgba(2, 3, 69, .36) transparent
}

.slick_bar .slick-dots:after {
	right: -24px;
	border-style: solid;
	border-width: 45px 0 0 24px;
	border-color: transparent transparent transparent rgba(2, 3, 69, .36)
}

.slick_bar .slick-dots li {
	display: inline-block;
	background: #fff;
	width: 11px;
	height: 11px;
	margin: 0 9px;
	position: relative;
	cursor: pointer;
	border-radius: 50px;
	vertical-align: middle
}

.slick_bar .slick-dots .slick-active {
	background: #00b7ee;
	width: 15px;
	height: 15px
}

.tit {
	margin: 0 0 26px 0;
	color: #333;
	border-bottom: 1px solid #034d9d
}

.tit h2 {
	color: #2a2929;
	padding: 18px 20px
}

.f1 {
	padding: 28px 0 70px
}

.f1 .tit {
	padding: 0 0 0 20px;
	margin: 0 0 26px -20px
}

.f1 .tit:before {
	content: '';
	position: absolute;
	left: 20px;
	width: 1px;
	height: calc(100% + 104px);
	background: #034d9d
}

.f1 .tit .more {
	position: absolute;
	right: 0;
	bottom: -10px;
	background: #fff;
	padding: 0 0 0 22px
}

.f1 .tit h2 {
	position: relative
}

.f1 .tit h2:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background: #193366;
	transform: rotate(45deg);
	left: -5px;
	bottom: -5px
}

.slick_news {
	width: calc(48.8% - 23px)
}

.slick_news .cover_img {
	padding-top: 446px;
	display: block;
	margin: 0 0 0 24px
}

.slick_news .txt {
	background: #193366;
	padding: 20px 106px 20px 18px;
	color: #9ba1b3;
	position: relative;
	margin: 10px 42px 0 0
}

.slick_news h3 {
	font-size: 20px;
	color: #fff;
	margin: 0 0 14px
}

.slick_news .txt p {
	line-height: 22px;
	height: 44px
}

.slick_news time {
	position: absolute;
	background: #2252b0;
	width: 96px;
	height: 96px;
	right: -42px;
	top: 50%;
	margin-top: -48px;
	text-align: center;
	font-size: 16px;
	color: #fff;
	padding: 8px 0 0
}

.slick_news time em {
	font-size: 34px
}

.slick_news time p,
.list_time time span {
	font-family: "Microsoft Yahei", \5FAE\8F6F\96C5\9ED1, Arial
}

.slick_news .slick-dots {
	position: absolute;
	left: 0;
	bottom: 134px;
	z-index: 6
}

.slick_news .slick-dots li {
	display: block;
	background: #00b7ee;
	width: 10px;
	height: 80px;
	margin-top: 11px
}

.slick_news .slick-dots li:nth-child(3n) {
	background: #0856ac
}

.slick_news .slick-dots li:nth-child(3n-1) {
	background: #2881e3
}

.slick_news .cover_img>div {
	-webkit-transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
	transition: all 1s cubic-bezier(0.7, 0, 0.3, 1);
	-webkit-transform: scale(1.2);
	transform: scale(1.2)
}

.slick_news .slick-active .cover_img>div {
	-webkit-transform: scale(1);
	transform: scale(1)
}

.f1 .list_news {
	width: calc(51.2% - 23px)
}

.list_news a {
	display: block;
	position: relative
}

.list_news .hd {
	font-size: 14px;
	padding: 19px 22px;
	background: linear-gradient(to right, #d5e9ff, rgba(255, 255, 255, 0));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffd5e9ff', GradientType=1);
	margin: 0 0 12px
}

.list_news h3 {
	color: #1d1d1d;
	font-weight: 700;
                font-size: 18px;
}

.list_news p {
	margin: 16px 0 20px
}

.list_news .hd time {
	padding: 12px 0 0;
	position: relative;
	display: inline-block
}

.list_news .hd time:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 34px;
	height: 2px;
	background: #0856ac
}

.list_news a:not(.hd) {
	display: block;
	line-height: 50px;
	padding: 0 80px 0 0;
	color: #333;
	position: relative
}

.list_news a:not(.hd):before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background: linear-gradient(to right, #d5e9ff, rgba(255, 255, 255, 0));
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffd5e9ff', GradientType=1)
}

.list_news a:not(.hd):hover:before {
	width: 100%
}

.list_news a:not(.hd):hover {
	padding: 0 90px 0 20px
}

.list_news a:not(.hd):hover time {
	right: 16px
}

.list_news a:not(.hd) time {
	position: absolute;
	right: 0;
	top: 0;
	color: #666;
	font-family: "ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â½ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¦ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â€šÂ¬Ã…â€œÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¤ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¸ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¥ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â®ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹", sySong
}

.list_news span,
.list_news time {
	position: relative;
	z-index: 6;
                font-size: 18px;
}

time {
	font-family: sySong
}

.i_more {
	width: 25px;
	height: 15px;
	background: url(../images/more1.png) 50% no-repeat;
	margin: 0 0 0 5px
}

.f1 .i_more {
	width: 33px;
	height: 20px;
	background: url(../images/more.png) 50% no-repeat
}

.f2 {
	padding: 50px 0 80px;
	background: url(../images/bg1.jpg) 50%
}

.f2 .tit h2 {
	font-size: 24px;
	padding: 16px 0 16px 30px
}

.f2 .tit h2:before {
	content: '';
	position: absolute;
	left: 2px;
	top: 50%;
	width: 11px;
	height: 11px;
	background: #193366;
	transform: rotate(45deg);
	margin-top: -4px
}

.notice_wrap,
.sec_wrap {
	width: calc(50% - 30px)
}

.sec_wrap .list_news a {
	line-height: 51px
}

.list_time a {
	display: block;
	line-height: 21px;
	padding: 10px 0;
	color: #3c3c3c;
                font-size: 18px;
}

.list_time a:hover time {
	background: #193366
}

.list_time time {
	background: #6b93c0;
	width: 75px;
	height: 31px;
	line-height: 31px;
	margin: 0 12px 0 0;
	font-size: 14px;
	text-align: center;
	display: inline-block;
	color: #fff;
	vertical-align: middle
}

.list_time time em {
	font-size: 20px
}

.icon_wrap {
	margin: 70px -10px 0
}

.icon_wrap a {
	float: left;
	width: calc(14.2857% - 20px);
	height: 153px;
	padding: 24px 28px;
	margin: 0 10px;
	color: #333;
	position: relative;
	overflow: hidden
}

.icon_wrap a:nth-child(7n-6) {
	border: 1px solid #1bb0c3
}

.icon_wrap a:nth-child(7n-5) {
	border: 1px solid #b7aa00
}

.icon_wrap a:nth-child(7n-4) {
	border: 1px solid #198fc0
}

.icon_wrap a:nth-child(7n-3) {
	border: 1px solid #f39800
}

.icon_wrap a:nth-child(7n-2) {
	border: 1px solid #448aca
}

.icon_wrap a:nth-child(7n-1) {
	border: 1px solid #ea68a2
}

.icon_wrap a:nth-child(7n) {
	border: 1px solid #009944
}

.icon_wrap a:hover {
	color: #fff;
	border-color: #193366
}

.icon_wrap a:before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	background: url(../images/bg_icon.jpg) no-repeat;
	background-size: cover;
	border-radius: 50%
}

.icon_wrap a:hover:before {
	width: 260px;
	height: 260px
}

.icon_wrap i {
	display: block;
	height: 50px;
	background-repeat: no-repeat;
	background-position: 50%;
	margin: 0 0 10px
}

.icon_wrap i,
.icon_wrap p {
	position: relative;
	z-index: 6
}

.icon_wrap a:not(:first-child) i {
	margin: 0 0 20px
}

.i1 {
	background-image: url(../images/i1.png)
}

.i2 {
	background-image: url(../images/i2.png)
}

.i3 {
	background-image: url(../images/i3.png)
}

.i4 {
	background-image: url(../images/i4.png)
}

.i5 {
	background-image: url(../images/i5.png)
}

.i6 {
	background-image: url(../images/i6.png)
}

.i7 {
	background-image: url(../images/i7.png)
}

.icon_wrap a:hover i {
	-webkit-animation: icon-bounce 0.5s alternate;
	-moz-animation: icon-bounce 0.5s alternate;
	-ms-animation: icon-bounce 0.5s alternate;
	-o-animation: icon-bounce 0.5s alternate;
	animation: icon-bounce 0.5s alternate
}

.icon_wrap a:hover .i1 {
	background-image: url(../images/i1_on.png)
}

.icon_wrap a:hover .i2 {
	background-image: url(../images/i2_on.png)
}

.icon_wrap a:hover .i3 {
	background-image: url(../images/i3_on.png)
}

.icon_wrap a:hover .i4 {
	background-image: url(../images/i4_on.png)
}

.icon_wrap a:hover .i5 {
	background-image: url(../images/i5_on.png)
}

.icon_wrap a:hover .i6 {
	background-image: url(../images/i6_on.png)
}

.icon_wrap a:hover .i7 {
	background-image: url(../images/i7_on.png)
}

@keyframes icon-bounce {

	0%,
	100% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	25% {
		-moz-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	50% {
		-moz-transform: rotate(-15deg);
		-ms-transform: rotate(-15deg);
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg)
	}

	75% {
		-moz-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	85% {
		-moz-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
}

@-webkit-keyframes icon-bounce {

	0%,
	100% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	25% {
		-moz-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	50% {
		-moz-transform: rotate(-15deg);
		-ms-transform: rotate(-15deg);
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg)
	}

	75% {
		-moz-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	85% {
		-moz-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
}

@-moz-keyframes icon-bounce {

	0%,
	100% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	25% {
		-moz-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	50% {
		-moz-transform: rotate(-15deg);
		-ms-transform: rotate(-15deg);
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg)
	}

	75% {
		-moz-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	85% {
		-moz-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
}

@-o-keyframes icon-bounce {

	0%,
	100% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg)
	}

	25% {
		-moz-transform: rotate(15deg);
		-ms-transform: rotate(15deg);
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}

	50% {
		-moz-transform: rotate(-15deg);
		-ms-transform: rotate(-15deg);
		-webkit-transform: rotate(-15deg);
		transform: rotate(-15deg)
	}

	75% {
		-moz-transform: rotate(5deg);
		-ms-transform: rotate(5deg);
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}

	85% {
		-moz-transform: rotate(-5deg);
		-ms-transform: rotate(-5deg);
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
}

.f3 {
	padding: 46px 0 62px
}

.f3 .tit {
	border-bottom: none;
	margin: 0 0 12px 0
}

.platform_wrap,
.website_wrap {
	width: calc(50% - 20px)
}

.platform_wrap .tit h2 {
	padding-left: 0
}

.list_platform {
	margin: -10px
}

.list_platform a {
	float: left;
	width: calc(50% - 20px);
	margin: 10px;
	background: #0d4b8e url(../images/bg_item.png) 50%;
	padding: 0 15px;
	line-height: 70px;
	color: #fff
}

.list_platform a:hover {
	transform: scale(1.05)
}

.list_platform a:nth-child(4n-2) {
	background-color: #1759a1
}

.list_platform a:nth-child(4n-1) {
	background-color: #1562b6
}

.list_platform a:nth-child(4n) {
	background-color: #0d89bd
}

.website_wrap {
	border: 1px solid #d2d1d2;
	padding: 63px 43px 35px;
	margin: 58px 0 0
}

.website_wrap .tit {
	top: -30px;
	background: #0a5597
}

.website_wrap .tit h2 {
	position: relative;
	padding: 0 42px;
	line-height: 62px;
	color: #fff
}

.website_wrap .tit h2:before,
.website_wrap .tit h2:after {
	content: '';
	position: absolute;
	top: 0;
	border-style: solid
}

.website_wrap .tit h2:before {
	left: -34px;
	border-width: 31px 34px 31px 0;
	border-color: transparent #0a5597 transparent transparent
}

.website_wrap .tit h2:after {
	right: -34px;
	border-width: 31px 0 31px 34px;
	border-color: transparent transparent transparent #0a5597
}

.list_webs {
	margin: -12px -26px
}

.list_webs a {
	float: left;
	width: calc(33.333333% - 56px);
	background: #e3edf7;
	margin: 12px 26px;
	color: #1f1f1f;
	line-height: 46px;
	padding: 0 8px 0 30px
}

.list_webs i {
	display: inline-block;
	width: 12px;
	height: 13px;
	background: url(../images/item.png) 50% 0 no-repeat;
	margin: 0 16px 0 0
}

.list_webs a:hover {
	background: #193366;
	color: #fff
}

.list_webs a:hover i {
	background-position: 50% -16px;
	color: #fff
}

footer {
	background: #193366;
	color: #fff;
	position: relative;
	padding: 38px
}

.f_share li {
	position: relative;
	float: left
}

.f_share li:not(:first-child) {
	margin-left: 20px
}

.f_share h3 a {
	display: block;
	width: 96px;
	height: 91px;
	border: 1px dashed #4c6189;
	color: #c8cbd5;
	padding: 16px 0 0;
	font-size: 14px
}

.f_share h3 a:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	bottom: 0;
	background: #1759a1
}

.f_share li:nth-child(3n-1) h3 a:before {
	background: #1562b6
}

.f_share li:nth-child(3n) h3 a:before {
	background: #0d89bd
}

.f_share h3 i {
	display: block;
	background: url(../images/i_wechat.png) 50% no-repeat;
	height: 27px;
	margin: 0 0 10px
}

.f_share h3 i,
.f_share h3 p {
	position: relative;
	z-index: 6
}

.f_share h3 .i_sina i {
	background-image: url(../images/i_sina.png)
}

.f_share h3 .i_alumnus i {
	background-image: url(../images/i_alumnus.png)
}

.f_share .con {
	position: absolute;
	bottom: calc(100% + 14px);
	opacity: 0;
	visibility: hidden
}

.f_share .con:before {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 50%;
	margin-left: -7px;
	border-style: solid;
	border-width: 7px 7px 0 7px;
	border-color: #fff transparent transparent transparent
}

.f_share li:hover {
	transform: translateY(-4px)
}

.f_share li:hover h3 a:before {
	height: 100%
}

.f_share li:hover .con {
	opacity: 1;
	visibility: visible
}

.f_share .con img {
	width: 120px;
	height: 120px;
	max-width: initial;
	display: block
}

.f_copy {
	line-height: 30px;
	margin: 0 -20px;
	padding: 15px 0 0
}

.f_copy,
.f_copy a {
	color: #aec7e2
}

.f_copy span {
	margin: 0 20px
}

.inset_bar {
	width: 100%;
	overflow: hidden;
	margin: 0 0 50px
}

.inset_bar .slick-arrow {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 70px
}

.inset_bar .slick-left {
	position: absolute;
	top: 0;
	bottom: 0
}

.inset_bar .slick-right {
	position: absolute;
	top: 0;
	bottom: 0
}

.inset_img {
	position: relative;
	display: block;
	width: 100%;
	z-index: 1
}

aside {
	width: 21%;
	margin: -245px 0 50px
}

.aside_tit {
	padding: 95px 20px 54px 38px;
	background: url(../images/top_aside.png) 50% 0 no-repeat;
	background-size: cover;
	color: #fff;
	font-size: 18px
}

.aside_tit h2 {
	font-size: 30px;
	line-height: 46px
}

.aside_tit p {
	opacity: .5
}

.nav_list a {
	position: relative;
	line-height: 24px;
	display: block;
	padding: 16px 40px 16px 24px;
	color: #333
}

.nav_list>a {
	padding-right: 26px
}

.nav_list>a:before {
	content: '';
	position: absolute;
	left: -4px;
	width: 4px;
	height: 0;
	background: #00b7ee
}

.nav_list>a.on:before {
	height: 100%
}

.nav_list>a:not(:first-child) {
	border-top: 2px solid #fff
}

.nav_list a b {
	position: absolute;
	right: 28px;
	top: 50%;
	margin-top: -3px;
	width: 50px;
	top: 0;
	bottom: 0;
	right: 0;
	color: #999;
	font-size: 16px
}

.nav_list a b:before {
	content: '';
	position: absolute;
	font-family: monospace, serif;
	z-index: 6;
	background: url(../images/i_down.png) 50% no-repeat;
	z-index: 6;
	width: 20px;
	height: 20px
}

.nav_list {
	padding: 32px 0 78px;
	border-left: 4px solid #0a5597;
	background: #f5f5f5
}

.nav_list .on {
	background: #fff;
	color: #0a5597
}

.nav_list .on b {
	right: 0;
	font-size: 12px;
	color: #fff
}

.nav_list a.on b {
	transform: rotate(180deg)
}

.nav_list a b:after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #aaa
}

.nav_list .on b:after,
.nav_list .sub_con .active:before {
	background: #00b7ee
}

.nav_list .sub_con {
	margin-top: -10px;
	padding: 10px 0;
	display: none
}

.nav_list .sub_con a {
	padding-left: 21%;
	font-size: 14px;
	background: none;
	line-height: 1.6;
	position: relative;
	padding-top: 4%;
	padding-bottom: 4%
}

.nav_list .sub_con a:before {
	content: '';
	position: absolute;
	width: 6px;
	height: 6px;
	background: #999;
	border-radius: 100px;
	left: 15%;
	top: 50%;
	margin-top: -3px
}

.nav_list .sub_con a:not(:first-child) {
	border-top: 1px dashed #ddd
}

.nav_list .active:hover {
	color: #f39800
}

.nav_list .active {
	color: #0a5597
}

.pb_sys_common {
	font-size: 13px;
	font-family: SimSun;
	line-height: 12px;
	color: #222
}

.pb_sys_common a {
	text-decoration: none
}

.pb_sys_common .p_pages {
	margin-left: -5px
}

.pb_sys_common .p_fun_d,
.pb_sys_common .p_no_d,
.pb_sys_common .p_no_o,
.pb_sys_common .p_fun a,
.pb_sys_common .p_no a {
	border: 1px solid #ccc;
	padding: 5px 8px;
	margin: 0 0 0 5px;
	height: 24px;
	-height: auto;
	line-height: 12px;
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle
}

.pb_sys_common .p_t {
	line-height: 12px;
	margin: 0;
	padding: 0;
	display: inline-block;
	vertical-align: middle
}

.pb_sys_common .p_fun_d,
.pb_sys_common .p_no_d,
.pb_sys_common .p_no_o {
	color: #ccc
}

.pb_sys_common .p_fun a,
.pb_sys_common .p_no a {
	color: #222
}

.pb_sys_common .p_dot {
	margin-left: 4px;
	margin-right: -4px;
	color: #222
}

.pb_sys_common .p_goto input,
.pb_sys_common .p_search input {
	font-family: SimSun;
	font-size: 12px;
	border: 1px solid #aaa;
	height: 22px;
	line-height: 20px;
	box-sizing: border-box;
	vertical-align: middle;
	outline-width: thin;
	outline-color: #0a5597;
	margin: 0 2px;
	padding: 0 1px
}

.pb_sys_common .p_goto input {
	width: 22px;
	text-align: center
}

.pb_sys_common .p_search input {
	width: 100px;
	text-align: left
}

.pb_sys_common .p_goto input:hover,
.pb_sys_common .p_goto input:focus,
.pb_sys_common .p_search input:hover,
.pb_sys_common .p_search input:focus {
	border: 1px solid #0a5597
}

.pb_sys_common .p_goto a,
.pb_sys_common .p_search a {
	border: 1px solid #ccc;
	padding: 5px 6px;
	color: #222;
	margin: 0;
	height: 24px;
	-height: auto;
	line-height: 12px;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: middle
}

.pb_sys_common .p_dosize_d,
.pb_sys_common .p_dosize a {
	border-right: 1px solid #ccc;
	padding: 1px 5px;
	color: #888
}

.pb_sys_common .p_dosize_d {
	color: #222
}

.pb_sys_common .p_dosize a:hover {
	color: #222
}

.pb_sys_common .p_dosize_last_d,
.pb_sys_common .p_dosize_last a {
	border-right-width: 0
}

.pb_sys_normal .p_first,
.pb_sys_normal .p_first_d,
.pb_sys_normal .p_last,
.pb_sys_normal .p_last_d {
	display: none
}

.pb_sys_normal2 .p_first,
.pb_sys_normal2 .p_first_d,
.pb_sys_normal2 .p_last,
.pb_sys_normal2 .p_last_d,
.pb_sys_normal2 .p_prev_d,
.pb_sys_normal2 .p_next_d {
	display: none
}

.pb_sys_full2 .p_first_d,
.pb_sys_full2 .p_last_d,
.pb_sys_full2 .p_prev_d,
.pb_sys_full2 .p_next_d {
	display: none
}

.pb_sys_short .p_no,
.pb_sys_short .p_no_d,
.pb_sys_short .p_no_o,
.pb_sys_short .p_dot {
	display: none
}

.pb_sys_short2 .p_no,
.pb_sys_short2 .p_no_d,
.pb_sys_short2 .p_no_o,
.pb_sys_short2 .p_dot,
.pb_sys_short2 .p_first,
.pb_sys_short2 .p_first_d,
.pb_sys_short2 .p_last,
.pb_sys_short2 .p_last_d {
	display: none
}

.pb_sys_style1 .p_no a:hover,
.pb_sys_style1 .p_fun a:hover,
.pb_sys_style1 .p_goto a:hover,
.pb_sys_style1 .p_search a:hover,
.pb_sys_style2 .p_no a:hover,
.pb_sys_style2 .p_fun a:hover,
.pb_sys_style2 .p_goto a:hover,
.pb_sys_style2 .p_search a:hover,
.pb_sys_style3 .p_no a:hover,
.pb_sys_style3 .p_fun a:hover,
.pb_sys_style3 .p_goto a:hover,
.pb_sys_style3 .p_search a:hover,
.pb_sys_style4 .p_no a:hover,
.pb_sys_style4 .p_fun a:hover,
.pb_sys_style4 .p_goto a:hover,
.pb_sys_style4 .p_search a:hover {
	background-color: #f5f5f5
}

.pb_sys_style1 .p_no_d {
	border: 1px solid #0a5597;
	color: #fff;
	background-color: #0a5597
}

.pb_sys_style2 .p_no_d {
	border: 1px solid #f04646;
	color: #fff;
	background-color: #f04646
}

.pb_sys_style3 .p_no_d {
	border: 1px solid #32b907;
	color: #fff;
	background-color: #32b907
}

.pb_sys_style4 .p_no_d {
	border: 1px solid #888;
	color: #fff;
	background-color: #888
}

.pb_sys_style5 .p_fun_d,
.pb_sys_style5 .p_no_d,
.pb_sys_style5 .p_no_o,
.pb_sys_style5 .p_fun a,
.pb_sys_style5 .p_no a,
.pb_sys_style5 .p_goto a,
.pb_sys_style5 .p_search a,
.pb_sys_style6 .p_fun_d,
.pb_sys_style6 .p_no_d,
.pb_sys_style6 .p_no_o,
.pb_sys_style6 .p_fun a,
.pb_sys_style6 .p_no a,
.pb_sys_style6 .p_goto a,
.pb_sys_style6 .p_search a,
.pb_sys_style7 .p_fun_d,
.pb_sys_style7 .p_no_d,
.pb_sys_style7 .p_no_o,
.pb_sys_style7 .p_fun a,
.pb_sys_style7 .p_no a,
.pb_sys_style7 .p_goto a,
.pb_sys_style7 .p_search a,
.pb_sys_style8 .p_fun_d,
.pb_sys_style8 .p_no_d,
.pb_sys_style8 .p_no_o,
.pb_sys_style8 .p_fun a,
.pb_sys_style8 .p_no a,
.pb_sys_style8 .p_goto a,
.pb_sys_style8 .p_search a {
	border: 1px solid transparent
}

.pb_sys_style5 .p_no_d,
.pb_sys_style5 .p_no a:hover,
.pb_sys_style6 .p_no_d,
.pb_sys_style6 .p_no a:hover,
.pb_sys_style7 .p_no_d,
.pb_sys_style7 .p_no a:hover,
.pb_sys_style8 .p_no_d,
.pb_sys_style8 .p_no a:hover {
	border-radius: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px
}

.pb_sys_style5 .p_fun a:hover,
.pb_sys_style5 .p_goto a:hover,
.pb_sys_style5 .p_search a:hover,
.pb_sys_style6 .p_fun a:hover,
.pb_sys_style6 .p_goto a:hover,
.pb_sys_style6 .p_search a:hover,
.pb_sys_style7 .p_fun a:hover,
.pb_sys_style7 .p_goto a:hover,
.pb_sys_style7 .p_search a:hover,
.pb_sys_style8 .p_fun a:hover,
.pb_sys_style8 .p_goto a:hover,
.pb_sys_style8 .p_search a:hover {
	text-decoration: underline
}

.pb_sys_style5 .p_no_d,
.pb_sys_style5 .p_no a:hover {
	border: 1px solid #0a5597;
	color: #fff;
	background-color: #0a5597
}

.pb_sys_style6 .p_no_d,
.pb_sys_style6 .p_no a:hover {
	border: 1px solid #f04646;
	color: #fff;
	background-color: #f04646
}

.pb_sys_style7 .p_no_d,
.pb_sys_style7 .p_no a:hover {
	border: 1px solid #32b907;
	color: #fff;
	background-color: #32b907
}

.pb_sys_style8 .p_no_d,
.pb_sys_style8 .p_no a:hover {
	border: 1px solid #888;
	color: #fff;
	background-color: #888
}

.p_fun_d {
	padding: 0 10px
}

.pb_sys_common .p_pages span,
.pb_sys_common .p_pages span a {
	min-width: 30px;
	height: 30px;
	line-height: 30px;
	color: #666;
	padding-top: 0;
	padding-bottom: 0
}

.pb_sys_common .p_pages span {
	margin: 0 1px;
	position: relative;
	display: inline-block
}

.pb_sys_common .p_pages span a {
	margin: 0;
	padding: 0 10px;
	position: relative
}

.pb_sys_common .p_fun_d,
.pb_sys_common .p_pages span a {
	border-color: #e1e6ea;
	background: #fff
}

.pb_sys_style1 .p_pages .p_no_d {
	background: #0a5597;
	border-color: #0a5597;
	color: #fff;
	width: 30px;
	height: 30px;
	line-height: 30px;
	min-width: 30px
}

.pb_sys_common .p_t {
	margin-left: 10px !important
}

.list_txt {
	margin: -22px 0
}

.list_txt time {
	position: inherit;
	bottom: inherit;
	display: block;
	margin: 16px 0 0
}

.details_wrap,
.news_bd{
	
	margin: 0 auto
}

.news_bd {
	
}

.pos {
	width: 20px;
	height: 20px;
	background: url('../images/pos.png') 50% no-repeat
}

.site_nav {
	color: #666;
	margin-right: -10px
}

.site_nav b {
	color: #bbb
}

.site_nav a,
.site_nav em {
	display: inline-block;
	line-height: 30px;
	padding: 0 10px;
                font-size: 18px;
}

.site_nav a:hover,
.nav_list a:hover {
	color: #f39800
}

.nav_list li>a:before {
	content: '';
	position: absolute;
	width: 3px;
	height: 0;
	left: 0;
	background: #105598;
	animation: 1.4s ease-out 0s
}

.nav_list li>a:hover:before {
	height: 30px
}

.nav_list .on>a:hover:before {
	content: none
}

.con_wrap {
	width: calc(79% - 50px);
	margin: 0 0 80px
}

.con_wrap .tit {
	margin-bottom: 30px;
	line-height: 38px;
	padding: 0 0 20px
}

.con_wrap .tit h3 {
	font-size: 30px;
	color: #0a5597;
	text-transform: uppercase
}

article {
	position: relative
}

.page_wrap {
	margin-top: 60px
}

.list_lab.col2 a {
	width: calc(50% - 44px);
	padding-top: 31.657%
}

.news_hd {
	padding: 10px 0 30px;
	color: #333
}

.news_hd h3 {
	font-size: 24px;
	color: #333;
	margin-bottom: 14px;
	font-weight: 700
}

.news_hd .title {
	background: #f6f6f6;
	line-height: 44px
}

.news_hd .title span {
	margin: 0 14px;
	color: #999
}

.news_bd {
	font-size: 16px;
	line-height: 2;
	color: #555
}

.tab_wrap .hd {
	font-size: 0;
	margin: -5px -10px 30px
}

.tab_wrap .hd a {
	display: inline-block;
	line-height: 46px;
	font-size: 16px;
	background: #e3edf7;
	padding: 0 20px;
	margin: 5px 10px
}

.tab_wrap .hd .on {
	background: #0d4b8e url(../images/bg_item.png) 50%;
	color: #fff
}

.tab_wrap .hd .on:hover {
	color: #fff
}

.tab_wrap .hd a:hover {
	color: #0d4b8e
}

.tab_wrap .item {
	margin: 0 0 36px
}

.tit_bg {
	line-height: 36px;
	margin: 0 0 26px;
	color: #0a5597;
	font-family: sySong;
	font-size: 24px;
	padding: 0 0 6px 20px;
	position: relative
}

.tit_bg:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 4px;
	height: 100%;
	background: #0a5597
}

.list_avatar {
	margin: 0 -20px -36px;
	overflow: hidden
}

.list_avatar a {
	float: left;
	width: calc(20% - 40px);
	margin: 0 20px 36px;
	position: relative
}

.list_avatar .cover_img {
	padding-top: 141.6%
}

.list_avatar h3 {
	line-height: 24px;
	bottom: 0px;
	padding: 10px 24px 10px 18px;
	font-size: 16px;
	position: absolute;
	max-width: calc(100% - 16px);
	overflow: hidden
}

.list_avatar h3:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	background: #0a5597;
	left: -10px;
	right: 6px;
	z-index: 1;
	transform: skew(-16deg)
}

.list_avatar em {
	display: block;
	position: relative;
	z-index: 3
}


.list_avatar1 {
	margin: 0 -20px -36px;
	overflow: hidden
}

.list_avatar1 a {
	float: left;
	width: calc(12% - 30px);
	margin: 0 40px 46px;
	position: relative
}

.list_avatar1 .cover_img {
	padding-top: 141.6%
}

.list_avatar1 h3 {
	line-height: 24px;
	width: 100%;
               color: #000;
               text-align: center;
	font-size: 16px;
	position: absolute;
	overflow: hidden
}

.list_avatar1 h3:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	
	left: -10px;
	right: 6px;
	z-index: 1;
	
}

.list_avatar1 em {
	display: block;
	position: relative;
	z-index: 3
}

.avatar_wrap .hd {
	margin-bottom: 30px
}

.avatar_wrap .hd h2 {
	font-size: 30px;
	color: #009dab;
	font-weight: 700
}

.avatar_wrap .hd .txt {
	width: calc(100% - 310px)
}

.avatar_wrap .hd img {
	width: 280px;
	height: auto
}

.avatar_wrap .bd h2 {
	color: #009dab;
	font-weight: 700;
	border-left: 4px solid #009dab;
	padding-left: 10px;
	font-size: 24px
}

.avatar_wrap .bd .con {
	padding: 20px 0 30px;
	line-height: 1.8;
	color: #333
}

.avatar_wrap .post {
	background: #f5f5f5;
	padding: 20px;
	margin: 40px 0 30px
}

.list_item .additem {
	position: absolute;
	width: calc(33.333333% - 15px);
	background-color: #e5e5e5;
	border: 1px solid #f8f8f8;
	top: 0;
	left: 40%;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	-ms-transition: all .3s;
	transition: all .3s
}

.list_item li:not(:first-child) {
	margin: 36px 0 0
}

.list_item h3 {
	position: relative;
	padding: 14px 20px;
	display: block;
	color: #333;
	font-size: 18px;
	line-height: 24px;
	color: #fff;
	background: #124378 url(../images/bg_item.png) 50%
}

.additem {
	width: 0;
	height: 0;
	font-size: 0
}

.list_item .con {
	font-size: 15px;
	padding: 15px 20px;
	background: #eef1f6;
	z-index: 99;
	position: relative
}

.list_item .con,
.list_item .con * {
	word-break: break-all
}

.list_item .tit_bg {
	font-size: 20px;
	line-height: 32px;
	margin-top: 20px;
	padding-bottom: 0
}

.list_name a {
	float: left;
	width: 20%;
	line-height: 36px
}

@media (max-width:1720px) {
	header section {
		padding: 0 20px
	}

	.t_nav {
		margin: 0 -16px
	}

	.t_nav h3 a {
		padding: 0 16px
	}
}

@media (max-width:1440px) {

	section,
	.w1400 {
		max-width: none;
		padding: 0 20px
	}

	.t_logo {
		line-height: 104px
	}

	.t_nav h3 a {
		font-size: 16px;
		padding: 0 12px;
		line-height: 62px
	}

	.t_nav .sub_nav a {
		font-size: 14px
	}

	.icon_wrap {
		font-size: 16px
	}

	.icon_wrap a {
		padding: 24px 20px
	}

	.website_wrap {
		padding: 63px 24px 39px
	}

	.list_webs {
		margin: -12px -6px
	}

	.list_webs a {
		width: calc(33.333333% - 12px);
		margin: 12px 6px
	}
}