body {
	color: #333333;
	font-family: "microsoft yahei";
	background: #fff;
	font-size: 15px;
	-moz-user-select:none; /* Firefox私有属性 */
	-webkit-user-select:none; /* WebKit内核私有属性 */
	-ms-user-select:none; /* IE私有属性(IE10及以后) */
	-khtml-user-select:none; /* KHTML内核私有属性 */
	-o-user-select:none; /* Opera私有属性 */
	user-select:none; /* CSS3属性 */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

dl {
	margin: 0;
}
video{
	background: #000;
}
dt {
	font-weight: normal;
}

ul,
li {
	list-style-type: none;
	margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

a {
	color: #333;
	text-decoration: none;
	outline: none;
}

a:hover {

	color: #3d55a7;
}

a:focus {
	text-decoration: none;
	color: inherit;
}

img {
	border: 0;
	vertical-align: middle;
	transition: all 0.6s;
	max-width: 100%;
}

table {
	border-collapse: collapse;
}

input,
textarea,
select,
button {
	border: 0;
	outline: none;
}

.wrap {
	width: 100%;
	overflow: hidden;
}

.container {
	width: 1200px;
	margin: 0 auto;
	max-width: 95%;
}

/*公共样式勿删除*/
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clearfix {
	zoom: 1;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.flex {
	display: flex;
	align-items: center;
}

.flex_item {
	flex: 1;
}

@font-face {
	font-family: font1;
	src: url(../fonts/SOURCEHANSERIFCN-BOLD-2.OTF);
}

@font-face {
	font-family: font2;
	src: url(../fonts/DINREGULAR.OTF);
}

/**/

.header {
	background: #3d55a7;
	padding: 19px 0;
}

.header .container {
	position: relative;
}

.header .container .login {
	color: #1d3897;
	background: url(../images/home_03.png) 10px center no-repeat #adbefa;
	display: inline-block;
	border-radius: 20px;
	padding: 6px 10px 6px 35px;
	margin-left: 30px;
	font-weight: bold;
}

.header .nav {
	display: flex;
	align-items: center;
	text-align: center;
	font-weight: bold;
	margin: 18px 0 5px;
	display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -ms-flex-align: center;
    width: 860px;
    float: right;
}

.header .nav>li {
	position: relative;
	margin-left: 40px;
}
.header .nav>li ol{
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	padding: 18px 0 10px;
	background: #3d55a7;
	display: none;
	z-index: 2;
}
.header .nav>li:hover ol{
	display: block;
}
.header .nav>li ol a{
	display: block;
	color: #fff;
	line-height: 36px;
}
.header .nav>li ol a:hover{
	color: #be9349;
}
.header .nav>li>a {
	display: inline-block;
	font-size: 18px;
	color: #fff;
	position: relative;
}

.header .nav>li.active>a::after,
.header .nav>li:hover>a::after {
	content: '';
	display: block;
	height: 4px;
	background: #be9349;
	width: 100%;
	position: absolute;
	left: 0;
	z-index: 10;
	bottom: -10px;
}

.header .search {
	position: relative;
}

.header .s_box {
	background: rgba(0, 0, 0, 0.3);;
	width: 330px;
	height: 35px;
	display: flex;
	align-items: center;
	padding: 0 15px;
	border-radius: 20px 50px 50px 20px;
	border: 1px solid #7887bd;
}

.header .s_box select {
	background: none;
	color: #8baaf3;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: url("../img/dropDownArrow1.png") no-repeat scroll
		right center transparent !important;
	padding-right: 18px !important;
}
.header .s_box select::-ms-expand {
	display: none;
}

.header .s_box input {
	width: 100%;
	color: #fff;
	background: none;
}

.m_menu {
	background: rgba(0, 0, 0, 0.8);
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99;
	padding-top: 50px;
	line-height: 36px;
	display: none;
}

.m_menu ul a {
	display: block;
	color: #fff;
}

.m_menu .nav>li {
	border-bottom: 1px solid #666;
}

.m_menu .nav>li>a {
	padding: 8px 20px;
}

.m_menu .nav>li ul {
	display: none;
	padding: 0 0 10px 35px;
	font-size: 14px;
	line-height: 28px;
	opacity: 0.7;
}

.m_menu .search {
	border-radius: 5px;
	border: 1px solid #fff;
	padding: 0 15px;
	margin: 15px;
}
.m_menu .search select{
	background: none;
    color: #8baaf3;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: url("../img/dropDownArrow1.png") no-repeat scroll
		right center transparent !important;
	padding-right: 14px !important;
}
.m_menu .search select::-ms-expand {
	display: none;
}
.m_menu .search input {
	width: 100%;
	background: none;
	color: #fff;
}


.footer {
	background: #1b3283;
	color: #9bb2da;
	text-align: center;
	padding: 15px 0;
}
.footer .friendLinkWrap{
	margin-bottom: 14px;
	font-size: 15px;
	line-height: 26px;
}
.footer .friendLinkWrap .friendLinkData{
	display: inline;
}
.footer .friendLinkWrap a{
	color: #fff;
}

.hidden {
	display: none;
}

.breadcrumb{
	border-bottom: 1px solid #eee;
	/**padding-bottom: 10px;
	margin-top: 20px;
*/
	padding: 15px 0px 10px 0px;
	margin: 0 auto;
	margin-bottom: 10px;
}
/**/
.banner {
	position: relative;
}
/*
.slideBox .bd::after {
	content: '';
	display: block;
	height: 250px;
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}
*/

.banner dl {
	position: absolute;
	bottom: 0;
	width: 100%;
	line-height: 50px;
	color: #fff;
	left: 0;
	padding: 0 10px;
	z-index: 5;
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 1;
	    overflow: hidden;
}

.banner dl dt {
	font-size: 20px;
}



.banner .next {
	position: absolute;
	right: 50%;
	margin-right: -160px;
	color: #fff;
	top: 50%;
	transform: translate(0,-50%);
	width: 30px;
	line-height: 40px;
	text-align: center;
	height: 40px;
	background: rgba(0,0,0,0.5);
}

.banner .next i {
	display: inline-block;
	height: 15px;
	width: 15px;
	vertical-align: middle;
	border-width: 2px 2px 0 0;
	border-color: #fff;
	margin: -4px 0 0 -9px;
	border-style: solid;
	-webkit-transform: matrix(.71, .71, -.71, .71, 0, 0);
	transform: matrix(.71, .71, -.71, .71, 0, 0);
}
.banner .prev {
	position: absolute;
	left:70px;
	color: #fff;
	top: 50%;
	transform: translate(0,-50%);
	width: 30px;
	line-height: 40px;
	text-align: center;
	height: 40px;
	background: rgba(0,0,0,0.5);
}
.banner .prev i{
	display: inline-block;
	height: 15px;
	width: 15px;
	vertical-align: middle;
	border-width: 0 0 2px 2px;
	border-color: #fff;
	margin: -4px 0 0 5px;
	border-style: solid;
	-webkit-transform: matrix(.71, .71, -.71, .71, 0, 0);
	transform: matrix(.71, .71, -.71, .71, 0, 0);
}
.banner .prev:hover i,.banner .next:hover i{
	border-color: #3d55a7;
}
.slideBox .hd li.on {
	background: #3d55a7;
}

.homepage .title {
	position: relative;
	padding-bottom: 10px;
	border-bottom: 1px solid #8baaf3;
}

.homepage .title a {
	color: #6e6767;
	font-size: 16px;
}

.homepage .title::after {
	content: '';
	display: block;
	height: 5px;
	width: 138px;
	background: #be9349;
	position: absolute;
	left: 0;
	bottom: -2px;
}

.homepage .a {
	 padding: 30px 0 ; 
	/* padding: 0 0 30px 0 ; */
	font-size: 16px;
}

.homepage .a .bd {
	background: #eef3ff;
	border-radius: 20px;
	margin-top: 30px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	border: 2px solid #8da7ff;
}

.homepage .a .bd ul {
	line-height: 36px;
	padding: 0 30px;
}

.homepage .a .bd ul span {
	color: #3d55a7;
	padding-right: 10px;
}

.homepage .a .bd ul li {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.homepage .a .ft {
	margin-top: 30px;
	padding: 30px 0;
	position: relative;
}

.homepage .a .ft::before {
	content: '';
	display: block;
	position: absolute;
	width: 44px;
	height: 100%;
	background: url(../images/home_179.png) center no-repeat;
	background-size: 100% 100%;
	left: 0;
	top: 0;
}

.homepage .a .ft::after {
	content: '';
	display: block;
	position: absolute;
	width: 44px;
	height: 100%;
	background: url(../images/home_180.png) center no-repeat;
	background-size: 100% 100%;
	right: 0;
	top: 0;
}

.homepage .a .ft h4 {
	font-size: 17px;
	line-height: 36px;
	padding: 0 25px;
	color: #666;
	margin-bottom: 20px;
	text-indent: 28px;
}

.homepage .a .ft li {
	float: left;
	width: 16.666%;
	font-weight: bold;
	text-align: center;
}

.homepage .a .ft li p {
	margin-top: 10px;
	color: #525252;
}

.homepage .b {
	color: #fff;
	background: #a20804;
	padding: 30px 0;
}

.row {
	margin: 0 -15px;
}

.col-5 {
	width: 50%;
	float: left;
	padding: 0 15px;
}

.homepage .b .bd {
	text-align: center;
	font-size: 16px;
}

.homepage .b .bd li {
	float: left;
	cursor: pointer;
	width: 12.5%;
}

.homepage .b .bd img {
	border-radius: 50%;
	border: 3px solid #c1daff;
	width: 110px;
	height: 110px;
	margin-bottom: 10px;
}

.homepage .b .bd .on img {
	border-color: #f7c645;
}

.homepage .b .container>.hd {
	margin: 0 0 40px;
	position: relative;
	height: 242px;
}

.homepage .b .container>.hd .hidden {
	display: block;
	position: absolute;
	background: #a20804;
	left: 0;
	top: 0;
	width: 100%;
	visibility: hidden;
}

.homepage .b .container>.hd .on {
	visibility: visible;
}

.homepage .b .box {
	position: relative;
	text-align: center;
	padding: 0 50px;
	margin-top: 15px;
}

.homepage .b .pic {
	margin-right: 20px;
	width: 174px;
}

.homepage .b .hd p {
	line-height: 24px;
	margin-top: 10px;
}

.homepage .b .hd h4 {
	font-size: 16px;
	color: #fcf8c2;
	line-height: 24px;
	font-style: italic;
}

.homepage .b .hd h3 {
	color: #f4dc6e;
}

.homepage .b .hd h3 b {
	font-size: 30px;
}

.homepage .c {
	padding: 30px 0;
}

.homepage .c .bd li {
	float: left;
	width: 25%;
	font-size: 18px;
	padding: 7px;
}
.homepage .c .bd li:hover{
	cursor: pointer;
    transform: translate(0px,-6px);
    box-shadow: 4px 4px 8px 0px #5A5A5A;
}
.homepage .c .bd ul {
	margin: -7px;
	position: relative;
}

.homepage .c .bd ul p {
	font-size: 18px;
    line-height: 22px;
    height: 44px;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.homepage .c .bd video {
	vertical-align: middle;
	background: #000;
	height: 167px;
	width: 100%;
}

.homepage .c .bd {
	padding: 20px 0;
}

.homepage .c .ft .tabbox ul {
	margin: 20px -10px -10px;
}

.homepage .c .ft .tabbox li {
	float: left;
	width: 25%;
	padding: 10px;
}

.homepage .c .bd ul .swiper-button-prev,.homepage .c .bd ul .swiper-button-next{
	background: #ddd;
	border-radius: 5px;
	height: 70px;
	width: 40px;
}
.homepage .c .bd ul .swiper-button-prev{
	left: -60px;
}
.homepage .c .bd ul .swiper-button-next{
	right: -60px;

}

.homepage .c .bd ul .swiper-button-prev::after,.homepage .c .bd ul .swiper-button-next::after{
	font-size: 30px;
	font-weight: bold;
}
.homepage .c .ft .tabbox img {
	height: 181px;
	width: 127px;
}

.homepage .c .ft .tabbox .pic {
	overflow: hidden;
	margin-right: 10px;
}

.homepage .c .ft .tabbox li p {
	font-size: 15px;
	line-height: 24px;
	color: #999;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.homepage .c .ft .tabbox li h4 {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 10px;
	color: #890603;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	opacity: 0.7;
	border-bottom: 1px solid #666;
}

.homepage .c .tabtitle {
	position: relative;
	border-bottom: 1px solid #b00e0a;
	margin-bottom: 30px;
}

.homepage .c .tabtitle .tab {
	font-size: 16px;
	font-weight: bold;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
}

.homepage .c .tabtitle .tab a {
	display: inline-block;
}

.homepage .c .tabtitle .tab a+a {
	margin-left: 30px;
}

.homepage .c .tabtitle .tab a:hover,
.homepage .c .tabtitle .tab a.on {
	color: #b00e0a;
}

.homepage .c .tabtitle li {
	font-size: 18px;
	color: #b00e0a;
	line-height: 40px;
	flex: 1;
	text-align: center;
	cursor: pointer;
}

.homepage .c .tabtitle ul {
	border: 1px solid #b00e0a;
	border-bottom: none;
	width: 318px;
	border-radius: 5px;
}

.homepage .c .tabtitle li+li {
	border-left: 1px solid #b00e0a;
}

.homepage .c .tabtitle li.on {
	color: #fff;
	background: #b00e0a;
}

.homepage .d {
	height: 770px;
	padding: 40px 0;
	background: url(../images/bg.jpg) center no-repeat;
	background-size: cover;
}

.homepage .d .title {
	border: none;
}

.homepage .d .hd {
	text-align: center;
}

.homepage .d .tabtitle {
	text-align: center;
	margin: 40px 0 15px;
}

.homepage .d .tabtitle li {
	display: inline-block;
	line-height: 38px;
	font-size: 20px;
	font-weight: bold;
	color: #1d3897;
	padding: 0 30px;
	cursor: pointer;
	border-radius: 20px;
	border: 1px solid transparent;
}

.homepage .d .tabtitle li.on {
	border: 1px solid #0c2f82;
}

.homepage .d .bd li {
	float: left;
	width: 33.333%;
	padding: 0 15px;
}
.homepage .d .bd li .videopic{
	width: 100% !important;
	height: 243px !important;
	border: 5px solid #99aef3;
	border-radius: 9px;
	text-align: center;
	background-color: rgba(110,103,103,0.25);
}

.homepage .d .bd li:hover p{
	color: #80600f;
}
.homepage .d .bd li:hover .videopic{
	border-color: #e8d4a1;
	-webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	transform: scale(1.01);
}
.homepage .d .bd li img {
	width: auto;
	height: 100% !important;
	object-fit: contain;
}

.homepage .c .bd li .videopic{
	border:1px solid #edeaea; 
}
.homepage .d .bd li .pic {
	border-radius: 5px;
	border: 5px solid #ffd871;
}

.homepage .d .bd li p {
	line-height: 24px;
	margin-top: 20px;
	text-indent: 2rem;
}

.homepage .e {
	padding: 40px 0;
	color: #fff;
    background: #3d55a7 !important;
}

.homepage .e li {
	float: left;
	width: 25%;
	padding: 0 10px;
}

.homepage .e ul {
	margin: 0 -10px;
}

.homepage .e li a {
	display: block;
    border-radius: 10px;
    border: 5px solid #fff;
    background-color: #fff;
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}
.homepage .e li a:hover{
	-webkit-box-shadow: 0 0 10px #fff;
    box-shadow: 0 0 10px #fff;
}
.homepage .e .left {
	margin-right: 20px;
	width: 112px;
}
.homepage .e .title{
	display: none;
}
.homepage .e img {
	width: 100%;
}
.homepage .e li img {
	height: 324px;
}

.eventsType{
    border: 1px solid #8baaf3;
	font-size: 16px;
	padding: 5px 15px;
	line-height: 30px;
}
.eventsType span{
	margin: 0px 10px;
	cursor: pointer;
}
.eventsType em{
	color: #3d55a7;
	font-style: normal;
}

.eventsType .on{
	color: #3d55a7;
    font-weight: bold;
}
/**/
.infobg {
	background: url(../images/bg_02.jpg) repeat;
}

.infobg .header{
	background: rgba(0, 0, 0, 0.3) !important;
}
.infobg .header .nav>li ol{
	background: rgba(0, 0, 0, 0.3) !important;
}

.showpage .a {
	font-size: 16px;
	padding-top: 37px;
}

.showpage .a .bd {
	display: flex;
}

.showpage .a .bd .left {
	width: 220px;
	margin-right: 30px;
}

.showpage .a img {
	width: 100%;
}

.showpage .a .left img {
	border: 2px solid #959494;
	width: 210px;
    height: 294px;
	object-fit: cover;
}

.showpage .a .left ul {
	line-height: 22px;
	margin-top: 20px;
}

.showpage .a .left ul li {
	position: relative;
	padding-left: 15px;
}

.showpage .a .left ul li::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	background: #adbefa;
	position: absolute;
	left: 0;
	top: 8px;
}

.showpage .a .right {
	width: calc(100% - 258px);
}

.showpage .a .right h2 {
	color: #fef3c7;
	border-bottom: 1px solid #adb3d0;
	padding-bottom: 10px;
}

.showpage .a .right h2 b {
	font-size: 40px;
}
.showpage .a .left h2 .yszj,.showpage .a .right h2 .yszj{
	float: right;
    line-height: 38px;
    background: url(../images/yszj.png);
    width: 144px;
    height: 40px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    margin-top: 10px;
    padding-left: 24px;
	cursor: pointer;

}
.showpage .a .right h3 {
	font-size: 24px;
	color: #fff;
	line-height: 36px;
	margin: 15px 0 30px;
	font-family: 楷体;
}

.showpage .a .right .h3 {
	margin: 10px 0;
}

.showpage .a .right .ft {
	line-height: 26px;
	position: relative;
	margin-top: 30px;
	padding-left: 30px;
}

.showpage .a .right .ft span {
	position: absolute;
	display: inline-block;
	background: #3d55a7;
	font-size: 18px;
	left: 0;
	top: -6px;
	padding: 2px 12px;
	border-radius: 4px;
	color: #fff;
	font-weight: bold;
}

.showpage .a .right .ft p {
	text-indent: 4em;
	word-break: break-all;
}

.showpage .a .right .ft::before {
	content: '';
	border-left: 1px solid #3d55a7;
	position: absolute;
	left: 10px;
	top: 30px;
	bottom: 0;
}

.showpage .a .right ul {
	float: left;
}

.showpage .a .right ul img {
	width: 100%;
	height: 140px;
}

.showpage .a .right li {
	float: left;
	width: 200px;
	padding: 0 7px;
}

.showpage .b {
	padding: 50px 0;
	font-size: 16px;
}

.showpage .b .tabtitle {
	position: relative;
	background: #3d55a7;
	text-align: center;
	font-size: 20px;
	color: #fff;
	padding: 0 30px;
	line-height: 41px;
	margin-bottom: 30px;
}

.showpage .b .tabtitle li {
	flex: 1;
	cursor: pointer;
	position: relative;
}

.showpage .b .tabtitle li.on::after {
	content: '';
	display: block;
	width: 100%;
	height: 10px;
	border-radius: 10px 10px 0 0;
	background: #be9349;
	position: absolute;
	left: 0;
	top: -10px;
}

.showpage .b .tabtitle li.on {
	background: #be9349;
}

.showpage .b .tabtitle::before {
	content: '';
	display: block;
	width: 23px;
	height: 41px;
	background: url(../images/3_03.jpg) center no-repeat;
	left: -21px;
	position: absolute;
	top: 0;
}

.showpage .b .tabtitle::after {
	content: '';
	display: block;
	width: 21px;
	height: 41px;
	background: url(../images/3_05.jpg) center no-repeat;
	right: -20.7px;
	position: absolute;
	top: 0;
}

.showpage .b .bd-1 .left li {
	display: flex;
	line-height: 35px;
}

.showpage .b .bd-1 .left li p {
	padding-bottom: 15px;
}

.showpage .b .bd-1 .left li p span {
	display: inline-block;
	vertical-align: middle;
	color: #3d55a7;
	font-weight: bold;
	font-style: italic;
	background: #c7e1ff;
	border: 1px solid #9dc3ee;
	border-radius: 20px;
	width: 105px;
	text-align: center;
	margin: 0 25px 0 0;
}

.showpage .b .bd-1 .left li b {
	display: block;
    width: 200px;
    text-align: right;
    color: #3d55a7;
    font-size: 24px;
    padding-right: 15px;
}

.showpage .b .bd-1 .left li .line i {
	display: block;
	background: #93a5e1;
	width: 11px;
	height: 11px;
	border-radius: 50%;
}

.showpage .b .bd-1 .left li .line {
	position: relative;
	padding-top: 13px;
}

.showpage .b .bd-1 .left li .line::after {
	content: '';
	display: block;
	border-left: 1px solid #93a5e1;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: 0;
}

.showpage .b .bd-1 .left li:first-child .line::after {
	top: 15px;
}

.showpage .b .bd-1 .left .more {
	position: absolute;
	font-size: 14px;
	color: #3d55a7;
	left: 24%;
	margin-top: 5px;
	transform: translate(-50%, 0);
	white-space: nowrap;
}

.showpage .b .bd-1 .right {
	width: 275px;
	height: 500px;
	background: #c7e1ff;
	padding: 20px;
	overflow: hidden;
	font-size: 13px;
	line-height: 22px;
}

.showpage .b .bd-1 .right li {
	margin-top: 15px;
}

.showpage .b .bd-1 .right li img {
	border: 2px solid #fff;
	width: 100%;
}

.showpage .b .bd-1 .right li p {
	margin-top: 10px;
	color: #595c63;
}

.showpage .b .bd-2 .clearfixUl {
	margin: -7px;
}

.showpage .b .bd-2 .clearfixUl li {
	float: left;
	width: 33.333%;
	padding: 7px;
}

.showpage .b .bd-2 .flex {
	height: 150px;
	padding: 0 10px;
	border: 1px solid #8398de ;
	border-radius: 0 5px 5px 0;
	background: #e7f1ff;
}

.showpage .b .bd-2 .pic {
	width: 147px;
	margin-right: 20px;
}

.showpage .b .bd-2 p {
	line-height: 30px;
}

.showpage .b .bd-2 h3 {
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
	overflow: hidden;
	height: 44px;
	margin-bottom: 5px;
}
.showpage .b .bd-4 .p1{
	background: #fff;
	border:2px solid #3d55a7;
	margin-top: -30px;
	border-top: none;
	padding:10px 15px;
}
.showpage .b .bd-4 .p1 a{
	color: #666;
	padding: 0 20px;
	cursor: pointer;
}
.showpage .b .bd-4 .p1 a:hover,.showpage .b .bd-4 .p1 a.on{
	color: #3d55a7;
	font-weight: bold;
}
.showpage .b .bd-4 .p2{
	background: #e7f1ff;
	border-radius: 5px;
	border: 1px solid #3d55a7;
	margin: 15px 0;
	padding: 20px;
}
.showpage .b .bd-4 .p2 ul{
	margin: 0 -25px;
}
.showpage .b .bd-4 .p2 li{
	float: left;
	width: 50%;
	padding:0 25px;
}
.showpage .b .bd-4 .p2 li:nth-child(odd){
	border-right: 1px solid #3d55a7;
}
.showpage .b .bd-4 .p2 .box{
	position: relative;
	padding: 0 0 15px 25px;
	border-bottom: 1px solid #c5b99a;
}
.showpage .b .bd-4 .p2 .box::before{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border: 1px solid #ad0e0a;
	position: absolute;
	left: 0;
	top: 8px;
}
.showpage .b .bd-4 .p2 .box:hover::before{
	background: #ad0e0a;
}
.showpage .b .bd-4 .p2 li:nth-child(3) .box,
.showpage .b .bd-4 .p2 li:last-child .box{
	border: none;
	padding: 0 0 0 25px;
	margin-top: 15px;
}
.showpage .b .bd-4 .p2 .box span{
	font-style: italic;
    color: #5c4509;
	display: inline-block;
	margin-right: 30px;
}
.showpage .b .bd-4 .p2 .box h4{
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 10px;
}
.showpage .b .bd-4 .p3 a{
	background: #e7f1ff;
	    border-radius: 5px;
	    border: 1px solid #8398de ;
		padding: 20px;
}
.showpage .b .bd-4 .p3 .pic{
	width: 124px;
	background: #fff;
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	margin-right: 20px;
	max-height: 161px;
    overflow: hidden;
}
.showpage .b .bd-4 .p3 ul{
	line-height: 30px;
	color: #5c4509;
	margin-top: 20px;
}
.showpage .b .bd-4 .p3 h4{
	font-size: 18px;
	font-weight: bold;
	height: 50px;
}
.showpage .b .bd-4 .p4 li{
	background: #e7f1ff;
	    border-radius: 5px;
	    border: 1px solid #8398de ;
		margin-top: 20px;
		padding:25px 30px;
		line-height: 30px;
		border-left: 6px solid #8398de;
}
.showpage .b .bd-4 .p4 li p{
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 2;
	    overflow: hidden;
		max-height: 60px;

}
.showpage .b .bd-4 .p4 li span{
	font-style: italic;
	color: #3d55a7;
	display: block;
	margin: 5px 0;
	background: url(../images/9_44.jpg) left center no-repeat;
	padding-left:25px;
}
.showpage .b .bd-4 .p4 li em{
	color: #3d55a7;
}
.showpage .b .bd-4 .p4 li .flex_item{
	font-size: 18px;
	font-weight: bold;
}
.showpage .b .bd-4 .p5 a{
	background: #e7f1ff;
	    border-radius: 5px;
	    border: 1px solid #8398de ;
		margin-top: 20px;
		padding: 15px;
}
.showpage .b .bd-4 .p5 a img{
	width: 100%;
}
.showpage .b .bd-4 .p5 .row{
	margin: 0 -10px;
}
.showpage .b .bd-4 .p5 .col-5{
	padding: 0 10px;
}
.showpage .b .bd-4 .p5 .col-3{
	width: 25%;
	padding: 0 10px;
}
.showpage .b .bd-4 .p5 .col-3 h4{
	margin-top: 8px;
}
.showpage .b .bd-4 .p5 .col-3 a{
	display: block;
}
.showpage .b .bd-4 .p5 .flex .pic{
	width: 210px;
	margin-right: 20px;
}
.showpage .b .bd-4 .p5 h4{
	font-size: 17px;
	font-weight: bold;
	height: 47px;
	line-height: 22px;
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 2;
	    overflow: hidden;
}
.showpage .b .bd-4 .p5 ul{
	line-height: 30px;
	margin-top: 10px;
	color: #5c4509;
}
.marqueeleft {
	overflow: hidden;
	width: 100%;
	height: 140px;
}

.marqueetop {
	overflow: hidden;
	height: 430px;
}

/**/
.showpage .c .bd {
	border: 1px solid #9f0501;
	margin: 30px 0 15px;
	overflow: hidden;
	line-height: 45px;
}

.showpage .c .bd .tabtitle {
	background: #9f0501;
	padding: 10px 10px 0 10px;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
}

.showpage .c .bd .tabtitle li {
	cursor: pointer;
	width: 130px;
	text-align: center;
	border-radius: 5px 5px 0 0;
}

.showpage .c .bd .tabtitle li.on {
	background: #fff;
	color: #9f0501;
}

.showpage .c .bd .tabbox a {
	display: inline-block;
	padding: 0 30px;
}

.showpage .c .bd .tabbox a:hover,
.showpage .c .bd .tabbox a.on {
	font-weight: bold;
	color: #9f0501;
}

.showpage .d .container>.flex {
	align-items: stretch;
}

.showpage .d .left {
	width: 260px;
	border: 1px solid #eee;
	margin-right: 30px;
}

.showpage .d .left .hd {
	text-align: center;
	background: #c7e1ff;
	color: #3d55a7;
	font-weight: bold;
	line-height: 38px;
}

.showpage .d .left .bar {
	padding: 15px 15px 0;
}

.showpage .d .left .bd {
	padding: 15px 15px 0;
	max-height: 190px;
	overflow: hidden;
}

.showpage .d .left .bd.on {
	max-height: inherit;
}

.showpage .d .left .bd li {
	display: flex;
	align-items: center;
	line-height: 35px;
}

.showpage .d .left .bd li span {
	color: #acaaaa;
}

.showpage .d .left .ft {
	text-align: center;
	cursor: pointer;
	padding: 5px 0;
	margin: 5px 0 10px;
	border-top: 1px solid #eee;
}

.showpage .d .left .ft i {
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 0;
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
	border-top: 7px solid #e8e6e6;
}

.showpage .d .left .ft b {
    display: none;
	vertical-align: middle;
    width: 0;
    height: 0;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-bottom: 7px solid #e8e6e6;
}
.showpage .d .left .ft.on {
	border-top: none;
	border-bottom: 1px solid #eee;
}

.showpage .d .left .ft.on i {
	border-top: none;
	border-bottom: 7px solid #d6162d;
}

.showpage .d .right {
	width: calc(100% - 260px);
}

.showpage .d .right .hd {
	text-align: right;
}

.showpage .d .right .hd a {
	display: inline-block;
	margin-left: 10px;
	line-height: 30px;
	border-radius: 15px;
	padding: 0 15px;
	background: #9f0501;
	color: #fff;
}

.showpage .d .right .hd a:hover,
.showpage .d .right .hd a.on {
	background: #2b489a;
}

.showpage .d .right .bd li {
	padding: 15px 0;
	position: relative;
	line-height: 26px;
}

.showpage .d .right .bd li h3 {
	font-size: 15px;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.showpage .d .right .bd li h3 span {
	color: #83919e;
	width: 25px;
	display: inline-block;
}

.showpage .d .right .bd li .flex {
	align-items: stretch;
	color: #606161;
	margin-top: 10px;
}

.showpage .d .right .bd li input {
	margin: 5px 10px 0 0;
}

.showpage .d .right .bd li p {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.showpage .d .right .bd li::after {
	content: '';
	border-bottom: 1px solid #2b489a;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 25px;
}

.showpage .d .right .bd li:last-child::after {
	display: none;
}

.showpage .d {
	padding-bottom: 40px;
}

.showpage .one{line-height: 30px;}
.showpage .one .left{margin-right: 30px;width: 257px;border-right: 1px solid #ddd;}
.showpage .one .left li{padding-left: 20px;position: relative;}
.showpage .one .left li::after{content: '';display: block;width: 6px;height: 6px;background-color: #adbefa;position: absolute;left: 0;top: 50%;transform: translate(0,-50%);}
/*  
.showpage .one .right{word-break: break-all;position: relative;
text-overflow: ellipsis;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 6;
-webkit-box-orient: vertical;}
*/
.showpage .one .right p{text-indent: 2em;}
.showpage .two,.showpage .one{background-color: #e7f1ff;border: 1px solid #7b97d7;border-radius: 5px;padding: 15px;}
.showpage .title{margin-bottom: 15px;}
.showpage .title b{font-weight: bold;color: #146096;font-size: 18px;}
.showpage .title b:before{content: '';display: inline-block;width: 8px;height: 8px;vertical-align: middle;margin-right: 10px;background-color: #d4ae54;}
.showpage .title a{color: #919191;margin-left: 10px;cursor: pointer;}
.showpage .two .bd{position: relative;}
.showpage .two .swiper:before{content: '';width:0;display: inline-block;position: absolute;left: 0;top: 50%;margin-top: -16px;z-index: 99;
	height:0;	border-top:7px solid transparent;	border-bottom:7px solid transparent;	border-right:7px solid #a3a3a3;}
.showpage .two .swiper::after{content: '';width:0;display: inline-block;position: absolute;right: 0;top: 50%;margin-top: -16px;z-index: 99;
	height:0;	border-top:7px solid transparent;	border-bottom:7px solid transparent;	border-left:7px solid #3d55a7;}

.showpage .two .bd .swiper-button-next,.showpage .two .bd .swiper-button-prev{margin-top: -30px; width: 42px;height: 42px;border-radius: 50%;border: 2px solid #bdc7e7;background-color: #d6e5f3;color: #3d55a7;}
.showpage .two .swiper-button-next:after,.showpage .two  .swiper-button-prev:after{font-size: 22px;}
.showpage .two .bd .swiper-button-next{right: -70px;}
.showpage .two .bd .swiper-button-prev{left: -70px;}
.showpage .two .bd dt{text-align: center;font-weight: bold;color: #3d55a7;font-size: 18px;}
.showpage .two .bd dt span{display: inline-block;color: #fff;background-color: #3d55a7;border-radius: 5px;padding: 2px 5px; font-weight: normal;font-size: 14px;}
.showpage .two .bd dd{line-height: 22px;height: 44px;overflow: hidden;padding: 0 20px;}
.showpage .two .bd i{display: block;border-bottom: 2px solid #7c9aff;position: relative;margin: 15px auto;}
.showpage .two .bd i:before{content: '';display: block;border-radius: 50%;background-color: #7c9aff;width: 9px;height: 9px;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);}
.showpage .three{margin: 15px 0;align-items: stretch;}
.showpage .three .left{background-color: #e7f1ff;border: 1px solid #7b97d7;border-radius: 5px;padding: 15px;width: 370px;margin-right: 15px;}
.showpage .three .left .bd li{line-height: 40px;padding: 0 15px;background-color: #c1dcef;font-size: 16px;}
.showpage .three .left .bd li+li{margin-top: 6px;}
.showpage .three .right{background-color: #e7f1ff;border: 1px solid #7b97d7;border-radius: 5px;padding: 15px;}
.showpage .three .right .bd ul{display: flex;flex-wrap: wrap;margin: -8px;}
.showpage .three .right .bd ul li{width: 50%;padding: 8px;}
.showpage .three .right .bd ul h4{font-size: 18px;font-weight: bold;line-height: 22px;height: 44px;overflow: hidden;margin-bottom: 10px;text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-all;}
.showpage .three .right .bd ul .pic{width: 151px;margin-right: 10px;}
.showpage .three .right .bd ul li p{line-height: 30px;}
.showpage .three .right .bd ul li:hover{
	-webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}








.noSearchData{
	text-align: center;
    padding: 80px 0;
	color: #999;
}

.tick-slider {
	position: relative;

	width: 100%;
}

.tick-slider-value-container {
	position: relative;
	width: 100%;

	display: flex;
	justify-content: space-between;
	align-items: center;

	margin-bottom: 12px;

	font-family: "Hind Madurai", sans-serif;
	font-size: 12px;
	color: var(--gray);
}

.tick-slider-value {
	position: absolute;
	top: 0;
	font-weight: bold;

	color: var(--blue);

	border-radius: var(--slider-handle-border-radius);
}

.tick-slider-value>div {
	animation: bulge 0.3s ease-out;
}

.tick-slider-background,
.tick-slider-progress,
.tick-slider-tick-container {
	position: absolute;
	bottom: 5px;
	left: 0;

	height: var(--slider-track-height);

	pointer-events: none;

	border-radius: var(--slider-track-border-radius);

	z-index: -1;
}

.tick-slider-background {
	width: 100%;
	background-color: var(--light-gray);
}

.tick-slider-progress {
	background-color: var(--yellow);
}

.tick-slider-tick-container {
	width: 100%;

	display: flex;
	justify-content: space-between;
	align-items: center;

	padding: 0 calc(var(--slider-handle-size) / 2);
}

.tick-slider-tick {
	width: 2px;
	height: 2px;

	border-radius: 50%;

	background-color: white;
}

.tick-slider-label {
	opacity: 0.85;
	transition: opacity 0.1s ease;
}

.tick-slider-label.hidden {
	opacity: 0;
	display: block;
}

@keyframes bulge {
	0% {
		transform: scale(1);
	}

	25% {
		transform: scale(1.1);
	}

	100% {
		transform: scale(1);
	}
}

/*

    REMOVE SLIDER STYLE DEFAULTS

*/
input[type="range"] {
	-webkit-appearance: none;

	width: 100%;
	height: 100%;

	background: transparent;
	outline: none;

	margin: 5px 0;
}

input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;

	border: none;
}

input[type="range"]:focus {
	outline: none;
}

input[type="range"]::-moz-focus-outer {
	border: 0;
}

/*

    HANDLE

*/
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;

	width: var(--slider-handle-size);
	height: var(--slider-handle-size);

	background: var(--orange);

	border-radius: var(--slider-handle-border-radius);

	cursor: pointer;

	margin-top: var(--slider-handle-margin-top);

	-webkit-transform: scale(1);
	transform: scale(1);

	transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type="range"]:hover::-webkit-slider-thumb,
input[type="range"]:focus::-webkit-slider-thumb {
	transform: scale(1.2);
}

input[type="range"]::-moz-range-thumb {
	-webkit-appearance: none;

	width: var(--slider-handle-size);
	height: var(--slider-handle-size);

	background: var(--orange);

	border: none;
	border-radius: var(--slider-handle-border-radius);

	cursor: pointer;

	transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

input[type="range"]:hover::-moz-range-thumb,
input[type="range"]:focus::-moz-range-thumb {
	transform: scale(1.2);
}

/*

    TRACK

*/

input[type="range"]::-webkit-slider-runnable-track {
	width: 100%;
	height: var(--slider-track-height);

	cursor: pointer;

	background: none;

	border-radius: var(--slider-track-border-radius);
}

input[type="range"]::-moz-range-track {
	width: 100%;
	height: var(--slider-track-height);

	cursor: pointer;

	background: none;

	border-radius: var(--slider-track-border-radius);
}

input[type="range"]:focus::-webkit-slider-runnable-track {
	background: none;
}

input[type="range"]:active::-webkit-slider-runnable-track {
	background: none;
}

:root {
	--yellow: #3d55a7;
	--light-yellow: #fdf2d2;
	--orange: #3d55a7;
	--light-gray: #e3e4e8;
	--gray: #71738b;
	--light-blue: #7a7c93;
	--blue: #34385a;

	--slider-handle-size: 14px;
	--slider-handle-border-radius: 2px;
	--slider-handle-margin-top: -4px;
	--slider-track-height: 6px;
	--slider-track-border-radius: 4px;
}

/**/


.minglu{
	background-color: #e8f2ff;
}
.minglu .bg{
	height:30px;
}
.minglu .a span {
	position: absolute;
	left: 100%;
	top: -10%;
}
.minglu img{
	width: 85px;
	height:85px;
}
.minglu .a .ft h4 {
	font-size: 17px;
	line-height: 36px;
	padding: 0 25px;
	color: #666;
	margin-bottom: 20px;
	text-indent:32px;
}

.minglu .a .ft {
	margin-top: 30px;
	padding: 30px 0;
	position: relative;
	border-bottom: 1px solid #3e94d1;
}

.minglu .a .ft::before {
	content: '';
	display: block;
	position: absolute;
	width: 44px;
	height: 100%;
	background: url(/static/images/minglu_left.png) center no-repeat;
	background-size: 100% 100%;
	left: 0;
	top: 0;
}

.minglu .a .ft::after {
	content: '';
	display: block;
	position: absolute;
	width: 44px;
	height: 100%;
	background: url(/static/images/minglu_right.png) center no-repeat;
	background-size: 100% 100%;
	right: 0;
	top: 0;
}

.minglu .a .ft li {
	float: left;
	width: 16.666%;
	font-weight: bold;
	text-align: center;
}
.minglu .a .ft li.on p {
	color:  #3d55a7;
}

.minglu .a .ft li p {
	margin-top: 10px;
}
.minglu .b .bd {
    font-weight: bold;
    font-size: 16px;
    font-style: normal;
    position: relative;
	/* padding: 20px 30px 60px 0; */
	padding: 10px 10px 10px 0;
}
.minglu .b .bd .clearfix{
	margin-left: 80px;
}

.minglu .a {
	position: relative;
	font-size: 16px;
	font-weight: bold;
	color: #f6f3bb;
	padding-top: 30px;
}

.minglu .a em {
	display: inline-block;
	background: #a80602;
	border-radius: 20px;
	width: 67px;
	line-height: 32px;
	text-align: center;
}

.minglu .a span {
	position: absolute;
	left: 50%;
	top: 50%;
}

.minglu .b .hd {
	font-weight: bold;
	padding: 30px 0 10px;
	font-size: 18px;
	color: #525252;
	border-bottom: 1px solid #eee;
}

.minglu .b .hd img {
	width: 38px;
	margin: 0 0 0 20px;
}

.minglu .b .hd a {
	display: inline-block;
	border-radius: 15px;
	padding: 2px 10px;
	border: 1px solid transparent;
}

.minglu .b .hd .flex div:hover a,
.minglu .b .hd .flex div.on a {
	border: 1px solid #a80602;
}
.minglu .b .bd .clearfix{
	/* margin-left: 35px; */
	margin-left: 15px;
}

.minglu .b .bd ul li {
	float: left;
	line-height: 36px;
	width: 14.285%;
}

.minglu .b .bd ul li a {
	color: #0c2f82;
}

.minglu .b .bd ol {
	position: absolute;
	top: 15px;
	right: 0;
	line-height: 24px;
	text-align: center;
	background: #efefef;
	border: 1px solid #8da7ff;
	padding: 10px 5px;
	border-radius: 20px;
}

/**/
.detail {
	padding: 40px 0;
	min-height: 500px;
}

.detail h1 {
	text-align: center;
	font-weight: bold;
	padding: 0 0 20px;
	font-size: 22px;
}
.articleDetail h1{
	word-break:break-word;
}


.detail .hd1 {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	color: #999;
}
.articleDetail .bd1 .author{
	font-style: italic;
	color: #3d55a7;
	display: block;
	margin: 10px 0;
	background: url(../images/9_44.jpg) left center no-repeat;
	padding-left:25px;
}

.articleDetail .bd1 label {
    color: #646464;
	width: 50%;
    display: block;
    float: left;
	margin: 5px 0px;
}
.articleDetail .bd1 label .fieldName {
    color: #8590a6;
}
.articleDetail .bd1 label span {
    color: #3d55a7;
}
.articleDetail .bd1 .keyWords {
	clear: both;
}
.articleDetail .bd1 .keyWords a{
	font-size: 14px;
    color: #3d55a7;
    font-weight: bold;
    background: #c7e1ff;
    border-radius: 20px;
    border: 1px solid #3d55a7;
    padding: 2px 10px;
}
.articleDetail .bd1 .keyWords a+a{
    margin-left: 15px;

}
.detail .hd1 span{
	word-break: break-all;
}
.detail .hd1 span+span {
	margin-left: 30px;
}

.detail .hd1 a {
	display: block;
	/* width: 110px; */
	border-radius: 16px;
	color: #3d55a7;
	border: 1px solid #3d55a7;
	background: #c7e1ff;
	text-align: center;
	margin-left: 10px;
	padding: 5px 10px;
}

.detail .bd1>p {
	clear: both;
	line-height: 30px;
	margin: 15px 0;
	text-indent: 2em;
	white-space: pre-line;
}

/* 焦点图效果 */
.detail .video {
	background: #222222;
	padding: 20px;
}

.picBtnTop {
	width: 100%;
	height: 540px;
	position: relative;
	overflow: hidden;
	zoom: 1;
}
.detail .video .picBtnTop .videoShow{
	background: url(../img/video_show.png) no-repeat center;
    width: 22px;
    height: 45px;
    margin-top: -27.5px;
    position: absolute;
    right: -22px;
    top: 50%;
    cursor: pointer;
}
.detail .video .picBtnTop.open .videoShow{
	background: url(../img/video_show1.png) no-repeat center;
    width: 22px;
    height: 45px;
    margin-top: -27.5px;
    position: absolute;
    right: 0px;
    top: 50%;
    cursor: pointer;
	z-index: 999;
}
.detail .video .picBtnTop.open .hd{width:0;}
.detail .video .picBtnTop.open .bd{width: 100%;}
.picBtnTop .hd {
	/**width: 284px;**/
	width: 27%;
	height: 490px;
	color: #fff;
	position: absolute;
	right: 0;
	overflow: hidden;
	background: #333333;
}

.picBtnTop .hd ul li {
	width: 165px;
	color: #fff;
	padding: 10px 0;
	margin: 0 auto;
}

.picBtnTop .hd ul li img {
	width: 100%;
	height: 110px;
	border: 2px solid transparent;
	cursor: pointer;
}

.picBtnTop .hd ul li p {
	margin-top: 6px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.picBtnTop .hd ul li.on img {
	border-color: #fff;
}

.picBtnTop .hd h3 {
	padding: 20px 15px 10px;
	font-size: 16px;
}

.picBtnTop .hd .flex {
	color: #999;
	padding: 0 0 10px;
	margin: 0 15px 15px;
	border-bottom: 1px solid #666;
}

.picBtnTop .bd {
	/**width: 876px;*/
	width: 73%;
	height: 540px;
	position: relative;
}

.picBtnTop .bd li {
	position: relative;
	zoom: 1;
	vertical-align: middle;
	height: 540px;
}

.picBtnTop .bd li .pic {
	position: relative;
	z-index: 0;
}

.picBtnTop .bd li .pic video {
	width: 100%;
	height: 490px;
	background: #000;
	vertical-align: middle;
}

.picBtnTop .bd li .bg {
	width: 100%;
	height: 30px;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	background: #000;
	filter: alpha(opacity=60);
	opacity: 0.6;
}

.picBtnTop .bd li .title {
	width: 100%;
	line-height: 30px;
	left: 0;
	bottom: 10px;
	position: absolute;
	z-index: 2;
}

.picBtnTop .bd li .title a {
	color: #fff;
	padding-left: 15px;
}

.picBtnTop .hd .prev,
.picBtnTop .hd .next {
	display: inline-block;
	vertical-align: middle;
	position: absolute;
	cursor: pointer;
}

.picBtnTop .hd .prev {
	height: 10px;
	width: 10px;
	left: 40%;
	border-width: 1px 0 0 1px;
	bottom: 35px;
	border-color: #fff;
	border-style: solid;
	-webkit-transform: matrix(.71, .71, -.71, .71, 0, 0);
	transform: matrix(.71, .71, -.71, .71, 0, 0);
}

.picBtnTop .hd .next {
	height: 10px;
	width: 10px;
	border-width: 0 1px 1px 0;
	right: 40%;
	bottom: 40px;
	margin-top: -5px;
	border-color: #fff;
	border-style: solid;
	-webkit-transform: matrix(.71, .71, -.71, .71, 0, 0);
	transform: matrix(.71, .71, -.71, .71, 0, 0);
}

.picBtnTop .hd ul {
	height: 310px;
	overflow-y: hidden;
}

.picBtnTop .hd ul::-webkit-scrollbar {
	display: none;
	/* Chrome Safari */
	-ms-overflow-style: none;
	/* IE 10+ */
	scrollbar-width: none;
	/* Firefox */
}

/**/
.searchPage .header .search{
	display: none !important;
}
.showpage_other {
	margin-top: 30px;
}

.showpage_other .d .right-1 {
	width: calc(100% - 260px);
}

.showpage_other .d .right-1 .bd .sortField,.showpage_other .d .right-1 .bd-1 .sortField{
	float: right;
    cursor: pointer;
	height: 25px;
	border: 1px solid #3d55a7;
    border-radius: 5px;
    text-align: center;
    padding: 3px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: url("../img/dropDownArrow.png") no-repeat scroll
		right center transparent !important;
	padding-right: 14px !important;
}
.showpage_other .d .right-1 .sortField::-ms-expand {
	display: none;
}
.showpage_other .d .right-1 .bd li {
	display: flex;
	border-bottom: 1px solid #adbefa;
	position: relative;
	padding: 15px 5px;
	align-items: center;
}
.showpage_other .d .right-1 .bd li:hover,.showpage_other .d .right-1 .bd-1 li:hover{
	-webkit-box-shadow: 0 0 10px rgb(61 85 167 / 30%);
    box-shadow: 0 0 10px rgb(61 85 167 / 30%);
    transform: scale(1.01);
	border: 1px solid #adbefa;
	/**padding: 15px 10px;*/
}
.showpage_other .d .right-1 .bd li .pic {
	width: 100px;
	height: auto;
	max-height: 140px;
	margin-right: 20px;
	box-shadow: 2px 2px 4px 0px #5a5a5a;
}

.showpage_other .d .right-1 .bd li p {
	line-height: 24px;
	margin-top: 15px;
	position: relative;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	word-break: break-all;
}

.showpage_other .d .right-1 .bd li .more,.showpage_other .d .right-1 .bd-1 li .more {
	/*position: absolute;*/
	right: 0;
	bottom: 0;
	color: #3d55a7;
	background: #fff;
	padding-left: 10px;
}

.showpage_other .d .right-1 .bd li .flex {
	font-size: 16px;
}

.showpage_other .d .right-1 .bd li .flex b {
	font-size: 18px;
	padding-right: 15px;
}

.showpage_other .d .right-1 .bd li em {
	color: #3d55a7;
	font-weight: bold;
}

.showpage_other .d .right-1 .hd {
	padding: 25px;
	background: #eaf1f9;
	border: 1px solid #ddd;
	border-radius: 5px;
	border-top: 5px solid #8398de;
}

.showpage_other .d .right-1 .hd .form {
	background: #fff;
	border: 1px solid #ddd;
	display: flex;
	align-items: center;
	border-radius: 5px;
}

.showpage_other .d .right-1 .hd button {
	width: 110px;
	height: 40px;
	color: #fff;
	background: #3d55a7;
	border-radius: 5px;
	margin-left: 10px;
	cursor: pointer;
}

.showpage_other .d .right-1 .hd input {
	width: 100%;
	height: 40px;
	padding-left: 15px;
}

.showpage_other .d .right-1 .hd select {
	width: 143px;
	text-align: center;
	border-right: 1px solid #ddd;
	height: 40px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: url("../img/dropDownArrow.png") no-repeat scroll
		right center transparent !important;
	padding-right: 14px !important;
}
.showpage_other .d .right-1 .hd select::-ms-expand {
	display: none;
}
.showpage_other .d .right-1 .hd .tabtitle {
	margin-bottom: 10px;
}

.showpage_other .d .right-1 .hd .tabtitle li {
	cursor: pointer;
	width: 130px;
	line-height: 36px;

	border: 1px solid #3d55a7;
	font-size: 18px;
	border-radius: 5px;
	text-align: center;
	margin-right: 10px;
}

.showpage_other .d .right-1 .hd .tabtitle li a {
	display: block;
	color: #3d55a7;
}

.showpage_other .d .right-1 .hd .tabtitle li.on {
	background: #3d55a7;

}

.showpage_other .d .right-1 .hd .tabtitle li.on a {
	color: #fff;
}

/**/
.showpage_other .d .right-1 .bd-1 li {
	padding: 15px 15px 15px 15px;
	position: relative;
	display: flex;
	border-bottom: 1px solid #adbefa;
}
/*
.showpage_other .d .right-1 .bd-1 li::after {
	content: '';
	border-bottom: 1px solid #3d55a7;
	position: absolute;
	right: 0;
	bottom: 0;
	left: 20px;
}
*/
.showpage_other .d .right-1 .bd-1 li .dataNum{
	position: absolute;
    font-size: 15px;
    color: #83919e;
    left: 0px;

}
.showpage_other .d .right-1 .bd-1 li .pic{
 width: 100px;
    height: auto;
	max-height: 170px;
    margin-right: 20px;
    box-shadow: 2px 2px 4px 0px #5a5a5a;
}
.showpage_other .d .right-1 .bd-1 li .sourceType{
	color: #3d55a7;
    font-weight: bold;
	font-size: 16px;
	margin-left: 5px;
    background: #c7e1ff;
	padding: 2px 5px;

}
.showpage_other .d .right-1 .bd-1 li h4 {
	font-size: 18px;
	font-weight: bold;
	position: relative;
	margin-bottom: 10px;
}

 
.showpage_other .d .right-1 .bd-1 li h4 a {
	/* overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: inline-block;
	width: 70%;*/
	word-break: break-all;
}

.showpage_other .d .right-1 .bd-1 li h4 span {
	position: absolute;
	font-size: 15px;
	color: #83919e;
	left: -30px;
	top: 2px;
}

.showpage_other .d .right-1 .bd-1 li p {
	line-height: 26px;
	margin: 10px 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: 15px;
}

.showpage_other .d .right-1 .bd-1 li div span {
	color: #999;
	display: inline;
	margin-right: 25px;
	word-break:break-all;
}

/**/
.zuoping {
	padding-bottom: 50px;
}

.zuoping .a {
	display: flex;
	align-items: center;
	margin: 30px 0;
}

.zuoping .a .upbtn {
	cursor: pointer;
	width: 130px;
	padding: 15px 0;
	text-align: center;
	color: #fff;
	border-radius: 5px;
	margin-left: 20px;
	font-weight: bold;
	background: #d99d1c;
}

.zuoping .a .flex {
	padding: 20px;
	border-radius: 5px;
	border: 1px solid #b79757;
	background: #f3ede1;
}

.zuoping .a .btn {
	width: 152px;
	height: 50px;
	background: #a8110d;
	border-radius: 5px;
	color: #fff;
	font-weight: bold;
	font-size: 18px;
	margin-left: 15px;
}

.zuoping .a input {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	border-radius: 5px;
	border: 1px solid #ccb27d;
	font-weight: bold;
	font-size: 18px;
}

.zuoping .title {
	display: flex;
	align-items: center;
	margin: 30px 0 15px;
	font-weight: bold;
	color: #2b489a;
	background: #e3e8f6;
	line-height: 38px;
	padding: 0 15px 0 20px;
	border-left: 10px solid #bf182c;
}

.zuoping .title .flex_item {
	font-size: 22px;
	font-style: italic;
	letter-spacing: 10px;
}

.zuoping .b li {
	float: left;
	margin-right: 5px;
	width: 315px;
	height: 209px;
}

.zuoping .b li img {
	width: 100%;
	height: 209px;
}

.zuoping .c ul {
	margin: 25px -15px 0;
}

.zuoping .c li {
	float: left;
	width: 33.333%;
	padding: 0 15px;
	color: #666;
}

.zuoping .c li dt {
	font-size: 18px;
	font-weight: bold;
}

.zuoping .c li dd {
	line-height: 36px;
	font-size: 16px;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.zuoping .c li+li {
	border-left: 2px solid #ddd;
}

.zuoping .d ul {
	margin: 20px -15px 0;
}

.zuoping .d li {
	float: left;
	width: 25%;
	padding: 0 15px;
}

.zuoping .d li .box {
	position: relative;
	border: 1px solid #f3ede1;
	text-align: center;
}

.zuoping .d li .box p {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	background: rgba(0, 0, 0, 0.5);
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	line-height: 48px;
}

.zuoping .d li .box p input {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translate(0, -50%);
}

.zuoping .d li img {
	width: 100%;
}

.zuoping .e .bd ul,
.zuoping .f .bd ul,
.zuoping .g .bd ul,
.zuoping .I .bd ul {
	margin: 20px -15px 0;
}

.zuoping .e .bd li,
.zuoping .f .bd li,
.zuoping .g .bd li,
.zuoping .I .bd li {
	float: left;
	width: 50%;
	padding: 0 15px;
}

.zuoping .e .bd li .flex {
	border-radius: 5px;
	background: #f7f4ea;
	padding: 15px;
	border: 1px solid #dccd9d;
}

.zuoping .e .bd li .pic {
	width: 270px;
	height: 170px;
	margin-right: 15px;
}

.zuoping .e .bd li p {
	line-height: 24px;
	padding-top: 10px;
	border-top: 1px solid #8298d8;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.zuoping .e .bd li h4 {
	font-size: 16px;
	font-weight: bold;
	line-height: 28px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.zuoping .f li .pic {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 5px;
	width: 220px;
	margin-right: 20px;
}

.zuoping .f li .pic img {
	width: 100%;
	height: 277px;
}

.zuoping .f li p {
	line-height: 34px;
	font-size: 16px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 8;
	overflow: hidden;
}

.zuoping .g li .pic {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	padding: 5px;
	width: 175px;
	margin-left: 20px;
}

.zuoping .g li .pic img {
	width: 100%;
	height: 217px;
}

.zuoping .g li p {
	font-size: 16px;
	color: #666;
	line-height: 28px;
	margin-top: 10px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 5;
	overflow: hidden;
}

.zuoping .g li h4 {
	font-size: 18px;
	font-weight: bold;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
}

.zuoping .h .bd,
.zuoping .I .bd dd {
	line-height: 28px;
	font-size: 16px;
}

.zuoping .I .bd dd {
	color: #666;
	margin-top: 10px;
}

.zuoping .I .bd dt {
	font-size: 18px;
	font-weight: bold;
}

.zuoping .J .bd {
	position: relative;
}

.zuoping .J .bd .bd {
	overflow: hidden;
}

.zuoping .J .bd .pic img {
	width: 100%;
}

.zuoping .J .bd .pic {
	width: 296px;
	height: 140px;
	position: relative;
	overflow: hidden;
}

.zuoping .J .bd input {
	position: absolute;
	right: 15px;
	bottom: 15px;
}

.zuoping .J .bd p {
	color: #534d3a;
	font-weight: bold;
	line-height: 24px;
	padding: 10px;
	width: 296px;
	background: #e4d0ae;
	margin-top: 5px;
}

.zuoping .J .swiper-button-next,
.zuoping .J .swiper-button-prev {
	color: #9e7021;
}

.zuoping .J .swiper-button-next {
	right: -40px;
}

.zuoping .J .swiper-button-prev {
	left: -40px;
}

.zuoping .b .marqueeleft {
	height: 209px;
}

/**/

.fengxi .left {
	background: #7f1212;
	width: 244px;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	overflow-y: auto;
}

.fengxi .left .logo {
	padding: 15px;
}

.fengxi .left a {
	color: #fff;
	display: block;
	line-height: 45px;
}

.fengxi .left>ul>li>a {
	padding: 0 15px;
	position: relative;
}

.fengxi .left>ul>li>a.on {
	background: #820000;
}

.fengxi .left>ul>li>a::after {

	content: " ";
	display: inline-block;
	height: 6px;
	width: 6px;
	border-width: 0 2px 2px 0;
	border-color: #fff;
	border-style: solid;
	-webkit-transform: matrix(.71, .71, -.71, .71, 0, 0);
	transform: matrix(.71, .71, -.71, .71, 0, 0);
	position: absolute;
	top: 50%;
	margin-top: -3px;
	right: 20px;
}

.fengxi .left>ul>li li a {
	padding-left: 40px;
}

.fengxi .left>ul>li li:hover a,
.fengxi .left>ul>li li.on a {
	background: #5d0000;
}

.fengxi .right {
	margin-left: 244px;
	padding: 20px;
}

.fengxi .right .box {
	background: #fff;
	padding: 20px;
}

.col-3 {
	float: left;
	width: 33.333%;
	padding: 0 15px;
}

.fengxi .right .bread {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	padding-left: 15px;
	position: relative;
}

.fengxi .right .bread::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 2px;
	border-radius: 6px;
	background: #c48802;
	width: 6px;
	height: 16px;
}

.fengxi .right .title {
	text-align: center;
	position: relative;
	margin-top: 30px;
}

.fengxi .right .title span {
	display: inline-block;
	line-height: 33px;
	border-radius: 5px;
	padding: 0 25px;
	background: #9f0501;
	font-weight: bold;
	font-size: 16px;
	color: #fff;
	position: relative;
	vertical-align: middle;
}

.fengxi .right .title::before {
	content: '';
	display: block;
	border-bottom: 1px solid #9f0501;
	position: absolute;
	left: 0;
	width: 100%;
	top: 50%;
}

.chart {
	height: 325px;
}

.fengxi .right .b .swiper-button-next,
.fengxi .right .b .swiper-button-prev {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #e6e6e6;
	color: #943d3d;
}

.fengxi .right .b .swiper-button-next:after,
.fengxi .right .b .swiper-button-prev:after {
	font-size: 22px;
}

.fengxi .right .b .bd {
	position: relative;
	text-align: center;
	padding: 0 80px;
	font-size: 16px;
	margin-top: 10px;
}

.fengxi .right .b .bd dd {

	line-height: 30px;
	padding: 15px 0;
}

.fengxi .right .b .bd dl {
	border-radius: 5px;
	border: 1px solid transparent;
	overflow: hidden;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin: 10px;
}

.fengxi .right .b .bd dl:hover {
	border: 1px solid #7f1212;
}

.fengxi .right .b .bd dt {
	background: #f4ead3;
	font-weight: bold;
	line-height: 42px;
	color: #7f1212;
}

/* 本例子css */
.zuoping .J .picScroll-left {
	position: relative;
}

.zuoping .J .picScroll-left .hd .prev,
.zuoping .J .picScroll-left .hd .next {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	margin-top: -15px;
}

.zuoping .J .picScroll-left .hd .prev {
	left: -40px;
	display: inline-block;
	height: 30px;
	width: 30px;
	border-width: 0 0 2px 2px;
	border-color: #9e7021;
	border-style: solid;
	-webkit-transform: matrix(.71, .71, -.71, .71, 0, 0);
	transform: matrix(.71, .71, -.71, .71, 0, 0);
}

.zuoping .J .picScroll-left .hd .next {
	right: -40px;
	display: inline-block;
	height: 30px;
	width: 30px;
	border-width: 2px 2px 0 0;
	border-color: #9e7021;
	border-style: solid;
	-webkit-transform: matrix(.71, .71, -.71, .71, 0, 0);
	transform: matrix(.71, .71, -.71, .71, 0, 0);
}

.zuoping .J .picScroll-left .bd ul {
	overflow: hidden;
	zoom: 1;
}

.zuoping .J .picScroll-left .bd ul li {
	margin: 0 4px 0 0;
	float: left;
	_display: inline;
	overflow: hidden;
}


.homepage .b .picScroll-left {
	position: relative;
}

.homepage .b .picScroll-left .hd .prev,
.homepage .b .picScroll-left .hd .next {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	margin-top: -15px;
}

.homepage .b .picScroll-left .hd .prev {
	left: -40px;
	display: inline-block;
	height: 30px;
	width: 30px;
	border-width: 0 0 2px 2px;
	border-color: #fff;
	border-style: solid;
	-webkit-transform: matrix(.71, .71, -.71, .71, 0, 0);
	transform: matrix(.71, .71, -.71, .71, 0, 0);
}

.homepage .b .picScroll-left .hd .next {
	right: -40px;
	display: inline-block;
	height: 30px;
	width: 30px;
	border-width: 2px 2px 0 0;
	border-color: #fff;
	border-style: solid;
	-webkit-transform: matrix(.71, .71, -.71, .71, 0, 0);
	transform: matrix(.71, .71, -.71, .71, 0, 0);
}

.homepage .b .picScroll-left .bod ul {
	overflow: hidden;
	zoom: 1;
}

.homepage .b .picScroll-left .bod ul li {
	margin: 0 20px 0 0;
	width: 148px;
	float: left;
	_display: inline;
	overflow: hidden;
}

.homepage .b .picScroll-left .bod ul li img {
	width: 148px;
	height: 208px;
}

.top_bs{
	margin: 30px 24px;
}
 .top_bs h1{
	font-size: 32px;
	font-weight: bold;
	color: #061e71;
	text-indent: 4rem;
	margin-bottom: 20px;
	letter-spacing: 2px;
}

 .top_bs div{
	font-size: 22px;
	color: #9c9fac;
	text-align: right;
}
.bs{
	margin-top: 30px;
    padding: 30px 0;
    position: relative;
}
.bs::before {
    content: '';
    display: block;
    position: absolute;
    width: 43px;
    height: 43px;
    background: url(../images/bs_left.png) center no-repeat;
    background-size: 100% 100%;
    left: 0;
    top: 0;
}
.bs::after {
    content: '';
    display: block;
    position: absolute;
    width: 43px;
    height: 43px;
    background: url(../images/bs_right.png) center no-repeat;
    background-size: 100% 100%;
    right: 0;
    top: 0;
}
.bs .top_bs{
	margin: 10px 24px;
}
.bs_after{
	width: 100%;
	height: 2px;
	border-top: 2px dashed #d8d8e5;
}
.homepage .a_top{
	margin-top: 30px;
}
.jingshne_top_bs h1{
	font-size: 30px;
}
.jingshne_top_bs div{
	font-size: 20px;
}
.homepage .a_top .hd{
	float: right;
	position: relative;
	z-index: 9;
	width: 30%;
	background: url(../images/line.jpg) top right no-repeat;
	background-size: 95% auto;
}
.homepage .a_top .hd .more{
	text-align: right;
	padding-bottom: 20px;
	height: 39px;
}
.homepage .a_top .hd .more a{
	color: #6e6767;
}
.homepage .a_top .hd ul{
	padding-right: 20px;
}
.homepage .a_top .hd li{
	color: #0c2f82;
	line-height: 22px;
	background: #c7e1ff;
	margin-top: 14.5px;
	padding: 20px;
}
.homepage .a_top .hd li span{
	word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.homepage .a_top .hd li.on{
	background: #3d55a7;
	color: #fff;
	margin-left: -50px;
	position: relative;
	border-radius: 5px 0 0 5px;
}
/* 本例子css */
.homepage .a_top .left .slideBox {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.homepage .a_top .left .slideBox .bd {
	position: relative;
	height: 100%;
	z-index: 0;
	width: 70%;
	height: 430px;
	float: left;
}

.homepage .a_top .left .slideBox .bd li {
	zoom: 1;
	vertical-align: middle;
}

.homepage .a_top .left .slideBox .bd img {
	width: 100%;
	height: 430px;
	display: block;
	object-fit: cover;
}

/**/
.jinshen{
	font-size: 16px;
}
.jinshen .title{
	display: flex;
	margin: 20px 0 10px;
	align-items: center;
	border-bottom: 1px solid #3d55a7;
}
.jinshen .title img{
	width: 170px;
}
.jinshen .title a{
	color: #8d8d8d;
}
.jinshen .a .bd:nth-child(even) .flex .more{
	margin: 0 -15px 0 20px;
}
.jinshen .a .bd:nth-child(even) .flex .more span{
	border-radius: 5px 0 0 5px;
}
.jinshen .a .flex{
	border-radius: 5px;
	margin-top: 15px;
	background: url(../images/bg_02.jpg) repeat;
	border: 1px solid #3f98d4;
	padding: 15px ;
}
.jinshen .a .flex .pic{
	border: 5px solid #fff;
	border-radius: 5px;
	box-shadow: 0 0 15px rgba(0,0,0,0.1);
	position: relative;
	width: 325px;
	margin: 0 10px;
}
.jinshen .a .flex .pic b{
	position: absolute;
	left: 0;
	font-size: 13px;
	background: #3d55a7;
	padding: 5px 10px;
	color: #fff;
	top: 0;
}
.jinshen .a .flex .more{
	margin-right: 20px;
	width: 40px;
	text-align: center;
	margin-left: -15px;
}
.jinshen .a .flex .more span{
	display: block;
	background: #3d55a7;
	padding: 25px 0;
	font-weight: bold;
	font-size: 18px;
	font-style: italic;
	margin-bottom: 10px;
	color: #fff;
	border-radius: 0 5px 5px 0;
}
.jinshen .a .flex .more a{
	color: #3d55a7;
}
.jinshen .a .flex .more a i{
	display: inline-block;
	    height: 9px;
	    width: 9px;
	    border-width: 0 1px 1px 0;
	    border-color: #3d55a7;
	    border-style: solid;
		vertical-align: middle;
	    -webkit-transform: matrix(.71,.71,-.71,.71,0,0);
	    transform: matrix(.71,.71,-.71,.71,0,0);
}
.jinshen .a .bd .flex_item{
	padding: 0 10px;
}
.jinshen .a h3{
	color: #3d55a7;
	border-bottom: 1px solid #3d55a7;
	padding-bottom: 15px;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 15px;
}
.jinshen .a h3 em{
	display: inline-block;
	margin-right: 10px;
	font-size: 14px;
	background: #c7e1ff;
	border-radius: 20px;
	color: #3d55a7;
	border: 1px solid #3d55a7;
	padding: 3px 6px;
	vertical-align: middle;
}
.jinshen .a dd{
	text-align: right;
	font-style: italic;
	color: #3d55a7;
}
.jinshen .a dt{
	line-height: 28px;
	padding-left: 30px;
	position: relative;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	height: 84px;
	text-indent: 2rem;
}
.jinshen .a dt::before{
	/* content: '“'; */
	color: #3d55a7;
	font-size: 36px;
	position: absolute;
	left: -20px;
	top: 0;
	display: inline-block;



}
.jinshen .b {
	padding: 15px 0;
}
.jinshen .b .flex{
	border-radius: 5px;
	background: #f6f4f4;
	border: 1px solid #3f98d4;
	margin-top: 15px;
	transition: all 0.6s;
}
.jinshen .b .flex:hover{
	-webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	transform: scale(1.01);
}
.jinshen .b .flex .pic{
	width: 322px;
	border: 1px solid #ddd;

}
.jinshen .b .flex_item{
	padding: 10px 30px;
}
.jinshen .b .flex p{
	line-height: 28px;
	text-indent: 2em;
}
.jinshen .b .flex .t_r {
	text-align: right;
}
.jinshen .b .flex .t_r span{
	display: inline-block;
	    margin-right: 10px;
	    font-size: 14px;
	    background: #c7e1ff;
	    border-radius: 20px;
	    color: #3d55a7;
	    border: 1px solid #3d55a7;
	    padding: 3px 10px;
	    vertical-align: middle;
		font-weight: bold;
		font-style: italic;
}
.jinshen .b .flex dt{
	border-bottom: 1px solid #3d55a7;
	color: #3d55a7;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 10px;
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}
.jinshen .b .flex dt span{
	font-size: 24px;
}
.jinshen .b .flex dt::before{
	content: '';
	display: block;
	width: 8px;
	height: 26px;
	border-radius: 4px;
	background: #ecb420;
	position: absolute;
	left: 0;
	top: 3px;
}
.jinshen img{
	width: 100%;
}
.jinshen .c ul{
	margin:5px -15px;
}
.jinshen .c li{
	float: left;
	padding: 15px;
	width: 33.333%;
}
.jinshen .c li .pic{
	border: 1px solid #ddd;
}
.jinshen .c li dl{
	margin-top: 5px;
	background: #ffeed4;
	padding: 20px;
	line-height: 30px;
	color: #825616;
	font-size: 18px;
	position: relative;
}
.jinshen .c li dl span{
	position: absolute;
	right: 15px;
	bottom: 15px;
}
.jinshen .c li dl dt{
	font-weight: bold;
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 2;
	    overflow: hidden;
}
.jinshen .d ul{
	margin: 15px -15px -15px;
}
.jinshen .d li{
	float: left;
	width: 50%;
	padding: 15px;
}
.jinshen .d li .pic{
	padding: 5px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	margin-right: 20px;
	width: 171px;
}
.jinshen .d li p{
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp:4;
	    overflow: hidden;
		line-height: 28px;
}
.jinshen .d li h4{
	font-size: 18px;
	color: #a80602;
	font-weight: bold;
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp:1;
	    overflow: hidden;
}
.jinshen .d li span{
	color: #936c0f;
	border: 1px solid #936c0f;
	display: inline-block;
	border-radius: 20px;
	padding: 2px 15px;
	background: #f2ecd6;
	margin: 15px 0;
}
.jinshen .d li img{
	height: 224px;
}
.rightside {
    position: fixed;
    right: 10px;
    padding: 0 10px;
    border-radius: 5px;
    top: 50%;
    z-index: 999;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 16px;
    line-height: 40px;
    background: #EAEBEF;
    border: 1px solid #7887bd;
    padding-top: 10px;
    padding-bottom: 10px;
}
.rightside li {
    position: relative;
	border-bottom:1px solid #d3d3d3;	
	letter-spacing: 2px;
}
.rightside li a:hover{
	color: #3d55a7;
	font-weight: bold;
}
.rightside li a.on{
	color: #3d55a7;
	font-weight: bold;
}
.rightside li:last-child{
	border:none;
}

.page{
	text-align: center;
	padding: 30px 0;
	font-size: 14px;
	padding-top: 20px !important;
}
.el-pagination.is-background .el-pager li:not(.disabled).active{
	background-color: #3d55a7 !important;
    color: #fff;
}
.page a{
	display: inline-block;
	padding: 0 10px;
}
.page a:first-child,.page a:last-child,.page a.on{
	font-weight: bold;
	color: #0f59ac;
}
.page a.banclick{
    cursor:not-allowed;
}
.topic {
	height: 407px;
    background: url(../images/topic_background.png) center top no-repeat;
}
.topic .intro{
	text-align: center;
	padding-top: 20px;
}
.topic .intro img{
	padding-bottom: 10px;
    width: 340px;
}
.topic .intro p{
	margin: 0px 70px;
	line-height: 36px;
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	letter-spacing: 2px;
	padding: 20px 0px;
	border-top: 2px solid #ae3733;
	text-indent: 2rem;
}
.topicData a{
	width: 33.33%;
	float: left;
	padding: 20px 10px;
}
.topicData a .box{
	width: 100%;
}
.topicData a .box img{
	height: 200px;
	width: 100%;
}
.topicData a:hover .box .topicTitle{
	background-color: #e8f2ff;
}
.topicData a .box .topicTitle{
	height: 90px;
	padding: 10px;
	text-align: center;
	border:1px solid #d4d2d2;
	border-top: none;
}
.topicData a .box .topicTitle .title1{
	font-weight: bold;
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 15px;
} 
.topicData a .box .topicTitle .date{
	color: #fff;
    background: #3d55a7;
    font-size: 16px;
    border-radius: 10px;
    padding: 2px 10px;
}
/**/
.zhanlanTitle{
	line-height: 36px;
	margin-top: 20px;
	font-weight: bold;
	border-bottom: 5px solid #be9349;

}

.zhanlanTitle h2{
	font-size: 24px;
	display: inline;
	font-weight: bold;
	background: url(/static/images/zhanlantitleIcon.png) left center no-repeat;
	padding-left: 25px;
}
.zhanlanSource{
	color: #1d3897;
    background:  #e7f1ff;
    display: inline-block;
	border:1px solid #1d3897;
    border-radius: 10px;
	font-size: 16px;
	line-height: 26px;
    margin-left: 15px;
	padding: 0px 10px;
	vertical-align: text-top;
    font-weight: bold;
}
.zhanlanTitle span{
	text-align: right;
	color: #be9349;
	float: right;
	font-size: 18px;
	font-style: italic;
}
.zhanlan{
	display: flex;
	margin-bottom: 40px;
	padding-top: 20px;
}
.zhanlan .left{
	background: #e7f1ff;
	border-radius: 5px;
	border: 1px solid #3d55a7;
	width: 222px;
	margin-right: 30px;
	text-align: center;
	line-height: 38px;
	font-weight: bold;
	padding-top: 20px;
	font-size: 16px;
}
.zhanlan .left ul li{
	padding: 10px 0;
}
.zhanlan .left ul li a{
	display: block;
	color: #3d55a7;
}
.zhanlan .left ul li.on a,.zhanlan .left ul li:hover a{
	background: #3d55a7;
	color: #fff;
}
.zhanlan .right .bd{
	background: #dcdddd;
	padding: 20px;
	text-align: center;
}
.zhanlan .right .bd img{
	width: 100% !important;
	max-width: 100% !important;
	height: auto;
}
/**/
.fengcai{
	position: relative;
	margin-top: 50px;
	background: #f3f3f3;
	font-size: 16px;
	padding: 30px;
	border: 1px solid #3d55a7;
}
.fengcai .pic{
	position: absolute;
	top: -22px;
	left: 15px;
}
.fengcai .hd {
	padding: 0 50px 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #3d55a7;
}
.fengcai .hd p{
	line-height: 36px;
	color: #38477a;
	text-indent: 2em;
	font-style: italic;
}
.fengcai .bd li{
	display: flex;
	line-height: 42px;
	position: relative;
	padding-left: 25px;
	align-items: center;
}
.fengcai .bd li::before{
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	position: absolute;
	left: 0;
	top: 50%;
	border: 1px solid #3d55a7;
	transform: translate(0,-50%);
}
.fengcai .bd li a{
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 1;
	    overflow: hidden;
}
.fengcai .bd li:hover a{
	color: #3d55a7;
	font-weight: bold;
}
.fengcai .bd li:hover::before{
	background: #3d55a7;
}
.fengcai .bd li span{
	font-size: 14px;
	display: inline-block;
	border-radius: 10px;
	padding: 0 10px;
	line-height: 22px;
	color: #38477a;
	background: #c7e1ff;
	border: 1px solid #3d56a8;
}
/**/
.fengcai_new{
	font-size: 16px;
}
.fengcai_new .title{
	text-align: center;
	margin-top: 15px;
	border-bottom: 3px solid #5972c9;
}
.fengcai_new .title .more{
	float: right;
    line-height: 43px;
    color: #a5a5a6;;
}
.fengcai_new .a .bd{
	background: #e8f2ff;
	padding: 30px;
}
.fengcai_new .a .bd ul{
	margin: -10px;
}
.fengcai_new .a .bd li{
	float: left;
	width: 33.333%;
	padding: 10px;
}
.fengcai_new .a .bd .pic img{
	width: 100%;
    height: 100%;
}

.fengcai_new .a .bd .pic{
	border: 1px solid #ddd;
    width: 100%;
    height: 274px;
    overflow: hidden;
	display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.fengcai_new .a .bd .pic .img-bg {
    min-width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    filter: blur(10px);
    margin-top: 0;
    top: 0;
    transform: none;
    max-width: 200%;
}
.fengcai_new .a .bd .pic  .img-box {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.4);
}
.fengcai_new .a .bd .pic .img-box img {
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s;
    object-fit: contain;
	width: auto;
}
.fengcai_new .a .bd .pic:hover{
	border: 1px solid #3e94d1;
	-webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	transform: scale(1.01);
}
.fengcai_new .a .bd dl{
	padding: 10px 10px 0;
	line-height: 28px;
	position: relative;
}
.fengcai_new .a .bd dt{
	color: #4f5b82;
	font-weight: bold;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	max-height: 56px;

}
.fengcai_new .a .bd dd{
	color: #a06d1f;
	position: absolute;
	right: 20px;
	bottom: 0;
}
.fengcai_new .a .bd .more{
	text-align: center;
	padding-top: 20px;
}
.fengcai_new .a .bd .more a{
	display: inline-block;
	color: #3d55a7;
	border: 1px solid #3d55a7;
	padding: 5px 40px;
	border-radius: 20px;
}
.fengcai_new .b .left{
	width: 480px;
	line-height: 34px;
	color: #38477a;
	font-style: italic;
	text-indent: 2em;
	padding: 0 20px;
	margin-right: 30px;
	border-right: 1px solid #3e94d1;
	position: relative;
}
.fengcai_new .b .left::before{
	content: '';
	display: inline-block;
	width:0;
		height:0;
		border-top:8px solid transparent;
		border-bottom:8px solid transparent;
		border-left:8px solid #3e94d1;
		position: absolute;
		right: -8px;
		top: 50%;
		transform: translate(0,-50%);
}
.fengcai_new .b  .title{
	border: none;
}
.fengcai_new .b .bd{
	background: #f3f3f3;
	padding: 20px;
	border: 1px solid #3d55a7;
}
.fengcai_new .b .bd li{
	display: flex;
	align-items: center;
	line-height: 36px;
}
.fengcai_new .b .bd li a{
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 1;
	    overflow: hidden;
}
.fengcai_new .b .bd li span{
	display: inline-block;
	background: #c7e1ff;
	font-size: 14px;
	color: #38477a;
	line-height: 18px;
	padding: 0 8px;
	border-radius: 10px;
	border: 1px solid #3d56a8;
}
.fengcai_new .b .bd li:hover a{
	font-weight: bold;
}
.fengcai_new .b .bd .more{
	display: inline-block;
	color: #3d55a7;
	border: 1px solid #557ead;
	padding: 20px 5px;
	border-radius: 3px;
	background-color: #c7e1ff;
}
.fengcai_new .c .flex{
	margin-top: 20px;
	background: #f6f4f4;
	border: 1px solid #3f98d4;
}
.fengcai_new .c .flex:hover{
	-webkit-box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	transform: scale(1.01);
}

.fengcai_new .c .flex .pic{
	width: 320px;
	border: 1px solid #ddd;
}
.fengcai_new .c .flex img{
	width: 100%;
	height:220px;
}
.fengcai_new .c .flex_item{
	padding: 0 50px;
}
.fengcai_new .c p{
	text-indent: 2em;
	color: #666;
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 3;
	    overflow: hidden;
	line-height: 28px;
}
.fengcai_new .c .t_r{
	text-align: right;
}
.fengcai_new .c .t_r a{
	display: inline-block;
	color: #3d55a7;
	font-weight: bold;
	font-size: 14px;
	font-style: italic;
	background: #c7e1ff;
	border: 1px solid #3d55a7;
	padding: 3px 10px;
	border-radius: 20px;
	margin-left: 10px;
}
.fengcai_new .c h4{
	font-weight: bold;
	font-size: 20px;
	position: relative;
	border-bottom: 1px solid #3d55a7;
	color: #3d55a7;
	padding-bottom: 10px;
	padding-left: 20px;
	margin-bottom: 10px;
}
.fengcai_new .c h4::before{
	content: '';
	display: block;
	width: 8px;
	height: 26px;
	border-radius: 8px;
	background: #ecb420;
	position: absolute;
	left: 0;
	top: 0;
}
.fengcai_new .d{
	padding-bottom: 40px;
}
.fengcai_new .d ul{
	margin: 0 -8px;
}
.fengcai_new .d li{
	float: left;
	width: 25%;
	padding: 8px;
}
.fengcai_new .d li .videopic .videoImg:hover{
	-webkit-box-shadow: 0 0 10px #000;
	box-shadow: 0 0 10px #000;
	transform: scale(1.01);
}
.fengcai_new .d video{
	width: 100%;
	height: 183px;
}
.fengcai_new .d p{
	font-size: 18px;
	line-height: 22px;
	color: #3d55a7;
	height: 44px;
	margin-top: 5px;
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 2;
	    overflow: hidden;
}
/**/
.jinshen .a_x{
	padding: 10px 0 40px;
}
.cont-page{
	margin-top: 20px;
	border-top: 1px solid #d9dfe7;
	padding-top: 20px;
	clear: both;
}
.cont-page .a-page{
	margin-bottom: 10px;
}
.cont-page .a-page .a-tip{
	color: #9c9fac;
}
.yuanshiInfoData{
	width: 130px;
	position: fixed;
    right: 15px;
    padding: 0 10px;
    border-radius: 5px;
    top: 50%;
    z-index: 999;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    line-height: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	text-align: center;
    padding-top: 50px;
	background-color: #fff;
}

.yuanshiInfoData  .imgInfo{
	height: 90px;
    width: 70px;
    position: absolute;
    top: -40px;
    left: 30px;

}
.yuanshiInfoData  .imgInfo img{
	display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    background: #fff;
	/**object-fit: cover;*/
	
}

.yuanshiInfoData .ysinfoData .ysTitle{
	color: #3d55a7;
	letter-spacing: 2px;
	font-size: 16px;

}
.yuanshiInfoData .ysinfoData .ysDept{
	color: #b3b3b3;
	font-size: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid #e2e3e5;
}
.yuanshiInfoData .ysinfoData .yshomeBtn{
	margin-top: 12px;
	color: #fff;
    background: #3d55a7;
    font-size: 14px;
    border-radius: 4px;
    padding: 2px 10px;
	line-height: 30px;
}

/**/
.detail_gx {
	font-size: 16px;
	margin-bottom: 40px;
}
.detail_gx .a .hd{
	
	padding: 50px 0 10px;
	border-bottom: 1px solid #eee;
}
.detail_gx .a .hd h1{
	font-size: 24px;
	font-weight: bold;
	color: #0c2f82;
	text-align: center;
	margin-bottom: 20px;
}
.detail_gx .a .hd .flex span{
	color: #666;
}
.detail_gx .a .hd .flex span+span{
	margin-left: 60px;
}
.detail_gx .a .hd .flex em{
	font-size: 14px;
	color: #3d55a7;
	font-weight: bold;
	background: #c7e1ff;
	border-radius: 20px;
	border: 1px solid #3d55a7;
	padding: 2px 10px;
	margin-left: 15px;
}
.detail_gx .a .hd .flex a{
	font-size: 14px;
	color: #3d55a7;
	font-weight: bold;
	background: #c7e1ff;
	border-radius: 20px;
	border: 1px solid #3d55a7;
	padding: 2px 10px;
	margin-left: 5px;
}
.detail_gx .a .bd{
	border-radius: 5px;
	background: #f6f4f4;
	padding: 20px;
	border: 1px solid #3f98d4;
	margin: 15px 0;
	box-shadow: 0 0 10px rgba(27,50,131,0.5);
}
.detail_gx .a .bd p{
	color: #666;
	line-height: 28px;
	margin-top: 15px;
	text-indent: 2rem;
}
.detail_gx .a .bd h4{
	font-weight: bold;
	font-size: 18px;
	letter-spacing: 3px;
	color: #3d55a7;
	line-height: 26px;
	background: url(../images/10_03.png) left center no-repeat;
	padding-left: 35px;
}
.detail_gx .b {
	padding-bottom: 100px;
}
.detail_gx .b .title{
	position: relative;
	background: #c7e1ff;
	border-radius: 5px;
	font-weight: bold;
	font-size: 18px;
	line-height: 34px;
	padding-left: 38px;
	margin: 15px 0;
}
.detail_gx .b .title::before{
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translate(0,-50%);
	background: #3d55a7;
}
.detail_gx .b .right{
	width: 32%;
	float: right;
}
.detail_gx .b .left{
	float: left;
	width: 66%;
}
.detail_gx .b .left ul{
	margin: 0 -10px;
}
.detail_gx .b .left li{
	float: left;
	width: 50%;
	padding:0 10px;
}
.detail_gx .b li .pic{
	border: 1px solid #eee;
	border-radius: 5px;
	overflow: hidden;
}
.detail_gx .b li .pic img{
	width: 100%;
}
.detail_gx .b li p{
	line-height: 28px;
	margin-top: 10px;
	text-align: center;
	color: #666;
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 3;
	    overflow: hidden;
}
.detail_gx .b .singletext{
	line-height: 28px;
	text-indent:2em;
	margin-top: 10px;
	text-align: left;
	color: #666;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: inherit;
    overflow: auto;
}
.detail_gx .hd1 {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
	color: #999;
}

.detadetail_gxil .hd1 span+span {
	margin-left: 30px;
}

.detail_gx .hd1 a {
	display: block;
	/* width: 110px; */
	border-radius: 16px;
	color: #983b02;
	border: 1px solid #c2a362;
	background: #ffe0b2;
	text-align: center;
	margin-left: 10px;
	padding: 5px 10px;
}

.detail_gx .detail_content{
	height: auto;
	min-height: 300px;
	padding: 10px 0px;
}

/**/
.aboutus .a {
	padding-bottom: 30px;
}
.aboutus .a .left{
	float: left;
	width: 65%;
	position: relative;
}
.aboutus .a .left::before{
	content: '';
	border-radius: 5px;
	display: block;
	background: #8398de;
	position: absolute;
	left: 0;
	top: 10px;
	bottom: -7px;
	right: 10px;
}
.aboutus .a .left p{
	background: #e7f1ff;
	border: 1px solid #3d55a7;
	border-radius: 5px;
	color: #1b3283;
	text-indent: 2em;
	font-size: 18px;
	line-height: 40px;
	/* text-decoration: underline; */
	padding: 25px 30px;
	margin-left: 7px;
	position: relative;
}
.aboutus .title{
	font-size: 30px;
	margin-top: 30px;
	padding-bottom: 10px;
	border-bottom: 1px solid #3d55a7;
	color: #3d55a7;
	padding-left: 45px;
	margin-bottom: 15px;
	background: url(../images/ab_03.png) left 5px no-repeat;
}
.aboutus .a .right{
	float: right;
	width: 33%;
	border: 1px solid #eee;
}
.aboutus .a .right .hd{
	width: 257px;
	height: 20px;
	border: 1px solid rgba(255,255,255,0.5);
	background: rgba(0,0,0,0.2);
	border-radius: 10px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(-50%,0);
	text-align: center;
	z-index: 9;
}
.aboutus .a .right .hd li{
	display: inline-block;
	width: 10px;
	height: 10px;
	background: #fff;
	margin: 0 15px;
	border-radius: 50%;
}
.aboutus .a .right .hd li.on{
	background: #3d55a7;
}
.aboutus .a .banner .prev{
	left: 0;
}
.aboutus .a .banner .next{
	right: 0;
	margin: 0;
}
.aboutus .b .box{
	padding: 8px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
	margin-bottom: 20px;
	width: 100%;
}
.aboutus .b .box:hover{
	transform: scale(1.01);
}
.aboutus .b .box>.flex{
	background: #e8f2ff;
}
.aboutus .b .box .pic{
	width: 560px;
}
.aboutus .b .box>.flex>.flex_item{
	padding: 0 30px;
}
.aboutus .b .box dd{
	font-size: 16px;
	line-height: 28px;
	margin-top: 10px;
}
.aboutus .b .box dt {
	padding-bottom: 15px;
	border-bottom: 1px solid #3d55a7;
}
.aboutus .b .box dt b{
	font-size: 24px;
	color: #1b3283;
	display: -webkit-box;
	    -webkit-box-orient: vertical;
	    -webkit-line-clamp: 1;
	    overflow: hidden;
}
.aboutus .b .box dt span{
	display: inline-block;
	color: #fff;
	background: #1b3283;
	font-size: 16px;
	border-radius: 10px;
	padding: 2px 10px;
}
.aboutus .b {
	padding-bottom: 30px;
}

.addlists{
	display: flex;
	padding: 15px 0;
}
.addlists>.left{
	width: 275px;
	margin-right: 15px;
}
.addlists>.left ul{
	background: #d6dde6;
	border-radius: 5px;
	padding: 10px;
	border: 1px solid #bec6cf;
	height: 750px;
	overflow-y: auto;
}
.addlists>.left li{
	background: #fff;
	padding: 12px;
	border-radius: 5px;
	border: 1px solid #d1d4d9;
}
.addlists>.left li+li{
	margin-top: 10px;
}
.addlists>.left .bredge{
	margin-top: 8px;
}
.addlists>.left .bredge a{
	display: inline-block;
	background: #eef1f4;
	color: #3d55a7;
	line-height: 22px;
	padding: 0 10px;
	border-radius: 15px;
	border: 1px solid #3d55a7;
}
.addlists>.left .bredge a+a{
	margin-left: 5px;
}
.addlists>.left .bredge a:hover{
	color: #fff;
	background: #3d55a7;
}
.addlists>.left .pic{
	border-radius: 50%;
	border: 3px solid #829aec;
	width: 54px;
	height: 54px;
	margin-right: 10px;
}
.addlists>.left p{
	color: #60748d;
}
.addlists>.left h4{
	font-weight: bold;
	font-size: 16px;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
.addlists .left ul::-webkit-scrollbar{
    width: 7px;
    height: 7px;
    background-color: #F5F5F5;
  }

  /*定义滚动条轨道 内阴影+圆角*/
.addlists .left ul::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #d6dde6;
  }

  /*定义滑块 内阴影+圆角*/
.addlists .left ul::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: #eef1f4;
  }
.addlists .bd ul{
	display: flex;
	flex-wrap: wrap;
	margin: -7px;
}
.addlists .bd ul li{
	width: 33.333%;
	padding: 7px;
	line-height: 22px;
	font-weight: bold;
}
.addlists .bd ul li p{
	margin-top: 8px;
	height: 44px;
	overflow: hidden;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.addlists .bd ul .pic{
	overflow: hidden;
	border: 1px solid #ddd;
	height: 195px;
	cursor: pointer;
	display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}
.addlists .bd ul .pic .img-bg {
    min-width: 100%;
    height: 100%;
    display: block;
    position: absolute;
	filter: url(blur.svg#blur); /* IE10, IE11 */
    -webkit-filter: blur(10px); /* Chrome, Opera */
       -moz-filter: blur(10px);
        -ms-filter: blur(10px);    
            filter: blur(10px); 
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=10, MakeShadow=false); /* IE6~IE9 */
    margin-top: 0;
    top: 0;
    transform: none;
    max-width: 200%;
}
.addlists .bd ul .pic .img-box {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.4);
}

.addlists .bd ul .pic .img-box  img {
    vertical-align: middle;
	width: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s;
	object-fit: contain;
}

.addlists .bd ul li:hover{
       transform: translate(0px,-6px);
	   box-shadow: 4px 4px 8px 0px #5A5A5A;
}
.addlists .bd ul .pic img{
	width: 100%;
    height: 100%;
}
.additem{
	display: flex;
	padding: 15px 0 30px;
}
.additem .left{
	width: 810px;
	max-width: 100%;
	margin-right: 25px;
	
}
.additem .left .swiper{
	overflow: hidden;
}
.additem .left img{
	width: auto;
	/**border: 1px solid #ddd;**/
}
.additem .left .box{
	padding: 35px;
	background: #f3f3f3;
	border: 1px solid #ddd;
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 20px;
}

.additem .left .mySwiper2 .swiper-slide{
	height: 500px;
}
.additem .left .mySwiper .swiper-slide-thumb-active{
	border: 2px solid #758ee1;
}
.additem .left .mySwiper .active{
	border: 2px solid #758ee1;
}
.additem .left .swiper-button-next,.additem .left  .swiper-button-prev{
	font-size: 40px;
	color: #3d55a7;
}
.additem .left .swiper-button-prev:after, .additem .left .swiper-container-rtl .swiper-button-next:after{
	content: '';
}
.additem .left .swiper-button-next:after, .additem .left .swiper-container-rtl .swiper-button-prev:after{
	content: '';

}
.additem .left .swiper-button-next{
	right: 10px;
}
.additem .left  .swiper-button-prev{
	left: 0px;
}
.additem .left .swiper-slide:hover img{
	transform: scale(1.2);
}
.additem .left .box .optionBar{
	margin-top: 12px;
	text-align: center;
  }
.additem .left .box .optionBar a{
		color: #3d55a7;
		padding: 0px 10px;
		border-left: 1px solid #ddd;
		border-right: 1px solid #ddd;
		cursor: pointer;
}
.additem .left .box .optionBar a+a{
	   border-left: none;
}
.additem .flex_item{
	line-height: 24px;
	font-size: 15px;
}
.additem .item_hd{
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}
.additem .item_hd b{
	color: #3d55a7;
	font-size: 18px;
	padding-left: 10px;
}
.additem .item_hd a{
	margin-left: 10px;
	color: #999;
}
.additem .item_hd a:hover{
	color: #3d55a7;
}
.additem .item_bd h1{
	font-weight: bold;
	font-size: 18px;
	line-height: 30px;
	margin: 15px 0 10px;
}
.additem .item_bd h1 .casName,.addlists .bd ul li .casName{
	display: inline-block;
    color: #3d55a7;
    font-weight: bold;
    font-size: 14px;
    font-style: italic;
    background: #c7e1ff;
    border: 1px solid #3d55a7;
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 10px;
	line-height: 17px;
}{
	display: inline-block;
    color: #3d55a7;
    font-weight: bold;
    font-size: 14px;
    font-style: italic;
    background: #c7e1ff;
    border: 1px solid #3d55a7;
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 10px;
	line-height: 17px;
}
.additem .item_bd h5{
	color: #999;
	margin-bottom: 15px;
	font-size: 14px;
}
.additem .item_bd p{
	text-indent: 2em;
}

.hideOne{
	display: -webkit-box;
	  -webkit-box-orient: vertical;
	  -webkit-line-clamp: 1;
	  overflow: hidden;
	  /* word-break: break-all; */
	  word-break: normal;
}

.hideTwo{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	/* word-break: break-all; */
	word-break: normal;
}
.hideThree{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	word-break: break-all;
	text-indent: 2rem;
}
.hideFour{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
	word-break: break-all;
	text-indent: 2rem;
}

.showpage .fieldName{
  color: #666;
}

.jingshen .bd{
	padding: 50px 0 40px;
}
.jingshen .bd .box{
	display: flex;
	font-size: 18px;
	line-height: 36px;
	height: 413px;
}
.jingshen .bd0 .box{
	height: auto;
}
.jingshen .bd .box ul{
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}
.jingshen .bd .box ul li{
	width: 33.333%;
	padding: 10px;
	text-align: center;
}
.jingshen .bd .box li:hover .pic{
	border-color: #e8d4a1;
}
.jingshen .bd .box .pic{
	border: 6px solid #bddcf4;
	height: 193px;
	overflow: hidden;
}
.jingshen .bd .box .picNew{
	width: 307px;
}
.jingshen .bd .box .pic img{
	width: 100%;
}
.jingshen .bd .box p{
	margin: 15px 0;
}
.jingshen .bd .box h5{
	text-align: right;
	color: #707481;
}
.jingshen .bd .box li:hover h4{
	color: #80600f;
}
.jingshen .bd .box h4{
	font-weight: bold;
	color: #3f549a;
	margin-top: 10px;
	max-height: 36px;
}
.jingshen .bd .title{
	margin-right: 30px;
	margin-top: -40px;
	position: relative;
	color: #3d55a7;
	font-size: 16px;
}
.jingshen .bd .title img{
	width: 100%;
	height: 395px;
}
.jingshen .bd .title .txt{
	width: 16px;
	position: absolute;
	right: 0;
	top: 80px;
	line-height: 20px;
}
.jingshen .bd .title .more{
	font-size: 14px;
	color: #3d55a7;
	border: 1px solid #3d55a7;
	background: #c7e1ff;
	position: absolute;
	top: 80%;
	left: 65px;
	line-height: 28px;
	width: 70px;
	text-align: center;
	border-radius: 5px;
}
.jingshen .bd:nth-child(even) .title{
	margin: -40px 0 0 30px;
}
.jingshen .bd:nth-child(even) .title .more{
	top: 80%;
}
.jingshen .bd:nth-child(even) .title .txt{
	right: auto;
	left: 0;
}
.jingshen .bd0{
	background: #dff1ff;
}
.jingshen .bd ol{
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 5px;
	margin-bottom: 20px;
	border-bottom: 1px solid #ddd;
}
.jingshen .bd ol li{
	width: 50%;
	padding-bottom: 10px;
}
.jingshen .bd ol li a{
	display: block;
	width: 370px;
	line-height: 45px;
	max-height: 45px;
	border-radius: 40px;
	font-weight: bold;
	color: #3d55a7;
	padding-left: 50px;
	background: url(../images/11_23.png) 6px center no-repeat;
}
.jingshen .bd ol li:hover a{
	background: #3d55a7;
	color: #fff;
}

.jingshen .bd .box .picNew{
	border-color: #e8d4a1;
}
.jingshen .bd .flex .pic{
	margin-left: 30px;
}
.jingshen .bd1{
	background: #f0eee2;
}
.jingshen .bd2{
	background: #e4ebfd;
}
.jingshen_top {
	height: 264px;
	position: relative;
	background: url(../images/11_03.jpg) center no-repeat;
}
.jingshen_top .bd{
	position: absolute;
	bottom: 30px;
	width: 100%;
	text-align: center;
}
.jingshen_top .bd a{
	display: inline-block;
	border-radius: 5px;
	border: 1px solid #efda93;
	background: rgba(13,40,137,0.6);
	width: 110px;
	line-height: 40px;
	margin: 0 20px;
}

.img-content{
    height: 210px;
    cursor: pointer;
    display: block;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.img-content .img-bg {
    min-width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    filter: blur(10px);
    margin-top: 0;
    top: 0;
    transform: none;
    max-width: 200%;
}
.img-content .img-box {
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.4);
}
.img-content .img-box img {
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    display: block;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: all 0.5s;
    object-fit: contain;
}
.visible-xs{
	display: none;
}



















@media screen and (min-width:1366px) and (max-width:1550px) {}

@media screen and (min-width:1201px) and (max-width:1365px) {}

@media screen and (min-width:980px) and (max-width:1200px) {}

@media screen and (min-width:769px) and (max-width:979px) {}

@media (max-width:768px) {
	body{
		font-size: 14px;
	}
	.header {
		padding: 10px 0;
		z-index: 999;
	}

	.header .container .login {
		top: 0;
		right: 40px;
		position: absolute;
		font-size: 14px;
	}
	.header .container .loginUser {
		top: 0;
		right: 50px;
		position: absolute;
		padding: 0px;
	}

	.header .flex {
		display: block;
	}

	.footer {
		font-size: 12px;
		line-height: 20px;
		text-align: left;
	}
	.footer .friendLinkWrap{
		font-size: 12px;
	}
	.footer .friendLinkWrap .friendLinkData{
		display: block;
	}
	.el-backtop{
		right: 10px !important;
	}
	.header .search {
		display: none;
	}

	.header .logo {
		width: 200px;
		margin-left: 5px;
	}

	.header .nav {
		display: none;
	}
	.xsYsHomePage{
		position: absolute;
		right: 50px;
		top: 20px;
		color:#fef3c7;
	}
	.m_nav_before{
		position: absolute;
		right: 40px;
		top: 20px;
		width: 50px;
		z-index: 99;
		color: #fff;
		font-weight: 600;

	}
	.m_nav {
		position: absolute;
		right: 15px;
		top: 20px;
		width: 25px;
		z-index: 99;
	}

	.m_nav i {
		display: block;
		color: #fff;
		font-size: 26px;
	}
	.m_menu .nav>li.active>a{
		color: #be9349;
    	font-weight: bold;
	}
	.cross i:nth-of-type(1) {
		-webkit-transform: translateY(0px) rotate(-45deg);
		-ms-transform: translateY(0px) rotate(-45deg);
		transform: translateY(0px) rotate(-45deg);
	}

	.cross i:nth-of-type(2) {
		opacity: 0;
	}

	.cross i:nth-of-type(3) {
		-webkit-transform: translateY(-8px) rotate(45deg);
		-ms-transform: translateY(-8px) rotate(45deg);
		transform: translateY(-8px) rotate(45deg);
	}
	.top_bs h1{
		font-size: 16px;
		text-indent:2rem;
		margin-bottom: 10px;
	}
	.top_bs div{
		font-size: 14px;
	}
	.homepage .a .ft h4{
		font-size: 14px;
		line-height: 24px;
		margin-bottom: 0px;
	}
	.shaixuan_mobile{
		margin: 10px 0px;
	}
	.shaixuan_mobile .shaixuan_select{
		width: 48%;
	}
	.shaixuan_select .el-input__inner{
		color: #3d55a7;
		border:1px solid #adbefa;
	}
	.shaixuan_mobile .shaixuan_select .el-input__inner::placeholder {
		color:  gray;
	  }
	  /* 谷歌 */
	  .shaixuan_mobile .shaixuan_select .el-input__inner::-webkit-input-placeholder {
		color:  gray;
	  }
	  /* 火狐 */
	  .shaixuan_mobile .shaixuan_select .el-input__inner:-moz-placeholder {
		color:  gray;
	  }
	  /*ie*/
	  .shaixuan_mobile .shaixuan_select .el-input__inner:-ms-input-placeholder {
		color:  gray;
	  }
	.banner dl dd {
		font-size: 12px;
		line-height: 20px;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}

	.banner dl dt {
		font-size: 16px;
		margin: 0;
		border: none;
	}

	.banner .swiper-pagination-bullet {
		margin: 0 5px !important;
		width: 7px;
		height: 7px;
	}

	.banner .swiper-pagination {
		padding: 0;
		width: 100%;
		bottom: 10px !important;
		background: none;
	}

	.banner .swiper-slide::after {
		height: 100px;
	}

	.homepage .title  {
		display: flex;
	}
	.homepage .title a {
		font-size: 12px;
	}

	.homepage .title img {
		width: 90px;
	}

	.homepage .title::after {
		width: 90px;
	}

	.homepage .a .bd .flex {
		display: block;
	}

	.homepage .a .bd ul {
		padding: 10px;
	}

	.homepage .a .ft li {
		width: 33.333%;
		margin-bottom: 10px;
	}

	.homepage .a .ft img {
		width: 60px;
	}

	.homepage .a {
		font-size: 14px;
	}

	.homepage .a .ft {
		margin-top: 15px;
	}
	.homepage .a .bd .newspic{
		width: 100%;
		height: 240px;
	}

	.col-5 {
		width: 100%;
	}

	.homepage .b .flex {
		display: block;
	}

	.homepage .b .pic {
		margin: 0 auto;
	}

	.homepage .b .gallery-top h3 {
		margin: 8px 0;
	}

	.homepage .c .bd li {
		width: 100%;
	}
/**
	.homepage .c .bd img {
		height: 95px;
	}
**/
	.homepage .c .bd li {
		font-size: 14px;
	}

	.homepage .c .ft .tabbox li,
	.homepage .d .bd li {
		width: 100%;
		margin: 10px 0px;
	}

	.homepage .c .tabtitle .tab {
		position: static;
		transform: translate(0, 0);
		padding: 10px 0;
		font-size: 14px;
	}

	.homepage .c .tabtitle ul {
		width: auto;
		border: 1px solid #b00e0a;
	}

	.homepage .c .tabtitle li {
		font-size: 14px;
	}

	.homepage .c .tabtitle .tab a+a {
		margin-left: 10px;
	}

	.homepage .d {
		height: auto;
	}
	.homepage .d .title img{
		width: 200px;
	}
	.homepage .e{
		padding: 0px;
		padding-bottom: 20px;
	}
	.homepage .e .title{
		padding-top: 10px;
		margin-bottom: 20px;
		display: flex;
	} 
	.homepage .e .title a{
		color: #fff;
	}
	.homepage .e .left {
		display: none;
	}

	.homepage .e li {
		width: 50%;
		padding: 10px;
	}
	.homepage .e  li img {
		height: 236px;
	}
	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 16px;
	}

	.homepage .b .gallery-thumbs img {
		width: 90px;
		height: 90px;
	}

	.homepage .b .gallery-top h3 b {
		font-size: 20px;
	}
	.minglu .a .ft li{
		width: 33.33%;
	}

	/**/
	.showpage .a .bd {
		display: block;
	}

	.showpage .a .bd .left {
		width: 100%;
		margin: 0 0 15px 0;
	}
.homepage .c .bd ul p
	.showpage .a,
	.showpage .b {
		font-size: 14px;
	}
	.homepage .c .bd ul .swiper-button-prev{
		left: 0px;
	}
	.homepage .c .bd ul .swiper-button-next{
		right: 0px;
	
	}
	.homepage .c .bd ul .swiper-pagination{
		display: none;
	}
	.showpage .a .right {
		width: 100%;
		clear: both;
	}

	.showpage .a .right h2 {
		color: #333;
	}
	.showpage .a .bd .left .pic{
		float: left;
		margin-right: 20px;
	}
	.showpage .a .left img {
		width: 120px;
		height: 160px;
	}
	.showpage .a .bd .left h2 {
		color: #fef3c7;
	}
	.showpage .a .bd .left h2 b{
		font-size: 30px;
		margin-bottom: 8px;
    	display: block;
	}
	.showpage .a .left h2 .yszj{
		float: left;
	}
	.showpage .a .right h2 b {
		font-size: 30px;
	}
	.showpage .a .right h2 .yszj{
		display: block;
		float: none;
	}

	.showpage .a .right h3 {
		font-size: 16px;
		line-height: 24px;
		display: inline-block;
    	margin: 15px 0px 15px;
	}
	.showpage .b .bd-4 .p4 li{
		line-height: 24px;
	}
	.showpage .b .bd-4 .p4 li .flex_item{
		font-size: 16px;
	}
	.showpage .b .bd-4 .p3 h4{
		font-size: 16px ;
		height: 45px ;
		height: auto;
	}
	.showpage .b .bd-4 .p3 .pic{
		margin-right: 10px;
	}
	.showpage .b .bd-4 .p5 h4{
		font-size: 15px;
	}
	.showpage .title b{
		font-size: 16px;
	}
	.showpage .two .bd dt{
		font-size: 16px;
	}
	.showpage .b .tabtitle {
		font-size: 14px;
		padding: 0;
		white-space: nowrap;
		overflow-x: scroll;
	}

	.showpage .b .columnDataShow{
		position: relative;
	}
	.showpage .b .columnDataShow::after{
		content:'';
		width: 20px;
		background-color: rgba(0,0,0,0.3);
		position:absolute;
		top: 0px;
		height: 100%;
		right: 0px;
		z-index: 999;
	}
	.showpage .b .bd-4 .columnSubDataShow{
		position: relative;
	}
	.showpage .b .bd-4 .columnSubDataShow::after{
		content:'';
		width: 20px;
		background-color: rgba(255,255,255,0.8);
		position:absolute;
		top: 0px;
		height: 34px;
		right: 2px;
		z-index: 999;
	}
	.showpage .b .tabtitle li {
		padding: 0 10px;
	}

	.showpage .b .tabtitle::after,
	.showpage .b .tabtitle::before {
		display: none;
	}

	.showpage .b .bd-1>.flex {
		display: block;
	}

	.showpage .b .bd-1 .right {
		width: 100%;
		margin-top: 30px;
		display: block;
		clear: both;
		height: auto;
		min-height: 252px;
	}
	.showpage .b .bd-1 .right .swiper-slide{
		height: 230px !important;
	}
	.showpage .b .bd-1 .left li b {
		font-size: 14px;
		width: 91px;
	}
	.showpage .b .bd-1 .left .more{
		left: 106px;
	}
	.showpage .b .bd-1 .left li p {
		padding-left: 0px;
	}
	.ysnp {
		margin-bottom: 20px;
	}
	.ysnp .left li p{
		margin-left: 10px !important;
	}
	.showpage .b .bd-1 .left li .line{
		padding-top: 7px;
	}
	.showpage .b .bd-1 .left li p span {
		width: 80px;
		font-size: 12px;
		line-height: 24px;
		margin: 0 15px 0 0;
	}

	.showpage .b .bd-1 .left li {
		line-height: 24px;
	}

	.showpage .b .bd-2 li {
		width: 100%;
	}

	.showpage .b .bd-2 h3 {
		font-size: 14px;
	}
	.showpage .one .left li{
		float: left;
		width: 50%;
		font-size: 13px;
		padding-left: 14px;
	}
	.showpage .one{
		display: block;
		padding: 10px;
	}
	.showpage .one .left{
		width: 100%;
		margin-bottom: 10px;
	}
	.showpage .three{
		display: block;
	}
	.showpage .three .left{
		width: 100%;
	}
	.showpage .three .right{
		margin-top: 15px;
	}
	.showpage .three .right .bd ul li{
		width: 100%;
	}

	.showpage .c .bd .tabtitle {
		font-size: 14px;
	}

	.showpage .c .bd {
		line-height: 30px;
	}
	.homepage .c .bd ul p{
		height: auto;
		font-size: 14px;
	}
	.showpage .d .container>.flex {
		display: block;
	}

	.showpage .d .left {
		width: 100%;
		margin: 0 0 15px 0;
	}

	.showpage .d .right {
		width: 100%;
	}
	.homepage .d .tabtitle li {
		font-size: 14px;
		padding: 0 12px;
		line-height: 26px;
	}

	.homepage .d .tabtitle {
		margin: 20px 0;
		text-align: left;
		white-space: nowrap;
		overflow-x: scroll;
	}

	.minglu .b .hd {

		font-size: 14px;
	}

	.minglu .b .hd .flex {
		display: block;
		white-space: nowrap;
		overflow-x: scroll;
	}

	.minglu .b .hd .flex div {
		display: inline-block;
	}

	.minglu .b .hd img {
		width: 25px;
		margin-left: 10px;
	}

	.minglu .b .bd ul li {
		width: 25%;
	}

	.minglu .b .bd {
		font-size: 14px;
		padding-bottom: 20px;
	}

	.picBtnTop .bd {
		width: 100%;
		height: auto;
		margin-top: 10px;
	}

	.picBtnTop .hd {
		position: relative;
		width: 100%;
		height: auto;
		max-height: 490px;
	}
	.detail{
		padding: 20px 0px;
		min-height: 300px;
	}
	.detail .video{
		padding: 10px;
	}
	.picBtnTop {
		height: auto;
	}
	.picBtnTop .hd ul{
		height: auto;
		max-height: 310px;
	}
	.picBtnTop .bd li{
		position:inherit;
		height: auto;
	}
	.picBtnTop .bd li .pic video{
		height: 230px;
	}
	.picBtnTop .bd li .title{
		position: inherit;
		margin-top: 8px;
	}
	.picBtnTop .bd li .title a{
		padding-left: 0px;
	}
	.detail .video .picBtnTop .videoShow{
		display: none;
	}
	.detail .bd1 .manual-wrap{
		display: block;
		text-align: center;
		text-align: -webkit-center;
	}
	.articleDetail .bd1 label{
		width: 100%;
		float: none;
	}
	/**/
	.showpage_other .d .right-1 {
		width: 100%;
	}

	.showpage_other .d .right-1 .hd {
		padding: 10px;
	}
	.showpage_other .d .right-1 .hd .tabtitle li{
		width: 100px;
		line-height: 30px;
		font-size: 16px;
	}
	.showpage_other .d .right-1 .hd select {
		width: 80px;
	}
	.showpage_other .d .right-1 .hd button{
		width: 60px;
	}
	.showpage_other .d .right-1 .bd li .flex{
		display: block;
	}
	.showpage_other .d .right-1 .bd li .flex span{
		display: block;
		margin: 3px 0px;
	}
	.showpage_other .d .right-1 .bd-1 li h4{
		font-size: 16px;
	}
	.showpage_other .d .right-1 .bd-1 li .sourceType {
		font-size: 14px;
		padding: 0px 3px;
	}
	.jinshen .title img{
		width: 120px;
	}
	/**/
	.zuoping .J .swiper-button-next {
		right: 0;
	}

	.zuoping .J .swiper-button-prev {
		left: 0;
	}

	.zuoping .e .bd li,
	.zuoping .f .bd li,
	.zuoping .g .bd li,
	.zuoping .I .bd li,
	.zuoping .c li {
		width: 100%;
	}

	.zuoping .a {
		display: block;
	}

	.zuoping .a .btn {
		width: 90px;
		font-size: 14px;
	}

	.zuoping .title .flex_item {
		font-size: 16px;
	}

	.zuoping .a input {
		font-size: 14px;
	}

	.zuoping .a .upbtn {
		width: 100%;
		margin: 15px 0 0;
	}

	.zuoping .d li {
		width: 50%;
		padding: 5px;
	}

	.zuoping .d ul {
		margin: 10px -5px;
	}

	.zuoping .e .bd li .pic,
	.zuoping .f li .pic {
		width: 130px;
	}

	.zuoping .e .bd li+li,
	.zuoping .f .bd li+li,
	.zuoping .g .bd li+li,
	.zuoping .I .bd li+li {
		margin-top: 15px;
	}

	.zuoping .f li .pic img {
		height: 150px;
	}

	.zuoping .f li p {
		-webkit-line-clamp: 4;
	}

	.zuoping .J .bd img {
		height: auto;
	}

	.zuoping {
		padding-bottom: 30px;
	}

	.fengxi .right {
		margin: 0;
		padding: 15px;
	}

	.fengxi .left {
		display: none;
		z-index: 99;
	}

	.col-3 {
		width: 100%;
	}

	.fengxi .right .b .bd {
		padding: 0;
	}

	.fengxi .right .box {
		padding: 10px;
	}

	.fengxi .mbtn {
		position: absolute;
		display: block;
		top: 25px;
		right: 25px;
		z-index: 9;
	}

	.picScroll-left .hd .next {
		right: 10px;
		z-index: 99;
	}

	.picScroll-left .hd .prev {
		left: 10px;
		z-index: 99;
	}

	.homepage .b .picScroll-left .bod ul li img,
	.homepage .b .picScroll-left .bod ul li {
		width: 90px;
		height: 128px;
	}


	.slideBox {
		margin-bottom: 20px;
	}
	.homepage .a_top .bd p{
		font-size: 14px;
		line-height: 24px;
	}

	.homepage .b .picScroll-left .bod ul li {
		margin-right: 10px;
	}

	.homepage .b .bd ul {
		white-space: nowrap;
		overflow-x: auto;
	}

	.homepage .b .bd li {
		display: inline-block;
		float: none;
		width: 110px;
	}

	.homepage .b .container>.hd {
		height: 600px;
	}
	/**/
	.jinshen .a .flex,.jinshen .b .flex{
		display: block;
	}
	.jinshen .a .flex .pic{
		margin:10px auto ;
		width: 100%;
	}
	.jinshen .a .bd .flex_item{
		padding: 0;
	}
	.jinshen{
		font-size: 14px;
	}
	.jinshen .a h3,.jinshen .b .flex dt{
		font-size: 16px;
	}
	.jinshen .a h3 em{
		margin-top: -3px;
	}
	.jinshen .b .flex .pic{
		width: 100%;
	}
	.jinshen .b .flex_item{
		padding: 15px;
	}
	.jinshen .b .flex dt span{
		font-size: 18px;
	}
	.jinshen .c li{
		width: 50%;
		padding: 5px;
	}
	.jinshen .c ul{
		margin: -5px;
	}
	.jinshen .c li dl span{
		display: none;
	}
	.jinshen .c li dl{
		font-size: 14px;
		padding: 10px;
	}
	.jinshen .d li{
		width: 100%;
		padding: 5px 15px;
	}
	.topic{
		height: auto;
	}
	.topic .intro p{
		margin: 0px;
		line-height: 24px;
		font-size: 14px;
		letter-spacing:1px
	}
	.topicData a{
		width: 100%;
		float: none;
		display: block;
	}
	.zhanlan{
		display: block;
		padding-top: 0px;
		margin: 15px 0;
	}
	.zhanlanTitle h2{
		font-size: 20px;
	}
	.zhanlan .bainianys{
		margin-bottom: 10px;
		font-weight: bold;
		color:#be9349;
		font-size: 18px;
		text-align: center;
	}
	.zhanlan .left{
		padding: 0;
		width: 100%;
		margin: 0 0 15px 0;
		font-size: 14px;
		display: inline-block;
	}
	.zhanlan .left ul li{
		padding: 0;
		width: 33.33%;
		float: left;
		text-align: center;
	}
	.zhanlan .right {
		clear: both;
	}
	.zhanlan .right .bd{
		padding: 10px;
	}
	/**/
	.fengcai{
		font-size: 14px;
		padding: 30px 15px 15px;
	}
	.fengcai .hd{
		padding: 0 15px 15px;
	}
	.fengcai .hd p{
		text-indent: 6em;
		line-height: 30px;
	}
	.fengcai_new .b .bd{
		padding: 10px;
	}
	/**/
	.showpage .b .bd-4 .p2 li{
		width: 100%;
		padding: 0;
		
	}
	.top_bs{
		margin: 20px 0px;
	}
	.bs .top_bs{
		margin: 10px 0px;
		margin-bottom: 0px;

	}
	.showpage .b .bd-4 .p2 .box,.showpage .b .bd-4 .p2 li:nth-child(odd){
		border: none;
	}
	.showpage .b .bd-4 .p2 ul{
		margin: 0;
	}
	.showpage .b .bd-4 .p3 a{
		margin-bottom: 10px;
	}
	.showpage .b .bd-4 .p5 .flex .pic{
		width: 140px !important;
	}
	.showpage .b .bd-4 .p5 .flex .pic img{
		height: 110px;
	}
	.showpage .b .bd-4 .p5 .col-3{
		width: 50%;
	}
	.showpage .b{
		padding: 20px 0;
	}
	.showpage .two .swiper-button-next,.showpage .two .swiper-button-prev{
		display: none;
	}
	/**/
	.fengcai_new .a .bd{
		padding: 15px;
	}
	.fengcai_new .a .bd li{
		width: 100%;
	}
	.fengcai_new .a .bd .pic{
		height: 200px;
	}
	.fengcai_new .a .bd dd{
		position: static;
	}
	.fengcai_new{
		font-size: 14px;
	}
	.fengcai_new .a .bd dl{
		line-height: 22px;
	}
	.fengcai_new .b .bd .flex{
		display: block;
	}
	.fengcai_new .b .title .more{
		display: block !important;
	}
	.fengcai_new .b .left{
		width: 100%;
		padding: 10px 0;
		border: none;
	}
	.fengcai_new .b .bd .oralStoryMore{
		display: none;
	}
	.fengcai_new .b .bd .more br{
		display: none;
	}
	.fengcai_new .b .bd .more{
		padding: 5px 20px;
		width: 100%;
		text-align: center;
		margin-bottom: 15px;
	}
	.fengcai_new .b .left::before{
		display: none;
	}
	.fengcai_new .c .flex{
		display: block;
	}
	.fengcai_new .c .flex .pic{
		width: 100%;
		border: none;
	}
	.fengcai_new .c .flex_item{
		padding: 15px;
	}
	.fengcai_new .c h4{
		font-size: 16px;
	}
	.fengcai_new .d li{
		width: 100%;
	}
	.fengcai_new .d p{
		font-size: 14px;
		height: auto;
	}
	.jinshen .a .flex .more{
		width: 100%;
		margin: 0 0 10px 0;
	}
	.jinshen .a .flex .more br{
		display: none;
	}
	.jinshen .a .flex .more span{
		padding: 10px;
		border-radius: 5px;
	}
	.jinshen .a .flex .more a i{
		margin-top: -6px;
	}
	.jinshen .a .bd:nth-child(even) .flex .more{
		margin: 0;
	}
	.jinshen .a .bd:nth-child(even) .flex .more span{
		border-radius: 5px;
	}
	.homepage .a_top .left,.homepage .a_top .right{
		width: 100%;
	}
	.homepage .a_top .right li.on{
		margin-left: 0;
	}
	.banner .prev,.banner .next{
		margin:220px 0 0;
	}
	.banner .prev{
		left: 10px;
	}
	.banner .next{
		right: 10px;
	}
	.homepage .a_top .left .slideBox .bd,.homepage .a_top .left .slideBox .hd{
		float: none;
		width: 100%;
	}
	.homepage .a_top .left .slideBox .bd {
		height: 260px;
	}
	.homepage .a_top .left .slideBox .bd img{
		height: 260px;
	}
	.homepage .a_top .hd li.on{
		margin-left: 0;
	}
	.homepage .a_top .left .slideBox .bd{
		margin-top: 0px;
	}
	.minglu .a .ft{
		margin-top: 0px;
	}
	.hidden-xs{
		display: none !important;
	}
	.visible-xs{
		display: block !important;
	}
	.el-button--mini, .el-button--mini.is-round{
		padding: 5px 10px;
	}
	/**/
	.detail_gx .a .hd{
		padding: 20px 0 10px;
		
	}
	.detail_gx .a .hd h1{
		font-size: 18px;
		margin-bottom: 10px;
	}
	.detail_gx{
		font-size: 14px;
	}
	.detail_gx .a .hd .flex em{
		margin-left: 5px;
	}
	.detail_gx .a .hd .flex span+span{
		margin-left: 0;
		display: block;
	}
	.detail_gx .b .left,.detail_gx .b .right{
		float: none;
		width: 100%;
	}
	.detail_gx .b .left li{
		width: 100%;
	}
	.detail_gx .b{
		padding-bottom: 30px;
	}	
	/**/
	.aboutus .title img{
		display: none;
	}
	.aboutus .a .left,.aboutus .a .right{
		width: 100%;
		float: none;
	}
	.aboutus .a .banner .prev,.aboutus .a  .banner .next{
		margin: 0;
	}
	.aboutus .b .box>.flex{
		display: block;
	}
	.aboutus .b .box .pic{
		width: 100%;
	}
	.aboutus .b .box>.flex>.flex_item{
		padding: 15px;
	}
	.aboutus .a .left p{
		font-size: 14px;
		line-height: 24px;
		padding: 15px;
	}
	.aboutus .a .left{
		margin-bottom: 20px;
	}
	.aboutus .title{
		font-size: 20px;
		margin-top: 15px;
	}
	.aboutus .b .box dt b{
		font-size: 16px;
	}
	.aboutus .b .box dd,.aboutus .b .box dt span{
		font-size: 14px;
	}

	
	.addlists{
		display: block;
	}
	.addlists>.left{
		width: 100%;
		margin: 0 0 20px 0;
	}
	.addlists .bd ul li{
		width: 100%;
	}
	.addlists .bd ul li p{
		height: auto;
	}
	.additem{
		display: block;
	}
	.additem .left{
		margin: 0 0 20px 0;
	}
	.additem .left .box{
		padding: 10px;
	}
	.additem .left .mySwiper2 .swiper-slide{
		height: 300px;
	}
	.rightside{
		right: 1px;
		font-size: 14px;
		padding: 0px 5px;
		line-height: 30px;
		z-index: 98;
	}
	.eventsType{
		font-size: 14px;
	}
	.jingshen_top {
		height: 140px;
		background: url(../images/11_03_1.jpg) center no-repeat;
	}
	.jingshen_top .bd{
		bottom: 15px;
	}
	.jingshen_top .bd a{
		margin: 0 5px;
		margin-bottom: 10px;
		width: 25%;
	}
	.bs{
		margin-top: 0px;
		padding: 10px 0px;
		padding-bottom: 0px;
	}
	.bs::before,.bs::after{
		display: none;
	}
	.bs_after{
		display: none;
	}
	.jingshen .bd .box{
		display: block;
	}
	.jinshen .a dt{
		padding-left: 0px;
	}
	.jingshen .bd .title{
		margin-right: 0px;
		margin-bottom: 10px;
	}
	.jingshen .bd .title img{
		width: 60%;
		height: 320px;
	}
	.jingshen .bd .title .more{
		top: 88%;
	}
	.jingshen .bd .title .txt{
		width: 40%;
		writing-mode: vertical-lr;
	}
	.jingshen .bd .title .txt br{
		display: none;
	}
	.jingshen .bd .box{
		height: auto;
	}
	.jingshen .bd .box ul li{
		width: 100%;
	}
	.jingshen .bd ol li{
		width: 100%;
	}
	.jingshen .bd0 .box .flex,.jingshen .bd1 .box .flex,.jingshen .bd2 .box .flex{
		display: block;
	}
	.jingshen .bd .box .picNew{
		width: 100%;
		margin-left: 0px;
	}

	.showpage .b .bd-2 .clearfixUl li{
		width: 100%;
	}
	.showpage .b .bd-2 .flex{
		padding: 20px;
	}
	.showpage .b .bd-4 .p1{
		padding: 5px 10px;
		line-height: 24px;
		white-space: nowrap;
		overflow-x: scroll;
	}
	.showpage .b .bd-4 .p1 a{
		padding: 0px 10px;
	}
	.showpage .b .bd-4 .p1 a:first-child{
		padding-left: 0px;
	}
	.showpage .b .bd-4 .p4 li{
		padding: 20px;
	}
	.showpage .b .bd-4 .p4 li .box .flex{
		display: block;
	}
	.showpage .b .bd-4 .p3 .row .col-3{
		width: 100%;
	}
	.detail h1{
		font-size: 16px;
	}
	.detail .hd1 span{
		font-size: 12px;
	}
	.detail .hd1 span+span{
		margin-left: 8px;
	}
	.detail .hd1 .flex{
		display: block;
	}
	.detail .hd1 .flex .flex_item{
		margin-bottom: 10px;
	}
	.zhanlanTitle span{
		float: none;
	}
	.arcDetail{
		padding: 20px 0px;
	}
	.yshomeBtnXs{  
		  display: inline-block !important;
		background: #f6f4f4;
		color: #3d55a7;
		margin-left: 10px;
		padding: 1px 5px;
		font-size: 13px;
		border-radius: 5px;
		font-weight: normal;
		border: 1px solid #ddd;}
		.yshomeBtnXs i{
			color: #83a5cd;
		}
		.returnBack{
			float: right;
			color: #3d55a7;
			margin-top: -30px;
		}
}
.ql-align-right{
	text-align: right;
}
