@charset "utf-8";

/* CSS Document */
/*公用代码*/
body,
html {
	background: none repeat scroll 0 0;
	font: calc(100vw / 120) arial, verdana;
	color: #333;
}

::-webkit-scrollbar {
	/* 1 */
	width: 6px;
	background-color: none;
}

::-webkit-scrollbar-button {
	/* 2 */
	display: none;
}

::-webkit-scrollbar-track {
	/* 3 */
}

::-webkit-scrollbar-track-piece {
	/* 4 */
}

::-webkit-scrollbar-thumb {
	/* 5 */
	width: 5px;
	border-radius: 4px;
	background-color: #013589;
}

::-webkit-scrollbar-corner {
	/* 6 */
	background-color: #333;
}

::-webkit-resizer {
	/* 7 */
}

::-webkit-scrollbar:horizontal {
	height: 6px;
}

blockquote,
body,
button,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
	margin: 0;
	padding: 0;
	text-shadow: none;
}

label input {
	vertical-align: middle;
	text-shadow: none;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	transition: all .5s;
	color: #333;
	cursor: pointer;
}

a:hover {
	color: #013589;
}

a:hover,
a:active,
a:focus,
a:hover,
a:link,
a:visited {
	text-decoration: none;
	text-shadow: none;
	color: #333;
}

img {
	max-width: 100%;
	border: 0;
}

i {
	font-style: initial;
}

table {
	border-collapse: collapse;
}

ul li {
	list-style: none;
}

input,
select,
textarea {
	outline: none;
	resize: none !important;
	font-size: 0.875rem;
}

.f-l,
.pull-left {
	float: left;
}

.f-r,
.pull-right {
	float: right;
}

.f-l,
.f-r {
	display: inline-block;
}

.t-l {
	text-align: left;
}

.t-c {
	text-align: center;
}

.t-r {
	text-align: right;
}

.top10 {
	margin-top: 10px;
}

.top20 {
	margin-top: 20px;
}

.top30,
.top40 {
	margin-top: 30px;
}

.top50 {
	margin-top: 50px;
}

.top60 {
	margin-top: 60px;
}

.top70 {
	margin-top: 70px;
}

.top80 {
	margin-top: 80px;
}

.bg-white {
	background: #fff;
}

.bg-gray {
	background: #f7f7f7;
}

.w-90 {
	width: 90%;
	margin: auto;
}
.w-50 {
	width: 50%;
	margin: auto;
}
.w-55 {
	width: 55%;
	margin: auto;
}

.w-100 {
	width: 100%;
	float: left;
}

.w-1200 {
	margin: auto;
	width: 79.2rem;
}

.w-1300 {
	margin: auto;
	width: 83.125rem;
}

.w-1500 {
	margin: auto;
	width: 95rem;
}

.w-1600 {
	margin: auto;
	width: 100rem;
}

.w-1700 {
	margin: auto;
	width: 107.5rem;
}

.div-pc {
	display: block;
}

.div-phone {
	display: none;
}

/* 布局样式 */
.between-top {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}

.between-center {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: center;
	-webkit-justify-content: space-between;
	-webkit-align-items: center;
}

.between-bottom {
	display: flex;
	display: -webkit-flex;
	justify-content: space-between;
	align-items: flex-end;
	-webkit-justify-content: space-between;
	-webkit-align-items: flex-end;
}

.center-center {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.around-center {
	display: flex;
	display: -webkit-flex;
	justify-content: space-around;
	align-items: center;
	-webkit-justify-content: space-around;
	-webkit-align-items: center;
}

.column-between {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	justify-content: space-between;
	-webkit-justify-content: space-between;
}

.column-around {
	display: flex;
	display: -webkit-flex;
	flex-direction: column;
	-webkit-flex-direction: column;
	justify-content: space-around;
	-webkit-justify-content: space-around;
}

/* 文字超出隐藏省略号 */
.text-one-hide {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.text-two-hide {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.text-three-hide {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

/* 手机版按钮 */
.head-btn {
	width: 25px;
	float: right;
	position: relative;
	cursor: pointer;
}

.head-btn i {
	display: block;
	width: 100%;
	height: 2px;
	float: left;
	background-color: #fff;
	border-radius: 50px;
	transition: all .5s ease 0s;
	-webkit-transition: all .5s ease 0s;
	-moz-transition: all .5s ease 0s;
}

.head-btn i.bar-top {
	margin-top: 0;
}

.head-btn i.bar-cen {
	margin-top: 6px;
	width: 15px;
}

.head-btn i.bar-bom {
	margin-top: 6px;
	width: 21px;
}

.head-btn.cur i.bar-cen {
	opacity: 0;
}

.head-btn.cur i.bar-top {
	-webkit-transform: rotate(45deg) translate(6px, 6px);
	transform: rotate(45deg) translate(6px, 6px);
}

.head-btn.cur i.bar-bom {
	-webkit-transform: rotate(-45deg) translate(5.5px, -5px);
	transform: rotate(-45deg) translate(5.5px, -5px);
	width: 100%;
}

/*隐藏*/
.overHide {
	overflow: hidden;
}

.swiper-pagination-bullet,
.swiper-button-next,
.swiper-button-prev {
	outline: none;
}

.fanye-box {
	padding: 2rem 0 0;
	text-align: center;
	margin: auto;
}

.fanye-box a {
	border-radius: 50px;
	border-color: #fff;
	min-width: 1.875rem;
	height: 1.875rem;
	line-height: 1.875rem;
	padding: 0 0.5rem;
	font-size: 0.875rem;
	margin: 0 0.2rem;
}

.fanye-box a:hover,
.fanye-box a.curr {
	background: #013589;
	color: #fff;
}

.all-center-box {
	width: 100%;
	float: left;
	position: relative;
	min-height: 100vh;
}

.head-box {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 110;
	transition: all .6s ease;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
	background: rgba(32, 64, 121, 0.8) !important;
}

.head-box .w-90 {
	position: relative;
	z-index: 2;
}

.head-box::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	opacity: 0;
	transition: all .6s;
}

.head-box .logo {
	height: 4rem;
	position: relative;
	display: flex;
	align-items: center;
}

.head-box .logo img {
	/*width: 204px;*/
	/*height: 40px;*/
	width: 18rem;
	height: 3.2rem;
	float: left;
	transition: all .6s;
}

.head-box .logo::after {
	content: '';
	/*width: 204px;*/
	/*height: 40px;*/
	width: 18rem;
	height: 3.2rem;
	background: url(../images/logo-top.svg) no-repeat center;
	background-size: auto 100%;
	transition: all .6s;
	position: absolute;
	left: 0;
	/*top: 0;*/
	z-index: 2;
	opacity: 0;
}

.head-box.active {
	z-index: 9999;
}

.head-box.active::after {
	opacity: 1;
}

.head-box.active .logo img {
	opacity: 0;
}

.head-box.active .logo::after {
	opacity: 1;
}

.sidebar-right {
	width: 70px;
	position: fixed;
	right: 10px;
	top: 12.5rem;
	z-index: 130;
}

.sidebar-right a {
	width: 100%;
	height: 70px;
	background: rgba(0, 0, 0, 0.55);
	border-radius: 0.5rem;
	color: #fff;
	font-size: 12px;
	margin-top: 1px;
}

.sidebar-right a i {
	display: block;
}

.sidebar-right a i img {
	height: 1.75rem;
	display: block;
}

.sidebar-right a p {
	margin-top: 0.2rem;
}

.sidebar-right a:hover {
	background: rgba(1, 53, 137, 0.8);
}

.sidebar-right a:hover i {
	transition: all .6s;
	transform: rotateY(360deg);
}

.head-menu ul li {
	float: left;
	position: relative;
}

.head-menu ul li span {
	float: left;
}

.head-menu ul li span a {
	float: left;
	line-height: 5rem;
	font-size: 1.25rem;
	color: #fff;
	padding: 0 1rem;
}

.head-menu ul li::after {
	content: '';
	width: 0;
	height: 0.25rem;
	background: #013589;
	position: absolute;
	left: auto;
	right: 0;
	bottom: -2px;
	transition: all .6s;
}

.head-menu ul li.active::after {
	width: 100%;
}

.head-menu ul li:hover::after,
.head-menu ul:hover li.active:hover::after {
	width: 100%;
	left: 0;
	right: auto;
}

.head-menu ul:hover li.active::after {
	width: 0;
}

.head-menu ul li .head-menu-lv2 {
	width: 9.375rem;
	position: absolute;
	left: 50%;
	top: 100%;
	margin-left: -4.6875rem;
	opacity: 0;
	pointer-events: none;
	transform: translate(0, 1.8rem);
	transition: all .6s;
}

.head-menu ul li:hover .head-menu-lv2 {
	opacity: 1;
	pointer-events: auto;
	transform: translate(0, 0);
}

.head-menu ul li .head-menu-lv2 div {
	width: 100%;
	float: left;
	padding: 1rem 0;
	background: rgba(1, 53, 137, 0.5);
	text-align: center;
	font-size: 0.875rem;
}

.head-menu ul li .head-menu-lv2 div a {
	width: 100%;
	float: left;
	line-height: 2rem;
	color: #fff;
	position: relative;
}

.head-menu ul li .head-menu-lv2 div a span {
	width: 100%;
	position: relative;
	z-index: 2;
}

.head-menu ul li .head-menu-lv2 div a::before {
	content: '';
	width: 0;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 0;
	background: rgba(1, 53, 137, 0.9);
	transition: all .4s;
}

.head-menu ul li .head-menu-lv2 div a:hover::before {
	width: 100%;
	left: 0;
}

.head-operation {
	margin-left: 4.6875rem;
}

.head-operation .box-info1 {
	width: 1.625rem;
	height: 20px;
	background: url(../images/icon_1.png) no-repeat center;
	background-size: auto 100%;
	cursor: pointer;
}

.head-operation .box-info2 {
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
	margin: 0 1.5rem;
	padding: 0 1.5rem;
	position: relative;
	font-size: 14px;
	cursor: pointer;
}

.head-operation .box-info2 .box1 {
	line-height: 22px;
	color: #fff;
	position: relative;
	padding: 0 1.125rem 0 2rem;
}

.head-operation .box-info2 .box1::before {
	content: '';
	width: 1.375rem;
	height: 22px;
	background: url(../images/icon_2.png) no-repeat center;
	background-size: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.head-operation .box-info2 .box1::after {
	content: '';
	width: 10px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: url(../images/icon_jt1.png) no-repeat center;
	background-size: 100%;
	transition: all .6s;
}

.head-operation .box-info2 .box2 {
	width: calc(100% + 2px);
	position: absolute;
	left: -1px;
	top: 100%;
	opacity: 0;
	pointer-events: none;
	transition: all .6s;
	text-align: center;
	line-height: 2rem;
	padding-top: 5px;
}

.head-operation .box-info2 .box2 div {
	width: 100%;
	float: left;
	background: #fff;
}

.head-operation .box-info2 .box2 div a {
	width: 100%;
	float: left;
}

.head-operation .box-info2 .box2 div a:hover {
	color: #013589;
	background: #f1f1f1;
}

.head-operation .box-info2:hover .box1::after {
	transform: rotate(180deg);
}

.head-operation .box-info2:hover .box2 {
	opacity: 1;
	pointer-events: auto;
}

.head-operation .box-info3 {
	border-right: 1px solid #fff;
	margin: 0 1.5rem;
	padding: 0 1.5rem;
	position: relative;
	font-size: 14px;
	cursor: pointer;
}

.head-operation .box-info3 .box1 {
	line-height: 22px;
	color: #fff;
	position: relative;
	padding: 0 1.125rem 0 2rem;
}

.head-operation .box-info3 .box1::before {
	content: '';
	width: 1.375rem;
	height: 22px;
	background: url(../images/icon_2.png) no-repeat center;
	background-size: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.head-operation .box-info3 .box1::after {
	content: '';
	width: 10px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background: url(../images/icon_jt1.png) no-repeat center;
	background-size: 100%;
	transition: all .6s;
}

.head-operation .box-info3 .box2 {
	width: calc(100% + 2px);
	position: absolute;
	left: -1px;
	top: 100%;
	opacity: 0;
	pointer-events: none;
	transition: all .6s;
	text-align: center;
	line-height: 2rem;
	padding-top: 5px;
}

.head-operation .box-info3 .box2 div {
	width: 100%;
	float: left;
	background: #fff;
}

.head-operation .box-info3 .box2 div a {
	width: 100%;
	float: left;
}

.head-operation .box-info3 .box2 div a:hover {
	color: #013589;
	background: #f1f1f1;
}

.head-operation .box-info3:hover .box1::after {
	transform: rotate(180deg);
}

.head-operation .box-info3:hover .box2 {
	opacity: 1;
	pointer-events: auto;
}


.head-search {
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
	height: 16.25rem;
	position: absolute;
	left: 0;
	top: 5rem;
	opacity: 0;
	pointer-events: none;
	transition: all .6s;
}

.head-search .center-block {
	width: 50rem;
	position: relative;
}

.head-search .center-block .text {
	width: 100%;
	height: 3.75rem;
	background: #fff;
	border: none;
	border-bottom: 1px solid #666;
	font-size: 1rem;
	padding: 0 3.5rem 0 1rem;
	border-radius: 0.2rem;
}

.head-search .center-block .btns {
	width: 1.5rem;
	height: 100%;
	background: url(../images/icon_1_b.png) no-repeat center;
	background-size: 100%;
	position: absolute;
	right: 1rem;
	top: 0;
	border: none;
	cursor: pointer;
}

.head-search.active {
	opacity: 1;
	pointer-events: auto;
}

.banner-box {
	position: relative;
}

.fullpage .section {
	overflow: hidden;
	position: relative;
}

.home-box1 .swiper-container .swiper-slide {
	height: 100vh;
	background-position: center;
	background-size: cover;
}

.home-box1 .swiper-container .swiper-slide .center-block {
	color: #fff;
	font-size: 3.125rem;
	padding-bottom: 16rem;
	text-align: center;
}

.home-box1 .swiper-container .swiper-slide .center-block p {
	padding: 0.5rem 0;
	transition: all .6s;
	transform: translate(1.5rem, 0);
	opacity: 0;
}

.home-box1 .swiper-container .swiper-slide .center-block p:nth-child(2) {
	transition: all .6s ease .1s;
}

.home-box1 .swiper-container .swiper-slide.active .center-block p {
	transform: translate(0, 0);
	opacity: 1;
}

.home-box1 .box-bottom-info {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 4.375rem;
	z-index: 111;
}

.home-box1 .box-bottom-info .box-bottom-top .f-l {
	background: #fff;
	border: 2px solid #fff;
}

.home-box1 .box-bottom-info .box-bottom-top .f-l .box1 {
	width: 9.75rem;
	height: 5rem;
}

.home-box1 .box-bottom-info .box-bottom-top .f-l .box1 .swiper-button-next,
.home-box1 .box-bottom-info .box-bottom-top .f-l .box1 .swiper-button-prev {
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	margin: 0;
}

.home-box1 .box-bottom-info .box-bottom-top .f-l .box1 .swiper-button-next::after,
.home-box1 .box-bottom-info .box-bottom-top .f-l .box1 .swiper-button-prev::after {
	font-size: 1.5rem;
	color: #ccc;
	transition: all .6s;
}

.home-box1 .box-bottom-info .box-bottom-top .f-l .box1 .swiper-button-next:hover::after,
.home-box1 .box-bottom-info .box-bottom-top .f-l .box1 .swiper-button-prev:hover::after {
	color: #454545;
}

.home-box1 .box-bottom-info .box-bottom-top .f-l .box1 i {
	width: 1px;
	height: 1.5rem;
	background: #CBCBCB;
	margin: 0 1.5rem;
}

.home-box1 .box-bottom-info .box-bottom-top .f-l .box2 {
	width: 9.75rem;
	height: 5rem;
	position: relative;
	overflow: hidden;
	border-left: 1px solid #f1f1f1;
}

.home-box1 .box-bottom-info .box-bottom-top .f-l .box2 img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	opacity: 0;
	transition: all .6s;
	transform: translate(2rem, 0);
}

.home-box1 .box-bottom-info .box-bottom-top .f-l .box2 img.active {
	opacity: 1;
	z-index: 2;
	transform: translate(0, 0);
}

.home-box1 .box-bottom-info .box-bottom-top .f-r .swiper-pagination {
	position: relative;
}

.home-box1 .box-bottom-info .box-bottom-top .f-r .swiper-pagination .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin-left: 0.625rem;
	background: none;
	transition: all .6s;
	position: relative;
	opacity: 1;
}

.home-box1 .box-bottom-info .box-bottom-top .f-r .swiper-pagination .swiper-pagination-bullet::after {
	content: '';
	width: 8px;
	height: 8px;
	background: #D4D8D8;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .1s;
}

.home-box1 .box-bottom-info .box-bottom-top .f-r .swiper-pagination .swiper-pagination-bullet::before {
	content: '';
	width: 0;
	height: 1px;
	background: #FFB911;
	position: absolute;
	right: 0;
	top: 50%;
	opacity: 0;
	transition: all .6s;
}

.home-box1 .box-bottom-info .box-bottom-top .f-r .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	width: 10.625rem;
}

.home-box1 .box-bottom-info .box-bottom-top .f-r .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	width: 10px;
	height: 10px;
	border: 3px solid #FFB911;
	background: none;
	top: 50%;
	margin-top: -8px;
}

.home-box1 .box-bottom-info .box-bottom-top .f-r .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
	width: calc(100% - 20px);
	opacity: 1;
}


.home-box1 .box-bottom-info .box-bottom-lower {
	background: rgba(255, 255, 255, 0.85);
	height: 4.875rem;
	position: relative;
	z-index: 111;
}

.home-box1 .box-bottom-info .box-bottom-lower .li {
	width: 100%;
	height: 100%;
	position: relative;
}

.home-box1 .box-bottom-info .box-bottom-lower .li::after {
	content: '';
	width: 1px;
	height: 4.375rem;
	background: #B3B5B6;
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -2.1875rem;
}

.home-box1 .box-bottom-info .box-bottom-lower .li:last-child::after {
	display: none;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .title {
	position: relative;
	z-index: 3;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .title i {
	min-width: 3rem;
	min-height: 3rem;
	border: 1px solid #013589;
	border-radius: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto 1.625rem;
	transition: all .6s;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .title i.icon1 {
	background-image: url(../images/ho1_1.png);
}

.home-box1 .box-bottom-info .box-bottom-lower .li .title i.icon2 {
	background-image: url(../images/ho1_2.png);
}

.home-box1 .box-bottom-info .box-bottom-lower .li .title i.icon3 {
	background-image: url(../images/ho1_3.png);
}

.home-box1 .box-bottom-info .box-bottom-lower .li .title i.icon4 {
	background-image: url(../images/ho1_4.png);
}

.home-box1 .box-bottom-info .box-bottom-lower .li .title span {
	font-size: 1.5625rem;
	margin-left: 1rem;
	transition: all .6s;
}

/*新加样式*/
.home-box1 .box-bottom-info .box-bottom-lower .li:hover {
	background-color: #013589;
	cursor: pointer;
}

@media screen and (min-width:1200px) {
	.home-box1 .box-bottom-info .box-bottom-lower .li:hover .title i {
		border-color: #fff;
		transform: rotateY(360deg);
	}

	.home-box1 .box-bottom-info .box-bottom-lower .li:hover .title span {
		color: #fff;
	}

	.home-box1 .box-bottom-info .box-bottom-lower .li:hover .title i.icon1 {
		background-image: url(../images/ho1_1_h.png);
	}

	.home-box1 .box-bottom-info .box-bottom-lower .li:hover .title i.icon2 {
		background-image: url(../images/ho1_2_h.png);
	}

	.home-box1 .box-bottom-info .box-bottom-lower .li:hover .title i.icon3 {
		background-image: url(../images/ho1_3_h.png);
	}

	.home-box1 .box-bottom-info .box-bottom-lower .li:hover .title i.icon4 {
		background-image: url(../images/ho1_4_h.png);
	}
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block {
	width: 100%;
	height: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	overflow: hidden;
	padding: 1.635rem 0 5.875rem;
	transition: all .6s;
	opacity: 0;
	color: #fff;
	pointer-events: none;
}

.home-box1 .box-bottom-info .box-bottom-lower .li:hover .center-block {
	opacity: 1;
	height: 80vh;
	background: rgba(32, 64, 121, 0.8);
	pointer-events: auto;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .scroll-no {
	width: calc(100% + 6px);
	height: 100%;
	padding: 0 1.0rem;
	overflow-y: scroll;
	overflow-x: hidden;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info1 a {
	width: 100%;
	float: left;
	padding: 1.25rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info1 a:first-child {
	padding-top: 0;
	border: none;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info1 a i {
	width: 100%;
	display: block;
	height: 8.5rem;
	overflow: hidden;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info1 a img {
	width: 100%;
	display: block;
	height: 100%;
	object-fit: cover;
	transition: all .6s;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info1 a span {
	width: 100%;
	display: block;
	font-size: 0.9rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-top: 0.6rem;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info1 a p {
	font-size: 0.9rem;
	margin-top: 0.4rem;
	opacity: 0.7;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info1 a:hover i img {
	transform: scale(1.1);
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .more-btn {
	width: 100%;
	float: left;
	padding: 1.25rem 0;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .more-btn a {
	width: 15.875rem;
	line-height: 3.375rem;
	border: 1px dashed #fff;
	text-align: center;
	font-size: 1rem;
	color: #fff;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .more-btn a:hover {
	background: #fff;
	color: #333;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info2 .top-box span {
	float: left;
	font-size: 1.3rem;
	height: 2rem;
	position: relative;
	cursor: pointer;
	margin: 0 0.5rem;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info2 .top-box span::after {
	content: '';
	width: 0;
	height: 2px;
	background: #fff;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all .6s;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info2 .top-box span:hover::after,
.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info2 .top-box span.active::after {
	width: 100%;
	left: 0;
	right: auto;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info2 .box-info1 a:first-child {
	padding: 1.25rem 0;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info3 {
	text-align: center;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info3 .box1 {
	height: 12.5rem;
	overflow: hidden;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info3 .box1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info3 .box2 {
	font-size: 1rem;
	margin-top: 1.25rem;
	line-height: 1.8;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info3 .box3 {
	padding-bottom: 2rem;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info3 .box3 ul li {
	width: 50%;
	float: left;
	font-size: 1rem;
	margin-top: 2.25rem;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info3 .box3 ul li p {
	font-size: 1.125rem;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info3 .box3 ul li p i {
	font-size: 2.25rem;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info4 ul li {
	width: 100%;
	float: left;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info4 ul li a {
	width: 100%;
	float: left;
	height: 8rem;
	overflow: hidden;
	position: relative;
	margin-bottom: 1.4rem;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info4 ul li a img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .6s;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info4 ul li a span {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
	font-size: 1.5rem;
}

.home-box1 .box-bottom-info .box-bottom-lower .li .center-block .box-info4 ul li a:hover img {
	transform: scale(1.1);
}

.list-box1 {
	padding-bottom: 1rem;
}

.list-box1 ul li {
	width: 100%;
	float: left;
}

.list-box1 ul li a {
	width: 100%;
	float: left;
	color: #fff;
	display: flex;
	margin-top: 2rem;
}

.list-box1 ul li a .f-l {
	width: 4.375rem;
	height: 5rem;
	border: 1px solid #fff;
	color: #fff;
	transition: all .6s;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.list-box1 ul li a .f-l span {
	font-size: 2.8rem;
}

.list-box1 ul li a .f-l p {
	font-size: 0.875rem;
}

.list-box1 ul li a .f-r {
	width: 100%;
	flex: 1;
	padding-left: 1.125rem;
	font-size: 1.125rem;
	line-height: 1.8;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.list-box1 ul li a:hover .f-l {
	background: #fff;
	color: #333;
}

.foot-box {
	position: relative;
	z-index: 11;
	background: #fff;
}

.foot-box .top-box {
	padding: 2.25rem 0;
}

.foot-box .lower-box {
	padding: 3.75rem 0;
	background: #F0F0F0;
}

.foot-box .top-box .box-info1 {
	font-size: 1.125rem;
	color: #292929;
	font-weight: bold;
}

.foot-box .top-box .f-l {
	width: 50%;
}

.foot-box .top-box .f-r {
	width: 41%;
}

.foot-box .top-box .f-r .center-block {
	width: 44%;
}

.foot-box .top-box .f-l .swiper-container {
	margin-top: 0.5rem;
}

.foot-box .top-box .f-l .swiper-container .swiper-slide {
	width: auto;
	height: 2.5rem;
}

.foot-box .top-box .f-l .swiper-container .swiper-slide a {
	float: left;
	height: 2.5rem;
}

.foot-box .top-box .f-l .swiper-container .swiper-slide img {
	width: 100%;
	max-height: 100%;
	float: left;
	object-fit: contain;
}

.foot-box .top-box .box-info2 {
	position: relative;
	margin-top: 0.5rem;
}

.foot-box .top-box .box-info2 span {
	width: 100%;
	float: left;
	border-bottom: 1px solid #C0C0C0;
	line-height: 2.5rem;
	background: url(../images/icon_jt2.png) no-repeat right;
	background-size: 0.75rem;
	font-size: 1.125rem;
	color: #575757;
	cursor: pointer;
}

.foot-box .top-box .box-info2 ul {
	width: 100%;
	position: absolute;
	left: 0;
	top: 100%;
	margin-top: -1px;
	background: #fff;
	padding: 0.7rem 0;
	border: 1px solid #C0C0C0;
	opacity: 0;
	pointer-events: none;
	transform: translate(0, 1rem);
	transition: all .6s;
	max-height: 9.375rem;
	overflow: auto;
}

.foot-box .top-box .box-info2 ul li {
	width: 100%;
	float: left;
}

.foot-box .top-box .box-info2 ul li a {
	width: 100%;
	float: left;
	line-height: 2.5rem;
	padding: 0 1rem;
	font-size: 1rem;
}

.foot-box .top-box .box-info2 ul li a:hover {
	color: #013589;
	background: #f0f0f0;
}

.foot-box .top-box .box-info2:hover ul {
	opacity: 1;
	pointer-events: auto;
	transform: translate(0, 0);
}

.foot-box .lower-box .f-l img {
	height: 4rem;
}

.foot-box .lower-box .f-r {
	text-align: right;
	font-size: 0.875rem;
}

.foot-box .lower-box .f-r div span {
	background-position: left;
	background-repeat: no-repeat;
	background-size: auto 1.25rem;
	line-height: 1.25rem;
	padding-left: 2rem;
	display: inline-block;
	font-size: 1.125rem;
}

.foot-box .lower-box .f-r div span+span {
	margin-left: 1rem;
}

.foot-box .lower-box .f-r div span.icon-dz {
	background-image: url(../images/icon_3.png);
}

.foot-box .lower-box .f-r div span.icon-dh {
	background-image: url(../images/icon_4.png);
}

.foot-box .lower-box .f-r p {
	margin-top: 0.75rem;
}

.foot-box .lower-box .f-r p i {
	display: inline-block;
	margin: 0 1rem;
	color: #B5B5B5;
}

.page-menu .center-block .btn {
	top: 50%;
	transform: translate(0, -50%);
	right: -30px;
	opacity: .8;
	display: none;
	width: 30px;
	height: 80px;
	background-image: url(../images/jt-left.gif);
	background-size: 100% 100%;
}

.page-menu .center-block .btn {
	position: absolute;
}

.rightActive {
	background-image: url(../images/jt-right.gif) !important;
}

.page-menu {
	height: 100vh;
	position: fixed;
	left: 5%;
	top: 0;
	z-index: 10;
}

.page-menu .center-block {
	width: auto;
	min-height: 33.75rem;
	margin-top: 10rem;
}

.page-menu .center-block>div {
	transition: all .6s;
	position: relative;
	display: flex;
	flex-direction: column;
	background: rgba(0, 75, 160, 0.75);
	padding: 1.5rem 0.625rem;
	border-top-right-radius: 1.875rem;
	border-bottom-left-radius: 1.875rem;
}

.page-menu .center-block a {
	width: auto;
	float: left;
}

.page-menu .center-block a span {
	display: block;
	line-height: 2.5rem;
	color: #fff;
	font-size: 1rem;
	border-radius: 50px;
	padding: 0 3rem 0 1rem;
	transition: all .6s;
	min-width: 11.875rem;
	margin: 0.3125rem 0;
	position: relative;
}

.page-menu .center-block a span::after {
	content: '';
	width: 10px;
	height: 100%;
	position: absolute;
	right: 1rem;
	top: 0;
	background: url(../images/icon_jt6.png) no-repeat right;
}

@media screen and (min-width:1200px) {
	.page-menu .center-block a:hover span {
		background: #fff;
		color: #013589;
	}

	.page-menu .center-block a:hover span::after {
		background-image: url(../images/icon_jt6_h.png);
	}
}

.page-menu .center-block a.active span {
	background: #fff;
	color: #013589;
}

.page-menu .center-block a.active span::after {
	background-image: url(../images/icon_jt6_h.png);
}

.page-bg1 {
	display: none;
	width: 100%;
	height: 100vh;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	overflow: hidden;
}

.page-bg2 {
	width: 100%;
	min-height: 100vh;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
}

.page-bg1 .f-l {
	height: 100%;
	position: absolute;
	left: 27.5rem;
	color: #fff;
}

.page-bg1 .f-l .center-block {
	height: 33.75rem;
	margin-top: 6.5rem;
	position: relative;
}

.page-bg1 .f-l .center-block .box1 {
	position: relative;
	border-left: 0.3125rem solid #fff;
	padding-left: 0.5rem;
	font-family: '思源宋体 CN Heavy';
}

.page-bg1 .f-l .center-block .box1 span {
	font-size: 2.25rem;
	display: block;
	line-height: 1;
	padding-left: 0.4rem;
	font-family: '思源宋体 CN Bold';
}

.page-bg1 .f-l .center-block .box1 p {
	font-size: 3.75rem;
	line-height: 1.1;
	margin-top: 1rem;
}

.page-bg1 .f-l .center-block .box1::after {
	content: '';
	width: 1px;
	height: 6.875rem;
	background: #013589;
	position: absolute;
	left: -0.1875rem;
	bottom: -6.875rem;
	transition: all .6s;
}

.page-bg1 .f-l .center-block .box1::before {
	content: '';
	width: 1px;
	height: 6.875rem;
	background: #fff;
	position: absolute;
	left: -0.1875rem;
	top: calc(100% + 6.875rem);
	transition: all .6s;
}

.page-bg1 .f-l .center-block .box2 {
	width: 2.125rem;
	height: 3.5rem;
	border-radius: 50px;
	background: #fff;
	position: absolute;
	left: -0.9rem;
	bottom: 0;
	transition: all .6s;
}

.page-bg1 .f-l .center-block .box2::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../images/icon_jt3.png) no-repeat center;
	background-size: 0.875rem;
	animation: upDown 2s infinite;
}

.page-bg1 .f-l.active .center-block .box1::after {
	height: 0;
}

.page-bg1 .f-l.active .center-block .box1::before {
	height: 0;
}

.page-bg1 .f-l.active .center-block .box2 {
	opacity: 0;
}

@-webkit-keyframes upDown {
	0% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}

	50% {
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
	}

	100% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}

@keyframes upDown {
	0% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}

	50% {
		-webkit-transform: translateY(5px);
		transform: translateY(5px);
	}

	100% {
		-webkit-transform: translateY(-5px);
		transform: translateY(-5px);
	}
}

.page-center-box {
	padding: 9.625rem 0 4.375rem 18rem;
	position: relative;
}

.page-center-box .page-c-left {
	width: 17rem;
	margin-top: 6.5rem;
	padding-right: 2rem;
	position: sticky;
	left: 0;
	top: 9.625rem;
	float: left;
}

.page-center-box .page-c-left div {
	color: #fff;
	position: relative;
	padding-left: 0.8rem;
	font-family: '思源宋体 CN Heavy';
	position: relative;
}

.page-center-box .page-c-left div::after {
	content: '';
	width: 0.3125rem;
	height: 0;
	background: #fff;
	position: absolute;
	left: 0;
	top: 0;
	transition: all .6s;
}

.page-center-box .page-c-left span {
	font-size: 1.6rem;
	display: block;
	line-height: 1;
	padding-left: 0.1rem;
	font-family: '思源宋体 CN Bold';
	transition: all .6s;
	opacity: 0;
	transform: translate(3rem, 0) scale(1.3);
}

.page-center-box .page-c-left p {
	font-size: 2.3rem;
	line-height: 1.1;
	margin-top: 1rem;
	transition: all .6s ease .1s;
	opacity: 0;
	transform: translate(3rem, 0) scale(1.3);
}

.active .page-center-box .page-c-left div::after {
	height: 100%;
}

.active .page-center-box .page-c-left div span,
.active .page-center-box .page-c-left div p {
	transform: translate(0, 0) scale(1);
	opacity: 1;
}

.page-center-box .page-c-right {
	width: 80%;
	flex: 1;
	min-height: calc(100vh - 9.625rem - 4.375rem);
	background: #fff;
	padding: 3.375rem;
	float: right;
}

.about-box1 .box1 {
	font-size: 1.375rem;
	font-weight: bold;
	color: #545454;
}

.about-box1 .box2 {
	border-top: 1px solid #D4D4D4;
	border-bottom: 1px solid #D4D4D4;
	margin: 1.5rem 0;
}

.about-box1 .box2 ul {
	width: 100%;
}

.about-box1 .box2 ul li {
	width: 50%;
	float: left;
	padding: 1.5rem 0;
	font-size: 1rem;
	text-align: center;
}

.about-box1 .box2 ul li p {
	font-size: 1.125rem;
}

.about-box1 .box2 ul li p i {
	font-size: 1.75rem;
	color: #013589;
	font-weight: bold;
}

.about-box2 .top-box {
	position: relative;
	padding: 0 3rem;
	border-bottom: 1px solid #D2D2D2;
	height: 4rem;
}

.about-box2 .top-box .swiper-container {
	height: calc(4rem + 1px);
}

.about-box2 .top-box .swiper-container .swiper-slide {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 4rem;
	text-align: center;
	cursor: pointer;
	position: relative;
}

.about-box2 .top-box .swiper-container .swiper-slide.swiper-slide-active {
	color: #013589;
	font-size: 2.25rem;
}

.about-box2 .top-box .swiper-container .swiper-slide::after {
	content: '';
	width: 100%;
	height: 3px;
	background: #013589;
	position: absolute;
	left: 0;
	bottom: 0;
	opacity: 0;
	transition: all .6s;
}

.about-box2 .top-box .swiper-container .swiper-slide.swiper-slide-active::after {
	opacity: 1;
}

.about-box2 .top-box .swiper-button-next,
.about-box2 .top-box .swiper-button-prev {
	width: 1.875rem;
	height: 100%;
	background-position: center;
	background-size: 100%;
	background-repeat: no-repeat;
	top: 0;
	margin: 0;
}

.about-box2 .top-box .swiper-button-next {
	background-image: url(../images/icon_jt4_r.png);
	right: 0;
}

.about-box2 .top-box .swiper-button-prev {
	background-image: url(../images/icon_jt4_l.png);
	left: 0;
}

.about-box2 .top-box .swiper-button-next::after,
.about-box2 .top-box .swiper-button-prev::after {
	display: none;
}


.about-box2 .lower-box ul {
	width: 100%;
	display: block;
}

.about-box2 .lower-box ul li {
	width: 100%;
	float: left;
	margin-top: 2.5rem;
}

.about-box2 .lower-box ul li span {
	display: block;
	font-size: 1.5rem;
	padding-left: 2rem;
	line-height: 1.5rem;
	background: url(../images/icon_5.png) no-repeat left;
	background-size: auto 1.5rem;
}

.about-box2 .lower-box ul li p {
	font-size: 1.125rem;
	line-height: 1.8;
	margin-top: 0.5rem;
}

.ex-plan-box {
	padding: 9.625rem 0 4.375rem 18rem;
}

.ex-plan-box .center-block {
	background: #fff;
	min-height: calc(100vh - 9.625rem - 4.375rem);
	display: flex;
	overflow: hidden;
}

.ex-plan-box .center-block .ex-plan-left {
	width: 7.75rem;
	background: #013589;
	color: #fff;
	padding: 1rem 0;
}

.ex-plan-box .center-block .ex-plan-left div {
	width: 2.75rem;
}

.ex-plan-box .center-block .ex-plan-left div a {
	display: inline-block;
	width: 2.75rem;
	height: 2.75rem;
	line-height: 2.75rem;
	border: 1px dashed #fff;
	border-radius: 100%;
	margin: 0.375rem 0;
	text-align: center;
	color: #fff;
	font-size: 1rem;
}

.ex-plan-box .center-block .ex-plan-left div a.active,
.ex-plan-box .center-block .ex-plan-left div a:hover {
	background: #fff;
	color: #333;
}

.ex-plan-box .center-block .ex-plan-right {
	width: 90%;
	flex: 1;
	padding: 0 2.375rem 2rem;
}

.ex-plan-box .center-block .ex-plan-right .top-box {
	padding: 1.25rem 0;
}

.ex-plan-box .center-block .ex-plan-right .top-box span {
	float: left;
	padding: 0 1.5rem;
	font-size: 1.5rem;
	line-height: 1.5rem;
	border-left: 2px solid #BEBEBE;
	position: relative;
	cursor: pointer;
	transition: all .6s;
}

.ex-plan-box .center-block .ex-plan-right .top-box span:first-child {
	border-left: none;
	margin-left: -1.5rem;
}

.ex-plan-box .center-block .ex-plan-right .top-box span::after {
	content: '';
	border-left: 0.5rem solid transparent;
	border-right: 0.5rem solid transparent;
	border-top: 0.6rem solid #013589;
	position: absolute;
	left: 50%;
	bottom: -0.8rem;
	margin: 0 0 0 -0.5rem;
	opacity: 0;
	transition: all .6s;
}

.ex-plan-box .center-block .ex-plan-right .top-box span.active,
.ex-plan-box .center-block .ex-plan-right .top-box span:hover {
	color: #013589;
}

.ex-plan-box .center-block .ex-plan-right .top-box span.active::after {
	opacity: 1;
}

.ex-plan-info1 .pull-left {
	width: 46%;
}

.ex-plan-info1 .pull-left ul li {
	width: 100%;
	float: left;
	margin-top: 1.5rem;
}

.ex-plan-info1 .pull-left ul li a {
	width: 100%;
	float: left;
	height: 18.5rem;
	position: relative;
	overflow: hidden;
}

.ex-plan-info1 .pull-left ul li a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all .6s;
}

.ex-plan-info1 .pull-left ul li a p {
	width: 100%;
	line-height: 2.8125rem;
	padding: 0 1.875rem;
	font-size: 1.25rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: absolute;
	left: 0;
	bottom: 0;
	color: #fff;
	background: rgba(0, 0, 0, 0.5);
}

.ex-plan-info1 .pull-left ul li a:hover img {
	transform: scale(1.1);
}

.ex-plan-info1 .pull-left ul li:first-child {
	margin-top: 0;
}

.ex-plan-info1 .pull-right {
	width: 54%;
	padding-left: 2.25rem;
}

.ex-plan-info1 .pull-right .fanye-box {
	padding-top: 0.5rem;
}

.list-box2 ul li {
	width: 100%;
	float: left;
}

.list-box2 ul li a {
	width: 100%;
	float: left;
	padding: 1.2rem 0;
	border-top: 1px dashed #C9C9C9;
}

.list-box2 ul li:first-child a {
	border: none;
	padding-top: 0;
}

.list-box2 ul li a {
	display: flex;
}

.list-box2 ul li a .f-l {
	width: 5.625rem;
	background: #013589;
	color: #fff;
	font-size: 0.875rem;
	text-align: center;
	padding: 1rem 0;
}

.list-box2 ul li a .f-l span {
	display: block;
	font-size: 2.25rem;
	font-weight: bold;
}

.list-box2 ul li a .f-r {
	width: 80%;
	flex: 1;
	padding-left: 1.625rem;
	font-size: 0.875rem;
}

.list-box2 ul li a .f-r span {
	display: block;
	font-size: 1.25rem;
	margin-bottom: 0.3rem;
	font-weight: bold;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #414141;
	transition: all .6s;
}

.list-box2 ul li a .f-r p {
	line-height: 1.4;
}

.list-box2 ul li a:hover .f-r span {
	color: #013589;
}

.clearfix {
	clear: both;
}

#calendar-index {
	margin-top: 1rem;
}

#calendar-index .fc-day-header {
	border-color: #C7C7C7;
	background: #E5EFFF;
	color: #013589;
	line-height: 3.125rem;
	font-size: 1.375rem;
}

/* #calendar-index .fc-sat,#calendar-index .fc-sun{ color: #ed0000;} */
/* #calendar-index .fc-day-header.fc-sat,#calendar-index .fc-day-header.fc-sun{ background: #ed0000; color: #fff;} */
#calendar-index .fc-bg .fc-today {
	background: #fff8f8;
	position: relative;
}

#calendar-index .fc-bg .fc-today:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border: 1px solid #ed0000;
}

#calendar-index .fc-header-toolbar {
	display: none;
}

#calendar-index .fc-header-toolbar h2 {
	font-size: 1.25rem;
	color: #ed0000;
	line-height: 34px;
}

#calendar-index .fc-prev-button,
#calendar-index .fc-next-button {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #ed0000;
	outline: 0;
	padding: 0;
}

#calendar-index .fc-prev-button span,
#calendar-index .fc-next-button span {
	margin: 0;
}

#calendar-index .fc-day-grid-container {
	overflow: visible !important;
	position: relative;
	height: auto !important;
}

#calendar-index .fc-day-number {
	font-size: 1.375rem;
	color: #013589;
}

#calendar-index .fc-h-event {
	margin: 0 !important;
	line-height: 1.625rem;
	border-radius: 50px !important;
	padding: 0 1rem !important;
	color: #fff;
}

#calendar-index .fc-basic-view .fc-body .fc-row {
	height: auto !important;
	min-height: 5.625rem !important;
}

#calendar-index .fc-event-container {
	padding: 0.5rem 0.75rem 0 !important;
}

.ex-more {
	position: absolute;
	z-index: 101;
	width: 400px;
	background: #FFF;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 5px;
}

.ex-more .img-box {
	width: 100px;
	height: 100px;
}

.ex-more .txt-box {
	width: 280px;
	margin-left: 20px;
	font-size: 0.875rem;
}

.ex-more .txt-box h4 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.ex-more .txt-box li {
	padding-left: 3em;
	text-indent: -3em;
	margin-bottom: 5px;
}

.ex-survey-box1 .top-box {
	display: flex;
	position: relative;
	z-index: 2;
}

.ex-survey-box1 .top-box span {
	width: 100%;
	float: left;
	line-height: 4.125rem;
	text-align: center;
	font-size: 1.875rem;
	background: #E5E5E5;
	cursor: pointer;
	transition: all .6s;
	position: relative;
}

.ex-survey-box1 .top-box span+span {
	margin-left: 1rem;
}

.ex-survey-box1 .top-box span::after {
	content: '';
	border-left: 0.5rem solid transparent;
	border-right: 0.5rem solid transparent;
	border-top: 0.6rem solid #013589;
	position: absolute;
	left: 50%;
	bottom: -0.6rem;
	margin: 0 0 0 -0.5rem;
	opacity: 0;
	transition: all .6s;
}

.ex-survey-box1 .top-box span.active,
.ex-survey-box1 .top-box span:hover {
	background: #013589;
	color: #fff;
}

.ex-survey-box1 .top-box span.active::after {
	opacity: 1;
}

.ex-survey-box2 .top-box {
	display: flex;
	position: relative;
	z-index: 2;
}

.ex-survey-box2 .top-box span {
	width: 100%;
	float: left;
	line-height: 4.125rem;
	text-align: center;
	font-size: 1.875rem;
	background: #E5E5E5;
	cursor: pointer;
	transition: all .6s;
	position: relative;
}

.ex-survey-box2 .top-box span+span {
	margin-left: 1rem;
}

.ex-survey-box2 .top-box span::after {
	content: '';
	border-left: 0.5rem solid transparent;
	border-right: 0.5rem solid transparent;
	border-top: 0.6rem solid #013589;
	position: absolute;
	left: 50%;
	bottom: -0.6rem;
	margin: 0 0 0 -0.5rem;
	opacity: 0;
	transition: all .6s;
}

.ex-survey-box2 .top-box span.active,
.ex-survey-box2 .top-box span:hover {
	background: #013589;
	color: #fff;
}

.ex-survey-box2 .top-box span.active::after {
	opacity: 1;
}

.news-list1 {
	padding-bottom: 1.5rem;
}

.news-list1 span {
	font-size: 1.25rem;
	background: url(../images/icon_1_b.png) no-repeat left;
	background-size: auto 1.5rem;
	line-height: 1.5rem;
	padding-left: 2rem;
	font-weight: bold;
}

.news-list1 select {
	appearance: initial;
	cursor: pointer;
	background: url(../images/icon_jt2.png) no-repeat right;
	background-size: 10px;
}

.news-list1 select,
.news-list1 .text {
	width: 12.5rem;
	height: 2.25rem;
	border: none;
	border-bottom: 1px solid #D4D4D4;
	font-size: 1rem;
	padding: 0 5px;
}

.news-list1 .btns {
	width: 12.5rem;
	height: 2.25rem;
	background: #E5E5E5;
	color: #666;
	font-size: 1.125rem;
	border: none;
	cursor: pointer;
}

.news-list2 ul li {
	width: 100%;
	float: left;
}

.news-list2 ul li a {
	width: 100%;
	float: left;
	padding: 1.25rem;
	border-bottom: 1px dashed #CBCBCB;
}

.news-list2 ul li a .box1 {
	width: 4.5rem;
	height: 6.25rem;
	text-align: center;
	border: 1px solid #C6C6C6;
	color: #666;
	font-size: 12px;
	transition: all .6s;
}

.news-list2 ul li a .box1 span {
	font-size: 3rem;
}

.news-list2 ul li a .box2 {
	width: 70%;
	flex: 1;
	padding: 0 1.25rem;
}

.news-list2 ul li a .box2 span {
	font-size: 1.25rem;
	transition: all .6s;
	font-weight: bold;
}

.news-list2 ul li a .box2 p {
	font-size: 0.875rem;
	color: #666666;
	margin-top: 0.5rem;
	line-height: 1.6;
}

.news-list2 ul li a .box3 {
	width: 12.5rem;
	height: 8rem;
	overflow: hidden;
}

.news-list2 ul li a .box3 img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: all .6s;
}

.news-list2 ul li a:hover {
	background: #F6F6F6;
}

.news-list2 ul li a:hover .box1 {
	background: #013589;
	color: #fff;
}

.news-list2 ul li a:hover .box2 span {
	color: #013589;
}

.news-list2 ul li a:hover .box3 img {
	transform: scale(1.1);
}

.news-list3 ul li {
	width: 100%;
	float: left;
}

.news-list3 ul li a {
	width: 100%;
	float: left;
	padding: 0 1.25rem;
	line-height: 5rem;
	border-bottom: 1px dashed #CBCBCB;
	display: flex;
	font-size: 1.125rem;
}

.news-list3 ul li a span {
	float: left;
	position: relative;
	padding-left: 1rem;
	color: #666;
}

.news-list3 ul li a span::after {
	content: '';
	width: 0.375rem;
	height: 0.375rem;
	background: #013589;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -0.1875rem;
	border-radius: 100%;
}

.news-list3 ul li a p {
	width: 100%;
	padding-left: 1.25rem;
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	transition: all .6s;
	color: #333;
}

.news-list3 ul li a:hover {
	background: #F6F6F6;
}

.news-list3 ul li a:hover p {
	color: #013589;
}

body.overHide,
html.overHide {
	overflow: hidden;
}

.news-info {
	width: 100%;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	background: rgba(0, 0, 0, 0.7);
	overflow: hidden;
	opacity: 0;
	transition: all .6s;
	pointer-events: none;
}

.news-info .pull-right {
	width: 67%;
	height: 100%;
	background: #fff;
	transition: all .6s;
	transform: translate(50vw, 0);
	position: relative;
}

.news-info .pull-right .btn-close {
	width: 3.4375rem;
	height: 3.4375rem;
	background: url(../images/icon_6.png) no-repeat center;
	background-size: 100%;
	position: absolute;
	right: 100%;
	top: 7rem;
	margin-right: 1rem;
	cursor: pointer;
	transition: all .6s;
}

.news-info .pull-right .btn-close:hover {
	transform: rotate(360deg);
}

.news-info.active {
	opacity: 1;
	pointer-events: auto;
}

.news-info.active .pull-right {
	transform: translate(0, 0);
}

.news-info .pull-right .center-block {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 0 6.25rem;
}

.news-info .pull-right .center-block .box-info1 {
	text-align: center;
	font-size: 2.0625rem;
	margin-top: 2.5rem;
}

.news-info .pull-right .center-block .box-info2 {
	border-bottom: 1px solid #CCCCCC;
	padding: 1.125rem 0;
	margin-top: 0.625rem;
	color: #888;
}

.news-info .pull-right .center-block .box-info2 .box1 span {
	background-position: left;
	background-repeat: no-repeat;
	line-height: 1.25rem;
}

.news-info .pull-right .center-block .box-info2 .box1 span+span {
	margin-left: 1rem;
}

.news-info .pull-right .center-block .box-info2 .box1 span.icon1 {
	background-image: url(../images/icon_7.png);
	padding-left: 20px;
}

.news-info .pull-right .center-block .box-info2 .box1 span.icon2 {
	background-image: url(../images/icon_8.png);
	padding-left: 22px;
}

.news-info .pull-right .center-block .box-info2 .box2 {
	line-height: 2.25rem;
}

.news-info .pull-right .center-block .box-info2 .box2 i {
	display: inline-block;
	width: 2.4rem;
	border: 1px solid #DCDCDC;
	border-radius: 0.375rem;
	text-align: center;
	font-size: 1.125rem;
	cursor: pointer;
	transition: all .6s;
}

.news-info .pull-right .center-block .box-info2 .box2 i:hover {
	background: #013589;
	border-color: #013589;
	color: #fff;
}

.news-info .pull-right .center-block .box-info3 {
	padding: 1.5rem 0;
	line-height: 1.8;
}

.news-info .pull-right .center-block .box-info3 pre {
	white-space: pre-wrap;
	word-wrap: break-word;
}

.news-info .pull-right .center-block .box-info4 {
	border-top: 1px solid #ccc;
	padding: 1.5rem 0 2rem;
}

.news-info .pull-right .center-block .box-info4 a {
	width: 100%;
	float: left;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 2.5rem;
}

.news-info .pull-right .center-block .box-info4 a:hover {
	color: #013589;
}

.special-column .top-box {
	position: relative;
	padding: 0 3rem;
	margin-bottom: 2rem;
}

.special-column .top-box .swiper-container .swiper-slide {
	width: 17.3125rem;
	height: 5rem;
	position: relative;
	padding: 0 2.1875rem;
	background: #eee;
	font-size: 1.25rem;
	text-align: center;
	cursor: pointer;
}

.special-column .top-box .swiper-container .swiper-slide.swiper-slide-active {
	border-bottom: 0.25rem solid #CA0000;
	color: #CA0000;
}

.special-column .top-box .swiper-button-next::after,
.special-column .top-box .swiper-button-prev::after {
	color: #959595;
	transition: all .6s;
	font-size: 2.5rem;
}

.special-column .top-box .swiper-button-next:hover::after,
.special-column .top-box .swiper-button-prev:hover::after {
	color: #CA0000;
}

.special-column .top-box .swiper-button-next {
	right: 0;
}

.special-column .top-box .swiper-button-prev {
	left: 0;
}

.special-column .news-list3 ul li a:hover p {
	color: #CA0000;
}

.special-column .news-list3 ul li a span::after {
	background: #CA0000;
}

.news-list4 ul {
	margin: 0 -1rem;
}

.news-list4 ul li {
	width: 33.33%;
	float: left;
	margin: 0 0 2rem 0;
	padding: 0 1rem;
}

.news-list4 ul li a {
	width: 100%;
	float: left;
	border: 1px solid #E5E5E5;
}

.news-list4 ul li a .box1 {
	padding: 0 1.25rem;
}

.news-list4 ul li a .box1 span {
	display: block;
	font-size: 1.25rem;
	padding: 1rem 0;
	position: relative;
	transition: all .6s;
	font-weight: bold;
}

.news-list4 ul li a .box1 span::after {
	content: '';
	width: 2.25rem;
	height: 0.25rem;
	background: #013589;
	position: absolute;
	left: 0;
	bottom: 0;
}

.news-list4 ul li a .box1 p {
	font-size: 1rem;
	color: #777;
	line-height: 1.8;
	border-bottom: 1px solid #E2E2E2;
	padding: 0.5rem 0 0.8rem;
}

.news-list4 ul li a .box2 {
	padding: 0 1.25rem;
	line-height: 3.125rem;
	margin-top: -1px;
	transition: all .6s;
}

.news-list4 ul li a .box2 p {
	color: #999;
	font-size: 0.875rem;
	background: url(../images/icon_jt5.png) no-repeat right;
	transition: all .6s;
}

.news-list4 ul li a:hover {
	border-color: #013589;
}

.news-list4 ul li a:hover .box1 span {
	color: #013589;
}

.news-list4 ul li a:hover .box2 {
	background: #013589;
}

.news-list4 ul li a:hover .box2 p {
	color: #fff;
	background-image: url(../images/icon_jt5_h.png);
}

.online-service {
	min-height: 100vh;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	padding: 8.4375rem 0 3rem;
}

.online-service .center-block {
	width: 71.875rem;
	margin: auto;
}

.online-service .box-info1 {
	text-align: center;
	font-weight: bold;
	color: #fff;
}

.online-service .box-info1 span {
	display: block;
	font-size: 2.25rem;
}

.online-service .box-info1 p {
	font-size: 3.75rem;
	font-family: '思源宋体 CN Heavy';
}

.online-service .box-info2 {
	padding: 2.375rem 0;
}

.online-service .box-info2 .between-center a {
	width: 7.6875rem;
	height: 7.6875rem;
	background: #fff;
	border-radius: 100%;
	margin: 0 2.8125rem;
}

.online-service .box-info2 .between-center a i {
	width: 100%;
	height: 2.25rem;
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	transition: all .6s;
}

.online-service .box-info2 .between-center a i.icon1 {
	background-image: url(../images/icon_os1.png);
}

.online-service .box-info2 .between-center a i.icon2 {
	background-image: url(../images/icon_os2.png);
}

.online-service .box-info2 .between-center a i.icon3 {
	background-image: url(../images/icon_os3.png);
}

.online-service .box-info2 .between-center a i.icon4 {
	background-image: url(../images/icon_os4.png);
}

.online-service .box-info2 .between-center a p {
	font-size: 1.125rem;
	margin-top: 0.5rem;
}

.online-service .box-info2 .between-center a:hover,
.online-service .box-info2 .between-center a.active {
	background: #013589;
	color: #fff;
}

.online-service .box-info2 .between-center a:hover i,
.online-service .box-info2 .between-center a.active i {
	transform: rotateY(360deg);
}

.online-service .box-info2 .between-center a:hover i.icon1,
.online-service .box-info2 .between-center a.active i.icon1 {
	background-image: url(../images/icon_os1_h.png);
}

.online-service .box-info2 .between-center a:hover i.icon2,
.online-service .box-info2 .between-center a.active i.icon2 {
	background-image: url(../images/icon_os2_h.png);
}

.online-service .box-info2 .between-center a:hover i.icon3,
.online-service .box-info2 .between-center a.active i.icon3 {
	background-image: url(../images/icon_os3_h.png);
}

.online-service .box-info2 .between-center a:hover i.icon4,
.online-service .box-info2 .between-center a.active i.icon4 {
	background-image: url(../images/icon_os4_h.png);
}

.online-service .box-info3 {
	background: #fff;
	border-top: 3px solid #013589;
	min-height: 31.25rem;
	padding: 2rem 3.125rem;
}

.online-service .box-info4 .box1 {
	width: 48%;
	height: 3.375rem;
	border: 1px solid #DCDCDC;
	border-radius: 0.25rem;
	padding: 0 0.875rem 0 0.625rem;
	margin-bottom: 2rem;
}

.online-service .box-info4 .box1 span {
	font-size: 1.125rem;
	white-space: nowrap;
}

.online-service .box-info4 .box1 span i {
	color: #E90101;
}

.online-service .box-info4 .box1 .text {
	width: 100%;
	flex: 1;
	height: 3rem;
	font-size: 1.125rem;
	border: none;
}

.online-service .box-info4 .box1 .select {
	width: 100%;
	flex: 1;
	height: 3rem;
	font-size: 1.125rem;
	border: none;
	appearance: none;
	background: url(../images/icon_jt2.png) no-repeat right;
	background-size: 0.875rem;
	cursor: pointer;
}

.online-service .box-info4 .box1 .yzm {
	width: 6.0625rem;
	height: 2rem;
	cursor: pointer;
}

.online-service .box-info4 .btns {
	width: 23.125rem;
	height: 3.75rem;
	background: #013589;
	color: #fff;
	font-size: 1.5rem;
	border: none;
	border-radius: 0.625rem;
	margin-top: 1rem;
	cursor: pointer;
}

.online-service .box-info4 .box2 {
	width: 100%;
	height: 8.375rem;
	border: 1px solid #DCDCDC;
	border-radius: 0.25rem;
	padding: 0 0.875rem 0 0.625rem;
	margin-bottom: 2rem;
}
.online-service .box-info4 .box2 span {
	font-size: 1.125rem;
	white-space: nowrap;
}

.online-service .box-info4 .box2 span i {
	color: #E90101;
}

.list-box3 ul li {
	width: 48%;
	float: left;
	margin-bottom: 1.5rem;
}

.list-box3 ul li:nth-child(2n) {
	float: right;
}

.list-box3 ul li a {
	width: 100%;
	float: left;
	height: 5rem;
	padding: 0 1.5rem;
	border: 1px solid #E8E8E8;
}

.list-box3 ul li a i {
	width: 1.75rem;
	height: 1.75rem;
	display: inline-block;
}

.list-box3 ul li a i img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.list-box3 ul li a span {
	width: 100%;
	flex: 1;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 1.25rem;
	background: url(../images/icon_10.png) no-repeat right;
	background-size: auto 2rem;
	padding: 0 2.7rem 0 0.75rem;
	transition: all .6s;
	line-height: 2rem;
}

.list-box3 ul li a:hover {
	border-color: #013589;
}

.list-box3 ul li a:hover span {
	background-image: url(../images/icon_10_h.png);
	color: #013589;
}

.search-center-info .top-box {
	background: url(../images/page_bg10.jpg) center;
	background-size: cover;
	padding: 10.625rem 0 10rem;
}

.search-center-info .top-box .center-block {
	width: 49.375rem;
	margin: 0 auto;
}

.search-center-info .top-box .center-block .box1 {
	text-align: center;
	font-size: 3rem;
	color: #fff;
	padding-bottom: 2rem;
}

.search-center-info .top-box .center-block .box2 {
	background: #fff;
	border-radius: 0.375rem;
	position: relative;
	overflow: hidden;
}

.search-center-info .top-box .center-block .box2 .text {
	width: 100%;
	height: 3.75rem;
	float: left;
	border: none;
	padding: 0 4.375rem 0 0.75rem;
	font-size: 1rem;
}

.search-center-info .top-box .center-block .box2 .btns {
	width: 4.375rem;
	height: 100%;
	background: url(../images/icon_1_b.png) no-repeat center;
	background-size: 1.625rem;
	border: none;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
}

.search-center-info .lower-box {
	padding: 3rem 0;
}

.search-center-info .lower-box .center-block {
	width: 71.875rem;
	margin: 0 auto;
}

.search-center-info .lower-box .center-block .box1 {
	font-size: 1.25rem;
	padding-bottom: 1.5rem;
}

.search-center-info .lower-box .center-block .box1 span {
	color: #013589;
	font-weight: bold;
}

.search-center-info .lower-box .center-block .box2 {
	border-top: 1px solid #E7E7E7;
	border-bottom: 1px solid #E7E7E7;
	padding: 1rem 0;
}

.search-center-info .lower-box .center-block .box2 ul li {
	width: 100%;
	float: left;
}

.search-center-info .lower-box .center-block .box2 ul li a {
	width: 100%;
	float: left;
	line-height: 3.125rem;
	display: flex;
}

.search-center-info .lower-box .center-block .box2 ul li a p {
	width: 100%;
	flex: 1;
	padding: 0 3rem 0 1rem;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position: relative;
	transition: all .6s;
}

.search-center-info .lower-box .center-block .box2 ul li a p::after {
	content: '';
	width: 0.375rem;
	height: 0.375rem;
	background: #BFBFBF;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -0.1875rem;
	transition: all .6s;
}

.search-center-info .lower-box .center-block .box2 ul li a i {
	font-size: 0.875rem;
	color: #999;
}

.search-center-info .lower-box .center-block .box2 ul li a:hover p::after {
	background: #013589;
}

.search-center-info .lower-box .center-block .box2 ul li a:hover p {
	color: #013589;
}

.head-map {
	width: 100%;
	position: fixed;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 99999;
	background: rgba(0, 0, 0, 0.6);
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transition: all .6s;
}

.head-map::after {
	content: '';
	width: 136.5rem;
	height: 127.25rem;
	background: #fff;
	border-radius: 100%;
	position: absolute;
	left: 28.4375rem;
	top: -61rem;
	transition: all .6s;
	transform: translate(3rem, -3rem);
	opacity: 0;
}

.head-map::before {
	content: '';
	width: 136.5rem;
	height: 127.25rem;
	background: rgba(1, 53, 137, 0.9);
	border-radius: 100%;
	position: absolute;
	left: 25rem;
	top: -62.5rem;
	transition: all .6s ease .1s;
	transform: translate(3rem, -3rem);
	opacity: 0;
}

.head-map .pull-right {
	width: 78.125rem;
	height: 100vh;
	padding: 2.8125rem 2.5% 0;
	position: relative;
	z-index: 2;
}

.head-map .pull-right .box-info1 {
	transition: all .6s ease .5s;
	opacity: 0;
}

.head-map .pull-right .box-info1 .fl img {
	height: 4rem;
}

.head-map .pull-right .box-info1 .fr a {
	float: left;
	background: url(../images/icon_g_1.png) no-repeat left;
	background-size: auto 100%;
	line-height: 2.5625rem;
	padding-left: 3rem;
	font-size: 1.25rem;
}

.head-map .pull-right .box-info1 .fr img {
	float: left;
	height: 1.9375rem;
	margin-left: 3.4375rem;
	transition: all .6s;
	cursor: pointer;
}

.head-map .pull-right .box-info1 .fr img:hover {
	transform: rotate(180deg);
}

.head-map .pull-right .box-info2 {
	margin-top: 3.125rem;
	display: flex;
	transition: all .6s ease .5s;
	opacity: 0;
}

.head-map .pull-right .box-info2 .box1 {
	float: left;
	padding: 0 5rem;
	position: relative;
	font-size: 1rem;
}

.head-map .pull-right .box-info2 .box1::after {
	content: '';
	width: 1px;
	background: #e5e5e5;
	position: absolute;
	left: 0;
	top: 2.8125rem;
	bottom: 0;
}

.head-map .pull-right .box-info2 .box1:first-child {
	padding-left: 0;
}

.head-map .pull-right .box-info2 .box1:first-child::after {
	display: none;
}

.head-map .pull-right .box-info2 .box1:last-child {
	padding-right: 0;
}

.head-map .pull-right .box-info2 .box1 span {
	display: block;
	position: relative;
	padding-bottom: 0.875rem;
	font-size: 1.5rem;
}

.head-map .pull-right .box-info2 .box1 span::after {
	content: '';
	width: 2.625rem;
	height: 2px;
	background: #013589;
	position: absolute;
	left: 0;
	bottom: 0;
}

.head-map .pull-right .box-info2 .box1 ul li {
	display: block;
	margin-top: 1rem;
}

.head-map .pull-right .box-info2 .box1 ul li a:hover {
	color: #013589;
}

.head-map .pull-right .box-info2 .box1 .between-top ul {
	margin-right: 2.8125rem;
}

.head-map .pull-right .box-info2 .box1 .between-top ul:last-child {
	margin-right: 0;
}

.head-map .pull-right .box-info2 .box2 {
	width: 100%;
	background: #f7f7f7;
	flex: 1;
	padding: 2.1875rem 2.8125rem;
}

.head-map .pull-right .box-info2 .box2 .fl span {
	display: block;
	font-size: 1.5rem;
	font-weight: bold;
}

.head-map .pull-right .box-info2 .box2 .fl p {
	margin-top: 1rem;
	font-size: 1rem;
	background-position: left;
	background-size: 1.1rem;
	background-repeat: no-repeat;
	padding-left: 1.5rem;
}

.head-map .pull-right .box-info2 .box2 .fl p:nth-child(2) {
	background-image: url(../images/icon_g_2.png);
}

.head-map .pull-right .box-info2 .box2 .fl p:nth-child(3) {
	background-image: url(../images/icon_g_3.png);
}

.head-map .pull-right .box-info2 .box2 .fl p:nth-child(4) {
	background-image: url(../images/icon_g_4.png);
}

.head-map .pull-right .box-info2 .box2 .fr {
	text-align: center;
	border-left: 1px solid #dedede;
	padding: 0 1.5rem 0 4rem;
}

.head-map .pull-right .box-info2 .box2 .fr img {
	width: 9.1875rem;
	height: 9.1875rem;
	border: 1px solid #c9c9c9;
	padding: 0.5rem;
}

.head-map .pull-right .box-info2 .box2 .fr p {
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

.head-map .pull-right .box-info3 {
	font-size: 0.875rem;
	text-align: right;
	margin-top: 7rem;
}

.head-map .pull-right .box-info3 .box1 {
	font-size: 1.5rem;
}

.head-map .pull-right .box-info3 .box2 {
	padding: 1rem 0;
}

.head-map .pull-right .box-info3 .box2 span {
	background-position: left;
	background-repeat: no-repeat;
	background-size: auto 1.25rem;
	line-height: 1.25rem;
	padding-left: 1.6rem;
	display: inline-block;
	font-size: 1rem;
}

.head-map .pull-right .box-info3 .box2 span+span {
	margin-left: 1rem;
}

.head-map .pull-right .box-info3 .box2 span.icon-dz {
	background-image: url(../images/icon_3.png);
}

.head-map .pull-right .box-info3 .box2 span.icon-dh {
	background-image: url(../images/icon_4.png);
}

.head-map .pull-right .box-info3 .box3 {
	color: #a5a5a5;
}

.head-map.active {
	opacity: 1;
	pointer-events: all;
}

.head-map.active::after,
.head-map.active::before {
	transform: translate(0, 0);
	opacity: 1;
}

.head-map.active .pull-right .box-info1,
.head-map.active .pull-right .box-info2 {
	opacity: 1;
}

.nodate {
	height: 100%;
}

.home-box1 .box-top-info {
	width: 20%;
	position: absolute;
	left: 4.8rem;
	top: 8.125rem;
	z-index: 111;
}

.home-box1 .box-top-info .center-block {
	width: 19.78rem;
	float: left;
	/* background: rgba(1, 53, 137, 0.45); */
	background: rgba(32, 64, 121, 0.8);
	color: #fff;
}

.home-box1 .box-top-info .center-block .top-box {
	line-height: 3rem;
	padding: 0 1rem;
}

.home-box1 .box-top-info .center-block .top-box span {
	font-size: 1.25rem;
	background: url(../images/icon_11.png) no-repeat left;
	background-size: 1.4rem;
	padding-left: 1.8rem;
}

.home-box1 .box-top-info .center-block .top-box a {
	font-size: 12px;
	color: #fff;
	background: url(../images/icon_jt5_h.png) no-repeat right;
	background-size: 6px;
	padding-right: 12px;
}

.home-box1 .box-top-info .center-block .lower-box ul li {
	width: 100%;
	float: left;
}

.home-box1 .box-top-info .center-block .lower-box ul li a {
	width: 100%;
	float: left;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1rem 0;
	color: #fff;
}

.home-box1 .box-top-info .center-block .lower-box ul li a span {
	position: relative;
	padding: 0 1.5rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.home-box1 .box-top-info .center-block .lower-box ul li a span::after {
	content: '';
	width: 6px;
	height: 6px;
	background: #fff;
	border-radius: 100%;
	position: absolute;
	left: 0.7rem;
	top: 0;
	margin-top: 0.5rem;
}

.home-box1 .box-top-info .center-block .lower-box ul li a i {
	display: block;
	padding: 0 1.5rem;
	opacity: 0.8;
	margin-top: 0.5rem;
}

.home-box1 .box-top-info .center-block .lower-box ul li a:hover {
	background: rgba(1, 53, 137, 0.3);
}

.notice-h5-lay {
	width: 100%;
	height: 300px;
	position: absolute;
	top: 200px;
	left: 0px;
	background-color: greenyellow;
	z-index: 111;
	display: none;
}

.notice-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.notice-list {
	padding: 8px 16px;
	border-bottom: 1px solid #C9C9C9;
}

.pc-lay {
	display: block;
}

.phone-lay {
	display: none;
}

/* 小于等于多少高度的样式 */
@media screen and (max-height:880px) {}

@media screen and (max-height:600px) {}

/* 小于等于多少宽度的样式 */
@media screen and (max-width:1660px) {}

@media screen and (max-width:1440px) {

	/* body,html{ font-size: calc(100vw / 100);} */
	.w-1700,
	.w-1600 {
		width: 90%;
	}

	/* 	.home-box1 .home-right .center-block .pull-left{ width: 30rem;}
          .home-box1 .home-right .center-block .pull-left ul li div{ padding-left: 5rem; height: 9rem;}
          .home-box1 .home-right .center-block .pull-right{ padding: 3rem 4.5rem 0;}
          .home-box1 .home-right .center-block .pull-right .box-info1 .box2 ul li{ margin-top: 1rem;} */
	.sidebar-right {
		width: 65px;
	}

	.sidebar-right a {
		height: 64px;
	}

}

@media screen and (max-width:1366px) {}

@media screen and (max-width:1200px) {}

@media screen and (max-width:1100px) {}

@media screen and (max-width:1024px) {
	.page-menu .center-block .btn {
		display: block
	}

	html,
	body {
		font-size: 78%;
		overflow-y: auto !important;
	}

	.w-90 {
		width: 94%;
	}

	.w-1200,
	.w-1300,
	.w-1500,
	.w-1600,
	.w-1700 {
		width: 94% !important;
	}

	.div-pc {
		display: none;
	}

	.div-phone {
		display: block;
	}

	.head-btn {
		display: block;
	}

	.fanye-box {
		padding: 1rem 0 0 !important;
	}

	.fanye-box a {
		padding: 0 0.8rem;
		height: 2.2rem;
		line-height: 2.2rem;
		margin: 0.2rem;
	}

	.head-box .w-90 {
		height: 4rem;
	}

	.head-box .logo {
		height: 2.8rem;
	}

	.head-operation {
		margin-left: 1rem;
		position: relative;
		z-index: 101;
	}

	.head-operation .box-info2 {
		margin: 0 0.8rem;
		padding: 0 0.8rem;
	}

	.head-operation .box-info2 .box1 {
		padding-left: 0;
		white-space: nowrap;
	}

	.head-operation .box-info2 .box1:before {
		display: none;
	}

	.head-search {
		top: 4rem;
		height: auto;
		padding: 1.5rem 0;
	}

	.head-search .center-block {
		width: 94%;
	}

	.head-search .center-block .text {
		height: 3.5rem;
	}

	.head-search .center-block .btns {
		width: 1.6rem;
	}

	.head-box.active.cur {
		background: rgba(0, 0, 0, 0.8);
	}

	.head-menu {
		width: 100%;
		position: fixed;
		height: calc(100vh - 4rem);
		left: 0;
		top: 4rem;
		z-index: 100;
		background: rgba(0, 0, 0, 0.8);
		overflow: auto;
		display: none;
	}

	.head-menu ul li {
		width: 100%;
	}

	.head-menu ul li span a {
		line-height: 3.5rem;
	}

	.head-menu ul li .head-menu-lv2 {
		display: none;
	}

	.sidebar-right {
		width: 3rem;
		right: 6px;
		z-index: 91;
		top: 8rem;
	}

	.sidebar-right a {
		height: 3rem;
	}

	.sidebar-right a p {
		display: none;
	}

	.all-center-box {
		min-height: 50vh;
	}

	.home-box1,
	.home-box1 .swiper-container .swiper-slide {
		height: 80vh;
	}

	.home-box1 .box-bottom-info {
		z-index: 90;
		bottom: 1.5rem;
	}

	.home-box1 .box-bottom-info .box-bottom-top {
		display: none;
	}

	.home-box1 .box-bottom-info .box-bottom-lower {
		display: block;
		height: auto;
		border-bottom: 1px solid #B3B5B6;
	}

	.home-box1 .box-bottom-info .box-bottom-lower .li {
		width: 50%;
		float: left;
		height: 5rem;
		/*border-top: 1px solid #B3B5B6; border-left: 1px solid #B3B5B6;*/
	}

	.home-box1 .box-bottom-info .box-bottom-lower .li::after,
	.home-box1 .box-bottom-info .box-bottom-lower .li .center-block {
		display: none;
	}

	.home-box1 .box-bottom-info .box-bottom-lower .li:nth-child(1),
	.home-box1 .box-bottom-info .box-bottom-lower .li:nth-child(2) {
		border-top: none;
	}

	.home-box1 .box-bottom-info .box-bottom-lower .li:nth-child(2n-1) {
		border-left: none;
	}

	.home-box1 .box-bottom-info .box-bottom-lower .li .title span {
		font-size: 1rem;
	}

	.home-box1 .swiper-container .swiper-slide .center-block {
		font-size: 1.5rem;
		padding-bottom: 6rem;
	}

	.home-box1 .swiper-container .swiper-slide .center-block p {
		padding: 0.1rem 0;
	}

	.foot-box {
		border-top: 1px solid #F0F0F0;
	}

	.foot-box .top-box {
		padding: 1.5rem 0;
	}

	.foot-box .top-box .w-90 {
		display: block;
	}

	.foot-box .top-box .f-l,
	.foot-box .top-box .f-r {
		width: 100%;
	}

	.foot-box .top-box .f-r {
		margin-top: 1rem;
	}

	.foot-box .top-box .f-r .center-block {
		width: 47%;
	}

	.foot-box .top-box .box-info2 {
		margin-top: 0.3rem;
	}

	.foot-box .lower-box {
		padding: 2rem 0;
	}

	.foot-box .lower-box .f-l {
		display: none;
	}

	.foot-box .lower-box .f-r {
		width: 100%;
		text-align: center;
	}

	.foot-box .lower-box .f-r div span {
		background-size: auto 100%;
		padding-left: 1.8rem;
	}

	.foot-box .lower-box .f-r div span+span {
		margin: 0.5rem 0 0;
	}

	.page-bg1 .f-l {
		left: 48%;
	}

	.page-bg1 .f-l .center-block .box1 {
		border-width: 3px;
	}

	.page-bg1 .f-l .center-block .box1::before,
	.page-bg1 .f-l .center-block .box1::after {
		left: -2px;
	}

	.page-bg1 .f-l .center-block .box1 span {
		font-size: 1.8rem;
	}

	.page-bg1 .f-l .center-block .box1 p {
		font-size: 2.2rem;
	}

	.page-menu .center-block a span {
		font-size: 1rem;
		line-height: 2.2rem;
		min-width: 10rem;
		padding: 0 1.5rem 0 0.5rem;
		margin: 0.125rem 0;
	}

	.page-menu .center-block a span::after {
		right: 10px;
	}

	.page-menu.active {
		width: 100%;
		position: fixed;
		left: 0;
		top: 4rem;
		background: #013589;
		height: 3rem;
		overflow: hidden;
	}

	.page-menu.active .center-block {
		width: 100%;
		margin: auto;
		height: 3rem;
		min-height: auto;
	}

	.page-menu.active .center-block>div {
		background: none;
		border-radius: 0;
		padding: 0;
		height: 3rem;
		overflow: hidden;
		overflow-x: scroll;
		flex-direction: initial
	}

	.page-menu.active .center-block a {
		width: auto;
		float: left;
	}

	.page-menu.active .center-block a span {
		float: left;
		line-height: 3rem;
		margin: auto;
		border-radius: 0;
		background: none;
		white-space: nowrap;
		padding: 0 1rem;
		min-width: auto;
	}

	.page-menu.active .center-block a span::after {
		display: none;
	}

	.page-menu.active .center-block a.active span {
		background: #fff;
		color: #000;
	}

	.page-menu.active .center-block>div::-webkit-scrollbar {
		height: 3px;
	}

	.page-menu.active .center-block>div::-webkit-scrollbar-track {
		background-color: #ccc;
	}

	.page-center-box,
	.ex-plan-box {
		padding: 8rem 0 2rem;
		display: block;
	}

	.page-center-box .page-c-left {
		width: 100%;
		float: left;
		margin-top: 0;
		position: relative;
		top: 0;
		padding: 0;
	}

	.page-center-box .page-c-left span {
		font-size: 1.6rem;
		padding-left: 0.1rem;
	}

	.page-center-box .page-c-left p {
		font-size: 2rem;
		margin-top: 0.5rem;
	}

	.page-center-box .page-c-right {
		width: 100%;
		float: left;
		margin-top: 1rem;
		padding: 1.5rem;
	}

	.about-box1 .box2 {
		margin: 1rem 0;
	}

	.about-box1 .box2 ul {
		width: 100%;
		float: left;
		display: block;
		padding: 0.5rem 0;
	}

	.about-box1 .box2 ul li {
		padding: 0.5rem 0;
	}

	.about-box2 .top-box .swiper-container .swiper-slide.swiper-slide-active {
		font-size: 2rem;
	}

	.about-box2 .lower-box ul li {
		margin-top: 1.8rem;
	}

	.about-box2 .lower-box ul li p {
		line-height: 1.6;
	}

	.ex-plan-box .center-block {
		display: block;
	}

	.ex-plan-box .center-block .ex-plan-left {
		width: 100%;
		float: left;
		display: block;
		padding: 1rem 0.5rem;
	}

	.ex-plan-box .center-block .ex-plan-left div {
		width: 16.66%;
		float: left;
		text-align: center;
	}

	.ex-plan-box .center-block .ex-plan-right {
		width: 100%;
		float: right;
		padding: 0 1.5rem 1.5rem;
	}

	.ex-plan-box .center-block .ex-plan-right .top-box span {
		font-size: 1.2rem;
	}

	.ex-plan-info1 .pull-left,
	.ex-plan-info1 .pull-right {
		width: 100%;
	}

	.ex-plan-info1 .pull-left ul li a {
		height: 13rem;
	}

	.ex-plan-info1 .pull-left ul li a p {
		padding: 0 1rem;
		font-size: 1.1rem;
	}

	.ex-plan-info1 .pull-right {
		padding: 0;
	}

	.list-box2 ul li a {
		padding: 1rem 0;
	}

	.list-box2 ul li:first-child a {
		padding-top: 1rem;
	}

	.list-box2 ul li a .f-r {
		width: 70%;
		padding-left: 1rem;
	}

	#calendar-index .fc-day-header {
		line-height: 1.4;
		padding: 1rem 0;
		font-size: 1.3rem;
	}

	#calendar-index .fc-basic-view .fc-body .fc-row {
		min-height: 5rem !important;
	}

	.ex-survey-box1 .top-box span {
		font-size: 1.2rem;
		line-height: 3.5rem;
	}

	.ex-survey-box1 .top-box span+span {
		margin-left: 0.5rem;
	}

	.ex-survey-box2 .top-box span {
		font-size: 1.2rem;
		line-height: 3.5rem;
	}

	.ex-survey-box2 .top-box span+span {
		margin-left: 0.5rem;
	}

	.news-list1 {
		display: block;
		padding-bottom: 0.5rem;
	}

	.news-list1 span {
		display: block;
	}

	.news-list1 select,
	.news-list1 .text {
		width: 100%;
		margin-top: 0.5rem;
	}

	.news-list1 .btns {
		width: 100%;
		margin-top: 1rem;
	}

	.news-list2 ul li a {
		padding: 14rem 0 1rem 0;
		position: relative;
	}

	.news-list2 ul li a .box2 {
		padding-right: 0;
	}

	.news-list2 ul li a .box3 {
		width: 100%;
		height: 12rem;
		position: absolute;
		left: 0;
		top: 1rem;
	}

	.news-list3 ul li a {
		padding: 0 0.5rem;
		line-height: 3.3rem;
	}

	.news-info .pull-right .btn-close {
		width: 2.5rem;
		height: 2.5rem;
		top: 0.5rem;
		margin-right: -3.5rem;
		box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
		border-radius: 100%;
	}

	.news-info .pull-right {
		width: 100%;
	}

	.news-info .pull-right .center-block {
		padding: 0 1rem;
	}

	.news-info .pull-right .center-block .box-info1 {
		margin-top: 3rem;
		font-size: 1.5rem;
	}

	.news-info .pull-right .center-block .box-info2 {
		padding: 0.5rem 0;
	}

	.news-info .pull-right .center-block .box-info4 {
		padding: 1.5rem 0;
	}

	.news-info .pull-right .center-block .box-info4 a {
		line-height: 2.2rem;
	}

	.special-column .top-box {
		margin-bottom: 1rem;
	}

	.special-column .top-box .swiper-container .swiper-slide {
		width: 100%;
	}

	.news-list4 ul li {
		width: 100%;
		margin: 1rem 0 0;
	}

	.online-service {
		padding: 6rem 0 2rem;
	}

	.online-service .center-block {
		width: 94%;
	}

	.online-service .box-info1 span {
		font-size: 2rem;
	}

	.online-service .box-info1 p {
		font-size: 2.2rem;
	}

	.online-service .box-info2 {
		padding: 1.5rem 0;
	}

	.online-service .box-info2 .between-center a {
		width: 5.5rem;
		height: 5.5rem;
		margin: 0 0.5rem;
	}

	.online-service .box-info2 .between-center a i {
		height: 2rem;
	}

	.online-service .box-info2 .between-center a p {
		font-size: 12px;
		margin-top: 0.2rem;
	}

	.online-service .box-info3 {
		padding: 1.5rem;
	}

	.online-service .box-info4 {
		padding: 0;
	}

	.online-service .box-info4 .box1 {
		width: 100%;
		margin-bottom: 1rem;
	}

	.online-service .box-info4 .btns {
		width: 100%;
		margin-top: 0;
	}

	.list-box3 ul li {
		width: 100%;
		margin-bottom: 1rem;
	}

	.list-box3 ul li a {
		height: 4rem;
		padding: 0 1rem;
	}

	.list-box3 ul li a span {
		font-size: 1.1rem;
	}

	.search-center-info .top-box .center-block,
	.search-center-info .lower-box .center-block {
		width: 94%;
	}

	.search-center-info .top-box {
		padding: 6rem 0 2rem;
	}

	.search-center-info .top-box .center-block .box1 {
		font-size: 2rem;
		padding-bottom: 1rem;
	}

	.search-center-info .top-box .center-block .box2 .text {
		height: 3rem;
	}

	.search-center-info .lower-box {
		padding: 1.5rem 0;
	}

	.search-center-info .lower-box .center-block .box1 {
		padding-bottom: 1rem;
	}

	.search-center-info .lower-box .center-block .box2 ul li a {
		line-height: 2.8rem;
	}

	/*.home-box1 .box-top-info{ display: none;}*/
	.home-box1 .box-top-info {
		width: 100%;
		left: 0;
		top: unset;
		bottom: 13rem;
	}

	.home-box1 .box-top-info .center-block {
		width: 100%;
		border-radius: 4px;
		background: rgba(1, 53, 137, 0.45);
	}

	.home-box1 .box-top-info .center-bottom {
		display: none;
	}

	.pc-lay {
		display: none;
	}

	.phone-lay {
		display: block;
	}

	.notice-h5-lay {
		display: block;
	}

	.layui-laydate-range {
		width: 97% !important;
		overflow: scroll;
		display: flex;
		padding-bottom: 45px;
		position: relative;
	}

	.layui-laydate-footer {
		width: 475px;
		position: absolute !important;
		left: 0;
		bottom: 0;
	}

	.laydate-footer-btns {
		width: 100%;
		text-align: center;
	}

	.layui-layer-page {
		width: 100% !important;
		height: 100vh !important;
		left: 0 !important;
		top: 0 !important;
	}

	.layui-layer-page .layui-layer-content {
		height: calc(100vh - 50px) !important;
	}

	.layui-layer-wrap>div:first-child {
		width: 100% !important;
		height: calc(100vh - 100px) !important;
		overflow: auto;
	}

}

.logo-lay {
	display: flex;
	align-items: center;
}

.logo-lay img4444 {
	width: 204px;
	height: 40px;
	margin-right: 16px;
}

.relation-lay {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-lay {
	margin: auto;
	width: 94%;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.relation-lay span {
	background-position: left;
	background-repeat: no-repeat;
	background-size: auto 1.25rem;
	line-height: 1.25rem;
	display: inline-block;
	font-size: 1rem;
	padding-left: 24px;
}

.icon-dz {
	background-image: url(../images/icon_3.png);
}

.icon-dh {
	background-image: url(../images/icon_4.png);
}

.split-line {
	padding: 0 10px;
}

.right-lay {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

@media screen and (max-width:768px) {
	.footer-lay {
		flex-direction: column;
	}

	.logo-lay {
		flex-direction: column;
	}

	.logo-lay img {
		margin-bottom: 10px;
	}

	.relation-lay {
		flex-direction: column;
		align-items: start;
	}

	.relation-lay span {
		margin-bottom: 10px;
	}

	.qrcode-lay {
		margin-top: 10px;
	}

	.right-lay {
		flex-direction: column;
		margin-top: 0px;
	}

	.right-lay span {
		margin-bottom: 10px;
	}

	.split-line {
		display: none;
	}
}

@media screen and (max-width:480px) {}

@media screen and (max-width:365px) {}

@media screen and (min-width:800px) {
	.foot-box .lower-box .f-r:first-child>div span img {
		width: 55%;
		height: 55%;
	}
}

.home-box1 .box-top-info .center-bottom {
	margin-top: 1.25rem;
}

.home-box1 .box-top-info .center-bottom .top-box span {
	background: url(../images/icon1.png) no-repeat left;
	font-size: 1.25rem;
	background-size: 1.4rem;
	padding-left: 1.8rem;
}

.home-box1 .box-top-info .center-bottom .lower-box ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.home-box1 .box-top-info .center-bottom .lower-box ul li {
	width: 48%;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.home-box1 .box-top-info .center-bottom .lower-box ul li a {
	display: flex;
	width: 3.875rem;
	height: 3.875rem;
	border: 1px dashed #FFFFFF;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
}

.home-box1 .box-top-info .center-bottom .lower-box ul li a img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: .4s;
}

.home-box1 .box-top-info .center-bottom .lower-box ul li a:hover img {
	transform: rotateY(360deg);
	transition: .4s;
}

.home-box1 .box-top-info .center-bottom .lower-box ul li p {
	font-size: 0.875rem;
	font-family: SourceHanSansCN;
	font-weight: 400;
	color: #FFFFFF;
	line-height: 1.5;
	margin: 8px 0px;
}
