.wp {
	max-width: 1500px;
	margin: 0 auto;
}

* {
	font-family: '微软雅黑';
	box-sizing: border-box;
}

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

/* 头部 */
#web_head {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	background-color: #fff;
	box-shadow: 0 3px 9px rgba(120, 120, 120, 0.16);
}

#web_head .con {
	height: 110px;
	align-items: center;
	display: flex;
	justify-content: space-between;
}

#web_head .con .logo {}

#web_head .con .logo img {
	width: 142px;
	vertical-align: middle;
}

#web_head .con .nav .item {
	display: inline-block;
	padding: 0 20px;
	position: relative;
	height: 110px;
	line-height: 110px;
	position: relative;
}


#web_head .con .nav .item .down_nav {
	position: absolute;
	width: 170px;
	top: 100%;
	background-color: #F5F5F5;
	left: 50%;
	transform: translateX(-50%);
	max-height: 0;
	overflow: hidden;

	transition: max-height 0.4s ease;
}

#web_head .con .nav .item:hover .down_nav {
	max-height: 500px;
	/* 只要比实际内容大就行 */
}


#web_head .con .nav .item .down_nav a {
	display: block;
	text-align: center;
	height: 46px;
	line-height: 46px;
	font-size: 14px;
}

#web_head .con .nav .item .down_nav a:hover {
	background-color: #fff;
}

#web_head .con .nav .item.on>a {
	color: #116CA4;
}

#web_head .con .nav .item a {
	font-size: 20px;
	color: #444;
}

#web_head .con .nav .item:hover>a {
	color: #116CA4;
}

#web_head .con .nav .item .line {
	position: absolute;
	width: 0%;
	height: 4px;
	background-color: #116CA4;
	left: 50%;
	transform: translateX(-50%);
	top: 75%;
	transition: width 0.3s ease;
	/* 新增 */
}

#web_head .con .nav .item:hover .line {
	width: 80%;
}

#web_head .con .nav .item img {
	vertical-align: middle;
	width: 26px;
	cursor: pointer;
}

#web_head .con .nav .item img:hover {
	opacity: 0.6;
}

#web_head .con .nav .item.on .line {
	width: 80%;
}

#web_head .con .nav .item .more {
	position: absolute;
	line-height: 1;
	background-color: #116CA4;
	width: 327px;
	height: 100%;
	text-align: center;
	padding-top: 42px;
	top: -2px;
	left: 0;
	z-index: 9;
	display: none;
}

#web_head .con .nav .item .more span {
	font-size: 32px;
	color: #fff;
	font-weight: bold;
	vertical-align: middle;
}

#web_head .con .nav .item .more img {
	vertical-align: middle;
}

#web_head .con .nav .item.tel_item.on .more {
	display: block;
}











#web_head_mm {
	background-color: #fff;
	height: 56px;
	line-height: 54px;
	padding: 0 10px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10;
	border-bottom: 1px solid #ddd;
	width: 100%;
	display: none;
}

#web_head_mm .logo {
	text-align: left;
}

#web_head_mm img {
	vertical-align: middle;
	height: 40px;
}

#web_head_mm .open_nav {
	position: absolute;
	width: 56px;
	height: 56px;
	background-image: url(../images/top_icon2.png);
	display: inline-block;
	vertical-align: middle;
	background-size: 20px;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	right: 0px;
	top: 0;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-moz-user-focus: none;
}

#web_head_mm .open_nav.on {
	background-image: url(../images/top_icon3.png);
}

#web_head_mm .right_nav {
	width: 100%;
	position: fixed;
	right: 0;
	top: 56px;
	z-index: 9;
	bottom: 0;
	width: 0;
	overflow: hidden;
	z-index: 99;
}

#web_head_mm .right_nav .bg {
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0);
	transition: .3s;
}

#web_head_mm .right_nav.on .bg {
	position: absolute;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.4);
	transition: .3s;
	width: 100%;
	height: 100%;
}

#web_head_mm .right_nav.on {
	width: 100%;
}

#web_head_mm .right_nav .nav {
	position: absolute;
	height: 100%;
	width: 0%;
	right: 0;
	top: 0;
	background-color: #fff;
}

#web_head_mm .right_nav .nav a {
	display: block;
	font-size: 14px;
	color: #333;
	line-height: 40px;
	padding-left: 30px;
	border-bottom: 1px solid #f0f0f0;
	height: 40px;
	position: relative;
}

#web_head_mm .right_nav .nav a span {
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1px solid #cccccc;
	margin-right: 20px;
	vertical-align: middle;
}

#web_head_mm .right_nav .nav a img {
	width: 6px;
	height: auto;
	vertical-align: middle;
	margin-right: 21px;
	margin-left: 1px;
}

#web_head_mm .right_nav .nav a em {
	vertical-align: middle;
}

#web_head_mm .right_nav.on .nav {
	width: 80%;
	-o-transition: .3s;
	-ms-transition: .3s;
	-moz-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}

#web_head_mm .right_nav .nav a b {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	font-weight: normal;
	color: #666;
}

#web_head_mm .right_nav .nav a.on {
	background-color: #ebebeb;
}

#web_head_mm .right_nav .nav a.on span {
	background-color: #666;
	border: 1px solid #666;
}

#web_head_mm .right_nav .nav .mm_nav_item .mm_nav_item_down {
	display: none;
}


#mm_er_nav {
	display: none;
	width: 100%;
	position: relative;
}

#mm_er_nav .tit {
	height: 42px;
	line-height: 42px;
	background-color: #fff;
	padding: 0 3%;
	background-image: url(../images/up1.png);
	background-repeat: no-repeat;
	background-position: right 3% center;
	background-size: 13px auto;
}

#mm_er_nav .tit.on {
	background-image: url(../images/down1.png);
}

#mm_er_nav .tit h4 {
	font-size: 14px;
	color: #333;
	font-weight: normal;
}

#mm_er_nav .down_nav {
	position: fixed;
	width: 100%;
	left: 0;
	top: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	z-index: 999999;
	bottom: 0;
	transition: .3s;
}

#mm_er_nav .down_nav.on {
	top: 0px;
	transition: .3s;
}

#mm_er_nav .down_nav .con {
	position: absolute;
	left: 0;
	width: 100%;
	top: 1px;
	bottom: 50px;
	padding: 0 20px;
	background-color: #fff;
}

#mm_er_nav .down_nav .con.on {
	top: 5px;
	transition: .3s;
}

#mm_er_nav .down_nav .con h5 {
	font-size: 16px;
	color: #333;
	font-weight: normal;
	text-align: center;
	padding: 25px 0;
}

#mm_er_nav .down_nav .item {
	border-bottom: 1px solid #f0f0f0;
	padding: 5px 0;
}

#mm_er_nav .down_nav .item:last-child {
	border-bottom: none;
}

#mm_er_nav .down_nav .item>a {
	line-height: 30px;
	font-size: 14px;
	color: #000;
	font-weight: bold;
}

#mm_er_nav .down_nav .item dt {
	padding: 5px 0;
}

#mm_er_nav .down_nav .item dt>a {
	font-size: 14px;
	color: #333;
}

#mm_er_nav .down_nav .item dd {
	padding: 5px 0;
}

#mm_er_nav .down_nav .item dd>a {
	font-size: 13px;
	color: #333;
	display: inline-block;
}

#mm_er_nav .down_nav .item dd>a img {
	width: 6px;
	margin-right: 6px;
	vertical-align: 0px;
}

#mm_er_nav .down_nav .colse {
	background-color: #535353;
	height: 50px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
	font-size: 14px;
	color: #fff;
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 0;
	display: none;
}

#mm_er_nav .down_nav.on .colse {
	display: block;
}

.oh {
	overflow: hidden !important;
}


/* 首页 */
.index_banner {
	width: 100%;
	overflow: hidden;
	position: relative;
	isolation: isolate;
	margin-top: 110px;
}

.index_banner .swiper-slide {
	position: relative;
}

.index_banner img {
	vertical-align: middle;
	width: 100%;
	position: relative;
	z-index: 1 !important;
}

.index_banner .swiper-pagination-bullet {
	background-color: #fff;
	opacity: 0.3;
}

.index_banner .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: #fff;
}

.index_banner .txt {
	position: absolute;
	z-index: 9;
	width: 1030px;
	left: 50%;
	transform: translateX(-50%);
	top: 213px;
	overflow: hidden;
	background-image: url(../images/banner2.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center;
}

.index_banner .txt .item {
	width: 50%;
	float: left;
	padding-right: 36px;
	padding-left: 100px;
	padding-top: 20px;
	padding-bottom: 20px;
	line-height: 1;
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.index_banner .txt .item:nth-child(odd) {
	padding-left: 36px;
	padding-right: 100px;
}

.index_banner .txt .item h4 {
	font-size: 30px;
	color: #18417C;
}

.index_banner .txt .item p {
	font-size: 24px;
	color: #18417C;
}

.index_banner .pagination {
	position: absolute;
	width: 100%;
	bottom: 25px;
	left: 0;
	z-index: 9;
}


.index_bg_one {
	background-image: url(../images/bg1.jpg);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

.index_service {
	padding: 70px 0;

}

.index_tit {
	text-align: center;
}

.index_tit h4 {
	font-size: 30px;
	color: #116CA4;
}

.index_tit img {
	max-width: 100%;
	vertical-align: middle;
	margin-top: 10px;
}

.index_tit p {
	font-size: 14px;
	color: #989898;
	margin-top: 10px;
}

.index_service_list {
	margin-left: -8px;
	margin-top: 30px;
}

.index_service_list .item {
	width: 25%;
	padding-left: 8px;
	float: left;
}

.index_service_list .item .con {
	padding-top: 40px;
	background-size: cover;
	background-image: none !important;
}

.index_service_list .item .pic {
	aspect-ratio: 37 / 58;
	position: relative;
	overflow: hidden;
}

.index_service_list .item .pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
}

.index_service_list .item p {
	position: absolute;
	width: 100%;
	padding: 27px 0;
	left: 0;
	top: 100%;
	text-align: center;
	font-size: 18px;
	color: #fff;
	transform: translateY(-100%);
	transition:
		top 0.5s cubic-bezier(.25, .46, .45, .94),
		transform 0.5s cubic-bezier(.25, .46, .45, .94);
}

.index_service_list .item:hover p {
	top: 50%;
	transform: translateY(-50%);
	font-size: 28px;
}

.index_service_list .item:hover .con {
	background-image: var(--bg) !important;
	background-color: rgba(0, 0, 0, 0.65);
	background-blend-mode: overlay;
	/* 关键 */
}

.index_service_list .item:hover .pic img {
	transform: scale(1.08);
	opacity: 0;
	top: -40px;
}

.index_about {
	padding: 70px 0;
	/* background-image: url(../images/ia4.png); */
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center bottom;
	background-color: #fff;
}

.index_about .con {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(42, 106, 165, 1);
	background-image: url(../images/ia2.png);
	padding: 223px 95px;
	background-size: 100% auto;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.index_about .con .icon {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 0;
}

.index_about .con .icon img {
	width: 94px;
}


.index_about .con .txt {
	flex: 1;
	padding-right: 110px;
}

.index_about .con .txt h4 {
	font-size: 28px;
	color: #fff;
	margin-bottom: 100px;
}

.index_about .con .txt em {
	margin: 0 8px;
}

.index_about .con .txt span {
	font-size: 20px;
}

.index_about .con .txt p {
	font-size: 16px;
	color: #fff;
	line-height: 1.8;
	margin-top: 20px;
}

.index_about .con .num {
	width: 350px;
}

.index_about .con .num .item {
	margin-bottom: 50px;
}

.index_about .con .num .item .tit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #fff;
}

.index_about .con .num .item .tit span {
	font-size: 36px;
	color: #fff;
}

.index_about .con .num .item .tit i {
	font-weight: bold;
	font-style: normal;
}

.index_about .con .num .item .tit em {
	font-size: 18px;
}

.index_about .con .num .item .tit img {
	width: 36px;
	vertical-align: middle;
}

.index_about .con .num .item p {
	font-size: 16px;
	color: #fff;
	margin-top: 15px;
}

.index_park {
	padding-top: 210px;
	padding-bottom: 55px;
	background-color: #EFF1F4;
	background-image: url(../images/bg3.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
}

.index_tit2 p {
	color: #116CA4;
}

.index_tit2 span {
	display: block;
	margin-top: 40px;
	font-size: 16px;
	color: #484848;
}

.park_list_index {
	overflow: hidden;
	margin-top: 60px;
	position: relative;
	padding-left: 23px;
	padding-bottom: 60px;
}

.park_list_index .pic {
	aspect-ratio: 355 / 270;
	overflow: hidden;
	position: relative;
}


.park_list_index .pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
}

.park_list_index .swiper-slide:hover .pic img {
	transform: scale(1.1);
}

.park_list_index .con {
	background-color: #fff;
	position: relative;
}

.park_list_index .swiper-slide {
	cursor: pointer;
}

.park_list_index .con .text {
	width: 100%;position: relative;
	padding: 20px 22px;
	padding-left: 43px;
}

.park_list_index .con .text::after {
	content: "";
	width: 6px;
	height:20px;
	position: absolute;
	left: 22px;
	background-color: #116CA4;
	top: 22px;
}

.park_list_index .con .text h4 {
	font-size: 16px;
	color: #333;
	font-weight: normal;
	color: #116CA4;
}

.park_list_index .con .text p {
	font-size: 13px;
	color: #666;
	margin-top: 3px;
}

.park_list_index .swiper-slide:hover .con .text h4 {
	color: #116CA4;
}

.park_list_index .swiper-pagination {
	bottom: 0px !important;
}

.park_list_index .swiper-pagination-bullet {
	background-color: #ddd;
	opacity: 1;
}

.park_list_index .swiper-pagination-bullet-active {
	background-color: #AFAFAF;
	opacity: 1;
}


.index_news {
	padding: 75px 0;
	background-image: url(../images/ia4.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center bottom;
}

.index_news .news_list {
	overflow: hidden;
	margin-left: -30px;
	margin-top: 55px;
}

.index_news .news_list .list_item {
	width: 33.333%;
	float: left;
	padding-left: 30px;
}

.index_news .news_list .one_con {}

.index_news .news_list .one_con .pic {
	aspect-ratio: 48 / 58;
	overflow: hidden;
	position: relative;
}



.index_news .news_list .one_con .pic>img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
}

.index_news .news_list .one_con:hover .pic>img {
	transform: scale(1.1);
}

.index_news .news_list .one_con .txt {
	position: absolute;
	z-index: 3;
	padding: 0 40px;
	top: 135px;
	left: 0;
	width: 100%;
}

.index_news .news_list .one_con .txt h4 {
	font-size: 24px;
	color: #1D4C79;
	font-weight: normal;
}

.index_news .news_list .one_con .txt .time {
	margin-top: 30px;
}

.index_news .news_list .one_con .txt .time img {
	width: 20px;
	vertical-align: middle;
}

.index_news .news_list .one_con .txt .time span {
	font-size: 18px;
	color: #1D4C79;
	vertical-align: middle;
	margin-left: 8px;
}

.index_news .news_list .two_con {}

.index_news .news_list .two_con .pic {
	aspect-ratio: 480 / 342;
	overflow: hidden;
	position: relative;
}

.index_news .news_list .two_con .pic>img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
}

.index_news .news_list .two_con:hover .pic>img {
	transform: scale(1.1);
}

.index_news .news_list .two_con .txt {
	padding: 37px 40px;
}

.index_news .news_list .two_con .txt em {
	font-size: 16px;
	color: #898989;
	display: block;
}

.index_news .news_list .two_con .txt h4 {
	font-size: 24px;
	color: #444;
	font-weight: normal;
	line-height: 1.2;
	margin-top: 20px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.index_news .news_list .two_con .txt .time {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 40px;
}

.index_news .news_list .two_con .txt .time .m {
	font-size: 20px;
	color: #444;
}

.index_news .news_list .two_con .txt .time .t {
	margin-top: 5px;
}

.index_news .news_list .two_con .txt .time img {
	width: 20px;
	vertical-align: middle;
}

.index_news .news_list .two_con .txt .time span {
	font-size: 20px;
	color: #A5A5A5;
	vertical-align: middle;
	margin-left: 8px;
}

.index_news .news_list .two_con:hover .txt h4 {
	color: #1D4C79;
}

.index_news .three_con {}

.index_news .three_con .item {
	border-bottom: 1px solid #DCDCDC;
	padding: 37px 0;
}

.index_news .three_con .item .con {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.index_news .three_con .item .pic {
	width: 203px;
	position: relative;
	overflow: hidden;
	aspect-ratio: 203 / 152;
}

.index_news .three_con .item .pic>img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
}

.index_news .three_con .item:hover .pic>img {
	transform: scale(1.1);
}

.index_news .three_con .item .txt {
	flex: 1;
	padding-left: 24px;
}

.index_news .three_con .item:first-child {
	padding-top: 0;
}

.index_news .three_con .item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.index_news .three_con .item .txt span {
	font-size: 16px;
	color: #898989;
}

.index_news .three_con .item .txt h4 {
	font-size: 18px;
	color: #444;
	display: -webkit-box;
	font-weight: normal;
	margin-top: 8px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.index_news .three_con .item .txt .m {
	font-size: 20px;
	color: #444;
	margin-top: 25px;
}

.index_news .three_con .item:hover .txt h4 {
	color: #116CA4;
}

.index_news .three_con .item:hover .txt .m {
	color: #116CA4;
}







/* 底部 */

#web_food {
	background-color: #ECEEF0;
	padding-top: 88px;
}

#web_food .con {
	display: flex;
	justify-content: space-between;
	padding-bottom: 75px;
}

#web_food .con dt a {
	font-size: 16px;
	color: #444;
	font-weight: bold;
}

#web_food .con dt {
	margin-bottom: 26px;
}

#web_food .con dd {
	line-height: 2;
}

#web_food .con dd a {
	font-size: 16px;
	color: #444;
}

#web_food .con dt a:hover {
	color: #116CA4;
}

#web_food .con dd a:hover {
	color: #116CA4;
}

#web_food .con .link {
	display: flex;
	justify-content: space-between;
}

#web_food .con .link .left {
	width: 300px;
	padding-left: 50px;
}

#web_food .con .link .left img {
	width: 18px;
	vertical-align: middle;
}

#web_food .con .link .left .tel span {
	font-size: 28px;
	color: #444;
	vertical-align: middle;
	font-weight: bold;
	margin-left: 5px;
}

#web_food .con .link .left .tel img {
	width: 24px;
}

#web_food .con .link .left p {
	font-size: 16px;
	color: #444;
	line-height: 1.8;
}

#web_food .con .link .left .item {
	margin-top: 12px;
}

#web_food .con .link .left .item span {
	font-size: 16px;
	color: #444;
	vertical-align: middle;
	margin-left: 5px;
}

#web_food .con .link .code {
	padding-left: 40px;
}

#web_food .con .link .code img {
	width: 126px;
}

#web_food .copy {
	text-align: center;
	font-size: 16px;
	color: #444;
	padding: 28px 0;
	border-top: 1px solid rgba(168, 168, 168, 0.3);
}









/* 关于我们 */
.nei_banner {
	position: relative;
	margin-top: 110px;
}

.nei_banner img {
	width: 100%;
	vertical-align: middle;
}

.nei_banner .txt {
	position: absolute;
	width: 1400px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.nei_banner .txt h4 {
	font-size: 32px;
	color: #fff;
}

.nei_banner .txt p {
	font-size: 20px;
	color: #fff;
	margin-top: 12px;
	opacity: 0.9;
}

.home_now_cur {
	border-bottom: 1px solid #ebebeb;
}

.home_now_cur .con {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 14px 0;
}

.home_now_cur .con .left {
	position: relative;
}

.home_now_cur .con .left .icon {
	position: absolute;
	left: 0;
	top: 45%;
	transform: translateY(-50%);
	display: none;
}

.home_now_cur .con .left .icon img {
	width: 18px;
	vertical-align: middle;
}

.home_now_cur .con .left navigator {
	display: inline-block;
	vertical-align: middle;
}

.home_now_cur .con .left span {
	font-size: 14px;
	vertical-align: middle;
	color: #999;
}

.home_now_cur .con .left navigator span:hover {
	color: #116CA4;
}

.home_now_cur .con .left em {
	font-size: 14px;
	color: #999;
	display: inline-block;
	vertical-align: middle;
	margin: 0 10px;
}

.home_now_cur .con .right {
	height: 36px;
}

.home_now_cur .con .right navigator {
	display: inline-block;
}

.home_now_cur .con .right span {
	display: inline-block;
	text-align: center;
	height: 36px;
	line-height: 36px;
	margin-left: 20px;
	border-radius: 50px;
	font-size: 14px;
	color: #999;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	padding: 0 30px;
}

.home_now_cur .con .right em {
	position: absolute;
	display: block;
	width: 0;
	left: 0;
	top: 0;
	height: 100%;
	z-index: -1;
	background-image: linear-gradient(to right, #4096d6, #4096d6);
	transition: all .3s;
}

.home_now_cur .con .right span.on,
.home_now_cur .con .right span:hover {
	color: #fff;
}

.home_now_cur .con .right span.on em,
.home_now_cur .con .right span:hover em {
	width: 100%;
	transition: all .3s;
}
















.about_us {
	padding: 60px 0;
}

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

.about_us .info .left {
	width: 50%;
}

.about_us .info .left h4 {
	font-size: 32px;
	color: #000;
	font-weight: normal;
}

.about_us .info .left p {
	font-size: 17px;
	color: #666;
	line-height: 1.8;
	margin-top: 20px;
}

.about_us .info .left p b {
	color: #333;
}


.location_map {
	border-radius: 20px;
	padding: 48px;
	color: #fff;
	min-height: 360px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	overflow: hidden;
	background-image: url(../images/1.jpg);
	background-size: cover;
}

.location_map_title {
	font-size: 1.4rem;
	font-weight: 800;
	margin-bottom: 8px;
}

.location_map_sub {
	font-size: .9rem;
	color: rgba(255, 255, 255, .6);
	margin-bottom: 32px;
	letter-spacing: .06em;
}

.location_item {
	position: relative;
	position: relative;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
	padding-left: 26px;
}

.location_item:last-child {
	border-bottom: none;
}

.location_dot {
	position: absolute;
	left: 0;
	top: 18px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #c49a3c;
	flex-shrink: 0;
	margin-top: 4px;
}

.location_item_text strong {
	color: #fff;
	font-size: .95rem;
	display: block;
	margin-bottom: 2px;
}

.location_item_text span {
	color: rgba(255, 255, 255, .6);
	font-size: .83rem;
}

.about_us .info .right {
	width: 45%;
}

.about_us .info .right img {
	width: 100%;
	vertical-align: middle;
	border-radius: 10px;
}

.about_us .num_list {
	margin-top: 50px;
}

.about_us .num_list img {
	vertical-align: middle;
	width: 100%;
	border-radius: 8px;
}


.about_us .num_list .number {
	padding: 34px 0;
	overflow: hidden;
	margin-top: -70px;
	background-color: #fff;
	width: 86%;
	position: relative;
	z-index: 9;
	margin-left: 7%;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.about_us .num_list .number .item {
	width: 33.33333%;
	float: left;
	text-align: center;
	cursor: pointer;
}

.about_us .num_list .number .item i {
	font-style: normal;
}

.about_us .num_list .number .item b {
	display: inline-block;
	font-size: 44px;
	color: #333;
	position: relative;
	font-weight: normal;
}

.about_us .num_list .number .item b em {
	font-size: 18px;
	color: #999;
	margin-left: 10px;
}

.about_us .num_list .number .item:hover b {
	color: #bb5a1e;
}

.about_us .num_list .number .item:hover b em {
	color: #bb5a1e;
}

.about_us .num_list .number .item span {
	display: block;
	font-size: 14px;
	color: #999;
	margin-top: 10px;
}

.about_us .num_list .number .item:hover span {
	color: #bb5a1e;
}

.about_us_bg {
	background: linear-gradient(to bottom, #fff, #f4f4f1);
}



.about_us .icon_tit {
	margin-top: 60px;
	text-align: center;
}

.about_us .icon_tit h4 {
	font-size: 30px;
	color: #116CA4;
}

.about_us .icon_tit img {
	max-width: 100%;
	vertical-align: middle;
	margin-top: 10px;
}

.about_us .icon_tit p {
	font-size: 16px;
	color: #989898;
	line-height: 1.8;
	margin-top: 12px;
}

.about_us .yuan_pic {
	text-align: center;
	margin-top: 40px;
}

.about_us .yuan_pic img {
	vertical-align: middle;
	max-width: 100%;
}




.about_us .cheng_list {
	margin-left: -30px;
	margin-top: 50px;
	overflow: hidden;
	padding-bottom: 10px;
}

.about_us .cheng_list .item {
	width: 25%;
	padding-left: 30px;
	float: left;
}

.about_us .cheng_list .item .con {
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	overflow: hidden;
}

.about_us .cheng_list .item .con .pic {
	aspect-ratio: 5 / 3;
	overflow: hidden;
	position: relative;
}

.about_us .cheng_list .item .con .pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
}

.about_us .cheng_list .item .con:hover .pic img {
	transform: scale(1.1);
}

.about_us .cheng_list .item .txt {
	padding: 16px 20px;
}

.about_us .cheng_list .item .txt h4 {
	font-size: 20px;
	color: #333;
}

.about_us .cheng_list .item .txt p {
	font-size: 16px;
	margin-top: 12px;
	color: #666;
}


/* 服务 */
.mt0 {
	margin-top: 0 !important;
}

.about_us .cheng_list2 .item {
	width: 33.3333%;
	margin-bottom: 30px;
}

.about_us .cheng_list2 .item .txt p {
	height: 48px;
}

.about_us .cheng_list3 .item .txt p {
	height: 48px;
}

.about_us .service_item {
	margin-top: 40px;
}

.about_us .service_item:first-child {
	margin-top: 20px;
}

.about_us .service_item .item_one {
	margin-top: 30px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.about_us .service_item .item_one .txt {
	width: 30%;
}

.about_us .service_item .item_one .txt h4 {
	font-size: 26px;
	color: #333;
	margin-top: 20px;
}

.about_us .service_item .item_one .txt h4:first-child {
	margin-top: 0;
}

.about_us .service_item .item_one .txt p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-top: 12px;
}

.about_us .service_item .item_one .pic {
	width: 65%;
}

.about_us .service_item .item_one .pic img {
	vertical-align: middle;
	width: 100%;
}

.service_two_page {
	padding: 60px 0;
}

.service_two_page .service_two_item {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}

.service_two_page .service_two_item:last-child {
	margin-bottom: 0;
}

.service_two_page .service_two_item .txt {
	width: 28%;
}

.service_two_page .service_two_item .txt h4 {
	font-size: 28px;
	color: #333;
}

.service_two_page .service_two_item .txt span {
	display: block;
	font-size: 18px;
	margin-top: 8px;
	color: #999;
}

.service_two_page .service_two_item .txt p {
	display: block;
	font-size: 18px;
	margin-top: 16px;
	color: #333;
	line-height: 1.8;
}

.service_two_page .service_two_item .pic {
	width: 68%;
}

.service_two_page .service_two_item .pic img {
	width: 100%;
	vertical-align: middle;
}



.operation_one {
	margin-top: 50px;
}

.operation_one .item {
	width: 33.3333%;
	float: left;
	padding-left: 20px;
}

.operation_one .item .con {
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
	overflow: hidden;
}

.operation_one .item .con .tit {
	height: 60px;
	font-weight: bold;
	line-height: 60px;
	text-align: center;
	font-size: 20px;
	color: #fff;
}

.operation_one .item .con .p {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 116.666px;
	background-color: #eaeff7;
	font-size: 18px;
	font-weight: bold;
}

.operation_one .item .con .p:nth-child(even) {
	background: #d2deef;
}

.operation_one .item .con .p2 {
	text-align: center;
	padding: 0px 20px;
	background-color: #eaeff7;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.operation_one .item .con .p2:nth-child(even) {
	background: #d2deef;
}

.operation_one .item .con .p2 b {
	font-size: 16px;
	color: #333;
}

.operation_one .item .con .p2 p {
	font-size: 12px;
	color: #666;
	margin-top: 2px;
}

.operation_two {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}

.operation_two h4 {
	font-size: 24px;
	color: #116CA4;
	padding-left: 10px;
	position: relative;
	margin-bottom: 35px;
}

.operation_two h4::after {
	content: "";
	width: 4px;
	height: 20px;
	background-color: #116CA4;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.operation_two .left {
	width: 38%;
}

.operation_two .left .pic {
	position: relative;
}

.operation_two .left .pic>img {
	width: 100%;
	vertical-align: middle;
}

.operation_two .left .pic .logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.operation_two .left .pic .logo img {
	width: 190px;
}

.operation_two .right {
	width: 54%;
}


.operation_two .service_row {
	display: flex;
	background: #fafafa;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s;
	border-left: 4px solid #116CA4;
	margin-bottom: 10px;
}

.operation_two .service_row:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.operation_two .row_label {
	width: 100px;
	background: #116CA4;
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	font-size: 18px;
	letter-spacing: 1px;
}

.operation_two .row_content {
	padding: 15px 20px;
	font-size: 16px;
	color: #333;
	flex: 1;
	line-height: 1.7;
}

.operation_three {
	margin-top: 50px;
}

.operation_three .grid {
	overflow: hidden;
	margin-left: -45px;
}

.operation_three .card {
	padding-left: 45px;
	width: 20%;
	float: left;
}

.operation_three .card .con {
	text-align: center;
	background-color: #5ab3f0;
	border-top-left-radius: 48%;
	border-top-right-radius: 48%;
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
	padding: 30px 20px;
}

.operation_three .card:nth-child(odd) .con {
	background-color: #235696;
}

.operation_three .card .pic {
	width: 50%;
	display: inline-block;
	border-radius: 50%;
	border: 3px solid #fff;
	aspect-ratio: 1 / 1;
	position: relative;
	overflow: hidden;
}

.operation_three .card .pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
	filter: grayscale(100%);
}

.operation_three .card h2 {
	font-size: 18px;
	margin-top: 22px;
	margin-bottom: 16px;
	color: #fff;
	padding-bottom: 8px;
}

.operation_three .card p {
	font-size: 14px;
	color: #fff;
	margin-top: 12px;
	height: 180px;
}





.operation_three .item {
	background-color: #fff;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	margin-bottom: 30px;
}

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

.operation_three .item .pic {
	width: 30%;
	text-align: center;
	padding: 20px 0;
}

.operation_three .item .pic img {
	width: 80%;
	vertical-align: middle;
}

.operation_three .item .text {
	flex: 1;
	padding-left: 100px;
}

.operation_three .item .text h4 {
	font-size: 28px;
	color: #333;
	margin-bottom: 12px;
}

.operation_three .item .text p {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
}

.operation_four {
	margin-top: 50px;
	text-align: center;
}

.operation_four img {
	width: 60%;
	vertical-align: middle;
}

.good_one {
	margin-top: 50px;
}

.good_one .grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 992px) {
	.good_one .grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.good_one .grid {
		grid-template-columns: 1fr;
	}
}

.good_one .card {
	border: 1px solid #e8e8e8;
	border-top: 4px solid #116CA4;
	border-radius: 6px;
	padding: 30px 24px;
	background: #fafafa;
	transition: all 0.25s ease;
}

.good_one .card:hover {
	box-shadow: 0 8px 25px rgba(166, 28, 60, 0.12);
	transform: translateY(-4px);
	border-color: #116CA4;
}

.good_one .card h3 {
	font-size: 18px;
	margin-bottom: 14px;
	color: #116CA4;
	font-weight: 600;
}

.good_one .card p {
	font-size: 14px;
	line-height: 1.9;
	color: #555;
	text-align: justify;
}


.good_two {
	margin-left: -30px;
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
}

.good_two .item {
	width: 50%;
	float: left;
	padding-left: 30px;
	margin-bottom: 30px;
	display: flex;
}

.good_two .item .con {
	background-color: #fff;
	padding-left: 260px;
	position: relative;
	flex: 1;
	display: flex;
}

.good_two .item .con .pic {
	position: absolute;
	width: 240px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	padding-left: 20px;
}

.good_two .item .con .pic img {
	width: 200px;
	vertical-align: middle;
}

.good_two .item .con .txt {
	flex: 1;
	padding: 20px;
	font-size: 14px;
	color: #333;
	line-height: 1.8;
	align-items: center;
	display: flex;
}


.good_three {
	margin-top: 50px;
	overflow: hidden;
}

.good_three .item {
	width: 16.6666%;
	float: left;
	padding: 12px 20px;
	border-right: 1px solid #f7f7f7;
	border-bottom: 1px solid #f7f7f7;
	border-left: 1px solid #f7f7f7;
	border-top: 1px solid #f7f7f7;
	cursor: pointer;
	position: relative;
}

.good_three .item .con {
	width: 100%;
	aspect-ratio: 210/123;
	position: relative;
	overflow: hidden;
}


.good_three .item .con img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: contain;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
	filter: grayscale(100%);
}

.good_three .item:hover .con img {
	filter: grayscale(0%);
	transition: filter 0.3s ease;
}

.good_three .item .line {
	position: absolute;
	left: 50%;
	width: 0;
	height: 2px;
	background-color: #116CA4;
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

.good_three .item .line.linet {
	top: 0;
}

.good_three .item .line.lineb {
	bottom: 0;
}

.good_three .item .lines {
	position: absolute;
	top: 50%;
	height: 0;
	width: 2px;
	background-color: #116CA4;
	transform: translateY(-50%);
	transition: height 0.3s ease;
}

.good_three .item .lines.linel {
	left: 0;
}

.good_three .item .lines.liner {
	right: 0;
}

.good_three .item:hover .line {
	width: 100%;
}

.good_three .item:hover .lines {
	height: 100%;
}


.web_park {
	padding: 60px 0;
}

.web_park .list {
	overflow: hidden;
	margin-left: -65px;
}

.web_park .list .item {
	width:33.33333%;
	float: left;
	margin-bottom: 40px;
	padding-left: 65px;
}

.web_park .list .item .con {
	background-color: #fff;
	position: relative;
}

.web_park .list .item .pic {
	aspect-ratio: 355 / 270;
	overflow: hidden;
	position: relative;
}


.web_park .list .item .pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
}

.web_park .list .item:hover .pic img {
	transform: scale(1.1);
}

.web_park .list .item .text {
	position: relative;
	left: 0;
	width: 100%;
	height: 90px;
	bottom: 0;
	padding: 20px 22px;
	padding-left: 43px;
}

.web_park .list .item .text::after {
	content: "";
	width: 6px;
	height: 20px;
	position: absolute;
	left: 22px;
	background-color: #116CA4;
	top: 20px;
}

.web_park .list .item .text h4 {
	font-size: 16px;
	color: #333;color: #116CA4;
	font-weight: bold;
}

.web_park .list .item .text p {
	font-size: 13px;
	color: #666;
	margin-top: 3px;
}

.bg_hui {
	background-color: #f5f5f5;
}

#page {
	text-align: center;
	margin-top: 26px;
	margin-bottom: 26px;
}

#page li {
	display: inline-block;
	height: 35px;
	padding: 0 14px;
	border: 1px solid #ddd;
	line-height: 34px;
	font-size: 14px;
	color: #333;
	border-radius: 3px;
	margin: 0 5px;
	cursor: pointer;
	background-color: #fff;
}

#page li a {
	color: #333;
}

#page li:hover,
#page li.active {
	border: 1px solid #116CA4;
	background-color: #116CA4;
	color: #fff;
}

#page li:hover a,
#page li.active a {
	color: #fff;
}

.park_info {
	padding: 60px 0;
}

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

.park_info .top .pic {
	width: 40%;
}

.park_info .top .pic img {
	width: 100%;
	vertical-align: middle;
}

.park_info .top .txt {
	flex: 1;
	padding-left: 75px;
}

.park_info .top .txt h4 {
	font-size: 32px;
	color: #000;
}

.park_info .top .txt p {
	font-size: 16px;
	color: #333;
	margin-top: 16px;
	line-height: 1.8;
}

.park_info .info {
	margin-top: 60px;
}

.park_info .info h4 {
	font-size: 32px;
	color: #000;
}

.park_info .html {
	margin-top: 40px;
}

.park_info .html img {
	width: 100%;
	vertical-align: middle;
}


.web_news {
	padding: 60px 0;
}

.web_news .hot_news {
	width: 100%;
	overflow: hidden;
	position: relative
}

.web_news .hot_news .item {
	padding-left: 570px;
	position: relative;
	cursor: pointer
}

.web_news .hot_news .item .left {
	position: absolute;
	left: 0;
	top: 0;
	overflow: hidden;
	height: 100%;
	width: 570px;
}


.web_news .hot_news .item .left img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
}

.web_news .hot_news .item:hover .left img {
	transform: scale(1.1);
}




.web_news .hot_news .item .right {
	padding: 30px 45px;
	border: 1px solid #dcdcdc;
}

.web_news .hot_news .item h4 {
	font-size: 22px;
	line-height: 1.5;
	color: #333;
	font-weight: 700;
	height: 66px;
	overflow: hidden;
}

.web_news .hot_news .item:hover h4 {
	color: #116CA4;
}

.web_news .hot_news .item p {
	font-size: 14px;
	color: #999;
	line-height: 1.8;
	height: 76px;
	overflow: hidden;
	margin-top: 16px;
}

.web_news .hot_news .item span {
	display: block;
	width: 122px;
	height: 34px;
	line-height: 34px;
	border-radius: 50px;
	border: 1px solid #116CA4;
	cursor: pointer;
	font-size: 14px;
	color: #116CA4;
	text-align: center;
	margin-top: 20px;
}

.web_news .hot_news .item:hover span {
	background-color: #116CA4;
	color: #fff;
}

.web_news .hot_news .time {
	margin-top: 25px
}

.web_news .hot_news .time img {
	width: 20px;
	vertical-align: -4px;
	margin-right: 8px
}

.web_news .hot_news .time em {
	margin-right: 22px;
	font-size: 14px;
	color: #333
}

.web_news .hot_news .swiper-pagination-bullet {
	width: auto;
	height: auto;
	background: none;
	margin: 0
}

.web_news .hot_news .swiper-pagination {
	position: absolute;
	bottom: 0;
	right: 0;
	text-align: right;
	padding-right: 50px;
	padding-bottom: 15px
}

.web_news .hot_news .swiper-pagination span {
	font-size: 18px;
	color: #116CA4;
	font-weight: 700;
	opacity: .3;
	margin-left: 20px !important;
	cursor: pointer;
	margin-right: 0 !important
}

.web_news .hot_news .swiper-pagination span.swiper-pagination-bullet-active {
	font-size: 22px;
	opacity: 1
}

.web_news .chose_type {
	margin-top: 50px;
	border-bottom: 1px solid #D2D2D2;
}

.web_news .chose_type a {
	height: 56px;
	display: inline-block;
	line-height: 56px;
	padding: 0 15px;
	margin-right: 50px;
	font-size: 22px;
	color: #333;
	position: relative;
}

.web_news .chose_type a.on {
	color: #116CA4;
}

.web_news .chose_type a:hover {
	color: #116CA4;
}

.web_news .chose_type a.on::after {
	content: "";
	width: 100%;
	height: 2px;
	background-color: #116CA4;
	position: absolute;
	left: 0;
	bottom: 0;
}




.web_news .list_con {
	margin-top: 15px
}

.web_news .list_con .item {
	border-bottom: 1px solid #dcdcdc;
	padding: 30px 0;
	padding-left: 340px;
	overflow: hidden;
	cursor: pointer
}

.web_news .list_con .item .pic {
	width: 340px;
	height: 190px;
	margin-left: -340px;
	float: left;
	border-radius: 8px;
	overflow: hidden;
	position: relative
}

.web_news .list_con .item .pic img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	transform-origin: center center;
}

.web_news .list_con .item:hover .pic img {
	transform: scale(1.1);
}


.web_news .list_con .item .text {
	padding-left: 50px;
	padding-top: 5px
}

.web_news .list_con .item h4 {
	font-size: 19px;
	line-height: 1.5;
	color: #333;
	height: 57px;
	overflow: hidden;
	font-weight: 700
}

.web_news .list_con .item:hover h4 {
	color: #116CA4
}

.web_news .list_con .item p {
	font-size: 14px;
	color: #999;
	line-height: 1.8;
	height: 50px;
	overflow: hidden;
	margin-top: 16px
}

.web_news .list_con .item .time {
	margin-top: 25px
}

.web_news .list_con .item .time img {
	width: 20px;
	vertical-align: -4px;
	margin-right: 8px
}

.web_news .list_con .item .time em {
	margin-right: 22px;
	font-size: 14px;
	color: #333
}

.web_news .lis_page {
	text-align: center;
	margin-top: 75px
}

.web_news .lis_page .el-pager li,
.web_news .lis_page .el-pagination button {
	height: 40px;
	line-height: 40px;
	width: 40px;
	text-align: center;
	padding: 0
}

.web_news #page {
	margin-top: 50px;
}


.news_info_page {
	padding-bottom: 60px;
}

.news_info_page .tit {
	padding-top: 60px;
	text-align: center;
}

.news_info_page .tit h4 {
	font-size: 26px;
	color: #2b2b2b;
}

.news_info_page .tit .doing {
	margin-top: 16px;
}

.news_info_page .tit .doing span {
	margin: 0 15px;
}

.news_info_page .tit .doing em {
	font-size: 14px;
	color: #5c5c5c;
	vertical-align: middle;
	margin-left: 5px;
}

.news_info_page .tit .doing span img {
	vertical-align: middle;
}



.news_info_page .tit .doing .share {
	display: inline-block;
	vertical-align: middle;
}

.news_info_page .tit .doing .share>img {
	margin-right: 16px !important;
	width: 18px !important;
}

.news_info_page .tit .doing .share .icon {
	display: inline-block;
	position: relative;
}

.news_info_page .tit .doing .share .wx_code {
	position: absolute;
	left: -43px;
	top: 0;
	width: 255px;
	line-height: 1.5;
	background-image: url(../images/code_bg.png);
	z-index: 99;
	background-size: 100% 100%;
	padding: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transform: translateY(-100%);
	display: none;
}


.news_info_page .tit .doing .share .icon:hover .wx_code {
	display: flex;
}

.news_info_page .tit .doing .share .wx_code .txt {
	margin-top: -5px;
}


.news_info_page .tit .doing .share img {
	width: 22px;
	vertical-align: middle;
	margin-right: 8px;
	cursor: pointer;
}

.news_info_page .tit .doing .share img.fen {
	width: 32px;
	margin: 0 5px;
}

.news_info_page .info_data {
	margin-top: 50px;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 40px;
}

.news_info_page .info_data p {
	font-size: 15px;
	color: #5c5c5c;
	line-height: 1.8;
	margin: 3px 0;
}

.news_info_page .info_data .pic {
	text-align: center;
	margin: 25px 0;
}

.news_info_page .info_data .pic img {
	max-width: 100%;
	vertical-align: middle;
}

.news_info_page .more {
	padding-top: 40px;
}

.news_info_page .more p a {
	font-size: 15px;
	color: #5c5c5c;
	line-height: 2.2;
}

.news_info_page .more p a:hover {
	color: #116CA4;
}

#copy-tip {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border: 1px solid #ddd;
	padding: 10px 20px;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	font-size: 14px;
	color: #000;
	text-align: center;
	z-index: 1000;
}

.web_contact_us {
	padding: 60px 0;
}

.web_contact_us .info {
	background-color: #f8f8f8;
	align-items: center;
	display: flex;
	justify-content: space-between;
	border-radius: 15px;
	overflow: hidden;
}

.web_contact_us .info .txt {
	width: 50%;
	padding: 50px;
}

.web_contact_us .info .txt h4 {
	font-size: 24px;
	color: #333;
}

.web_contact_us .info .txt p {
	font-size: 16px;
	color: #666;
	line-height: 1.8;
	margin-top: 12px;
}

.web_contact_us .info .icon {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.web_contact_us .info .icon .item {
	padding-left: 88px;
	position: relative;
}

.web_contact_us .info .icon .item .i {
	position: absolute;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	overflow: hidden;
	background-color: rgba(239, 239, 239, 0.9);
	display: flex;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	justify-content: center;
	align-items: center;
}

.web_contact_us .info .icon .item .i img {
	vertical-align: middle;
	width: 35px;
}

.web_contact_us .info .icon .item p {
	font-size: 16px;
	color: #999;
	margin-top: 0;
}

.web_contact_us .info .icon .item span {
	font-size: 18px;
	color: #333;
	margin-top: 6px;
	display: block;
}

.web_contact_us .info .code {
	text-align: center;
	margin-top: 60px;
}

.web_contact_us .info .code img {
	width: 130px;
	vertical-align: middle;
}

.web_contact_us .info .code span {
	display: block;
	font-size: 12px;
	color: #999;
	margin-top: 6px;
}

.web_contact_us .info .pic {
	width: 50%;
}

.web_contact_us .info .pic img {
	width: 100%;
	vertical-align: middle;
}

#dituContent {
	height: 400px;
}

.web_contact_us .map {
	margin-top: 50px;
}

.web_contact_us .join {
	margin-top: 50px;
	background-image: url(../images/c4.jpg);
	border-radius: 15px;
	overflow: hidden;
	text-align: center;
	padding: 100px 0;
}

.web_contact_us .join h4 {
	font-size: 24px;
	color: #fff;
}

.web_contact_us .join p {
	font-size: 18px;
	color: #fff;
	margin-top: 8px;
	opacity: 0.8;
}

.web_contact_us .join span {
	display: block;
	font-size: 20px;
	color: #fff;
	font-weight: bold;
	margin-top: 30px;
}




.home_seach_banner {
	padding: 52px;
	margin-top: 110px;
	background-image: url(../images/se1.jpg);
	background-size: cover;
	background-position: top center;
}

.home_seach_banner .txt {
	width: 640px;
	margin-left: auto;
	margin-right: auto;
}

.home_seach_banner .txt h4 {
	font-size: 28px;
	color: #333;
	font-weight: normal;
	font-family: sycz;
	text-align: center;
}

.home_seach_banner .txt .fill {
	width: 100%;
	background-color: #fff;
	height: 50px;
	line-height: 50px;
	position: relative;
	width: 100%;
	padding-left: 50px;
	padding-right: 105px;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid #e6e6e6;
	margin-top: 25px;
}

.home_seach_banner .txt .fill input {
	width: 100%;
	height: 50px;
	font-size: 14px;
	outline: none;
	border: none;
}

.home_seach_banner .txt .fill .icon {
	position: absolute;
	width: 50px;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url(../images/i9.png);
	background-size: 20px auto;
	background-position: center;
	background-repeat: no-repeat;
}

.home_seach_banner .txt .fill span {
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	width: 105px;
	background-color: #1d1d1d;
	font-size: 14px;
	color: #fff;
	text-align: center;
	height: 100%;
	cursor: pointer;
}

.home_seach_banner .txt .fill span b {
	font-weight: normal;
	position: relative;
	z-index: 3;
}

.home_seach_banner .txt .fill span em {
	display: block;
	top: 0;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	background-color: #000;
	z-index: 2;
	transition: all .3s;
}

.home_seach_banner .txt .fill span:hover em {
	width: 100%;
	transition: all .3s;
}

.home_seach_banner .txt .hot {
	margin-top: 15px;
}

.home_seach_banner .txt .hot span {
	font-size: 14px;
	color: #666;
}

.home_seach_banner .txt .hot em {
	font-size: 14px;
	color: #666;
	margin-right: 15px;
	cursor: pointer;
}

.home_seach_banner .txt .hot em:hover {
	color: #116CA4;
}



.web_seach {
	padding: 60px 0;
}

.home_seach_type {
	height: 40px;
	line-height: 38px;
	border-bottom: 1px solid #e5eff5;
}

.home_seach_type span {
	padding: 0 6px;
	font-size: 14px;
	color: #666;
	cursor: pointer;
	display: inline-block;
	position: relative;
	margin-right: 20px;
}

.home_seach_type span em {
	display: block;
	position: absolute;
	left: 0;
	width: 0;
	bottom: -2px;
	height: 2px;
	background-color: #116CA4;
	transition: all .3s;
}

.home_seach_type span:hover em {
	width: 100%;
	transition: all .3s;
}

.home_seach_type span.on em {
	width: 100%;
}

.home_seach_type span.on {
	color: #116CA4;
}


.web_seach .web_news {
	padding-top: 0;
	padding-bottom: 0;
}

.web_seach .web_seach_list {
	display: none;
}




/* ===== 单块内容 ===== */
.operation_one .block {
	margin-bottom: 48px;
}

/* ===== 区块标题 ===== */
.operation_one .block-tit {
	padding: 16px 24px;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
	border-radius: 8px 8px 0 0;
	display: inline-block;
}

/* ===== 小卡片容器 ===== */
.operation_one .card-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 16px;
	margin-top: 16px;
}

/* ===== 小卡片 ===== */
.operation_one .method-item {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(0, 0, 0, .12);
	border-radius: 6px;
	padding: 16px;
	backdrop-filter: blur(6px);
	transition: all .3s ease;
}

.operation_one .method-item h4 {
	font-size: 18px;
	color: #333;
}

.operation_one .method-item:hover {
	transform: translateY(-4px);
	border-color: rgba(17, 108, 164, .6);
	box-shadow: 0 0 18px rgba(17, 108, 164, .35);
}

.operation_one .method-item b {
	display: block;
	font-size: 18px;
	color: #333;
	margin-bottom: 6px;
}

.operation_one .method-item p {
	margin: 0;
	font-size: 14px;
	color: rgba(0, 0, 0, .75);
	line-height: 1.6;
}

/* ===== 动画 ===== */
.operation_one .fadeInUp {
	opacity: 0;
	transform: translateY(20px);
}

.operation_one .wow.animated {
	opacity: 1;
	transform: translateY(0);
	transition: all .6s ease;
}





/* ===== 外层 ===== */
.operation_two {
	padding: 56px 48px;
	background: #ffffff;
	font-family: "Microsoft YaHei", Arial, sans-serif;
}

/* ===== 卡片容器 ===== */
.service_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

/* ===== 单卡片 ===== */
.service_card {
	background: #f8fbff;
	border: 1px solid #e6f0fa;
	border-radius: 10px;
	padding: 28px 20px;
	transition: all .35s ease;
}

.service_card:hover {
	transform: translateY(-6px);
	border-color: #116CA4;
	box-shadow: 0 12px 30px rgba(17, 108, 164, .25);
}

/* ===== 图标 ===== */
.service_icon {
	width: 52px;
	height: 52px;
	border-radius: 10px;
	background: linear-gradient(135deg, #116CA4, #0070c0);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	margin-bottom: 18px;
}
.service_icon img{width: 22px;vertical-align: middle;}
/* ===== 标题 ===== */
.service_title {
	font-size: 16px;
	font-weight: bold;
	color: #222;
	margin-bottom: 10px;
}

/* ===== 描述 ===== */
.service_desc {
	font-size: 13px;
	color: #666;
	line-height: 1.8;
}

/* ===== 动画 ===== */
.fadeInUp {
	opacity: 0;
	transform: translateY(20px);
}

.wow.animated {
	opacity: 1;
	transform: translateY(0);
	transition: all .6s ease;
}

/* ===== 响应式 ===== */
@media (max-width: 1200px) {
	.service_list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.service_list {
		grid-template-columns: 1fr;
	}
}



/* ── 外层容器 ── */
.cheng_list3 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	margin-top: 35px;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(17, 108, 164, 0.18);
}

/* ── 单项 ── */
.cheng_list3 .item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	cursor: pointer;
}

/* ── 背景图层（SVG 占位插画） ── */
.cheng_list3 .item .bg_img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(.25, .46, .45, .94);
}

/* ── 渐变遮罩 ── */
.cheng_list3 .item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom,
			rgba(17, 108, 164, 0.05) 0%,
			rgba(17, 108, 164, 0.55) 55%,
			rgba(8, 55, 88, 0.90) 100%);
	transition: background 0.5s ease;
}

/* ── 内容 ── */
.cheng_list3 .item .con {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px 24px;
	transition: padding 0.4s ease;
}

/* ── 序号角标 ── */
.cheng_list3 .item .num {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 3;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	color: rgba(255, 255, 255, 0.55);
	font-family: 'Courier New', monospace;
}

/* ── 图标圆圈 ── */
.cheng_list3 .item .icon_wrap {
	width: 52px;
	height: 52px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(4px);
	transition: background 0.4s, border-color 0.4s, transform 0.4s;
}

.cheng_list3 .item .icon_wrap svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: #fff;
	stroke-width: 1.6;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ── 标题 ── */
.cheng_list3 .item h4 {
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 4px;
	margin-bottom: 8px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ── 分割线 ── */
.cheng_list3 .item .divider {
	width: 32px;
	height: 2px;
	background: #fff;
	opacity: 0.6;
	margin-bottom: 10px;
	transition: width 0.4s ease, opacity 0.4s;
}

/* ── 描述 ── */
.cheng_list3 .item p {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.82);
	letter-spacing: 1.5px;
	line-height: 1.6;
	transform: translateY(6px);
	opacity: 0.85;
	transition: transform 0.4s ease, opacity 0.4s;
}

/* ── Hover 效果 ── */
.cheng_list3 .item:hover .bg_img {
	transform: scale(1.08);
}

.cheng_list3 .item:hover::after {
	background: linear-gradient(to bottom,
			rgba(17, 108, 164, 0.12) 0%,
			rgba(17, 108, 164, 0.70) 55%,
			rgba(8, 55, 88, 0.95) 100%);
}

.cheng_list3 .item:hover .icon_wrap {
	background: rgba(17, 108, 164, 0.5);
	border-color: #fff;
	transform: scale(1.1) rotate(5deg);
}

.cheng_list3 .item:hover .divider {
	width: 52px;
	opacity: 1;
}

.cheng_list3 .item:hover p {
	transform: translateY(0);
	opacity: 1;
}

/* ── 左右边框（分隔线） ── */
.cheng_list3 .item:not(:last-child) .con::before {
	content: '';
	position: absolute;
	top: 15%;
	right: 0;
	width: 1px;
	height: 70%;
	background: rgba(255, 255, 255, 0.15);
	z-index: 4;
}



/* ── 响应式 ── */
@media (max-width: 900px) {
	.cheng_list3 {
		grid-template-columns: repeat(2, 1fr);
		border-radius: 16px;
	}

	.cheng_list3 .item:nth-child(2) .con::before,
	.cheng_list3 .item:nth-child(4) .con::before {
		display: none;
	}
}

@media (max-width: 520px) {
	.cheng_list3 {
		grid-template-columns: 1fr;
	}

	.cheng_list3 .item {
		aspect-ratio: 16/9;
	}

	.cheng_list3 .item .con::before {
		display: none !important;
	}
}

/* ══════════════════════════════════
       区块
    ══════════════════════════════════ */
.czl_section {
	position: relative;
	background: linear-gradient(155deg, #03111f 0%, #061e35 45%, #0b2f50 100%);
	padding: 64px 20px 80px;
	overflow: hidden;
}

/* 背景网格 */
.czl_section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(17, 108, 164, 0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(17, 108, 164, 0.07) 1px, transparent 1px);
	background-size: 48px 48px;
	pointer-events: none;
}

/* 角落光晕 */
.czl_section::after {
	content: '';
	position: absolute;
	bottom: -120px;
	right: -120px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(17, 108, 164, 0.12) 0%, transparent 70%);
	pointer-events: none;
}

/* ══════════════════════════════════
       标题区
    ══════════════════════════════════ */
.czl_head {
	position: relative;
	z-index: 2;
	text-align: center;
	margin-bottom: 8px;
}

.czl_head h2 {
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 5px;
}

.czl_head h2 em {
	font-style: normal;
	color: #5bcbff;
}

.czl_head p {
	margin-top: 10px;
	font-size: 13px;
	color: rgba(255, 255, 255, 0.45);
	letter-spacing: 2px;
}

.czl_head_line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 14px;
}

.czl_head_line span {
	display: block;
	height: 1px;
	width: 60px;
	background: linear-gradient(90deg, transparent, rgba(17, 108, 164, 0.5));
}

.czl_head_line span:last-child {
	transform: scaleX(-1);
}

.czl_head_line i {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #116CA4;
	box-shadow: 0 0 8px #116CA4;
}

/* ══════════════════════════════════
       环形图容器
    ══════════════════════════════════ */
.czl_diagram {
	position: relative;
	width: 900px;
	height: 780px;
	margin: 0 auto;
	background-image: url(../images/svg.png);
	background-position: center;
	background-repeat: no-repeat;
}

.czl_svg_layer {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

/* ══════════════════════════════════
       中心圆
    ══════════════════════════════════ */
.czl_center {
	position: absolute;
	left: 450px;
	top: 390px;
	transform: translate(-50%, -50%);
	width: 148px;
	height: 148px;
	border-radius: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
}

.czl_center_bg {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: radial-gradient(135deg at 35% 35%, #1e8fd4 0%, #0e5e91 50%, #07385a 100%);
	box-shadow:
		0 0 0 6px rgba(17, 108, 164, 0.18),
		0 0 0 14px rgba(17, 108, 164, 0.09),
		0 0 50px rgba(17, 108, 164, 0.45);
}

/* 双层脉冲环 */
.czl_center_p {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(91, 203, 255, 0.25);
	animation: czl_pulse 3s ease-out infinite;
}

.czl_center_p1 {
	inset: -18px;
}

.czl_center_p2 {
	inset: -34px;
	animation-delay: 1.5s;
}

@keyframes czl_pulse {
	0% {
		transform: scale(0.85);
		opacity: 0.8;
	}

	100% {
		transform: scale(1.25);
		opacity: 0;
	}
}

.czl_center_txt {
	position: relative;
	z-index: 1;
	text-align: center;
	color: #fff;
	line-height: 1.5;
}
.czl_center_txt img{width: 148px;height: 148px;
	border-radius: 50%;
}
.czl_center_txt b {
	display: block;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 3px;
}

.czl_center_txt s {
	display: block;
	text-decoration: none;
	font-size: 10.5px;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 4px;
}

/* ══════════════════════════════════
       节点卡片
    ══════════════════════════════════ */
.czl_node {
	position: absolute;
	width: 162px;
	z-index: 5;
}

.czl_node_inner {
	background: rgba(10, 35, 58, 0.72);
	border: 1px solid rgba(17, 108, 164, 0.32);
	border-radius: 14px;
	padding: 18px 14px 16px;
	backdrop-filter: blur(12px);
	position: relative;
	overflow: hidden;
	transition: background .35s, border-color .35s, transform .35s, box-shadow .35s;
	cursor: default;
}

/* 顶部高光条 */
.czl_node_inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, #116CA4 40%, #5bcbff 60%, transparent);
	opacity: 0;
	transition: opacity .35s;
}

/* 左侧指示线 */
.czl_node_inner::after {
	content: '';
	position: absolute;
	left: 0;
	top: 18%;
	bottom: 18%;
	width: 2px;
	border-radius: 2px;
	background: linear-gradient(to bottom, transparent, #116CA4, transparent);
	opacity: 0.5;
}

.czl_node_inner:hover {
	background: rgba(17, 108, 164, 0.2);
	border-color: rgba(91, 203, 255, 0.55);
	transform: scale(1.05);
	box-shadow: 0 10px 36px rgba(17, 108, 164, 0.4);
}

.czl_node_inner:hover::before {
	opacity: 1;
}

/* 序号 */
.czl_node_num {
	width: 26px;
	height: 26px;
	border-radius: 6px;
	background: rgba(17, 108, 164, 0.35);
	border: 1px solid rgba(17, 108, 164, 0.6);
	color: #5bcbff;
	font-size: 10.5px;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	font-family: 'Courier New', monospace;
	letter-spacing: 0;
}

.czl_node_inner h3 {
	font-size: 15px;
	font-weight: 700;
	color: #e8f6ff;
	letter-spacing: 2.5px;
	margin-bottom: 8px;
}

.czl_node_inner p {
	font-size: 11.5px;
	line-height: 1.75;
	color: rgba(200, 225, 245, 0.6);
	letter-spacing: 0.4px;
}

.czl_n0 {
	left: 369px;
	top: 25px;
}

/* center=(450,100) */
.czl_n1 {
	left: 620px;
	top: 170px;
}

/* center=(701,245) */
.czl_n2 {
	left: 620px;
	top: 460px;
}

/* center=(701,535) */
.czl_n3 {
	left: 369px;
	top: 605px;
}

/* center=(450,680) */
.czl_n4 {
	left: 118px;
	top: 460px;
}

/* center=(199,535) */
.czl_n5 {
	left: 118px;
	top: 170px;
}

/* center=(199,245) */

/* ══════════════════════════════════
       入场动画
    ══════════════════════════════════ */
@keyframes czl_in {
	from {
		opacity: 0;
		transform: translateY(16px) scale(0.9);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.czl_n0 {
	animation: czl_in .55s .10s both;
}

.czl_n1 {
	animation: czl_in .55s .22s both;
}

.czl_n2 {
	animation: czl_in .55s .34s both;
}

.czl_n3 {
	animation: czl_in .55s .46s both;
}

.czl_n4 {
	animation: czl_in .55s .58s both;
}

.czl_n5 {
	animation: czl_in .55s .70s both;
}

/* 环旋转动画 */
.czl_rotate_cw {
	transform-origin: 450px 390px;
	animation: czl_cw 30s linear infinite;
}

.czl_rotate_ccw {
	transform-origin: 450px 390px;
	animation: czl_ccw 22s linear infinite;
}

@keyframes czl_cw {
	to {
		transform: rotate(360deg);
	}
}

@keyframes czl_ccw {
	to {
		transform: rotate(-360deg);
	}
}

/* ══════════════════════════════════
       移动端降级
    ══════════════════════════════════ */
.czl_mobile {
	display: none;
	padding: 0 20px;
}

.czl_m_card {
	background: rgba(10, 35, 58, 0.75);
	border: 1px solid rgba(17, 108, 164, 0.32);
	border-radius: 12px;
	padding: 18px 16px;
	margin-bottom: 14px;
}

.czl_m_card h3 {
	font-size: 15px;
	font-weight: 700;
	color: #e8f6ff;
	letter-spacing: 2px;
	margin-bottom: 8px;
}

.czl_m_card p {
	font-size: 13px;
	line-height: 1.75;
	color: rgba(200, 225, 245, 0.65);
}

@media (max-width: 960px) {
	.czl_diagram {
		width: 100%;
		height: 0;
		padding-bottom: 86.7%;
	}

	.czl_svg_layer {
		width: 100%;
		height: 100%;
	}

	.czl_node,
	.czl_center {
		transform: none;
		zoom: calc(var(--vw, 100vw) / 900);
	}
}

@media (max-width: 640px) {
	.czl_diagram {
		display: none;
	}

	.czl_mobile {
		display: block;
	}
}


svg {
  overflow: visible;
}

/* ================= 整体居中 ================= */
.biz-layout-center {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  box-sizing: border-box;
}

/* ================= 横向三栏 ================= */
.biz-row {
  width: 100%;
  max-width: 1400px;
  display: flex;
  gap: 24px;
  padding: 0 120px;
}

/* ================= 单列 ================= */
.biz-col {
  flex: 1;
  display: flex;
}

/* .biz-col--left  { max-width: 320px; } */
/* .biz-col--center { flex: 1.2; } */
/* .biz-col--right { max-width: 340px; } */

/* ================= 模块块 ================= */
.biz-block {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

/* ================= 标题 ================= */
.biz-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 16px;
  margin-left: auto;margin-right: auto;text-align: center;
  width: 40%;
}

/* ================= 卡片列表 ================= */
.biz-card-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ================= 基础卡片 ================= */
.biz-card {
  background: #f8f9fb;
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 14px;
  transition: all .25s ease;text-align: center;
}

.biz-card:hover {
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

/* 带描述的卡片 */
.biz-card--desc b {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.biz-card--desc p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;display: none;
}

/* ================= 响应式 ================= */
@media (max-width: 1024px) {
  .biz-row {
    flex-direction: column;
  }
  .biz-col {
    max-width: none;
  }
}

.about_us2{padding-top: 0;}
.about_us_three{background: linear-gradient(155deg, #03111f 0%, #061e35 45%, #0b2f50 100%);
	padding: 50px 0;
}
.about_us .about_us_three .icon_tit h4{color: #fff;}
.about_us .about_us_three .icon_tit p{color: #fff;}

.about_us_four{padding-top: 50px;}









