html,
body {
	padding: 0;
	margin: 0;
	font-family: "Microsoft YaHei", "微软雅黑", "arial", "tahoma", "MicrosoftJhengHei", "sans-serif";
	font-size: 14px;
	color: rgba(255, 255, 255, .6);
	background: #101010;
	/* font-family: "fontR"; */
}

@font-face {
	font-family: "iconfont";
	/* Project id  */
	src: url('../fonts/iconfont.ttf?t=1635922021824') format('truetype');
}

.iconfont {
	font-family: "iconfont" !important;
	font-size: 16px;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-youjiantou:before {
	content: "\e622";
}

.icon-down:before {
	content: "\e649";
}

/* 
@font-face {
	font-family: "fontM";
	src: url('../fonts/SourceHanSansCN-Medium.otf');
}

@font-face {
	font-family: "fontR";
	src: url('../fonts/SourceHanSansCN-Regular.otf');
} */


.fontM {
	font-family: "fontM";
}


.fontR {
	font-family: "fontR";
}


.wrap {
	width: 100%;
	padding: 0 8%;
	max-width: 1600px;
	margin: 0 auto;
}

.wrap2 {
	width: 100%;
	padding: 0 5%;
	max-width: 1660px;
	margin: 0 auto;
}

.wrap3 {
	width: 1300px;
	margin: 0 auto;
}

.showDiv {
	display: none;
}

.clearfixed {
	clear: both;
}

a {
	color: #333;
	font-family: var(--thm-font);
}

ul {
	padding: 0;
	margin: 0;
}

ul li {
	list-style: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.arrow-bottom {
	font-size: 0;
	line-height: 0;
	border-width: 10px;
	border-color: red;
	border-bottom-width: 0;
	border-style: dashed;
	border-top-style: solid;
	border-left-color: transparent;
	border-right-color: transparent;
}

/* 向右的箭头 */

.arrow-right {
	font-size: 0;
	line-height: 0;
	border-width: 10px;
	border-color: #f7f7f7;
	border-right-width: 0;
	border-style: dashed;
	border-left-style: solid;
	border-top-color: transparent;
	border-bottom-color: transparent;
}

a,
a:hover,
a:active,
a:visited,
a:link,
a:focus {
	outline: none;
	text-decoration: none;
}

p {
	padding: 0;
	margin: 0;
}

a:hover {
	color: #01479d;
}

img {
	max-width: 100%;

}

.imgDiv {
	overflow: hidden;
}

.imgDiv img {
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	transition: all 0.5s;
	height: 100%;
}

.mask:hover .imgDiv img {
	transform: scale(1.1);
}


input:focus,
button:focus,
textarea:focus {
	outline: none;
}

.ovh {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.ovh2 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.ovh3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.ovh4 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

/**导航菜单**/
header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	height: 100px;
	/* box-shadow: 0 0 5px #ECEDEE; */
	/*overflow: hidden;*/
}



header .logo a {
	/* height: 54px; */
	position: relative;
	z-index: 999;
	display: flex;
	/* justify-content: center; */
	align-items: center;

}

header .logo img {
	max-height: 100%;
}

header.on-fixed {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .8);
}



header .rightDiv {
	//margin-left: 60px;
}

header .rightDiv .menu {
	position: relative;
	height: 100px;
}

header .rightDiv .menu>ul {
	display: inline-block !important;
	/*overflow: hidden;*/
}

header .rightDiv .menu>ul>li {
	float: left;
	position: relative;
	padding: 0 30px;
	/*width: 126px;*/
}

header .rightDiv .menu>ul>li:last-child {
	padding-right: 0;
}


header .rightDiv .menu>ul>li>a {
	height: 100px;
	display: block;
	/* justify-content: center; */
	/* align-items: center; */
	text-align: center;
	color: #fff;
	position: relative;
	font-size: 18px;
	line-height: 100px;
}

header.index .rightDiv .menu>ul>li>a {
	color: #fff;
}

header.index .rightDiv .menu>ul>li>a.now {
	/* color: #fff; */
}

header.index .rightDiv .menu>ul>li>a.now::after {
	background: #a01e27;
}


/* header .rightDiv .menu>ul>li:last-child img {
	margin-right: 10px;
}

header .rightDiv .menu>ul>li:last-child>a {
	color: #999;
}
 */

header .rightDiv .menu>ul>li>a::after {
	content: "";
	width: 0;
	height: 2px;
	background: #fff;
	position: absolute;
	left: 50%;
	bottom: 25px;
	transform: translateX(-50%);
	transition: .5s;
}

header .rightDiv .menu>ul>li>a img {
	display: block;
	position: absolute;
	bottom: 15px;
	transform: translate(-50%, 0);
	left: 50%;
	width: 0;
	transition: all 0.3s;
}

header .rightDiv .menu>ul>li>a.now img,
header .rightDiv .menu>ul>li:hover>a img {
	width: 100%;
}

header .rightDiv .menu>ul>li>a:hover,
header .rightDiv .menu>ul>li>a.now {
	color: #fff;
}

header .rightDiv .menu>ul>li:hover>a::after,
header .rightDiv .menu>ul>li>a.now::after {
	width: 100%;
}

/* 
header .rightDiv .menu>ul>li:hover a span,
header .rightDiv .menu>ul>li:focus a span,
header .rightDiv .menu>ul>li.on a span,
header .rightDiv .menu>ul>li.active a span {
	display: block;
	width: 20px;
	height: 2px;
	background: #009a44;
	margin: 0 auto;
	margin-top: 1rem;

	/* background: #3fba9e;
	border-bottom: 2px #3fba9e solid; */
/*}*/

header .rightDiv .menu>ul>li:hover>a,
header .rightDiv .menu>ul>li:focus>a,
header .rightDiv .menu>ul>li.on>a,
header .rightDiv .menu>ul>li.active>a {
	color: #fff;
}

header .rightDiv .menu ul li div.down_list {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 0.625rem;
	margin-top: -0.65rem;
	display: none;
}

header .rightDiv .menu ul li div.down_list ul li a {
	text-align: center;
	display: block;
}

header .mbtn {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: url(../img/menu1.svg) no-repeat center center;
	background-size: 70%;
	position: absolute;
	top: 0;
	right: 0;
	display: none;
	z-index: 9999;
}


header .mbtn:active {
	opacity: .8;
}

header.index .rightDiv .menu>ul>li>a {
	color: #FFFFFF;
	position: relative;
	text-transform: capitalize;
}


body.on-menu header .mbtn {
	background: url(../img/menu-hide1.svg) no-repeat center center;
	background-size: 40%;
	z-index: 9999;
}

.menu,
.menu ul li,
.menu ul li a,
.menu #menu-button {
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
	display: block;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}


.menu #menu-button {
	display: none
}

.menu {
	width: auto;
}

#menu-line {
	position: absolute;
	top: 0;
	left: 0;
	height: 3px;
	background: #b3c9e2;
	-webkit-transition: all .25s ease-out;
	-moz-transition: all .25s ease-out;
	-ms-transition: all .25s ease-out;
	-o-transition: all .25s ease-out;
	transition: all .25s ease-out
}

.menu>ul>li {
	float: left;
}


/*.menu.align-center>ul{font-size:0;text-align:center}
.menu.align-center>ul>li{display:inline-block;float:none}
.menu.align-center ul ul{text-align:left}
.menu.align-right>ul>li{float:right}
.menu.align-right ul ul{text-align:right}*/
.menu>ul>li>a {
	padding: 0;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
	color: #fff;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease
}

.menu>ul>li:hover>a,
.menu>ul>li.active>a {
	color: #fff;
}

/* .menu>ul>li.has-sub>a {
	padding-right: 20px;
} */

/*.menu>ul>li.has-sub>a::after{position:absolute;top:50%;margin-top:-6px;right:-15px;width:8px;height:8px;border-bottom:1px solid #000;border-right:1px solid #000;content:"";-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:border-color .2s ease;-moz-transition:border-color .2s ease;-ms-transition:border-color .2s ease;-o-transition:border-color .2s ease;transition:border-color .2s ease}*/
/* .menu>ul>li.has-sub>a::after {
	position: absolute;
	top: 50%;
	margin-top: -3px;
	right: 0;
	width: 10px;
	height: 6px;
	content: "";
	 background: url(../img/xia.png) no-repeat; */
/*} */
.menu ul li {
	/* overflow: hidden; */
}

.menu ul li:hover {
	/* overflow: visible; */
}

/*.menu>ul>li.has-sub:hover>a::after,.menu>ul>li.has-sub.on>a::after{border-color:#fff}*/
.menu ul ul {}

.menu ul li:hover>ul {
	display: block;
}

/*.menu.align-right li:hover>ul{right:0}*/
.menu ul ul ul {
	right: 100%;
	top: 0;
	width: 100%;
}

.menu ul ul li:hover>ul {
	margin-left: 0;
}


/*.menu.align-right ul ul ul{margin-left:0;margin-right:100%}*/
.menu ul ul {
	padding: 10px 0;
	width: 200px;
	/* margin-left: -8px; */
	text-align: center;
	top: 100px;
	position: absolute;
	z-index: 99;
	display: none;
	transition: all 0.5s;
	left: 50%;
	transform: translate(-50%, 0);
	background: rgba(0, 0, 0, .5);
	/* background: rgba(71, 151, 0, 0.7); */
}

.menu ul ul .ul {
	background: rgba(255, 255, 255, 1);
	/* border-radius: 6px; */
	box-shadow: 0px 5px 5px rgba(0, 0, 0, .1);
}

.menu ul ul li {
	-webkit-transition: height .2s ease;
	-moz-transition: height .2s ease;
	-ms-transition: height .2s ease;
	-o-transition: height .2s ease;
	transition: height .2s ease;
	/* text-align: center; */
}

.menu ul ul li>a {
	font-size: 16px;
	color: #fff;
	text-decoration: none;
	-webkit-transition: color .2s ease;
	-moz-transition: color .2s ease;
	-ms-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
	padding: 8px 0;
}

.menu ul ul li:hover a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.menu ul ul li:hover a span {
	display: inline-block;
	width: 10px;
	height: 2px;
	background: #fff;
	margin-right: 3px;
}

.menu ul ul li>a:hover,
.menu ul ul li a:hover {
	color: #fff;
	border: 0;
	background-color: rgba(0, 91, 172, .5);
	/* background: rgba(71, 151, 0, 0.7); */
}


.menu ul ul li:last-child>a {
	border: 0;
}


.bannerIndex,
.banner_nei {}

.bannerIndex .swiper-pagination {
	bottom: 30px;
}

.bannerIndex .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #fff;
	opacity: 0.6;
	border-radius: 0;
	border-radius: 50%;
	transition: all 0.5s;
}

.bannerIndex .swiper-button-white {
	opacity: 0.6;
	background-size: 70%;
	z-index: 99;
}


.bannerIndex .swiper-pagination-bullet-active {
	width: 40px;
	background: #fff;
	opacity: 1;
	border-radius: 10px;
}

.bannerIndex img {
	min-height: 600px;
	max-height: 900px;
	object-fit: cover;
}

.bannerIndex .wenzi {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	padding-left: 10%;
	z-index: 999;
}

footer {
	border-top: solid 1px #4e4d4d;
	padding-top: 50px;
	color: #aaa9a9;
}

.footDiv {
	display: flex;
	justify-content: space-between;
}

.navBott p {
	color: #fff;
}

.navBott ul li a {
	color: #aaa9a9;
	display: block;

}

.navBott ul li {
	padding: 3px 0;
}

.navBott ul li a:hover {
	color: #fff;
}

.lxBott {
	max-width: 360px;
}

.footFl {
	width: calc(100% - 240px);
	display: flex;
	justify-content: space-between;
}

.bq_p {
	padding: 10px 0;
	border-top: 1px #333 solid;
}

.youshiDiv1 {
	position: relative;
	/* margin-top: -100px; */
	/* z-index: 999; */
}

.youshiDiv1 .col-lg-4 {
	padding: 0 30px;
}

.youshiDiv1 .row {
	margin: 0 -30px;
}

.youshiDiv1 .textDiv {
	background: url(../img/index_k1.png) no-repeat center center;
	background-size: cover;
	min-height: 200px;
	padding: 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.youshiDiv1 .textDiv .imgDiv {
	width: 135px;
}

.youshiDiv1 .textDiv .wenzi {
	width: calc(100% - 150px);
}




.indexDiv1 {
	margin-top: -100px;
	padding-top: 220px;
	padding-bottom: 90px;
}

.indexDiv1 .wenzi {
	line-height: 80px;
}

.flexDiv {}

a.more {
	width: 200px;
	height: 55px;
	background-color: #01479d;
	border-radius: 29px;
	color: #fff;
}

.adDiv {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;

}

.indexDiv2 .adDiv {
	justify-content: flex-end;
}

.indexCon .wenzi {
	max-width: 50%;
}

.indexDiv2 .wenzi {
	text-align: right;
}

.indexDiv2 .content {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.title .line {
	width: 46px;
	height: 4px;
	background-color: #ffffff;
	margin: 15px auto;
	margin-top: 30px;
}

.indexDiv4 {
	background: url(../img/index_bg3.jpg) no-repeat center center;
	background-size: cover;
}

.indexDiv4 .wenzi {
	position: absolute;
	z-index: 9;
	bottom: 0;
	width: 100%;
	height: 60px;
	line-height: 60px;
	color: #fff;
	background: rgba(0, 0, 0, .8);
}

.indexDiv4 .textDiv {
	border-radius: 10px;
	overflow: hidden;
}

.youshiDiv1 {
	padding: 150px 0;
}

.indexDiv5 {
	padding: 240px 0;
}

.title_y span {
	display: block;
	margin: 0 20px;
	width: 41px;
	height: 8px;
	background-color: #ffffff;
}

.indexDiv6 .col-lg-4 {
	padding: 0 33px;
}

.indexDiv6 .row {
	margin: 0 -33px;
}

.indexDiv6 .textDiv {
	padding-bottom: 50px;
	border-bottom: 2px #333 solid;
	position: relative;
}

.indexDiv6 .textDiv::after {
	position: absolute;
	bottom: -1px;
	left: 0;
	width: 100%;
	height: 2px;
	background: #01479d;
	content: "";
	width: 0;
	transition: all 0.5s;
}

.indexDiv6 .textDiv:hover::after {
	width: 100%;
}

.footSlogin {
	padding: 180px 0;
	padding-bottom: 240px;
}

.bannerIndex .swiper-slide img {
	transform: scale(1.1);
	width: 100%;
	transition: all 3s;
	object-fit: cover;
}

.bannerIndex .swiper-slide.swiper-slide-active img {
	transform: scale(1);
}

.banner_nei .wenzi {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bigW {
	font-size: 100px;
	opacity: 0.3;
	font-weight: bold;
}
.banner_nei .font48{
	/* text-shadow: 0 0 5px #999; */
}

.banner_nei .wenzi .cn {
	position: relative;
	margin-top: -70px;
}

.aboutDiv1 {
	padding-bottom: 200px;
}

.title_n .line {
	width: 60px;
	height: 5px;
	margin: 0 auto;
	margin-top: 15px;
	background: #01479d;
}

.wenhuaDiv1 .content {
	display: flex;
	justify-content: space-between;
}

.wenhuaDiv1 .content .imgDiv {
	width: 48%;
}

.wenhuaDiv1 .content .textDiv {
	width: 45%;
}

.wenhuaDiv1 .content .textDiv ul li {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 40px;
}

.wenhuaDiv1 .content .textDiv ul li .wenzi {
	width: calc(100% - 30px);
}

.wenhuaDiv1 .content .textDiv ul li>img {
	margin-top: 10px;
}

.ewmDiv{
     max-width: 120px;
     margin-left: 20px;
}
.ewmDiv img{
 max-width: 100%;
}

.sectionY {
	padding-top: 100px;
	margin-top: -10px;
}

.lyCon .imgDiv,
.lyCon .wenzi {
	width: 48%;
}

.lyCon .imgDiv img {
	width: 100%;
	height: 100%;
}

.lyCon {
	display: flex;
	/* align-items: center; */
	justify-content: space-between;
}

.ly_title {
	display: flex;
	align-items: center;
}

.ly_title .line {
	width: 40px;
	height: 5px;
	background-color: #01479d;
	margin-left: 35px;
}

.lyCon.flexB {
	flex-direction: row-reverse;
}

.jianju {
	height: 150px;
}

.erji ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.erji ul li {
	margin: 0 40px;
}

.erji ul li a {
	font-size: 18px;
	color: #fff;
	position: relative;
	display: flex;
	padding-bottom: 15px;
}

.erji ul li a::after {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 0;
	height: 3px;
	background-color: #01479d;
	bottom: 0;
	transition: all 0.5s;
}

.erji ul li a.now::after,
.erji ul li a:hover::after {
	width: 100%;
}

.proDiv .col-lg-4 {
	padding: 0 25px;
	margin-bottom: 50px;
}

.proDiv .row {
	margin: 0 -25px;
}

.fenye {
	margin-bottom: 100px;
}

.fenye ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 10px;
	min-width: 16px;
	height: 30px;
	background: rgba(255, 255, 255, .2);
	border-radius: 3px;
	margin: 0 10px;
	color: #fff;
}

.fenye ul li a.now,
.fenye ul li a:hover {
	color: #fff;
	background-color: #004098;
}


.list_ul li a .textDiv {
	display: flex;
}

.list_ul li a .textDiv .imgDiv {
	width: 510px;
	height: 320px;
}

.list_ul li a .textDiv .wenzi {
	width: calc(100% - 510px);
	padding: 40px;
	background-color: #f7f7f7;
}

.moreN {
	width: 140px;
	height: 40px;
	background-color: #01479d;
	box-shadow: 0px 6px 15px 0px rgba(1, 71, 157, 0.25);
	border-radius: 20px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 4px;
	padding-left: 28px;
	line-height: 40px;
	align-items: center;
	transition: all 0.5s;
}

.moreN img {
	width: 32px;
	height: 32px;
}

.w_top {
	padding-bottom: 50px;
	border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
	margin-bottom: 30px;
}

.w_bott p {
	display: flex;
	align-items: center;
}

.w_bott p img {
	margin-right: 10px;
}

.list_ul li {
	margin-bottom: 24px;
}

/* .list_ul li a .textDiv:hover .more {
	margin-right: -10px;
} */

.newsDiv .imgDiv {
	border: solid 1px #eeeeee;
}


.xiangqingDiv .content {
	width: 80;
	margin: 0 auto;
}

.xiangqingDiv .content p.xq_title {
	padding-bottom: 10px;
}

.xiangqingDiv .content p.xq_time {
	color: #666;
	margin-top: 10px;
	margin-bottom: 60px;
	/* border-bottom: 1px #333 solid; */
	padding-bottom: 30px;
}

.xiangqingDiv .content p.xq_time span.fl {
	margin-right: 30px;
}

.xiangqingDiv .content p.xq_time span img {
	margin-right: 8px;
	float: left;
	margin-top: 4px;
}



.xiangqingDiv .content .textDiv .imgDiv {
	width: 100%;
	text-align: center;
	margin: 20px 0;
}

.xiangqingDiv .content .textDiv .imgDiv img {
	width: auto;
}

.xiangqingDiv .content .link_p {
	color: #999;
	font-size: 16px;
	padding-top: 24px;
	margin-top: 50px;
	border-top: 1px #333 solid;
	margin-bottom: 80px;
}

.xiangqingDiv .content .link_p p {
	margin: 10px 0;
}
.xiangqingDiv .content .link_p a{
	color: rgba(255, 255, 255, 0.6);
}
.xiangqingDiv .content .link_p a:hover{
	color: #fff;
}

.xiangqingDiv .content .textDiv img {
	max-width: 600px;
	display: block;
	margin: 0 auto;
}

.zp_title .fl_tit {
	display: flex;
	align-items: center;
}

.zp_title .line {
	width: 4px;
	height: 21px;
	background-color: #01479d;
	margin-right: 15px;
}

.zpList li {
	cursor: pointer;
	margin-bottom: 20px;
	padding: 15px 25px;
	border-radius: 5px;
	background: rgba(255, 255, 255, .1);
}

.hide_wenzi {
	padding: 30px;
	display: none;
}

.zpList li.open .down {
	transform: rotate(-180deg);
	transition: all 0.5s;
}

.tishi span {
	text-decoration: underline;
}

.lianxiDiv .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.lianxiDiv .content .wenzi,
.lianxiDiv .content .mapDiv {
	width: 48%;
}

.mapDiv {
	height: 400px;
}

.lx_tit {
	padding-bottom: 30px;
	border-bottom: 1px #333 solid;
	margin-bottom: 30px;
}

.lx_tit::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 4px;
	background-color: #01479d;
	width: 120px;
}



.formCon {
	font-size: 14px;
}

.formCon label {
	margin-bottom: 10px;
	font-weight: normal;
	font-size: 16px;
	display: block;

}

.formCon label span {
	color: #c00;
}

.formCon button {
	width: 160px;
	height: 40px;
	background-color: #01479d;
	border-radius: 5px;
	display: block;
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 100px;
}

.formCon ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.formCon ul li .flDiv {
	width: 48%;
}

.formCon ul li .flDiv input {
	width: 100%;
	height: 45px;
	padding: 0 10px;
	font-size: 16px;
	border-radius: 5px;
	background: rgba(255, 255, 255, .1);
	border: 0;
	outline: none;
	color: #fff;
}

.formCon ul li textarea {
	width: 100%;
	height: 200px;
	resize: none;
	background: rgba(255, 255, 255, .1);
	border: 0;
	outline: none;
	width: 100%;
	padding: 10px;
	font-size: 16px;
}

.detailDiv {
	margin-top: 100px;
	border-top: 1px #333 solid;
}

.proSw {
	background: #000;
	width: 55%;
	height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.proSw #gallery .swiper-slide{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 400px;
}

.proXqDiv .wenzi {
	width: 38%;
}

.proSw .swiper-button-white{
	width: 30px;
	height: 60px;
	background-size: 30%;
	outline: none;
	background-color: rgba(255, 255, 255, .1);
}

.proSw #thumbs{
	position: absolute;
	width: 100%;
	bottom: 10px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.proSw #thumbs .swiper-slide{
	opacity: 0.3;
}
.proSw #thumbs .swiper-wrapper{
	display: flex;
	align-items: center;
	justify-content: center;
}
.proSw #thumbs .swiper-slide-thumb-active{
	opacity: 1;
}

.proGuiCon ul li{
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
}
.proGuiCon ul li p{
	width: 33.33%;
	padding: 0 20px;
}
.proGuiCon ul li:nth-child(odd){
	background: rgba(255, 255, 255, .1);
}
.proGui{
	margin-bottom: 100px;
}

.jsCon .wenzi{
	position: absolute;
	top: 80px;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
}

.noticeDiv{
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 170px;
	background: rgba(255, 255, 255, 0.1);
	border-radius:0 10px 10px 0;
	z-index: 9991;
}
.xiangqingDiv{
	margin-top: 100px;
	border-top: 1px #333 solid;
	padding-top: 80px;
}

.noticeDiv {
	padding: 20px 20px;
}
.notBt{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	margin-left: -15px;
	
}
.notBt img{
	margin-right: 10px;
}
.noticeDiv ul li a{
	display: block;
	padding: 5px 0;
	color: #fff;
}
.closebtn{
	position: absolute;
	right: 10px;
	top: 10px;
}



/*PHONE屏幕下的专用样式*/
@media screen and (max-width:992px) {


	.wrap,
	.wrap2,
	.wrap3 {
		width: 92%;
		margin: 0 auto;
		font-size: 14px;
		padding: 0;
	}

	.showDiv {
		display: block;
	}

	.menu {
		width: 100%
	}

	.menu ul {
		width: 100%;
		display: block;
	}

	.menu ul ul {
		top: 0;
		border: 0;
		box-shadow: none;
		border-top: 1px #eee solid;
	}

	.menu ul ul .ul {
		background: #fff;
		box-shadow: none !important;
		border-radius: 0;
	}

	.menu>ul>li>a {
		padding: 0 20px;
	}

	.menu.align-center>ul,
	.menu.align-right ul ul {
		text-align: left
	}

	.menu ul li,
	.menu ul ul li,
	.menu ul li:hover>ul>li {
		width: 100%;
		height: auto;
		border-top: 1px solid rgba(255, 255, 255, .1)
	}

	.menu ul li:hover>ul {
		top: 0;
	}

	.menu ul li a,
	.menu ul ul li a {
		width: 100%
	}

	.menu>ul>li,
	.menu.align-center>ul>li,
	.menu.align-right>ul>li {
		float: none;
		display: block
	}

	.menu ul ul li a {
		padding: 0 20px 0 30px;
		font-size: 12px;
		background: 0 0
	}

	/*.menu ul ul li:hover>a,.menu ul ul li a:hover{color:#fff}*/
	.menu ul ul ul li a {
		padding-left: 40px
	}

	.menu ul ul,
	.menu ul ul ul {
		position: relative;
		left: 0;
		right: auto;
		width: 100%;
		margin: 0
	}

	.menu>ul>li.has-sub>a::after,
	.menu ul ul li.has-sub>a::after {
		display: none
	}

	#menu-line {
		display: none
	}

	.menu #menu-button {
		display: block;
		padding: 20px;
		color: #000;
		cursor: pointer;
		font-size: 12px;
		text-transform: uppercase
	}

	.menu #menu-button::after {
		content: '';
		position: absolute;
		top: 20px;
		right: 20px;
		display: block;
		width: 15px;
		height: 2px;
		background: #fff
	}

	.menu #menu-button::before {
		content: '';
		position: absolute;
		top: 25px;
		right: 20px;
		display: block;
		width: 15px;
		height: 3px;
		border-top: 2px solid #fff;
		border-bottom: 2px solid #fff
	}

	.menu .submenu-button {
		position: absolute;
		z-index: 10;
		right: 0;
		top: 0;
		display: block;
		border-left: 1px solid rgba(255, 255, 255, .1);
		height: 52px;
		width: 52px;
		cursor: pointer
	}

	.menu .submenu-button::after {
		content: '';
		position: absolute;
		top: 21px;
		left: 26px;
		display: block;
		width: 1px;
		height: 11px;
		background: #999;
		z-index: 99
	}

	.menu .submenu-button::before {
		content: '';
		position: absolute;
		left: 21px;
		top: 26px;
		display: block;
		width: 11px;
		height: 1px;
		background: #999;
		z-index: 99
	}

	.menu .submenu-button.submenu-opened:after {
		display: none
	}

	.menu ul ul {
		background: transparent;
		border-bottom: none;
		padding: 0;
	}

	.menu ul ul ul {
		top: 0;
	}

	.menu li:hover>ul {
		left: auto;
		margin-left: auto;
	}

	.menu ul ul li>a:last-child {
		border-bottom: 0;
	}

	header .rightDiv .menu ul li ul li {
		border-bottom: 1px rgba(255, 255, 255, .1) dashed;
		border-top: 0;
	}

	header .rightDiv .menu ul li ul li:last-child {
		border: 0;
	}

	header .logo {
		width: 70%;
		margin-left: 0;
	}

	header .logo a {
		/* height: 35px; */
		margin-top: 10px;

	}

	header .logo img {
		max-height: 28px;
	}

	.menu ul ul {
		visibility: visible;
		opacity: 1;
	}

	.menu ul ul.open {
		display: block !important;
	}

	header .wrap {
		display: block;
	}


	header.index .rightDiv .menu>ul>li>a {
		color: #333;
	}

	header {
		position: fixed !important;
		z-index: 999;
		top: 0;
		left: auto;
		right: 0;
		width: 100%;
		height: 50px;
		padding-top: 0;
		/* box-shadow: 0 0 5px #EEEEEE; */
		background: #000;
		/*background-color: transparent;*/
		transition: right 300ms !important;
	}

	header.index {
		background: #FFFFFF;
		border: 0;
		box-shadow: 0 0 5px #EEEEEE;
	}


	header .rightDiv .menu>ul>li>a:hover {
		color: #009A44;
	}

	.on-fixed header {
		box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
	}



	/*body.on-menu header {right: 45%;}*/
	header .mbtn {
		display: block;
	}

	body.on-menu header .mbtn {
		z-index: 9999;
	}

	header .rightDiv .menu {
		float: right;
		position: fixed;
		top: 50px;
		right: 0;
		width: 100%;
		height: 100%;
		padding-top: 0;
		background-color: rgba(0, 0, 0, 1);
		border-bottom: 1px solid #f8f8f847;
		transition: right 300ms;
		right: -100%;
		padding: 0;
		z-index: 9999;
		overflow-y: auto;
		text-align: center;
		margin-top: 0;
		padding-bottom: 50px;
	}

	header .rightDiv .menu ul>li {
		padding: 0;
		margin: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .1);
		float: none;
		width: 100%;
	}

	header .rightDiv .menu ul>li:first-child {
		/* border-top: 1px #eee solid; */
	}

	.menu ul ul {
		transform: translate(0, 0);
		border-top: 1px solid rgba(255, 255, 255, .1);
	}

	header .rightDiv .menu ul li a {
		display: block;
		line-height: 50px;
		height: 50px;
		color: #fff;
		/*padding: 0 15px;*/
		text-align: left;
		font-size: 16px;
		font-weight: normal;
	}

	header .rightDiv .menu>ul>li>a.now::after,
	header .rightDiv .menu>ul>li:hover>a::after {
		display: none;
	}

	header .rightDiv .menu>ul>li>a.login {
		width: 100px;
		margin: 10px 0;
		margin-left: 20px;
		text-align: center;
	}

	header .rightDiv .menu>ul>li>a small {
		display: none;
	}

	header .rightDiv .menu>ul {
		display: block;
		/* padding-top: 60px; */
		width: 100%;
	}

	body.on-menu header .rightDiv .menu {
		right: 0;
	}

	body.on-menu .main {
		right: 0;
	}

	header .rightDiv .menu>ul>li>a {
		padding: 0 20px;
		background: none;
		margin: 0;
		width: 100%;
		color: #fff;
	}

	header .rightDiv .menu ul li i {
		display: block;
	}

	header .twoMenu {
		position: relative;
		top: 0px;
		background: none;
		padding: 0;
		width: initial;
	}

	header .twoMenu dl {
		margin-bottom: 10px;
	}

	header .twoMenu dl dd {
		margin-top: 0;
	}

	header .rightDiv .menu ul li .twoMenu dl dt>a {
		color: #fff;
	}

	.on-fixed header .rightDiv .menu ul li .twoMenu dl dt>a {
		color: #000;
	}

	header .rightDiv .menu ul li .twoMenu {
		top: 10px;
		box-shadow: none;
	}

	header .rightDiv .menu ul li .twoMenu .liDiv>a {
		line-height: 32px;
		height: 32px;
		font-weight: normal;
	}

	header .twoMenu .liDiv>a:after {
		top: 0;
	}

	header .rightDiv .menu ul li.relativeLi .twoMenu .ulDiv {
		margin: 0 15px;
	}

	header .rightDiv .menu ul li>a:hover,
	header .rightDiv .menu ul li>a:focus,
	header .rightDiv .menu ul li>a.on {
		/* color: #a13e91; */
	}

	header .rightDiv .menu ul li .twoMenu dl dt>a {
		line-height: 50px;
		height: initial;
	}

	header .rightDiv .menu>ul>li>a::before {
		display: none;
	}

	header .rightDiv .menu>ul>li:hover,
	header .rightDiv .menu>ul>li:focus,
	header .rightDiv .menu>ul>li.on {
		background: none;
	}

	header .rightDiv .menu>ul>li.on>a {
		color: #204e9e;
	}

	header .rightDiv .menu>ul>li>a:hover span,
	header .rightDiv .menu>ul>li>a.now span {
		display: none;


		/* background: #3fba9e;
		border-bottom: 2px #3fba9e solid; */
	}



	.hideDiv {
		display: none;
	}

	.bannerIndex,
	.banner_nei {
		margin-top: 50px;
	}

	.banner_nei>img {
		min-height: 200px;
		object-fit: cover;
	}

	.bannerIndex img {
		min-height: 260px;
	}

	.bannerIndex .wrap {
		line-height: 22px;
		top: 30px;
		width: 95%;
	}

	.bannerIndex .wrap .font18 {
		font-size: 14px;
	}

	.bannerIndex .swiper-pagination-bullet {
		width: 10px;
		height: 10px;
	}

	.font56 {
		font-size: 24px;
	}

	.bannerIndex .wenzi .wrap {
		margin-bottom: 50px;
	}

	.bannerIndex .swiper-pagination {
		bottom: 15px;
	}

	.youshiDiv1 {
		padding: 50px 0;
	}

	.youshiDiv1 .textDiv .imgDiv {
		width: 80px;
	}

	.youshiDiv1 .textDiv .imgDiv img {
		width: 50px;
	}

	.youshiDiv1 .textDiv {
		min-height: auto;
		margin-bottom: 20px;
	}

	.youshiDiv1 .textDiv .wenzi {
		width: calc(100% - 100px);
	}

	.indexDiv1 .content {
		display: block;
	}

	.indexDiv1 .content .wenzi {
		max-width: 100%;
		line-height: 40px;
		margin-bottom: 40px;
	}

	.indexDiv1 {
		margin: 0;
		padding: 40px 0;
	}

	a.more {
		width: 120px;
		height: 36px;
		background-color: #01479d;
		border-radius: 29px;
		color: #fff;
		font-size: 14px;
	}

	.indexDiv1 .content>img {
		width: 300px;
		display: block;
		margin-top: 50px;
	}

	.indexDiv3>img,
	.indexDiv2>img {
		height: 280px;
		object-fit: cover;
	}

	.font48 {
		font-size: 18px;
	}

	.font30 {
		font-size: 16px;
	}

	.adDiv {
		left: 0;
		right: 0;
		margin: 0 auto;
	}

	.title .line {
		width: 30px;
		height: 2px;
		background-color: #ffffff;
		margin: 10px auto;
		margin-top: 10px;
	}

	.indexDiv4 {
		padding-left: 20px;
		padding-right: 20px;
	}

	.indexDiv5 {
		padding: 80px 0;
	}

	.font16 {
		font-size: 14px;
	}

	.title_y span {
		display: block;
		margin: 0 20px;
		width: 20px;
		height: 3px;
		background-color: #ffffff;
	}

	.indexDiv5 {
		line-height: 30px;
	}

	.indexDiv6 .row {
		margin-top: 50px;
	}

	.footSlogin {
		padding: 80px 0;
	}

	.footDiv {
		display: block;
	}

	.footFl {
		width: 100%;
		display: block;
	}

	.navBott {
		margin-bottom: 20px;
	}

	.navBott ul {
		display: flex;
		flex-wrap: wrap;
	}

	.navBott ul li {
		margin-right: 20px;
	}

	.indexDiv6 .col-lg-4,
	.youshiDiv1 .col-lg-4 {
		padding: 0 10px;
	}

	.youshiDiv1 .row,
	.indexDiv6 .row {
		margin: 0 -10px;
	}

	.indexDiv4 .wenzi {
		height: 40px;
		line-height: 40px;
	}

	.font80 {
		font-size: 24px;
		line-height: 30px;
	}

	.bigW {
		font-size: 30px;
	}

	.banner_nei .wenzi .cn {
		margin-top: -25px;
	}

	.par100 {
		padding: 40px 0;
	}

	.font18 {
		font-size: 16px;
	}

	.aboutDiv1 .wenzi {
		font-size: 14px;
	}

	.font40 {
		font-size: 18px;
	}

	.wenhuaDiv1 .content {
		display: block;
	}

	.wenhuaDiv1 .content .imgDiv,
	.wenhuaDiv1 .content .textDiv {
		width: 100%;
	}

	.wenhuaDiv1 .content .textDiv {
		margin-top: 30px;
		width: calc(100% - 20px);
	}

	.wenhuaDiv1 .content .textDiv ul li>img {
		margin-top: 5px;
	}

	.wenhuaDiv1 .content {
		padding: 30px 0;
		padding-bottom: 50px;
	}

	.title_n .line {
		width: 40px;
		height: 3px;
		margin: 0 auto;
		margin-top: 10px;
		background: #01479d;
	}

	.banner_nei .wenzi .cn {
		font-size: 22px;
	}

	.lyCon {
		display: block;
	}

	.lyCon .imgDiv,
	.lyCon .wenzi {
		width: 100%;
	}

	.sectionY {
		padding-top: 50px;
		margin-top: -50px;
	}

	.par80 {
		padding: 40px 0;
	}

	.lyCon .wenzi {
		margin-top: 30px;
	}

	.ly_title .line {
		width: 28px;
		height: 3px;
		background-color: #01479d;
		margin-left: 14px;
	}

	.jianju {
		height: 50px;
	}

	.erji ul li a {
		font-size: 14px;
		padding-bottom: 10px;
	}

	.erji ul li {
		margin: 0px 25px;
		margin-bottom: 20px;
	}

	.fenye ul li a {
		margin: 0 5px;
	}

	.list_ul li a .textDiv {
		display: block;
	}

	.list_ul li a .textDiv .imgDiv {
		width: 100%;
		height: auto;
	}

	.list_ul li a .textDiv .wenzi {
		width: 100%;
		padding: 20px;
	}

	.w_top {
		padding-bottom: 15px;
		border-bottom: 1px rgba(0, 0, 0, 0.1) solid;
		margin-bottom: 15px;
	}

	.list_ul li a .textDiv .wenzi .mt20 {
		margin-top: 10px;
	}

	.w_bott p {
		font-size: 12px;
	}

	.moreN img {
		width: 26px;
		height: 26px;
	}

	.moreN {
		width: 110px;
		height: 34px;
		padding-left: 18px;
	}

	.fenye {
		margin-bottom: 50px;
	}

	.list_ul {
		margin-bottom: 50px;
	}

	.zpList li {
		cursor: pointer;
		margin-bottom: 20px;
		padding: 10px 15px;
		border-radius: 5px;
		background: rgba(255, 255, 255, .1);
	}

	.fl_tit .font18 {
		font-size: 14px;
	}

	.zp_title .line {
		height: 15px;
		margin-right: 8px;
	}

	.hide_wenzi {
		padding: 15px;
	}

	.hide_wenzi .font18 {
		font-size: 14px;
	}

	.lianxiDiv .content {
		display: block;
	}

	.lianxiDiv .content .wenzi,
	.lianxiDiv .content .mapDiv {
		width: 100%;
	}

	.lx_tit {
		padding-bottom: 15px;
	}

	.lx_tit::before {
		width: 62px;
	}

	.lianxiDiv .content .txt {
		font-size: 14px;
	}

	.mapDiv {
		height: 225px;
	}

	.formCon ul li .flDiv {
		width: 100%;
		margin-bottom: 20px;
	}

	.formCon ul li .flDiv:last-child {
		margin-bottom: 0;
	}

	.formCon ul li .flDiv input,
	.formCon ul li .flDiv textarea {
		font-size: 14px;
	}

	.formCon label {
		font-size: 14px;
	}

	.detailDiv .content .flex2 {
		display: block;
	}

	.indexCon .wenzi {
		max-width: 55%;
	}

	.detailDiv {
		margin-top: 50px;
	}
	.proSw,
	.proXqDiv .wenzi{
		width: 100%;
	}
	.proSw{
		height: 300px;
	}
	.proSw #gallery .swiper-slide{
		height: 200px;
	}
	.proXqDiv .wenzi{
		margin: 30px 0;
	}
	.proXqDiv .wenzi .font46{
		font-size: 24px;
	}
	.proGuiCon ul li{
		display: block;
		padding: 0;
		background: none!important;
	}
	.proGuiCon ul li p{
		width: 100%;
		padding: 0;
		margin-bottom: 10px;
	}
	.jsCon .wenzi{
		position: relative;
		margin: 30px 0;
		top: 0;
	}
	.jsCon .wenzi .font18{
		font-size: 14px;
	}
	.xiangqingDiv{
		margin-top: 60px;
		padding-top: 30px;
	}

}


/*PAD屏幕下的专用样式*/
@media screen and (min-width: 768px) and (max-width:992px) {
	.youshiDiv1 .textDiv {
		padding: 10px;
	}

	.youshiDiv1 .textDiv .imgDiv img {
		width: 30px;
	}

	.youshiDiv1 .textDiv .imgDiv {
		width: 50px;
	}

	.youshiDiv1 .textDiv .wenzi {
		width: calc(100% - 60px);
	}

	.youshiDiv1 .textDiv .wenzi p.mt15 {
		margin-top: 10px;
		font-size: 12px;
	}

	.indexDiv1 .content {
		display: flex;
	}
	
}

/*中等PC屏幕下的专用样式*/
@media screen and (min-width:993px) and (max-width:1024px) {

	.wrap,
	.wrap2,
	.wrap3 {
		width: 94%;
		padding: 0 3%;
	}

	header .rightDiv .menu>ul>li {
		padding: 0 10px;
	}

	header .logo img {
		max-height: 40px;
	}

	header {
		height: 80px;
	}

	header .rightDiv .menu>ul>li>a {
		height: 80px;
		line-height: 80px;
	}

	header .rightDiv .menu>ul>li>a::after {
		bottom: 15px;
	}

	header .rightDiv .menu {
		height: 80px;
	}

	.font48 {
		font-size: 30px;
	}

	.indexDiv1 .content>img {
		width: 400px;
	}

	.font56 {
		font-size: 42px;
	}

	.font40 {
		font-size: 36px;
	}

	header .rightDiv .menu>ul>li>a {
		font-size: 14px;
	}

	.font24 {
		font-size: 16px;
	}

	.footFl {
		width: calc(100% - 100px);
	}

	.ewmDiv {
		width: 80px;
	}

	.youshiDiv1 .textDiv {
		display: block;
		text-align: center;
	}

	.youshiDiv1 .textDiv .wenzi {
		width: 100%;
		margin-top: 15px;
	}

	.youshiDiv1 .textDiv .imgDiv {
		width: 100%;
	}

	.youshiDiv1 .textDiv .imgDiv img {
		width: 50px;
	}

	.indexDiv5 {
		padding: 150px 0;
	}

	.footSlogin {
		padding: 100px 0;
	}

	.bigW {
		font-size: 50px;
	}

	.banner_nei .wenzi .cn {
		margin-top: -40px;
	}
	
	.jsCon .wenzi{
		top: 20px;
	}
	.jsCon .wenzi .mt30{
		margin-top: 10px;
	}
	.font36{
		font-size: 30px;
	}
	.font80{
		font-size: 50px;
	}


}

@media screen and (min-width:1401px)and (max-width:1600px) {
	header .rightDiv .menu>ul>li {
		padding: 0 20px;
	}

	.font48 {
		font-size: 36px;
	}

	.indexDiv1 .content>img {
		width: 500px;
	}

	.font56 {
		font-size: 42px;
	}

	.font40 {
		font-size: 36px;
	}
}

@media screen and (min-width:1205px)and (max-width:1400px) {
	.wrap3 {
		width: 1100px;
	}

	header .rightDiv .menu>ul>li {
		padding: 0 18px;
	}

	header .logo img {
		max-height: 40px;
	}

	header {
		height: 80px;
	}

	header .rightDiv .menu>ul>li>a {
		height: 80px;
		line-height: 80px;
	}

	header .rightDiv .menu>ul>li>a::after {
		bottom: 15px;
	}

	header .rightDiv .menu {
		height: 80px;
	}

	.menu ul ul {
		top: 80px;
	}

	.font48 {
		font-size: 36px;
	}

	.indexDiv1 .content>img {
		width: 500px;
	}

	.font56 {
		font-size: 42px;
	}

	.font40 {
		font-size: 36px;
	}
	.youshiDiv1 .textDiv .imgDiv{
		width: 65px;
	}
	.youshiDiv1 .textDiv .wenzi {
	    width: calc(100% - 110px);
	}
}
@media screen and (max-width:992px) {
 .ewmDiv{
  display: inline-block;
  margin-left: 0;
  margin-right: 20px;
 }
}