﻿@charset "utf-8";

* {
	outline: 0;
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
	font-family: "HarmonyLight";
	src: url(../Fonts/HarmonyOS_Sans_SC_Light.ttf);
}

@font-face {
	font-family: "HarmonyRegular";
	src: url(../Fonts/HarmonyOS_Sans_SC_Regular.ttf);
}

@font-face {
	font-family: "HarmonyMedium";
	src: url(../Fonts/HarmonyOS_Sans_SC_Medium.ttf);
}

@font-face {
	font-family: "HarmonyBold";
	src: url(../Fonts/HarmonyOS_Sans_SC_Bold.ttf);
}

@font-face {
	font-family: "Montserrat";
	src: url(../Fonts/Montserrat-Regular.ttf);
}

.overscroll::-webkit-scrollbar,
.selects::-webkit-scrollbar {
	width: 4px;
	height: 1px;
}

.overscroll::-webkit-scrollbar-thumb {
	border-radius: 4px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
	background: #264f8c;
}

.overscroll::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	background: #f2f2f2;
}

.ovf {
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.clearfix {
	zoom: 0;
}

.relative {
	position: relative;
}

.clearfix:after {
	content: '';
	display: block;
	height: 0;
	clear: both;
}

a,
a:link,
a:visited {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: #3181db;
}

ul,
li,
ol {
	list-style-type: none;
}

img {
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
	outline: none;
	border: none;
}

.nobg {
	background: none !important;
}

.dis_mb {
	display: none;
}

@media(max-width:768px) {
	.dis_pc {
		display: none;
	}

	.dis_mb {
		display: block;
	}
}

html {
	font-size: 100px;
}

body {
	width: 100%;
	overflow-x: hidden;
	font-size: 0.18rem;
	font-family: "HarmonyRegular";
	background: #fff;
	color: #333;
}

.flex {
	display: -webkit-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-items: center;
}

.auto {
	max-width: 1400px;
	margin: auto;
}

@media(max-width:1400px) {
	.auto {
		padding-left: 2%;
		padding-right: 2%;
	}
}

.auto1280 {
	max-width: 1280px;
	margin: auto;
}

@media(max-width:1280px) {
	.auto1280 {
		padding-left: 2%;
		padding-right: 2%;
	}
}

.videoMask {
	position: fixed;
	z-index: 999;
	background: rgba(0, 0, 0, 0.6);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
}

.videoMask .videoBox {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 760px;
	max-width: 94%;
}

.videoMask .videoBox video {
	width: 70%;
}

.videoMask .videoBox .close {
	position: absolute;
	right: 0;
	top: 0;
	padding: 10px;
	z-index: 10;
	cursor: pointer;
}

.videoMask .videoBox .close:before,
.videoMask .videoBox .close:after {
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	border-bottom: 1px solid #2e78cc;
}

.videoMask .videoBox .close:before {
	transform: rotate(45deg);
}

.videoMask .videoBox .close:after {
	transform: rotate(-45deg);
}

.top .auto {
	justify-content: space-between;
	align-items: center;
	padding-top: 15px;
	padding-bottom: 15px;
}

.top .logo {
	flex: 0 0 auto;
	max-width: 80%;
}

.codes .i {
	font-size: 12px;
	color: #000;
	text-align: center;
	margin-left: 20px;
}

.codes .i .img {
	transition: .3s;
	background: #fff;
	margin-bottom: 5px;
}

.codes .i .img img {
	max-width: 107px;
	max-height: 107px;
}

.codes .i:hover .img {
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.17);
	transform: scale(1.1);
}

.openMenu {
	width: 30px;
	height: 30px;
	position: relative;
	margin-left: 20px;
	cursor: pointer;
	display: none;
}

.openMenu i {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 2px;
	background: #000;
}

.openMenu i:after,
.openMenu i:before {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	transition: .3s;
}

.openMenu i:before {
	top: -8px;
}

.openMenu i:after {
	top: 8px;
}

.showMenu .openMenu i {
	background: none;
}

.showMenu .openMenu i:before,
.showMenu .openMenu i:after {
	top: 0;
}

.showMenu .openMenu i:before {
	transform: rotate(45deg);
}

.showMenu .openMenu i:after {
	transform: rotate(-45deg);
}

.nav {
	background: #fff;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.nav li {
	flex: 0 0 auto;
	width: 8.33%;
}

.nav li a {
	display: block;
	position: relative;
	line-height: 1;
	text-align: center;
}

.nav li a span {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	line-height: 60px;
}

.nav li a span:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translate(-50%);
	height: 2px;
	background: #3181db;
	width: 0;
	transition: .3s;
}

.nav li.cur a,
.nav li:hover a {
	color: #3181db;
}

.nav li.cur a span:after,
.nav li:hover a span:after {
	width: 100%;
}

.nav li:not(:last-child) a:after {
	content: "";
	position: absolute;
	width: 3px;
	height: 3px;
	background: #d9d9d9;
	right: 0;
	top: 50%;
	margin-top: -1px;
}

.footer {
	padding: 70px 0 40px;
	background: #f2f4f9;
	text-align: center;
	font-family: "HarmonyLight";
	color: #555;
	line-height: 1.875;
	margin-top: 50px;
}

.flogo {
	max-width: 60%;
	margin: 0 auto 40px;
}

.fnav {
	margin-bottom: 40px;
	line-height: 1;
	overflow: hidden;
	padding: 0 40px;
	color: #333;
}

.fnav a:not(:last-child) {
	border-right: 1px solid #e6e4e4;
}

.fnav a {
	width: 16.6%;
	float: left;
}

.flinks {
	color: #999;
}

.flinks a {
	padding: 0 10px;
	position: relative;
}

.flinks a:not(:last-child):after {
	content: "";
	position: absolute;
	right: -1px;
	top: 50%;
	width: 2px;
	height: 2px;
	background: #999;
	margin-top: -1px;
	border-radius: 50%;
}

.homeBan img {
	display: block;
	width: 100%;
}

.floor {
	margin-top: 50px;
	justify-content: space-between;
	align-items: stretch;
}

.w634 {
	width: 63.4%;
	flex: 0 0 auto;
}

.w325 {
	width: 32.5%;
	flex: 0 0 auto;
}

.w48 {
	width: 48.4%;
	flex: 0 0 auto;
}

.floorHead {
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eaeaea;
}

.floorHead .tab {
	flex: 1 1 auto;
}

.floorHead .tab span {
	display: inline-block;
	vertical-align: middle;
	line-height: 50px;
	margin-right: 55px;
	position: relative;
	cursor: pointer;
	font-size: 20px;
	color: #999;
}

.floorHead .tab span.cur:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	background: #2e78cc;
	width: 100%;
}

.floorHead .tab span.cur {
	color: #2e78cc;
}

.flex .tab {
	display: flex;
	position: relative;
}

.flex .tab .kauis .more {
	position: absolute;
	right: 0;
	top: 15px;
	margin: auto;
	height: auto;
	display: none;
}

.more a {
	display: block;
	width: 70px;
	line-height: 30px;
	background: #f0f0f0;
	font-size: 0.16rem;
	color: #999;
	text-align: center;
	border-radius: 15px;
	transition: .3s;
}

.more a:hover {
	color: #fff;
	background: #2e78cc;
}

.list1 .litop {
	margin-top: 30px;
	margin-bottom: 10px;
}

.list1 .litop .imgbox {
	width: 288px;
	flex: 0 0 auto;
}

.list1 .litop .imgbox img {
	height: 162px;
	width: 100%;
	object-fit: cover;
}

.list1 .litop .txt {
	flex: 1 1 auto;
	margin-left: 40px;
	border-bottom: 1px solid #eaeaea;
}

.list1 .litop a {
	align-items: stretch;
}

.list1 .litop .tit {
	font-size: 20px;
	line-height: 30px;
	margin-bottom: 20px;
	max-height: 60px;
	overflow: hidden;
}

.list1 .litop .p {
	font-size: 0.16rem;
	line-height: 0.3rem;
	color: #999;
	max-height: 0.6rem;
	overflow: hidden;
}

.list1 .litop .p .blue {
	color: #2e78cc;
}

.list1 .items {
	padding: 15px 0;
}

.list1 .item {
	position: relative;
	padding-left: 15px;
	padding-right: 70px;
}

.list1 .item:before {
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	background: #333;
	left: 0;
	top: 50%;
	margin-top: -2px;
}

.list1 .item a {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 30px;
	position: relative;
	max-width: 100%;
	line-height: 40px;
	vertical-align: middle;
}

.list1 .item span {
	position: absolute;
	right: 0;
	top: 0;
	color: #999;
	line-height: 40px;
}

.list1 .item .isnew,
.list1 .item .isnew {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 26px;
	height: 100%;
	background: url(../images/icon-new.png) no-repeat center;
}

.gg {
	border: 1px solid #eaeaea;
}

.gg .floorHead,
.gg .list2 .items {
	padding: 10px 28px;
}

.list2 .items {
	padding: 15px 0;
}

.list2 .item {
	position: relative;
	padding-left: 15px;
	padding-right: 70px;
}

.list2 .item:before {
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	background: #333;
	left: 0;
	top: 50%;
	margin-top: -2px;
}

.list2 .item a {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 30px;
	position: relative;
	max-width: 100%;
	line-height: 40px;
	vertical-align: middle;
}

.list2 .item span {
	position: absolute;
	right: 0;
	top: 0;
	color: #999;
	line-height: 40px;
}

.vid {
	border: 1px solid #eaeaea;
	padding: 15px 28px 20px;
	margin-top: 10px;
}

.blocktit {
	margin-bottom: 10px;
}

.blocktit span {
	font-size: 20px;
	color: #2e78cc;
}

.vid .bd {
	align-items: stretch;
}

.vid .itop {
	border-radius: 6px;
	overflow: hidden;
	width: 173px;
	flex: 0 0 auto;
}

.vid .itop img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.videobox {
	position: relative;
	z-index: 10;
}

.videobox .videoBtn {
	position: absolute;
	width: 24px;
	height: 24px;
	border: 1px solid #fff;
	z-index: 10;
	left: 50%;
	top: 50%;
	cursor: pointer;
	border-radius: 50%;
	margin-left: -12px;
	margin-top: -12px;
	font-size: 10px;
}

.videobox .videoBtn:after {
	content: "";
	position: absolute;
	border-bottom: 0.5em solid transparent;
	border-top: 0.5em solid transparent;
	border-left: 0.9em solid #fff;
	left: 50%;
	top: 50%;
	margin-top: -0.5em;
	margin-left: -0.4em;
}

.vid .item {
	position: relative;
	padding-left: 15px;
}

.vid .item:before {
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	background: #333;
	left: 0;
	top: 50%;
	margin-top: -2px;
}

.vid .item a {
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 40px;
}

.vid .items {
	padding-left: 10px;
	flex: 1 1 auto;
	overflow: hidden;
}

.gg .list2 {
	background: #f8f8f8;
}

.qlinks {
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: -2px;
}

.qlinks .item {
	width: 33.33%;
	margin-bottom: 2px;
	border-left: 2px solid #fff;
	height: 94px;
	background: #f2f4f9;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	color: #000;
}

.qlinks .item .icon {
	width: 54px;
	height: 54px;
	background: #dbe5f3;
	border-radius: 50%;
	line-height: 54px;
	text-align: center;
	position: relative;
	font-size: 0;
	margin-right: 10px;
	z-index: 10;
}

.qlinks .item .icon:after {
	content: "";
	position: absolute;
	left: 5px;
	right: 5px;
	top: 5px;
	bottom: 5px;
	z-index: -1;
	background: #5690d2;
	border-radius: 50%;
}

.qlink2 {
	min-height: 100%;
	align-items: stretch;
	justify-content: space-between;
}

.qlink2 .item {
	width: 49%;
	background: #f9fbfd;
	border-radius: 5px 5px 0 0;
	overflow: hidden;
}

.qlink2 .item .txt {
	background-position: -10px bottom;
	background-repeat: no-repeat;
	min-height: 187px;
	padding: 0 20px;
	text-align: center;
}

.qlink2 .item .icon {
	width: 95px;
	height: 95px;
	background: #f9fbfd;
	border-radius: 50%;
	text-align: center;
	line-height: 95px;
	font-size: 0;
	margin: 0 auto;
	position: relative;
	z-index: 10;
	margin-top: -47px;
}

.qlink2 .item .imgbox img {
	height: 187px;
	width: 100%;
	object-fit: cover;
}

.qlink2 .item .t {
	font-size: 0.2rem;
	color: #457ebf;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
	line-height: 1;
	margin-top: -5px;
	position: relative;
	z-index: 15;
}

.qlink2 .item .p {
	font-size: 0.16rem;
	color: #555;
	line-height: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
}

.mr {
	display: inline-block;
	vertical-align: middle;
	width: 19px;
	height: 19px;
	background: #5690d2;
	border-radius: 50%;
	text-align: center;
	line-height: 19px;
	font-size: 0;
	color: #fff;
}

.arr-r,
.arr-l {
	position: relative;
	font-size: 20px;
	line-height: 1;
	display: inline-block;
	vertical-align: middle;
	width: 1em;
	height: 1em;
}

.arr-r:after {
	content: "";
	width: 0.4em;
	height: 0.4em;
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -0.2em;
	margin-left: -0.3em;
	border-color: var(--color);
	box-sizing: border-box;
}

.arr-l:after {
	content: "";
	width: 0.4em;
	height: 0.4em;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	transform: rotate(-45deg);
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -0.2em;
	margin-left: -0.15em;
	border-color: var(--color);
	box-sizing: border-box;
}

.hides {
	display: none !important;
}

.slideBlock {
	flex: 0 0 auto;
	width: 31%;
}

.slideBlock .blocktit {
	margin-bottom: 25px;
}

.slideBlock .img {
	position: relative;
	border-radius: 6px 6px 0 0;
	overflow: hidden;
}

.slideBlock .img img {
	display: block;
	width: 100%;
}

.slideBlock .img .tb {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 10;
	width: 100%;
	padding: 0 20px;
}

.slideBlock .img .tb .swiper-slide {
	width: auto;
	padding: 0 10px;
	font-size: 18px;
	color: #fff;
	cursor: pointer;
}

.slideBlock .img .tb .swiper-slide span {
	display: block;
	padding: 12px 0;
	border-bottom: 3px solid transparent;
	line-height: 1;
}

.slideBlock .img .tb .swiper-slide-thumb-active span {
	border-color: #5690d2;
}

.slideBlock .items {
	padding: 10px 30px 30px;
	border: 1px solid #eaeaea;
	border-top: none;
}

.slideBlock .items .item {
	position: relative;
	font-size: 16px;
	border-bottom: 1px dashed #eaeaea;
	padding-right: 70px;
}

.slideBlock .items .item span {
	position: absolute;
	right: 0;
	top: 50%;
	line-height: 20px;
	margin-top: -10px;
	color: #999;
}

.slideBlock .items .item a {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	line-height: 60px;
	padding-right: 30px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.slideBlock .items .item a .isnew {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 26px;
	height: 100%;
	background: url(../images/icon-new.png) no-repeat center;
}

.swiper-container .dots {
	position: static;
	text-align: center;
	margin-top: 30px;
}

.swiper-container .dots span {
	width: 10px;
	height: 10px;
	background: #e1e1e1;
	opacity: 1;
	margin: 0 5px !important;
}

.swiper-container .dots span.swiper-pagination-bullet-active {
	background: #5690d2;
}

.qlink3 {
	align-items: stretch;
}

.qlink3 .item {
	width: 32%;
	flex: 0 0 auto;
	display: block;
	position: relative;
}

.qlink3 .item img {
	display: block;
	width: 100%;
	height: 403px;
	object-fit: cover;
}

.qlink3 .item .tit {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 5;
	padding-top: 35px;
	background: #5289c7;
	background: linear-gradient(0deg, #5289c7, transparent);
}

.qlink3 .item .tit .t {
	line-height: 60px;
	padding-left: 22px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 20px;
	color: #fff;
	border-top: 1px solid #3181db;
	display: inline-block;
	max-width: 100%;
	vertical-align: middle;
}

.qlink3 .item .tit:before {
	content: "";
	position: absolute;
	left: 0;
	top: 35px;
	width: 100%;
	height: 1px;
	background: #fff;
	z-index: -1;
}

.report .blocktit {
	margin-bottom: 20px;
}

.report .bd {
	align-items: stretch;
}

.report .rpt {
	width: 39%;
	position: relative;
	background: url(../images/repbg.png) no-repeat center;
	background-size: cover;
	text-align: center;
	height: 353px;
	border-radius: 6px;
}

.report .rpt .txt {
	position: absolute;
	left: 0;
	top: 38%;
	width: 100%;
	font-size: 16px;
	color: #fff;
}

.report .rpt .txt .t {
	font-size: 24px;
	margin-bottom: 20px;
}

.report .items {
	flex: 1 1 auto;
	overflow: hidden;
	padding-left: 30px;
}

.list3 .item {
	position: relative;
	padding-left: 15px;
	padding-right: 70px;
	border-bottom: 1px solid #eaeaea;
}

.list3 .item:before {
	content: "";
	position: absolute;
	width: 4px;
	height: 4px;
	background: #333;
	left: 0;
	top: 50%;
	margin-top: -2px;
}

.list3 .item a {
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-right: 30px;
	position: relative;
	max-width: 100%;
	line-height: 58px;
	vertical-align: middle;
}

.list3 .item span {
	position: absolute;
	right: 0;
	top: 50%;
	color: #999;
	line-height: 20px;
	margin-top: -10px;
}

.fy .blocktit {
	margin-bottom: 25px;
}

.fy .item {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.fy .item img {
	width: 100%;
	display: block;
}

.fy .item .txt {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	padding: 10px;
	color: #fff;
	background: rgba(53, 117, 204, 0.7);
}

.slider6 {
	position: relative;
	padding: 0 44px;
}

.slider6 .prev,
.slider6 .next {
	position: absolute;
	cursor: pointer;
	top: 0;
	height: 100%;
	width: 35px;
	background: #f2f4f9;
	border-radius: 5px;
}

.slider6 .prev {
	left: 0;
}

.slider6 .next {
	right: 0;
}

.slider6 .prev .arr,
.slider6 .next .arr {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -0.5em;
	margin-top: -0.5em;
	color: #333;
}

.ptop {
	margin-bottom: 50px;
}

.ptop #date {
	width: 240px;
	flex: 0 0 auto;
	text-align: center;
	background: #f2f4f9;
	color: #457ebf;
	line-height: 50px;
}

.search {
	flex: 0 1 auto;
	width: 300px;
	position: relative;
}

.search input {
	width: 100%;
	padding-left: 10px;
	padding-right: 40px;
	outline: none;
	border: 1px solid #5690d2;
	height: 36px;
	border-radius: 20px;
}

.search span {
	position: absolute;
	width: 36px;
	right: 0;
	top: 0;
	height: 36px;
	border-radius: 50%;
	background: #5690d2 url(../images/search.png) no-repeat center;
	z-index: 8;
	cursor: pointer;
}

.ptop .auto {
	align-items: flex-end;
}

.sideLeft {
	width: 240px;
	float: left;
}

.sideRight {
	margin-left: 290px;
}

.pnav {
	margin-bottom: 22px;
}

.pnav .tit {
	line-height: 80px;
	font-size: 26px;
	padding: 0 30px;
	background: #125198;
	background: linear-gradient(90deg, #114c92, #1c7fcd);
	color: #fff;
	position: relative;
}

.pnav .tit:after {
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
	height: 100%;
	content: "";
	background: url(../images/logobg.png) no-repeat right center;
}

.pnav li a {
	display: block;
	padding: 0 30px;
	position: relative;
	line-height: 60px;
	background: #f2f4f9;
	font-size: 16px;
	padding-right: 40px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: .3s;
	border-bottom: 1px solid #e9ebef;
}

.pnav li {
	position: relative;
}

.pnav li .arr-r {
	position: absolute;
	right: 0;
	top: 0;
	width: 60px;
	height: 100%;
	z-index: 10;
	cursor: pointer;
}

.pnav li:hover,
.pnav li.cur {
	color: #fff;
}

.pnav li:hover a,
.pnav li.cur a {
	background: #5690d2;
	border-color: #5690d2;
	color: #fff;
}

.sideLinks .tit {
	line-height: 62px;
	padding: 0 30px;
	font-size: 24px;
	color: #fff;
	background: #0080e2;
}

.sideLinks .item {
	justify-content: center;
	background: #f2f4f9;
	margin-bottom: 2px;
	height: 94px;
	font-size: 18px;
	color: #333;
}

.sideLinks .item .icon {
	width: 54px;
	height: 54px;
	background: #dbe5f3;
	border-radius: 50%;
	line-height: 54px;
	text-align: center;
	position: relative;
	font-size: 0;
	margin-right: 10px;
	z-index: 10;
}

.sideLinks .item .icon:after {
	content: "";
	position: absolute;
	left: 5px;
	right: 5px;
	top: 5px;
	bottom: 5px;
	z-index: -1;
	background: #5690d2;
	border-radius: 50%;
}

.location {
	border-bottom: 1px solid #f5f5f5;
	margin-bottom: 30px;
}

.location .ptitle {
	border-bottom: 2px solid #2e78cc;
	font-size: 24px;
	padding-bottom: 15px;
	color: #2e78cc;
}

.bread {
	margin-bottom: 15px;
	padding-left: 24px;
	font-size: 14px;
	color: #666;
	background: url(../images/icon-home.png) no-repeat left center;
}

.bread span {
	color: #2e78cc;
}

.contentTit {
	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
}

.context {
	font-size: 18px;
	line-height: 1.875;
	color: #555;
	padding-bottom: 40px;
	/* padding: 0 161px 40px;  */
}
.context p{
	max-width: 667px;
	margin: 0 auto;
}
.mailTop {
	position: relative;
	padding: 0 40px;
	margin-bottom: 40px;
	padding-bottom: 20px;
}

.mailTop .prev,
.mailTop .next {
	position: absolute;
	top: 0;
	width: 36px;
	height: 36px;
	background: #518dd1;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
}

.mailTop .prev {
	left: 0;
}

.mailTop .next {
	right: 0;
}

.mailTop .prev span,
.mailTop .next span {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 30px;
}

.mailTop .swiper-container {
	padding-top: 18px;
}

.mailTop .swiper-slide {
	text-align: center;
	position: relative;
	font-size: 16px;
	padding-top: 24px;
	cursor: pointer;
}

.mailTop .swiper-slide .icon {
	position: absolute;
	width: 26px;
	height: 26px;
	left: 50%;
	margin-left: -13px;
	top: -13px;
	z-index: 10;
	border-radius: 50%;
}

.mailTop .swiper-slide .icon:before {
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px dashed #518dd1;
	background: #fff;
	left: 50%;
	margin-left: -8px;
	top: 50%;
	margin-top: -8px;
	box-sizing: border-box;
}

.mailTop .swiper-container:before {
	content: "";
	position: absolute;
	left: 0;
	top: 18px;
	width: 100%;
	border-bottom: 1px solid #e2e3e4;
}

.mailTop .swiper-slide-active .icon {
	background: rgba(81, 141, 209, 0.1);
}

.mailTop .swiper-slide-active .icon:before {
	background: #518dd1;
}

.mailTop .swiper-slide-active .icon:after {
	content: "";
	position: absolute;
	width: 6px;
	height: 6px;
	background: #fff;
	z-index: 5;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	margin-left: -3px;
	margin-top: -3px;
}

.mailBd .t {
	font-size: 18px;
	color: #2e78cc;
	margin-bottom: 20px;
}

.mailBd .txt {
	font-size: 16px;
	line-height: 1.875;
	color: #555;
}

.imgs {
	justify-content: space-between;
	align-items: flex-start;
}

.imgs .item {
	width: 22%;
	font-size: 14px;
	color: #999;
	text-align: center;
}

.imgs .item .p {
	max-width: 175px;
	margin: 10px auto 0;
	line-height: 1.7;
}

.teamList .item {
	/* align-items:center;*/
	align-items: unset;
	justify-content: space-between;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
}

.teamList .item .imgbox {
	width: 250px;
	flex: 0 0 auto;
	border-radius: 6px;
	overflow: hidden;
}

.teamList .item img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.teamList .item .txt {
	flex: 1 1 auto;
	padding: 24px;
	overflow: hidden;
}

.teamList .item .name {
	font-size: 20px;
	color: #2e78cc;
	margin-bottom: 20px;
}

.teamList .item .p {
	font-size: 16px;
	color: #555;
	line-height: 2;
}

.teamList .item .p.des {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.teamList .item .view {
	margin-top: 20px;
}

.teamList .item .view span {
	display: inline-block;
	vertical-align: middle;
	width: 70px;
	text-align: center;
	line-height: 30px;
	color: #bababa;
	background: #f0f0f0;
	border-radius: 15px;
}

.teamList .item .con {
	display: none;
}

.teamList .item:last-child {
	border: none;
	padding: 0;
}

.parger {
	align-items: center;
	justify-content: center;
	margin-top: 60px;
	flex-wrap: wrap;
}

.parger a {
	display: inline-block;
	vertical-align: middle;
	padding: 0 13px;
	font-size: 14px;
	color: #555;
	transition: .3s;
	margin: 0 5px 5px;
	border: 1px solid #e7e7e7;
	line-height: 36px;
}

.parger .span {
	padding: 0 5px;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 5px;
}

.parger input {
	height: 36px;
	border: 1px solid #e7e7e7;
	width: 56px;
	text-align: center;
}

.parger a:hover,
.parger a.a_cur {
	border-color: #5690d2;
	color: #fff;
	background: #5690d2;
}

.parger .jbtn {
	background: #eeeeee;
	padding: 0 10px;
	line-height: 36px;
	cursor: pointer;
	margin: 0 5px;
}

.parger .border {
	padding: 0 13px;
	font-size: 14px;
	color: #555;
	margin: 0 5px;
	border: 1px solid #e7e7e7;
	line-height: 34px;
}

.teamPop {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background: rgba(0, 0, 0, 0.5);
	display: none;
}

.teamPop .in {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.teambox {
	width: 1280px;
	max-width: 100%;
	background: #fff;
	position: relative;
	padding: 40px 78px 50px;
}

.icon-close {
	display: inline-block;
	vertical-align: middle;
	width: 1em;
	height: 1em;
	position: relative;
	--color: #333;
}

.icon-close:after,
.icon-close:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
	background: var(--color);
}

.icon-close:after {
	transform: rotate(45deg);
}

.icon-close:before {
	transform: rotate(-45deg);
}

.teambox .close {
	position: absolute;
	right: 20px;
	top: 15px;
	cursor: pointer;
	font-size: 40px;
	line-height: 1;
}

.teambox .close .icon-close {
	--color: #518dd1;
}

.teambox .boxTop {
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 2;
}

.teambox .boxTop .img {
	flex: 0 0 auto;
	margin-right: 30px;
	border-radius: 6px;
	overflow: hidden;
}

.teambox .boxTop .name {
	font-size: 20px;
}

.teambox .desc {
	font-size: 16px;
	line-height: 1.875;
}

.teambox .desc .tit {
	font-size: 18px;
	margin-bottom: 10px;
}

.newsList .ntop {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.newsList .ntop .img {
	width: 470px;
	flex: 0 0 auto;
	margin-right: 30px;
	border-radius: 6px;
	overflow: hidden;
}

.newsList .txt {
	flex: 1 1 auto;
	overflow: hidden;
}

.newsList .txt .date {
	font-size: 16px;
	color: #999;
	margin-bottom: 20px;
}

.newsList .txt h3 {
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 10px;
}

.newsList .txt .p {
	font-size: 18px;
	color: #555;
	line-height: 1.875;
	max-height: 3.75em;
	overflow: hidden;
}

.newsList .txt .vm {
	margin-top: 20px;
}

.newsList .txt .vm span {
	display: inline-block;
	vertical-align: middle;
	padding: 0 20px;
	line-height: 30px;
	font-size: 14px;
	color: #fff;
	background: #518dd1;
	border-radius: 17px;
}

.newsList .item {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.newsList .item .img {
	flex: 0 0 auto;
	width: 370px;
	margin-right: 30px;
	border-radius: 6px;
	overflow: hidden;
}

.newsList .img img {
	width: 100%;
	display: block;
}

.infoHead {
	text-align: center;
	padding-bottom: 25px;
	margin-bottom: 25px;
	border-bottom: 1px solid #eee;
}

.infoHead h3 {
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 10px;
}

.infoHead .p {
	font-size: 16px;
	color: #999;
}

.infoHead .p span {
	padding: 0 30px;
}

.infoBottom {
	padding-top: 25px;
	margin-top: 25px;
	border-top: 1px solid #eee;
	position: relative;
	padding-right: 120px;
	line-height: 2;
}

.infoBottom p {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #0080e2;
}

.infoBottom p a {
	color: #333;
}

.infoBottom .back {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -12px;
	line-height: 44px;
	background: #5690d2;
	color: #fff;
	border-radius: 22px;
}

.infoBottom .back a {
	display: block;
	padding: 0 25px;
	color: #fff;
}

.infoBottom .back span {
	display: inline-block;
	vertical-align: middle;
	margin: 0 5px;
	line-height: 1;
}

.icon-back {
	width: 15px;
	height: 13px;
	background: url(../images/icon-back.png) no-repeat center;
	margin-bottom: 3px !important;
}

.newsList2 {
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.newsList2 .item {
	width: 32%;
	margin-bottom: 10px;
}

.newsList2 .item .imgbox {
	overflow: hidden;
	border-radius: 6px;
}

.newsList2 .item .imgbox img {
	display: block;
	width: 100%;
}

.newsList2 .item .t {
	font-size: 18px;
	line-height: 60px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.newsList2 .item .videoBtn {
	width: 35px;
	height: 35px;
}

.newsList3 {
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.newsList3 .item {
	width: 24%;
	text-align: center;
	margin-bottom: 10px;
}

.newsList3 .item .t1 {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	font-size: 24px;
	color: #fff;
	margin-top: -0.5em;
}

.newsList3 .item .img {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 6px;
	padding-bottom: 130%;
}

.newsList3 .item .t2 {
	font-size: 18px;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 60px;
}

.list1.s2 .item {
	padding-right: 90px;
	border-bottom: 1px dashed #e6e6e6;
}

.list1.s2 .item a,
.list1.s2 .item span {
	line-height: 55px;
}

.category {
	text-align: center;
	margin-bottom: 40px;
	font-size: 0;
}

.category a {
	display: inline-block;
	vertical-align: middle;
	margin: 5px 10px;
	line-height: 50px;
	width: 140px;
	text-align: center;
	background: #f2f4f9;
	font-size: 16px;
	border-radius: 25px;
}

.category a:hover,
.category a.cur {
	background: #4683d0;
	color: #fff;
}

.zplist .item {
	position: relative;
	padding: 28px;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
	margin-bottom: 30px;
	justify-content: space-between;
	align-items: center;
}

.zplist .item .txt {
	flex: 1 1 auto;
	overflow: hidden;
}

.zplist .item .btn {
	flex: 0 0 auto;
	width: 140px;
	text-align: center;
	line-height: 50px;
	background: #5690d2;
	border-radius: 25px;
	color: #fff;
	cursor: pointer;
}

.zplist .item .t {
	font-size: 20px;
	margin-bottom: 10px;
}

.zplist .item .tag {
	flex-wrap: wrap;
	font-size: 18px;
}

.zplist .item .tag span {
	min-width: 25%;
	margin-bottom: 10px;
}

.zplist .item .ib {
	font-size: 18px;
	color: #999;
}

.zplist .item .ib .vd {
	font-size: 16px;
	color: #2778d3;
	margin-left: 20px;
	cursor: pointer;
}

.zplist .item .desc {
	position: absolute;
	left: 0;
	background: #fff;
	z-index: 10;
	width: 100%;
	top: 100%;
	transition: .3s;
	max-height: 0;
	overflow: hidden;
	line-height: 2.25;
	box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
}

.zplist .item .zpmask {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9;
	width: 100%;
	height: 100%;
	display: none;
}

.zplist .item .desc .con {
	padding: 15px 30px;
	max-height: 566px;
}

.zplist .item .desc .t1 {
	font-size: 20px;
	margin-bottom: 10px;
}

.zplist .item .desc .p+.t1 {
	margin-top: 30px;
}

.zplist .item.cur .desc {
	max-height: 600px;
}

.zplist .item.cur .zpmask {
	display: block;
}

.zplist .item:nth-child(5) .desc,
.zplist .item:nth-child(6) .desc {
	top: auto;
	bottom: 100%;
}

.zplist .item .desc .close {
	position: absolute;
	right: 5px;
	top: 5px;
	z-index: 20;
	display: none;
}

.zplist .item .desc .close i {
	font-size: 26px;
}

.kscategory .item {
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
	margin-bottom: 30px;
}

.kscategory .item .tit {
	font-size: 20px;
	margin-bottom: 10px;
}

.kscategory .item .tit span {
	display: inline-block;
	vertical-align: middle;
}

.kscategory .item .icon {
	width: 28px;
	font-size: 0;
}

.kscategory .sub {
	flex-wrap: wrap;
	padding-left: 16px;
	justify-content: flex-start;
}

.kscategory .sub .i {
	min-width: 14.28%;
	flex: 0 0 auto;
	width: 25%;
	position: relative;
}

.kscategory .sub .i a {
	display: block;
	line-height: 42px;
	font-size: 14px;
	padding: 0 20px 0 15px;
	transition: .3s;
}

.kscategory .sub .i a span {
	display: inline-block;
	vertical-align: middle;
}

.kscategory .sub .i a .arr-r {
	margin-left: 30px;
	font-size: 14px;
	color: #fff;
	position: absolute;
	right: 5px;
	top: 13px;
	z-index: 3;
}

.kscategory .sub .i a:hover {
	color: #fff;
	background: #3181db;
}

.ksinfo .tit {
	font-size: 20px;
	text-align: center;
	margin-bottom: 30px;
}

.ksinfo .txt .imgbox {
	flex: 1 1 auto;
}

.ksinfo .txt .con {
	flex: 0 0 auto;
	width: 365px;
	padding-left: 30px;
	line-height: 1.875;
}

.lineTit {
	font-size: 18px;
	line-height: 1;
	color: #2e78cc;
	border-left: 3px solid #2e78cc;
	padding-left: 10px;
	margin-bottom: 20px;
}

.ksinfo .txt .vd {
	color: #2e78cc;
}

.mabout {
	margin-top: 15px;
}

.mabout .item {
	display: inline-block;
	vertical-align: middle;
	position: relative;
	margin-right: 40px;
	padding-right: 10px;
	margin-bottom: 15px;
}

.mabout .item a {
	display: block;
	background: #f2f4f9;
	padding: 0 26px 0 16px;
	color: #2778d3;
	line-height: 34px;
}

.mabout .item span {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	background: #5690d2;
	z-index: 10;
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
}

.ksteam {
	margin-top: 40px;
}

.tslider .prev,
.tslider .next {
	position: absolute;
	width: 34px;
	height: 34px;
	z-index: 10;
	cursor: pointer;
	background: #518dd1;
	border-radius: 50%;
	color: #fff;
	font-size: 30px;
	top: 50%;
	margin-top: -47px;
}

.tslider {
	position: relative;
	padding: 0 50px;
}

.tslider .swiper-slide {
	height: auto;
}

.tslider .swiper-slide .imgbox {
	height: calc(100% - 60px);
}

.tslider .swiper-slide .imgbox img {
	height: 100%;
	object-fit: cover;
}

.tslider .prev {
	left: 0;
}

.tslider .next {
	right: 0;
}

.ksteam .imgbox img {
	display: block;
	width: 100%;
}

.ksteam .t {
	text-align: center;
	font-size: 18px;
	color: #555;
	line-height: 60px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.singel .tit {
	font-size: 20px;
	text-align: center;
	margin-bottom: 20px;
}

.singel .txt {
	color: #555;
	line-height: 1.875;
}

.table {
	margin-top: 30px;
}

.icontit {
	margin-bottom: 20px;
	text-align: center;
	font-size: 18px;
	color: #2e78cc;
}

.icontit span {
	display: inline-block;
	vertical-align: middle;
	padding: 0 28px;
	position: relative;
}

.icontit span:before {
	width: 28px;
	height: 100%;
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	background: url(../images/titl.png) no-repeat left center;
}

.icontit span:after {
	width: 28px;
	height: 100%;
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	background: url(../images/titr.png) no-repeat right center;
}

.table .overscroll {
	overflow: auto;
	width: 100%;
	padding-bottom: 10px;
}

.table table {
	min-width: 100%;
	border: none;
	border-spacing: 0;
	border-collapse: collapse;
}

.table th {
	height: 50px;
	background: #c6e0b4;
	border: 1px solid #ddecd2;
	font-size: 18px;
	color: #fff;
	font-weight: normal;
	white-space: nowrap;
}

.table td {
	font-size: 16px;
	color: #333;
	text-align: center;
	padding: 5px 10px;
	height: 50px;
	border: 1px solid #ebebeb;
	white-space: nowrap;
}

.table .bg td {
	background: #f0f5ec;
	border-color: #dfe3db;
}

.category.s2 {
	text-align: left;
}

.imgcontent {
	padding: 36px 20px;
	text-align: center;
	background: #ecf2fa;
}

.imgcontent .tit {
	font-size: 20px;
	margin-bottom: 40px;
}

.value1 {
	margin-bottom: 30px;
}

.value1 .tit {
	font-size: 20px;
	text-align: center;
	margin-bottom: 30px;
}

.value1 .items {
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
}

.value1 .item {
	flex: 0 0 auto;
	width: 49%;
	position: relative;
	padding-left: 34px;
	margin-bottom: 25px;
}

.value1 .item .icon {
	position: absolute;
	width: 68px;
	height: 68px;
	font-size: 0;
	background: #5690d2;
	border-radius: 50%;
	text-align: center;
	line-height: 68px;
	top: 50%;
	margin-top: -34px;
	left: 0;
	z-index: 10;
}

.value1 .item:nth-child(2n) {
	padding-left: 0;
	padding-right: 34px;
}

.value1 .item:nth-child(2n) .icon {
	left: auto;
	right: 0;
}

.value1 .item .txt {
	min-height: 100px;
	border-radius: 100px;
	background: #f2f6fb;
	align-items: center;
	justify-content: flex-start;
	padding-left: 50px;
	padding-right: 30px;
	font-size: 16px;
	color: #555;
	line-height: 1.875;
}

.value1 .item:nth-child(2n) .txt {
	padding-left: 30px;
	padding-right: 50px;
	flex-direction: row-reverse;
	text-align: right;
}

.value1 .item .txt .t {
	font-size: 20px;
	color: #3181db;
	margin-right: 30px;
	white-space: nowrap;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.value1 .item .txt span {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.value1 .item:nth-child(2n) .txt .t {
	margin-left: 30px;
	margin-right: 0;
}

.value1 .item:last-child {
	width: 100%;
}

.value1.cur .item:last-child {
	width: 49%;
}

.value1 .item .icon:after {
	content: "";
	width: 41%;
	height: 41%;
	position: absolute;
	background: #679bd7;
	border-radius: 50%;
	z-index: -1;
	left: 42%;
	top: 42%;
}

.value2 {
	margin-bottom: 40px;
}

.value2 .tit {
	font-size: 20px;
	text-align: center;
	margin-bottom: 30px;
}

.value2 .item {
	flex: 0 0 auto;
	width: 47%;
	position: relative;
}

.value2 .item .imgbox {
	border-radius: 6px;
	overflow: hidden;
}

.value2 .item img {
	display: block;
	width: 100%;
}

.value2 .item .txt {
	position: absolute;
	left: 0;
	bottom: 29%;
	z-index: 10;
	padding: 0 28px;
	color: #fff;
}

.value2 .item .txt .t {
	font-size: 20px;
	margin-bottom: 10px;
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.value2 .item .txt .p {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}

.culist {
	align-items: flex-start;
	flex-wrap: wrap;
}

.culist .item {
	width: 31%;
	margin-bottom: 20px;
}

.culist .item .imgbox {
	border-radius: 10px;
	overflow: hidden;
}

.culist .item img {
	width: 100%;
	display: block;
}

.culist .item .t {
	font-size: 18px;
	margin: 20px 0 10px;
	text-align: center;
}

.culist .item .p {
	font-size: 16px;
	line-height: 1.875;
	height: 3.75em;
	overflow: hidden;
	color: #666;
}

.infoHead.s2 {
	padding-bottom: 0;
	border: none;
}

.infoHead.s2 h3 {
	font-size: 18px;
}

.teamList.s2 .item .p.des {
	white-space: normal;
	max-height: 4em;
}

.teambox.s2 .boxTop {
	align-items: flex-start;
}

/* 2023.5.8 */
/* @media(max-width:1024px){ */
@media(max-width:900px) {
	.openMenu {
		display: block;
	}

	.codes {
		display: none;
	}

	.nav {
		position: fixed;
		right: -210px;
		bottom: 0;
		top: 75px;
		z-index: 998;
		box-shadow: none;
		width: 200px;
		padding: 20px 0;
		transition: .3s;
	}

	.top .logo a {
		display: table-cell;
		vertical-align: middle;
		height: 45px;
	}

	.top {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		z-index: 999;
		background: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	}

	.nav .flex {
		display: block;
	}

	.nav li {
		width: auto;
	}

	.nav li a {
		padding: 0 20px;
	}

	.nav li a span {
		display: block;
		line-height: 40px;
	}

	.nav li a span:after {
		display: none;
	}

	.nav li a:after {
		display: none;
	}

	.showMenu .nav {
		right: 0;
	}

	.mask {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background: #000;
		z-index: 996;
		opacity: 0.5;
		display: none;
	}

	.showMenu .mask {
		display: block;
	}

	.fnav a {
		width: auto;
		padding: 0 20px;
		margin-bottom: 10px;
		float: none;
		display: inline-block;
	}

	.fnav {
		text-align: center;
		margin-bottom: 20px;
		padding: 0 10px;
	}

	.footer {
		padding: 40px 0 10px;
		font-size: 14px;
	}

	.floor {
		display: block;
	}

	.w634,
	.w325,
	.w48 {
		width: 100%;
		margin-bottom: 30px;
	}

	.slideBlock {
		width: 100%;
		margin-bottom: 30px;
	}

	.qlink3 .item img {
		height: auto;
	}

	body {
		padding-top: 75px;
	}

	.floor {
		margin-top: 30px;
	}

	.floorHead .tab span {
		margin-right: 15px;
		font-size: 16px;
	}

	.more a {
		font-size: 14px;
	}

	.list1 .litop a {
		display: block;
	}

	.list1 .litop .imgbox {
		width: 100%;
		margin-bottom: 10px;
	}

	.list1 .litop .imgbox img {
		height: auto;
	}

	.list1 .litop .txt {
		margin-left: 0;
	}

	.list1 .litop {
		margin-top: 10px;
		margin-bottom: 0;
	}

	.list1 .litop .tit {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 10px;
	}

	.list1 .litop .p {
		font-size: 14px;
		line-height: 1.5;
		max-height: 100%;
		padding-bottom: 15px;
	}

	.list1 .items {
		padding: 10px 0;
	}

	.gg .floorHead,
	.gg .list2 .items {
		padding: 5px 10px;
	}

	.vid .bd {
		display: block;
	}

	.vid .itop {
		width: 100%;
		margin-bottom: 10px;
	}

	.vid .items {
		padding-left: 0;
	}

	.vid {
		padding: 10px;
	}

	.qlinks .item {
		display: block;
		text-align: center;
		font-size: 14px;
		height: auto;
		padding: 20px 10px;
	}

	.qlinks .item .icon {
		margin: 0 auto 10px;
	}

	.qlink2 .item .icon {
		width: 50px;
		height: 50px;
		line-height: 50px;
		margin-top: -25px;
	}

	.qlink2 .item .icon img {
		max-width: 50%;
		max-height: 50%;
	}

	.qlink2 .item .imgbox img {
		height: auto;
	}

	.qlink2 .item .t {
		margin-top: 0;
		font-size: 18px;
	}

	.qlink2 .item .p {
		font-size: 14px;
		line-height: 1.5;
		white-space: normal;
	}

	.slideBlock .img .tb {
		padding: 0 10px;
	}

	.slideBlock .img .tb .swiper-slide span {
		padding: 5px 0;
		border-width: 2px;
	}

	.slideBlock .img .tb .swiper-slide {
		font-size: 16px;
	}

	.slideBlock .items {
		padding: 10px 10px 20px;
	}

	.slideBlock .items .item a {
		line-height: 40px;
	}

	.swiper-container .dots {
		margin-top: 20px;
	}

	.slideBlock .blocktit {
		margin-bottom: 10px;
	}

	.qlink3 .item .tit .t {
		padding-left: 10px;
		font-size: 14px;
		line-height: 40px;
	}

	.report .blocktit {
		margin-bottom: 10px;
	}

	.report .bd {
		display: block;
	}

	.report .rpt {
		width: 100%;
		height: auto;

		/* padding:40px 0; */
		margin-bottom: 10px;
		padding-bottom: 137%;
	}

	.report .rpt .txt {
		position: static;
	}

	.report .items {
		padding-left: 0;
	}

	.list3 .item a {
		line-height: 40px;
	}

	.parger {
		margin-top: 40px;
	}

	.parger a {
		font-size: 12px;
		padding: 0 10px;
		line-height: 30px;
	}

	.parger a.a_first,
	.parger a.a_end,
	.parger .span {
		display: none;
	}

	.newsList .ntop .img {
		width: 300px;
	}

	.newsList .txt .date {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.newsList .txt h3 {
		font-size: 18px;
	}

	.newsList .txt .p {
		font-size: 14px;
		line-height: 1.5;
		max-height: 3em;
	}

	.newsList .item .img {
		width: 210px;
	}

	.newsList2 .item .t {
		font-size: 14px;
		line-height: 40px;
	}

	.newsList3 .item .t1 {
		font-size: 18px;
	}

	.newsList3 .item .t2 {
		font-size: 14px;
	}

	.value1 .item .txt {
		font-size: 14px;
	}

	.value1 .item .txt .t {
		font-size: 16px;
	}

	.value2 .item .txt {
		padding: 0 20px;
		bottom: 20px;
		font-size: 14px;
	}

	.value2 .item .txt .t {
		font-size: 18px;
	}


	/* 2023.4.19 */
	.teamList .item .imgbox {
		height: 100%;
	}


}

@media(max-width:768px) {
	.ptop {
		margin-bottom: 20px;
	}

	.sideLeft {
		width: auto;
		float: none;
	}

	.sideRight {
		margin-left: 0;
	}

	.ptop .auto {
		align-items: center;
	}

	.pnav .tit {
		padding: 0 20px;
		font-size: 20px;
		line-height: 50px;
	}

	.pnav li {
		display: inline-block;
		flex: 1 1 auto;
		margin-right: 2px;
	}

	.pnav ul {
		display: -webkit-box;
		display: -moz-flex;
		display: -ms-flexbox;
		display: flex;
		display: -webkit-flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		overflow: auto;
	}

	.pnav li .arr-r {
		display: none;
	}

	.pnav li a {
		padding: 0 10px;
		text-align: center;
		line-height: 46px;
	}

	.sideLinks {
		display: none;
	}

	.context {
		font-size: 14px;
	}

	.location .ptitle {
		font-size: 20px;
	}

	.mailBd .txt {
		font-size: 14px;
	}

	.imgs {
		flex-wrap: wrap;
	}

	.imgs .item {
		width: 48%;
		margin-bottom: 20px;
	}

	.infoHead h3 {
		font-size: 18px;
	}

	.infoHead .p {
		font-size: 14px;
	}

	.infoHead .p span {
		padding: 0 5px;
		display: inline-block;
		vertical-align: middle;
	}

	.infoHead {
		text-align: left;
	}

	.infoBottom {
		padding-right: 0;
	}

	.infoBottom .back {
		position: static;
		margin: 20px auto 0;
		width: 100px;
		text-align: center;
		font-size: 14px;
		line-height: 40px;
	}

	.infoBottom .back a {
		padding: 0;
	}

	.category a {
		width: auto;
		line-height: 34px;
		font-size: 14px;
		padding: 0 20px;
		margin: 5px;
	}

	.category {
		margin-bottom: 20px;
	}

	.zplist .item {
		padding: 20px;
		margin-bottom: 10px;
	}

	.zplist .item .btn {
		line-height: 34px;
		width: 90px;
		font-size: 14px;
	}

	.zplist .item .t {
		font-size: 18px;
	}

	.zplist .item .tag {
		font-size: 14px;
	}

	.zplist .item .ib {
		font-size: 14px;
	}

	.zplist .item .desc {
		position: fixed;
		left: 0;
		top: 50% !important;
		transform: translate(0, -50%) scale(0);
		max-height: 80%;
		line-height: 1.875;
		font-size: 14px;
		bottom: auto !important;
	}

	.zplist .item .desc .t1 {
		font-size: 16px;
	}

	.zplist .item.cur .desc {
		transform: translate(0, -50%) scale(1);
	}

	.zplist .item .desc .close {
		display: block;
	}

	.imgcontent .tit {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.value1 .tit {
		font-size: 18px;
	}

	.value1 .item {
		width: 100%;
		margin-bottom: 15px;
	}

	.value1 .item:nth-child(2n) {
		padding-left: 34px;
		padding-right: 0;
	}

	.value1 .item:nth-child(2n) .icon {
		right: auto;
		left: 0;
	}

	.value1 .item:nth-child(2n) .txt {
		padding-left: 50px;
		padding-right: 30px;
		flex-direction: column;
		text-align: left;
	}

	.value1 .item:nth-child(2n) .txt .t {
		margin-right: 30px;
		margin-left: 0;
	}

	.value2 .item {
		width: 100%;
		margin-bottom: 20px;
	}

	.value2 .items {
		flex-wrap: wrap;
	}

	.value2 .tit {
		font-size: 18px;
	}

	.value2 {
		margin-bottom: 20px;
	}

	.value1 .item .txt {
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.culist .item .t {
		font-size: 16px;
		margin: 10px 0;
	}

	.culist .item .p {
		font-size: 14px;
	}
}

@media(max-width:560px) {
	body {
		font-size: 14px;
	}

	.bread {
		display: none;
	}

	.mailBd .txt {
		padding-right: 10px;
		text-align: justify;
		max-height: 290px;
		overflow: auto;
	}

	.mailTop {
		margin-bottom: 0;
	}

	.teamList .item .imgbox {
		width: 110px;
	}

	.teamList .item .txt {
		padding: 0 10px 0 20px;
	}

	.teamList .item .name {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.teamList .item .p {
		font-size: 14px;
		line-height: 1.5;
	}

	.teamList .item .view {
		margin-top: 10px;
	}

	.teamList .item .view span {
		font-size: 12px;
		line-height: 24px;
		width: 50px;
	}

	.teamList .item {
		margin-bottom: 10px;
		padding-bottom: 10px;
		align-items: flex-start;
	}

	.newsList a.flex {
		display: block;
	}

	.newsList .item .img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}

	.newsList .ntop .img {
		width: 100%;
		margin-right: 0;
	}

	.newsList .txt h3 {
		font-size: 16px;
	}

	.newsList2 .item {
		width: 100%;
		margin-bottom: 0;
	}

	.newsList3 .item {
		width: 49%;
		margin-bottom: 0;
	}

	.newsList3 .item .t2 {
		line-height: 50px;
	}

	.zplist .item {
		display: block;
	}

	.zplist .item .btn {
		margin-top: 20px;
	}

	.kscategory .item .tit {
		font-size: 18px;
	}

	.kscategory .sub .i a {
		line-height: 34px;
		padding: 0 10px;
	}

	.kscategory .sub .i a .arr-r {
		margin-left: 10px;
	}

	.kscategory .sub .i {
		min-width: 33.3%;
	}

	.kscategory .sub {
		padding-left: 22px;
	}

	.ksinfo .txt {
		display: block;
	}

	.ksinfo .txt .imgbox {
		margin-bottom: 20px;
		width: 100%;
	}

	.ksinfo .txt .con {
		padding-left: 0;
		width: 100%;
	}

	.ksinfo .tit {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.mabout .item a {
		padding-left: 10px;
		font-size: 14px;
	}

	.ksteam {
		margin-top: 20px;
	}

	.tslider {
		padding: 0 40px;
	}

	.tslider .prev,
	.tslider .next {
		width: 30px;
		height: 30px;
		font-size: 26px;
	}

	.singel .tit {
		font-size: 18px;
	}

	.icontit {
		font-size: 16px;
	}

	.table th {
		font-size: 16px;
	}

	.table td {
		font-size: 14px;
	}

	.value1 .item {
		padding: 20px 20px !important;
		background: #f2f6fb;
		border-radius: 6px;
	}

	.value1 .item .icon {
		width: 40px;
		height: 40px;
		line-height: 40px;
		position: static;
		margin: 0;
		margin-bottom: 10px;
	}

	.value1 .item .icon img {
		max-width: 60%;
		max-height: 60%;
	}

	.value1 .item .txt {
		padding: 0 !important;
		min-height: 0;
	}

	.culist .item {
		width: 100%;
	}

	.teambox .boxTop .img {
		width: 50%;
		margin-right: 16px;
	}

	.teambox .boxTop .name {
		font-size: 18px;
	}

	.teambox .boxTop {
		font-size: 14px;
		line-height: 1.5;
	}

	.teambox .desc {
		max-height: 240px;
		overflow: auto;
		font-size: 14px;
	}

	.teambox.s2 .boxTop {
		display: block;
		font-size: 14px;
	}

	.teambox {
		padding: 40px 20px;
		overflow-y: auto;
	}

	.teambox.s2 .boxTop .txt {
		max-height: 240px;
		overflow: auto;
		margin-top: 20px;
	}
}

.popup {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	z-index: 99;
	background-color: rgba(0, 0, 0, .1);
	display: none;
}

.popup .table {
	display: table;
	width: 100%;
	table-layout: fixed;
	height: 100%;
}

.popup .td {
	display: table-cell;
	vertical-align: middle;
}

.popup .info {
	background-color: #fff;
	width: 80%;
	max-width: 990px;
	margin: 0 auto;
	border-radius: 5px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, .1);
	padding: 3.125%;
}

#department .title {
	font-size: 1.375em;
	line-height: 1.35em;
	color: #2e78cc;
	padding-left: 10px;
	margin-bottom: 20px;
	position: relative;
}

#department .title:before {
	width: 3px;
	height: 1em;
	background-color: #2e78cc;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: '';
}

#department .intro {
	line-height: 1.875em;
	max-height: 380px;
	overflow-y: auto;
}

#popupLink .title {
	font-size: 1.375em;
	line-height: 1.35em;
	color: #2e78cc;
	padding-left: 10px;
	margin-bottom: 20px;
	position: relative;
}

#popupLink .title:before {
	width: 3px;
	height: 1em;
	background-color: #2e78cc;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	content: '';
}

#popupLink .intro {
	line-height: 1.875em;
}

.top .logo .pa {
	text-align: center;
	font-size: 18px;
	line-height: 2;
	color: #3181db;
}


@media screen and (max-width:1024px) {
	.top .logo img {
		width: 200px;
	}

	.top .logo .pa {
		font-size: 14px;
	}
}

@media screen and (max-width:640px) {
	.top .logo .pa {
		font-size: 14px;
	}
}

.overscroll {
	height: 100%;
	overflow: auto;
	padding-right: 20px;
}

.overscroll::-webkit-scrollbar,
.selects::-webkit-scrollbar {
	width: 6px;
	height: 1px;
}

.overscroll::-webkit-scrollbar-thumb {
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
	background: #3181db;
}

.overscroll::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	background: #f1f1f1;
}

.teambox .boxTop .img {
	max-width: 150px;
	height: 205px;
	object-fit: cover;
}

.teambox .boxTop .img img {
	height: 100%;
	object-fit: cover;
}

@media(min-width:1024px) {
	.qlink2 .item:first-child .icon:before {
		position: absolute;
		left: 8px;
		top: 8px;
		right: 8px;
		bottom: 8px;
		border: 1px solid #fff;
		content: "";
		border-radius: 50%;
		z-index: 2;
		border-left-color: #4599f1;
		border-right-color: #1e67b4;
		animation: 5s linear round infinite;
		opacity: 0.6;
	}

	.qlink2 .item:first-child .icon:after {
		position: absolute;
		left: 16px;
		top: 16px;
		right: 16px;
		bottom: 16px;
		border: 1px solid #fff;
		content: "";
		border-radius: 50%;
		z-index: 2;
		border-top-color: #1e67b4;
		border-bottom-color: #1e67b4;
		animation: 8s linear round infinite reverse;
		opacity: 0.3;
	}

	@keyframes round {
		100% {
			transform: rotate(1turn);
		}
	}

	.qlink2 .item .icon img {
		max-width: 32px;
		max-height: 32px;
	}
}

.structure {
	text-align: center;
}

.structure .tit {
	display: inline-block;
	padding: 0 24px;
	line-height: 60px;
	font-size: 18px;
	background: #5690d2;
	color: #fff;
	border-radius: 5px;
	position: relative;
	margin-bottom: 40px;
}

.structure .tit:after {
	content: "";
	width: 1px;
	height: 40px;
	position: absolute;
	left: 50%;
	top: 100%;
	background: #5690d2;
}

.structure .items {
	justify-content: space-between;
	position: relative;
	align-items: stretch;
	flex-wrap: wrap;
}

.structure .items:before {
	content: "";
	position: absolute;
	top: 0;
	height: 1px;
	background: #5690d2;
	left: 30px;
	right: 30px;
}

.structure .i {
	position: relative;
	padding: 17px 10px 30px;
	background: #f0f7fe;
	width: 40px;
	flex: 0 0 auto;
	border-radius: 5px;
	margin: 45px 10px 0;
	font-size: 14px;
}

.structure .i:before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 100%;
	height: 45px;
	background: #5690d2;
	width: 1px;
}

.structure .i:after {
	content: "";
	position: absolute;
	left: 50%;
	margin-left: -3px;
	bottom: 100%;
	width: 6px;
	height: 6px;
	background: #5690d2;
	border-radius: 50%;
	z-index: 2;
}

.jyprocess {
	max-width: 800px;
	margin: auto;
}

.jyprocess .jline {
	margin-bottom: 60px;
	align-items: stretch;
	justify-content: space-between;
}

.jyprocess .jline .i {
	width: 30%;
	flex: 0 0 auto;
	position: relative;
}

.jyprocess .jline .box {
	padding: 20px 15px;
	background: #fff;
	border-radius: 10px;
	min-height: 70px;
	align-items: center;
	position: relative;
	height: 100%;
}

.jyprocess .jline .i .um {
	position: absolute;
	width: 36px;
	line-height: 36px;
	font-size: 16px;
	background: #4683d0;
	color: #fff;
	font-style: normal;
	border-radius: 50%;
	z-index: 10;
}

.jyprocess .jline .i .um.r {
	right: -26px;
	top: 50%;
	margin-top: -18px;
}

.jyprocess .jline .i .um.b {
	bottom: -26px;
	left: 50%;
	margin-left: -18px;
}

.jyprocess .jline .i .um.l {
	left: -26px;
	top: 50%;
	margin-top: -18px;
}

.jyprocess .jline a {
	display: block;
	text-align: center;
	width: 100%;
}

.jyprocess .jline .i .t {
	font-size: 18px;
	color: #4683d0;
}

.jyprocess .jline .i .p {
	font-size: 16px;
	color: #666;
	margin: 5px 0;
}

.jyprocess .jline:first-child .i:nth-child(2),
.jyprocess .jline:nth-child(3) .i:nth-child(2),
.jyprocess .jline:nth-child(4) .i:nth-child(2) {
	width: 40%;
	position: relative;
}

.jyprocess .jline:first-child .i:nth-child(2):after,
.jyprocess .jline:nth-child(3) .i:nth-child(2):after,
.jyprocess .jline:nth-child(4) .i:nth-child(2):after {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	border-bottom: 1px dashed #4683d0;
	width: 100%;
}

.jyprocess .jline:first-child .i:nth-child(2):before,
.jyprocess .jline:nth-child(3) .i:nth-child(2):before,
.jyprocess .jline:nth-child(4) .i:nth-child(2):before {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	z-index: 5;
	background: url(../images/jt.png) no-repeat center;
	top: 50%;
	margin-top: -8px;
	right: 10%;
}

.jyprocess .jline:nth-child(4) .i:nth-child(2):before {
	right: auto;
	left: 10%;
	transform: rotate(180deg);
}

.jyprocess .jline:nth-child(2) .i:nth-child(2):before {
	content: "";
	position: absolute;
	border-bottom: 1px dashed #4683d0;
	border-right: 1px dashed #4683d0;
	left: 100%;
	width: 67%;
	height: 50%;
	bottom: 50%;
}

.jyprocess .jline:nth-child(2) .i:nth-child(2):after {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	z-index: 5;
	background: url(../images/jt.png) no-repeat center;
	top: 50%;
	margin-top: -8px;
	left: 110%;
	transform: rotate(180deg);
}

.jyprocess .jline:nth-child(1) .i:nth-child(3):before {
	content: "";
	position: absolute;
	border-left: 1px dashed #4683d0;
	height: 60px;
	left: 50%;
	top: 100%;
}

.jyprocess .jline:nth-child(2) .i:nth-child(2) .um:after {
	content: "";
	position: absolute;
	border-left: 1px dashed #4683d0;
	height: 68px;
	left: 50%;
	top: 0;
}

.jyprocess .jline:nth-child(3) .i:nth-child(1):before {
	content: "";
	position: absolute;
	border-left: 1px dashed #4683d0;
	height: 50%;
	left: 167%;
	top: 0;
}

.jyprocess .jline:nth-child(3),
.jyprocess .jline:nth-child(4) {
	margin-bottom: 100px;
}

.jyprocess .jline:nth-child(3) .i:nth-child(3):before {
	content: "";
	position: absolute;
	border-left: 1px dashed #4683d0;
	height: 100px;
	left: 50%;
	top: 100%;
}

.jyprocess .jline:nth-child(3) .i:nth-child(3):after {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	z-index: 5;
	background: url(../images/jt.png) no-repeat center;
	top: 100%;
	margin-left: -8px;
	left: 50%;
	margin-top: 70px;
	transform: rotate(90deg);
}

.jyprocess .jline:nth-child(4) .i:nth-child(1):before {
	content: "";
	position: absolute;
	border-left: 1px dashed #4683d0;
	height: 100px;
	left: 50%;
	top: 100%;
}

.jyprocess .jline:nth-child(4) .i:nth-child(1):after {
	content: "";
	position: absolute;
	width: 18px;
	height: 18px;
	z-index: 5;
	background: url(../images/jt.png) no-repeat center;
	top: 100%;
	margin-left: -8px;
	left: 50%;
	margin-top: 70px;
	transform: rotate(90deg);
}

.jyprocess .jline .i .jtip {
	position: absolute;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	z-index: 20;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	text-align: left;
	line-height: 1.8;
	top: 50%;
	left: 0;
	opacity: 0;
	transform: scale(0) translate(0, -50%);
	transition: .3s;
	color: #333;
	width: 100%;
	min-height: 100%;
	align-items: center;
}

.jyprocess .jline .i:hover .jtip {
	transform: scale(1) translate(0, -50%);
	opacity: 1;
}

.jktjw .img {
	padding-bottom: 0 !important;
	height: auto;
	width: 100%;
}

.jktjw .img img {
	width: 100%;
}

.tanchuang {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgb(0 0 0 / 35%);
	top: 0;
	left: 0;
	display: none;
}

.tanchuang .auto {
	width: 90%;
	max-width: 600px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	padding: 3%;
	background: #fff;
	border-radius: 10px;
}

.tanchuang .auto .diss {
	display: flex;
	align-items: flex-start;
}

.tanchuang .auto .diss span {
	width: 20%;
	text-align: right;
	padding-right: 10px;
	margin-top: 16px;
}

.tanchuang .auto .diss input {
	border: 0;
	background: #efefef;
	font-size: 16px;
	line-height: 2;
	padding: 10px 10px;
	width: 75%;
	border-radius: 5px;
}

.tanchuang .auto .diss textarea {
	border: 0;
	background: #efefef;
	font-size: 16px;
	line-height: 2;
	padding: 10px 10px;
	width: 75%;
	border-radius: 5px;
}

.tanchuang .auto .diss .ss {
	width: 0;
}

.tanchuang .auto .btn_submit {
	display: block;
	margin: auto;
	flex: 0 0 auto;
	width: 140px;
	text-align: center;
	line-height: 50px;
	background: #5690d2;
	border-radius: 25px;
	color: #fff;
	cursor: pointer;
	border: navajowhite;
}

.tanchuang .auto .diss:not(:last-child) {
	margin-bottom: 10px;
}

.tanchuang .auto .xx {
	position: absolute;
	width: 30px;
	height: 30px;
	background: rgb(223 223 223);
	right: -6px;
	top: -6px;
	border-radius: 50%;
}

.tanchuang .auto .xx:before {
	content: '';
	position: absolute;
	width: 80%;
	height: 2px;
	background: #000;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transform: rotate(45deg);
}

.tanchuang .auto .xx:after {
	content: '';
	position: absolute;
	width: 80%;
	height: 2px;
	background: #000;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	transform: rotate(-45deg);
}

@media(max-width:560px) {
	.structure .i {
		margin-left: 5px;
		margin-right: 5px;
	}

	.structure .items:before {
		left: 25px;
		right: 25px;
	}

	.jyprocess .jline .i .t {
		font-size: 16px;
	}

	.jyprocess .jline .i .p {
		font-size: 12px;
	}

	.jyprocess .jline .box {
		padding: 20px 10px;
	}

	.jyprocess .jline .i .um {
		width: 30px;
		line-height: 30px;
		font-size: 12px;
	}

	.jyprocess .jline .i .um.b {
		margin-left: -15px;
	}

	.jyprocess .jline .i .um.r {
		margin-top: -15px;
	}

	.jyprocess .jline .i .um.l {
		margin-top: -15px;
	}

	.jyprocess .jline .i .jtip {
		font-size: 14px;
	}
}

.tanchuang {
	z-index: 999;
}

.popcon {
	position: relative;
	max-height: 80vh;
	overflow: auto;
	padding: 30px 0;
	padding-right: 10px;
}

.tanchuang .auto .diss {
	display: block;
}

.tanchuang .auto .disTop {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-direction: row-reverse;
}

.tanchuang .auto .disTop .flex1 {
	flex: 1 1 auto;
	padding-right: 20px;
}

.tanchuang .auto .diss.s2 {
	display: flex;
	align-items: center;
}

.tanchuang .auto .diss .rds {
	margin-left: 20px;
	flex: 1 1 auto;
}

.tanchuang .diss .distit {
	font-size: 16px;
	margin-bottom: 5px;
}

.tanchuang .diss .distit .red {
	color: #f00;
	padding-right: 5px;
}

.tanchuang .auto .diss input[type='text'] {
	width: 100%;
	padding: 0 10px;
	height: 36px;
}

.tanchuang .auto .diss label {
	display: inline-block;
	vertical-align: middle;
	white-space: nowrap;
	margin-right: 20px;
	font-size: 14px;
}

.tanchuang .auto .diss label input[type="radio"] {
	padding: 0;
	width: auto;
	vertical-align: middle;
	margin-right: 2px;
	margin-bottom: 2px;
}

.tanchuang .auto .diss:not(:last-child) {
	margin-bottom: 20px;
}

.tanchuang .auto .diss select {
	width: 100%;
	border: none;
	padding: 0 10px;
	height: 36px;
	background: #efefef;
	border-radius: 5px;
	border-right: 10px solid #efefef;
	font-size: 14px;
	color: inherit;
	font-family: inherit;
	outline: none;
}

.tanchuang .auto .diss textarea {
	width: 100%;
}

.uploadimg .img {
	width: 120px;
	height: 140px;
	background: url(../images/upfile.jpg) no-repeat center;
	background-size: 100% 100%;
}

.uploadimg .img img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.uploadimg .uploadBtn {
	position: relative;
	display: inline-block;
	margin-top: 10px;
	overflow: hidden;
	vertical-align: middle;
	line-height: 1;
}

.tanchuang .auto .uploadimg .uploadBtn input {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	cursor: pointer;
	width: 100%;
	height: auto;
	padding: 0;
	opacity: 0;
	line-height: 1;
}

.uploadimg .uploadBtn .tt {
	font-size: 14px;
	color: #64a8dc;
}

.tanchuang .auto .diss span {
	width: auto;
	padding: 0;
	margin: 0;
}

.uploadimg .uploadBtn span {
	display: none;
}

.uploadimg .tip {
	font-size: 12px;
	color: #999;
	width: 140px;
	text-align: justify;
	line-height: 1.5;
	margin-top: 10px;
}

.tanchuang .auto .diss.s2 .distit {
	margin-bottom: 0;
}

.structure2 .flex {
	justify-content: flex-start;
}

.structure2 .item {
	padding: 10px 5px;
	background: #f0f7fe;
	flex: 0 0 auto;
	border-radius: 5px;
	font-size: 14px;
	position: relative;
	margin-left: 30px;
	width: 140px;
	text-align: center;
	margin-top: 5px;
}

.structure2 .item:after {
	content: "";
	position: absolute;
	right: 100%;
	top: 50%;
	width: 30px;
	border-bottom: 1px solid #b5d2e8;
}

.structure2 .flex1,
.structure2 .box4 {
	position: relative;
	padding-left: 20px;
	overflow: hidden;
}

.structure2 .flex1:after,
.structure2 .box4:after {
	content: "";
	position: absolute;
	left: 20px;
	border-left: 1px solid #b5d2e8;
	top: 25px;
	bottom: 20px;
}

.structure2 .item:first-child {
	/* margin-top:0;*/
}

.structure2.structure3 .box2>.flex1:after,
.structure2.structure3 .box2>.flex1:before {
	display: none;
}

.structure2.structure3 .box1>.flex1:before {
	top: 51%;
}

.structure2.structure3 .box2>.flex1 {
	padding-left: 0;
}

.structure2 .flex1:before,
.structure2 .box4:before {
	content: "";
	width: 20px;
	top: 50%;
	left: 0;
	position: absolute;
	border-bottom: 1px solid #b5d2e8;
}

.structure2 .box2,
.structure2 .box3 {
	margin-bottom: 15px;
}

.structure2 .box2:last-child,
.structure2 .box3:last-child {
	margin-bottom: 0;
}

.structure2 .item.valign {
	background: #0080e2;
	font-size: 16px;
	width: 56px;
	color: #fff;
	margin: 0;
	padding: 20px;
	text-align: center;
}

.structure2 .item.valign:after {
	display: none;
}

.structure2 .item.valign a {
	color: #fff;
}

.structure2 {
	width: 100%;
	overflow: auto;
}

.structure2 .con {
	width: 990px;
}

.fy.flex {
	flex-wrap: wrap;
	justify-content: flex-start;
}

.fy.flex .item {
	width: 31.33%;
	margin-right: 3%;
	margin-bottom: 3%;
}

.fy.flex .item:nth-child(3n) {
	margin-right: 0;
}

.nav li {
	position: relative;
}

.nav li .sub {
	position: absolute;
	left: 50%;
	transform: translate(-50%);
	z-index: 10;
	overflow: hidden;
	min-width: 100%;
	top: 100%;
	background: #fff;
	transition: .3s;
	max-height: 0;
}

.nav li .sub dl {
	padding: 10px 0;
}

.nav li .sub a {
	display: block;
	line-height: 34px;
	color: #333;
}

.nav li .sub a:after {
	display: none;
}

.nav li:hover .sub {
	max-height: 400px;
}

.nav li .sub a:hover {
	color: #3181db;
}

.structure2 .box2>.flex1 {
	display: flex;
	flex-wrap: wrap;
}

.structure2 .box4 {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.structure2 .flex1 {
	flex: 1 1 auto;
}

.structure2 .box3 {
	margin-right: -20px;
}

.structure2 .box2:first-child {
	position: relative;
}

.structure2 .box2:first-child:before {
	width: 1px;
	height: 50.3%;
	left: 0;
	position: absolute;
	top: 0;
	background: #fff;
	content: '';
	z-index: 8;
}

.structure2 .box2:last-child {
	position: relative;
}

.structure2 .box2:last-child:before {
	width: 1px;
	height: 47%;
	left: 0;
	position: absolute;
	bottom: 0;
	background: #fff;
	content: '';
	z-index: 8;
}

.structure2 .box2:nth-child(2) .box3:last-child {
	position: relative;
}

.structure2 .box2:nth-child(2) .box3:last-child:before {
	width: 1px;
	height: 47%;
	left: 0;
	position: absolute;
	bottom: 0;
	background: #fff;
	content: '';
	z-index: 8;
}

.structure2 .box2:nth-child(4) .box3:nth-child(5) {
	position: relative;
}

.structure2 .box2:nth-child(4) .box3:nth-child(5):before {
	width: 1px;
	height: 41%;
	left: 0;
	position: absolute;
	bottom: 0;
	background: #fff;
	content: '';
	z-index: 8;
}

/* .structure2 .box2:first-child .box3:not(:first-child) .item:after{opacity: 0} */
.structure2 .box2:first-child .box3:nth-child(4n + 1) .item:after {
	opacity: 1;
}

.structure2 .box2:nth-child(1) .box3:first-child {
	position: relative;
}

.structure2 .box2:nth-child(1) .box3:first-child:before {
	width: 1px;
	height: 50.6%;
	left: 0;
	position: absolute;
	top: 0;
	background: #fff;
	content: '';
	z-index: 8;
}

.structure2 .box4 .item:not(:first-child):after {
	opacity: 0
}

.structure2 .box4 .item:nth-child(3n + 1):after {
	opacity: 1
}

.structure2 .box2:nth-child(1) .box3 .item:not(:nth-child(3n+1)):after {
	opacity: 0
}

.structure2 .box2:nth-child(2) .box3:not(:first-child) .item:after {
	opacity: 0
}

.structure2 .box2:nth-child(3) .box3:not(:nth-child(4n+1)) .item:after {
	opacity: 0
}

.structure2 .box2:nth-child(2) .box3:nth-child(4n + 1) .item:after {
	opacity: 1;
}

.structure2 .box2:nth-child(2) .box3:last-child .item:after {
	opacity: 1;
}

.structure2 .box2:nth-child(4) .box3:not(:first-child) .item:after {
	opacity: 0
}

.structure2 .box2:nth-child(4) .box3:nth-child(4n + 1) .item:after {
	opacity: 1;
}


.structure2 .box2:nth-child(2) .box3:last-child .box4 .item:not(:first-child):after {
	opacity: 0
}

.structure2 .box2:nth-child(2) .box3:last-child .box4 .item:nth-child(3n + 1):after {
	opacity: 1
}

.structure_line .flex1:before {
	width: 60px;
}

.structure_line .flex1 {
	padding-left: 60px;
}

.structure_line .flex1:after {
	left: 60px;
}

.structure_line .item:after {
	width: 70px;
}

.structure_line .item {
	margin-left: 70px;
}

@media (max-width:1024px) {
	.nav li .sub {
		display: none;
	}
}

@media(max-width:560px) {
	.tanchuang .auto .disTop {
		display: block;
	}

	.tanchuang .auto .diss.s2 {
		display: block;
	}

	.tanchuang .auto .diss .rds {
		margin-left: 0;
	}

	.tanchuang .auto .diss.s2 .distit {
		margin-bottom: 5px;
	}

	.tanchuang .diss .distit {
		font-size: 14px;
		font-weight: bold;
	}

	.fy.flex .item {
		width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
	}
}

.table tr:hover td {
	background: rgb(223, 227, 219);
}

.table td a:hover {
	color: #333;
}

@media (max-width: 1280px) {
	.kscategory .sub .i {
		width: 33.33%;
	}
}

@media (max-width: 1024px) {
	.kscategory .sub .i {
		width: 50%;
	}
}

@media (max-width: 480px) {
	.kscategory .item:nth-of-type(1) .sub .i {
		width: 100%;
	}
}

@media(min-width: 1025px) {
	.context .img {
		float: left;
		margin-right: 20px;
	}
}

.singel .txt img,
.context img {
	height: auto !important;
}

/* 2023/4/11 */
.culist {
	justify-content: flex-start;
}

.culist .item {
	margin-right: 3.5%;
}

.culist .item:nth-child(3n) {
	margin-right: 0;
}

img[src="/jcdyyg202211018453/uploadfiles/"],
img:not([src]) {
	opacity: 0;
}

.structure2 .item .con {
	display: none;
}

.structure2 .box2>.flex1 {
	align-items: flex-start;
}

.list1 .item,
.list1 .litop,
.uploadimg .uploadBtn .tt,
.tanchuang .auto .xx {
	cursor: pointer;
}

.tanchuang .auto .uploadimg .uploadBtn input {
	font-size: 0;
}

@media (max-width: 560px) {
	.culist .item {
		margin-right: 0%;
	}
}

/* 2023.4.19 */
.base_select {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 15px;
}

.base_select .select {
	width: 50%;
	max-width: 200px;
	height: 40px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	border: 2px solid #0080e2;
	overflow: hidden;
	position: relative;
}

.base_select .select:not(:first-child) {
	margin-left: 5%;
}

.base_select .select::before {
	content: '';
	display: block;
	position: absolute;
	top: 14px;
	border-bottom: 2px solid #333;
	border-right: 2px solid #333;
	right: 18px;
	width: 6px;
	height: 6px;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
}

.base_select .select select {
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: transparent;
	border: none;
	appearance: none;
	font-size: 16px;
}

@media (max-width: 768px) {
	.base_select .select {
		height: 35px;
	}

	.base_select .select select {
		font-size: 14px;
	}

	.base_select .select::before {
		top: 10px;
	}
}


.teamList .item .view span,
.teamList .item .view span {
	color: #fff;
	background: #518dd1;
}


/* 2023.5.8 */
.newsList2 .v_btn {
	width: 35px;
	height: 35px;
	position: absolute;
	border: 1px solid #fff;
	z-index: 10;
	left: 50%;
	top: 50%;
	cursor: pointer;
	border-radius: 50%;
	margin-left: -12px;
	margin-top: -12px;
	font-size: 10px;
}

.newsList2 .v_btn:after {
	content: "";
	position: absolute;
	border-bottom: 0.5em solid transparent;
	border-top: 0.5em solid transparent;
	border-left: 0.9em solid #fff;
	left: 50%;
	top: 50%;
	margin-top: -0.5em;
	margin-left: -0.4em;
}

.kscategory .sub .i a .arr-r {
	top: 10px;
}


.vid .itop {
	position: relative;
}

.floor1 .v_btn {
	position: absolute;
	width: 24px;
	height: 24px;
	border: 1px solid #fff;
	z-index: 10;
	left: 50%;
	top: 50%;
	cursor: pointer;
	border-radius: 50%;
	margin-left: -12px;
	margin-top: -12px;
	font-size: 10px;
}

.floor1 .v_btn:after {
	content: "";
	position: absolute;
	border-bottom: 0.5em solid transparent;
	border-top: 0.5em solid transparent;
	border-left: 0.9em solid #fff;
	left: 50%;
	top: 50%;
	margin-top: -0.5em;
	margin-left: -0.4em;
}


@media screen and (max-width:640px) {
	.popup .info {
		/* max-height: 60%; */
		overflow-y: auto;
		max-height: 130vw;
	}

	.teambox {
		max-height: 100%;
	}
}


/* 2023/5/23 */
.culist .item a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	-webkit-border-radius: ;
	-moz-border-radius: ;
	-ms-border-radius: ;
	-o-border-radius: ;
}

.culist .item a::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(53, 117, 204, 0.7);
	z-index: 2;
}

.culist .item .t {
	width: 100%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 3;
	margin: 0;
	color: #fff;
}


/* 2023.5.24 */
/* 价格公示 */
.pmain1 .search {
	display: flex;
	/* flex-wrap: wrap; */
	width: auto;
	justify-content: flex-start;
}

.pmain1 .search input {
	margin-right: 10px;
	width: calc((100% - 36px)/2);
	max-width: 300px;
}

.pmain1 .search span {
	position: relative;
	top: unset;
	right: unset;
	min-width: 36px;
}

@media screen and (max-width:1024px) {
	.pmain1 .table th {
		font-size: 16px;
	}

	.table td {
		font-size: 14px;
	}
}

@media screen and (max-width:768px) {
	.pmain1 .table th {
		font-size: 14px;
		height: 30px;
	}

	.table td {
		font-size: 13px;
	}
}

@media screen and (max-width:480px) {
	.pmain1 .search input {
		width: 100%;
		margin-bottom: 10px;
	}

	.pmain1 .search {
		flex-wrap: wrap;
	}
}


.pmain2 .search {
	display: flex;
	flex-wrap: wrap;
	width: auto;
	justify-content: flex-start;
}

.pmain2 .search input,
.pmain2 .search select {
	margin-right: 10px;
	width: calc((100% - 36px)/2);
	max-width: 220px;
	margin-bottom: 10px;
}

.pmain2 .search span {
	position: relative;
	top: unset;
	right: unset;
	min-width: 36px;
}

.pmain2 .search select {
	width: 100%;
	padding-left: 10px;
	padding-right: 40px;
	outline: none;
	border: 1px solid #5690d2;
	height: 36px;
	border-radius: 20px;
}

@media screen and (max-width:1024px) {
	.pmain2 .table th {
		font-size: 16px;
	}

	.pmain2 td {
		font-size: 14px;
	}
}

@media screen and (max-width:768px) {
	.pmain2 .table th {
		font-size: 14px;
		height: 30px;
	}

	.pmain2 td {
		font-size: 13px;
	}
}

@media screen and (max-width:480px) {
	.pmain2 .search input {
		width: 100%;
		margin-bottom: 10px;
	}

	.pmain2 .search {
		flex-wrap: wrap;
	}
}



.pmain3 .search {
	display: flex;
	flex-wrap: wrap;
	width: auto;
	justify-content: flex-start;
}

.pmain3 .search input {
	margin-right: 10px;
	width: calc((100% - 36px)/2);
	max-width: 300px;
	margin-bottom: 10px;
}

.pmain3 .search select {
	padding-left: 10px;
	padding-right: 40px;
	outline: none;
	border: 1px solid #5690d2;
	height: 36px;
	border-radius: 20px;
	margin-right: 10px;
}


.pmain3 .search span {
	position: relative;
	top: unset;
	right: unset;
	min-width: 36px;
}

@media screen and (max-width:1024px) {
	.pmain3 .table th {
		font-size: 16px;
	}

	.pmain3 td {
		font-size: 14px;
	}
}

@media screen and (max-width:768px) {
	.pmain3 .table th {
		font-size: 14px;
		height: 30px;
	}

	.pmain3 td {
		font-size: 13px;
	}
}

@media screen and (max-width:480px) {
	.pmain3 .search input {
		width: 100%;
		margin-bottom: 10px;
	}

	.pmain3 .search {
		flex-wrap: wrap;
	}
}


.pmain4 .table td {
	white-space: unset;
}

.pmain4 .table tbody td:nth-child(1) {
	width: 90px;
}

.pmain4 .table tbody td:nth-child(2) {
	width: auto;
}

.pmain4 .table tbody td:nth-child(3) {
	width: 200px;
}


.pmain4 .table th span {
	display: inline-block;
	margin: 0 10px;
}

@media screen and (max-width:1024px) {
	.pmain4 .table th {
		font-size: 16px;
	}

	.pmain4 td {
		font-size: 14px;
	}

	.pmain4 .table tbody tr:first-child td {
		height: 30px;
	}
}

@media screen and (max-width:768px) {
	.pmain4 .table th {
		font-size: 14px;
		height: 30px;
	}

	.pmain4 td {
		font-size: 13px;
	}

	.pmain4 .table tbody td:nth-child(3) {
		width: 30%;
	}

	.pmain4 .table tbody td:nth-child(1) {
		width: 10%;
	}

	.pmain4 .table tbody td:nth-child(2) {
		width: 60%;
	}
}

@media screen and (max-width:480px) {
	.pmain4 .search input {
		width: 100%;
		margin-bottom: 10px;
	}

	.pmain4 .search {
		flex-wrap: wrap;
	}
}


.culist.culist_22 .item a::before {
	display: none;
}

.culist.culist_22 .item .t {
	position: static;
	transform: translateY(0%);
	color: #333;
	margin: 20px 0 10px;
}

.culist.culist_22 .item .p {
	text-align: center;
}

.culist.culist_23 .item .imgbox {
	padding-bottom: 56.4%;
	position: relative;
}

.culist.culist_23 .item img {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	object-fit: cover;
}



/* 2023.7.21 */
.footer .copy {
	margin-top: 30px;
}

.footer .fnav {
	display: flex;
	justify-content: center;
}

.indexCtn {
	padding: 20px 0;
	font-size: 14px;
	line-height: 1.2;
}

.arHits {
	text-align: right;
	font-size: 14px;
	color: #666;
}

@media (max-width: 768px) {
	.footer .copy {
		margin-top: 20px;
	}

	.floorHead.s2 .tab .more {
		display: none !important;
	}
}

/* 2023.8.4 */
.btn1 {
	display: inline-block;
	background: #f2f4f9;
	padding: 0 26px 0 16px;
	color: #2778d3 !important;
	line-height: 34px;
	position: relative;
}

.btn1 span {
	position: absolute;
	right: -10px;
	top: 50%;
	margin-top: -10px;
	width: 20px;
	height: 20px;
	background: #5690d2;
	z-index: 10;
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
}



.list4 {
	display: flex;
	flex-wrap: wrap;
	/* display: none; */
}

.list4 .list2 {
	padding: 10px 10px;
	width: 32.33%;
	margin-bottom: 20px;
	position: relative;
	background: #518dd136;
	border-radius: 5px;
}
.list4 .t1:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #959595;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.list4 .t1:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 15px;
    background: #959595;
    right: 26px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.list4 .list2:not(:nth-child(3n+1)) {
	margin-left: 1.5%;
}

.list4 .t1 {
	font-size: 20px;
	position: relative;
}

.list4 .box {
	position: absolute;
	margin-top: 10px;
	border-radius: 20px;
	display: none;
	width: 100%;
	background: #fff;
	z-index: 9;
	left: 0;
}

.list4 .t2 {
	font-size: 14px;
	color: #000;
	padding: 10px 10px;
	border: 1px solid #eee;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	-ms-border-radius: 20px;
	-o-border-radius: 20px;
	cursor: pointer;
	line-height: 1.3;
}

.list4 .t2.cur {
	border-radius: 20px 20px 0 0;
	-webkit-border-radius: 20px 20px 0 0;
	-moz-border-radius: 20px 20px 0 0;
	-ms-border-radius: 20px 20px 0 0;
	-o-border-radius: 20px 20px 0 0;
}

.list4 .list5 {
	position: absolute;
	left: 0;
	top: 100%;
	min-width: 100%;
	background-color: #fff;
	z-index: 2;
	display: none;
}

.list4 .item1 {
	font-size: 12px;
	color: #000;
	padding: 5px 10px;
	border: 1px solid #eee;
	cursor: pointer;
}

.list4 .item1:last-child {
	border-radius: 0 0 20px 20px;
	-webkit-border-radius: 0 0 20px 20px;
	-moz-border-radius: 0 0 20px 20px;
	-ms-border-radius: 0 0 20px 20px;
	-o-border-radius: 0 0 20px 20px;
}
.list4 .list2.on {
    background: #518dd1a8;
}

.list4 .list2.on .t1::before,.list4 .list2.on .t1::after {
    background: #fff;
}


@media (max-width: 1024px) {
	.list4 .list2 {
		width: 49%;
	}

	.list4 .list2:not(:nth-child(3n+1)) {
		margin-left: 0%;
	}

	.list4 .list2:not(:nth-child(2n+1)) {
		margin-left: 2%;
	}
}

@media (max-width: 768px) {
	.list4 .t1 {
		font-size: 14px;
	}

	.list4 .t2 {
		font-size: 12px;
		padding: 5px 5px;
	}
	.list4 .list2 {
		margin-bottom: 5px;
	}
}

/* 2023.8.12 */
.bsBox{
	box-sizing: content-box;
}
.share{
	display: flex;
	justify-content: flex-end;
	margin-top: 20px;
	align-items: center;
}
.share .share_box{
	display: flex;
}
.share .share_box a{
	width: 30px;
	height: 30px;
	margin-left: 10px;
}

#ad1{
  z-index: 1000;
}
@media(max-width:750px){
  #ad1{
    width: 50%;
   }
}
#ad2{
	position:absolute;
	left:0;
	top:100%;
	z-index:105;
}
#ad2 img{
	max-width:170px;
}
.Feedback{padding-top: 40px;}
.Feedback ul li{margin-bottom: 25px;}
.Feedback ul li:last-child{margin-bottom: 0;}
.Feedback ul li .flex{display: flex;align-items: center;justify-content: space-between}
.Feedback ul li .item{width: 32%;}
.Feedback ul li .name{margin-bottom: 20px;font-size: 22px;color: #333;}
.Feedback ul li .name span{padding-left: 10px;color: red;}
.Feedback ul li .text{display: block;height: 45px;padding: 0 20px;width: 100%;font-size: 18px;border: 1px solid #ccc;box-sizing: border-box;}
.Feedback ul li .code{display: flex;align-items: center}
.Feedback ul li .code .btn{width: 120px;height: 45px;font-size: 18px;text-align: center;color: #fff;background-color: #2e78cc;cursor: pointer;border: 0;}
.Feedback ul li .code .text{width: calc(100% - 120px);}
.Feedback ul li textarea{width: 100%;padding: 20px;font-size: 18px;border: 1px solid #ccc;box-sizing: border-box;}
.Feedback .submit{margin: 40px auto 0;width: 140px;height: 45px;font-size: 18px;text-align: center;color: #fff;background-color: #2e78cc;cursor: pointer;border: 0;}


