/* @font-face {
	font-family: 'NotoSansJPLight';
	src: url('../font/NotoSansJP-Light.otf');
}
*/
@font-face {
	font-family: "Bahnschrift";
	src: url("../font/Bahnschrift_Regular.ttf");
}


:root {
	--primary-color: #193782;
	--primary-fm: "Bahnschrift";

}




#fp-nav {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 100;
}

#fp-nav ul {
	margin: 0;
	padding: 0;
}

#fp-nav li {

	margin: 10px;
	position: relative;
	list-style: none;
	margin-bottom: 20px;

	/* padding: 2px; */
}

#fp-nav a {
	display: block;
	position: relative;
	width: 7px;
	height: 7px;
	cursor: pointer;
	text-decoration: none;
	border: 1px solid #fff;
	border-radius: 50%;
	background: #fff;
}

#fp-nav span {
	border-radius: 50%;
	position: absolute;
	width: 7px;
	height: 7px;

	background: transparent;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

}

#fp-nav .active span {
	background: #fff;

}

.fp-nav_on a {
	border: 1px solid var(--primary-color) !important;
	background: var(--primary-color) !important;
}

.fp-nav_on .active span {
	background: var(--primary-color) !important;
}

#fp-nav .active {
	transform: scale(1.5, 1.5);
	background: none;
	width: 12px;
	height: 12px;
	left: -2px;
}

.fp-nav_on .active {
	background: #fff !important;
}

.fp-nav_on span {
	background: #193782 !important;
	border: 0px none !important;
}

/* 最后一屏的滚动样式 */
.section.fifth:last-child {
	overflow-y: auto;
	height: 100vh;
	/* 设置滚动条样式 */
	scrollbar-width: thin;
	/* Firefox */
	scrollbar-color: transparent transparent;
	/* Firefox */
}

/* Webkit浏览器的滚动条样式 */
.section.fifth:last-child::-webkit-scrollbar {
	width: 6px;
	/* 滚动条宽度 */
}

.section.fifth:last-child::-webkit-scrollbar-track {
	background: transparent;
	/* 轨道背景 */
}

.section.fifth:last-child::-webkit-scrollbar-thumb {
	background-color: rgba(255, 255, 255, 0.1);
	/* 滑块颜色，半透明 */
	border-radius: 3px;
	/* 滑块圆角 */
}

/* 鼠标悬停时的滑块样式 */
.section.fifth:last-child::-webkit-scrollbar-thumb:hover {
	background-color: rgba(255, 255, 255, 0.2);
	/* 悬停时稍微明显一点 */
}

.m1 {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;

}

.navs {
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 100000;
	width: 100%;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	padding: 20px 0;
}

.navs .logo {
	width: 180px;
	float: left;
}
.navs .logo a{
    	display: inline-block;
}
.navs .logo img {
	width: 100%;
	display: inline-block;
}

.navs .nav ul li {
	float: left;
	margin-left: 30px;
}

.navs .nav ul li .li_a {
	color: #fff;
}

.navs .nav ul li .li_a:hover {
	/* text-decoration: underline; */
}

.navs .nav {
	margin-top: 25px;
}

/* 当滚动到第二屏时添加的样式 */
.navs.dark-bg {
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(5px);
}

.m1 .box {
	position: absolute;
	left: 50%;
	top: 20%;
	z-index: 99;
	transform: translate(-50%, 0);
	color: #fff;
}

.m1 .box .t1 {
	font-size: 60px;
	font-weight: bold;
	margin-bottom: 20px;
}

.m1 .box .t2 {
	font-size: 18px;
	width: 900px;
	color: #FFFFFF;
}

/* 进度条容器样式 */
.progress-container {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
	display: flex;
	cursor: pointer;
	flex-direction: column;
	align-items: center;
	z-index: 100;
}

.progress-bar {
	width: 40px;
	height: 40px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	position: relative;
	margin-bottom: 10px;
}

.progress-bar::after {
	content: '';
	position: absolute;
	top: -2px;
	left: -2px;
	width: 40px;
	height: 40px;
	border: 2px solid transparent;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	border-radius: 50%;
	animation: rotate 1.5s linear infinite;
}

.progress-bar::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: translate(-50%, -80%) rotate(45deg);
	animation: arrowDown 1.5s infinite;
}

.progress-text {
	color: #fff;
	font-size: 14px;
	opacity: 0.8;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes arrowDown {
	0% {
		transform: translate(-50%, -80%) rotate(45deg);
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		transform: translate(-50%, -20%) rotate(45deg);
		opacity: 0;
	}
}

.section {
	position: relative;
}

.m2 {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
	height: 100%;
	background: url('../img/p18.png') no-repeat;
	background-size: cover;
}

.m2 .box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.m2 .box .dm {
	display: flex;
	align-items: center;
}

.m2 .box .dm .cont {
	width: 400px;
	margin-right: 100px;
}

.m2 .box .dm .cont .t1 {
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 60px;
}

.m2 .box .dm .cont .t2 {
	font-size: 16px;
	color: #666666;
	line-height: 30px;
}
.m2 .box .dm .pic{
    height: 600px;
}
.m2 .box .dm .pic img {
	width: 750px;
}

.m2 .group {
	margin-top: -80px;
}

.m2 .group .item {
	float: left;
	margin-right: 5%;
}

.m2 .group .item .pic .icon {
	width: 85px;
	height: 85px;
	border-radius: 50%;
	text-align: center;
	line-height: 85px;
	border: 1px solid #193782;
}

.m2 .group .item .pic .icon img {
	height: 40px;
	display: inline-block;
}

.m2 .group .item .t1 {
	font-size: 16px;
	color: var(--primary-color);
	margin-top: 10px;
	text-align: center;
}

.m2 .group .item:hover .pic .icon {
	background: var(--primary-color);
}

.m2 .group .item:hover .pic .icon img {
	filter: brightness(0) invert(1);
}

.m3 {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
	height: 100%;
	background: url('../img/p30.png') no-repeat;
	background-size: cover;
}

.m3 .box {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
}



.m3 .tabbar {
	text-align: center;
	color: #fff;
	margin-bottom: 50px;
}

.m3 .tabbar .lt {
	display: inline-block;
	width: 100px;
	margin: 0px 10px;
	border: 1px solid #fff;
	background: rgba(255, 255, 255, 0.24);
	border-radius: 50px;
	cursor: pointer;
	padding: 15px 0;
	font-size: 16px;
}

.m3 .tabbar .lt:hover {
	background: #fff;
	color: var(--primary-color);
}

.m3 .tabbar .on {
	background: #fff;
	color: var(--primary-color);
}

.m3 .group {
	display: flex;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
	width: 100%;
}

.m3 .group .item {
	width: calc(33.33% - 32px);
	margin: 0px 16px;
	margin-bottom: 30px;
}

.m3 .group .item .pic {
    height: 250px;
}

.m3 .group .item .t1 {
	text-align: center;
	font-size: 16px;
	margin-top: 20px;
	color: #FFFFFF;
}

.m3 .box .box_dm {
	transform: scale(.85, .85);
}

.m2 .boxss {
	transform: scale(.85, .85);
}

.m4 .box_dm {
	transform: scale(.85, .85);
}

.m4 {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
	height: 100%;
	background: url('../img/p27.png') no-repeat;
	background-size: cover;
}

.common_tit {
	text-align: center;
	font-size: 50px;
	color: 50px;
	font-weight: bold;
	margin-bottom: 50px;
	color: #fff;
}

.m4 .box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.common_tit2 {
	color: #333333;
}

.m4 .tabbar .lt {
	width: 16.6%;
	cursor: pointer;
	float: left;
}

.m4 .tabbar .lt .lt_dm {
	border-right: 1px solid #fff;
	background: #999999;
	text-align: center;
	color: #fff;
	padding: 25px 0;
	border-bottom: 1px solid #fff;
}

.m4 .tabbar .lt:hover .lt_dm {
	background: linear-gradient(0deg, #193782, #2B4C9D);
}

.m4 .tabbar .on .lt_dm {
	background: linear-gradient(0deg, #193782, #2B4C9D);
}

.m4 .listvest {
	margin-top: 40px;
}

.m4 .listvest .list {
	display: flex;
	align-items: center;
}

.m4 .listvest .list .cn {
	flex: 1;
	padding-right: 90px;
	line-height: 35px;
}

.m4 .listvest .list .pic {
	width: 680px;
}

.m4 .listvest .list .pic img {
	width: 100%;
}

.m4 .listvest .list .t1 {
	font-size: 40px;
	color: #333333;

}

.m4 .listvest .list .t2 {
	margin: 50px 0;
}

.cm_more_hv {
	border: 1px solid var(--primary-color);
	color: var(--primary-color);
	display: inline-block;
	padding: 10px 30px;
	border-radius: 50px;
	display: flex;
	align-items: center;
	float: left;
}

.cm_more_hv img {
	width: 20px;
	display: inline-block;
	margin-left: 5px;
	filter: brightness(0) saturate(100%) invert(19%) sepia(83%) saturate(1237%) hue-rotate(206deg) brightness(97%) contrast(92%);

}

.cm_more_hv:hover {

	background: var(--primary-color);
	color: #fff;
}

.cm_more_hv:hover img {
	filter: brightness(0) invert(1);
}


.m5 {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
	height: 100%;
	background: url('../img/p16.jpg') no-repeat;
	background-size: cover;
}

.m5 .box {
	position: absolute;
	left: 50%;
	top: 10%;
	transform: translate(-50%, 0%);
}

.m5 .box .t1 {
	font-size: 50px;
	color: #fff;
	font-weight: bold;
}

.m5 .box .t2 {
	margin: 4% 0 5%;
	color: #fff;
	display: block;
	font-size: 50px;
}

.m5 .box .t3 {
	color: #fff;
	font-size: 18px;
	width: 900px;
	line-height: 40px;
	margin-bottom: 40px;
}

.cm_more_hv2 {
	border: 1px solid #fff;
	color: #fff;
}

.cm_more_hv2 img {
	filter: brightness(0) invert(1);
}

.cm_more_hv2:hover {
	border: 1px solid var(--primary-color);
	color: #fff;
	background: var(--primary-color);
}

.cm_more_hv3 {
	border: 1px solid var(--primary-color);
	color: #fff;
	background: var(--primary-color);
}

.m5_but {
	position: absolute;
	width: 100%;
	bottom: 20px;
	left: 0px;
}

.m5_but .item {
	width: 20%;
	float: left;
	cursor: pointer;
}

.m5_but .item .ch_dm {
	padding: 50px 0;

	display: flex;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 10;
	display: block;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	background: rgba(0, 0, 0, 0.6);
}

.m5_but .item img {
	height: 22px;
	display: inline-block;
	margin-right: 5px;
}

.m5_but .item:hover .ch_dm {
	background: #fff;
	color: var(--primary-color);
}

.m5_but .item:hover img {
	filter: brightness(0) saturate(100%) invert(19%) sepia(83%) saturate(1237%) hue-rotate(206deg) brightness(97%) contrast(92%);

}

.m5_but .on .ch_dm {
	background: #fff;
	color: var(--primary-color);
}

.m5_but .on img {
	filter: brightness(0) saturate(100%) invert(19%) sepia(83%) saturate(1237%) hue-rotate(206deg) brightness(97%) contrast(92%);

}

.m6 {
	background: url('../img/p19.png') center no-repeat;
	background-size: 100% 100%;
min-height: 200px;
	padding: 80px 0;
	background: #193782;
	/*display: none;*/
}

.m6 .t1 {
	margin-bottom: 60px;
}

.m6 .t1 .nt {
	font-size: 60px;
	color: #333;
	font-weight: bold;
}

.m6 .t1 .more {
    display: none;
	margin-top: 20px;
}

.m6 .cont {
	display: flex;
}

.m6 .cont .pic_let {
	width: 560px;
	background: #fff;
	border-radius: 5px;
	padding-bottom: 30px;
}

.m6 .cont .pic_let .pic {}

.m6 .cont .pic_let .dm {
	background: #fff;
	padding: 20px;
}

.m6 .cont .pic_let .dm .tt1 {
	color: #193782;
	font-size: 20px;
	font-weight: bold;
}


.m6 .cont .pic_let .dm .tt2 {
	margin: 25px 0;
}

.m6 .cont .cont_rit {
	flex: 1;
	margin-left: 20px;
	background: #fff;
	border-radius: 5px;
}


.m6 .cm_more_hv {
	font-size: 14px;
}

.m6 .cont .cont_rit .dm {
	padding: 30px 8%;
}

.m6 .cont .cont_rit .item .tt1 {
	font-size: 20px;
	color: #000000;
	font-weight: bold;
}

.m6 .cont .cont_rit .item .tt2 {
	color: #999;
	font-size: 16px;
}

.m6 .cont .cont_rit .item {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #EFEFEF;
}

.m6 .cont .cont_rit .item:last-child {
	border-bottom: 0px;
}

.m6 .cont .cont_rit .item:hover .tt1 {
	color: var(--primary-color);
}

.footer {
	background: var(--primary-color);
	padding: 60px 0 10px;
	background: var(--primary-color) url('../img/p29.png') center no-repeat;
}

.footer .share a {
	width: 45px;
	height: 45px;
	display: inline-block;
	border-radius: 50%;
	text-align: center;
	line-height: 45px;
	margin-left: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.footer .share a img {
	display: inline-block;
	height: 20px;
}

.footer .f_1 {
	padding-bottom: 25px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	margin-bottom: 50px;
}
.footer .f_1 .f_logo img{
    width: 165px;
}

.footer .f_2 .let .t1 {
	font-size: 16px;
	color: #fff;
	line-height: 35px;
}

.footer .f_2 .let .t2 {
	margin-top: 10px;
}

.footer .f_2 .let .t2 .lt {
	margin-right: 30px;
	color: #fff;

}

.footer .f_2 .let .t2 .lt .pic {
	width: 95px;
	height: 95px;
	background: #fff;
	margin-bottom: 5px;
}

.footer .f_2 .let .t2 .lt .pic .t2_1 {
	font-size: 14px;
}

.footer .f_2 .let .t2 .lt .t2_1 {
	font-size: 14px;
	text-align: center;
}

.footer .f_2 .f_nav .lt .tt1 {
	color: #fff;
	font-size: 16px;
	margin-bottom: 8px;
}

.footer .f_2 .f_nav .lt ul li a {
	color: #A3A3A3;
	font-size: 14px;
}

.footer .f_2 .f_nav .lt ul li a:hover {
	color: #fff;
}

.footer .f_2 .f_nav .lt {

	margin-left: 10px;
}

.footer .f_2 .f_nav .lt:nth-child(1) {
	margin-left: 0px;
}

.footer .copy {
	text-align: center;
	color: #fff;
	font-size: 14px;
	margin-top: 10px;
	padding: 10px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.navs2 {
	position: relative;
	left: auto;
	top: auto;
	padding-bottom: 0px;
}

.navs2 .nav ul li {
	padding-bottom: 25px;
	border-bottom: 2px solid #fff;
}

.navs2 .nav ul li .li_a {
	color: #333333;
}

.navs2 .nav ul li:hover .li_a {
	color: #193782;
	font-weight: bold;
}

.navs2 .nav ul li:hover {
	border-bottom: 2px solid #84C324;
}

.child_banner {
	width: 100%;
	height: 453px;
	position: relative;
}

.weizhi {
	position: absolute;
	width: 100%;
	bottom: 0px;
	padding: 20px 0;
	font-size: 14px;
	color: #fff;
	left: 0px;
	background: rgba(0, 0, 0, 0.4);
}

.weizhi a {
	color: #fff;
}


.m7 {
	margin-top: 30px;
	margin-bottom: 100px;
}

.m7_let {
	width: 22%;
	background: #F2F2F2;
	border-bottom: 1px solid var(--primary-color);
}

.m7_let .tit {
	background: url('/img/p35.png') center no-repeat;
	background-size: cover;
	padding: 20px 25px;
	color: #fff;
	font-size: 17px;
	font-weight: bold;
}

.m7_let .gp ul li a {
	color: #333333;
	font-size: 16px;
	padding: 20px 0;
	font-weight: bold;
	display: block;
}

.m7_let .gp {
	padding: 0 25px;
}

.m7_let .gp ul li {
	border-bottom: 1px solid #D2D2D2;
}

.m7_let .gp ul li:hover a {
	color: var(--primary-color);
	font-weight: bold;
}

.m7_let .gp ul .on a {
	color: var(--primary-color);
	font-weight: bold;
}

.m7_rit {
	width: 72%;
}

.m7_rit_tit {
	color: #333333;
	font-size: 22px;
	font-weight: bold;
	position: relative;
	padding-left: 18px;
	border-bottom: 1px solid #E2E2E2;
	margin-bottom: 80px;
	padding-bottom: 15px;
}

.m7_rit_tit::before {
	content: '';
	position: absolute;
	width: 5px;
	height: 21px;
	background: #84C324;
	left: 0px;
	top: 7px;
	border-radius: 3px;
	display: inline-block;
}

.m8 .group {
	display: flex;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
	width: 100%;
}

.m8 .group .item {
	width: calc(33.33% - 14px);
	margin: 0px;
	margin-right: 20px;
	margin-bottom: 40px;
}

.m8 .group .item:nth-child(3n) {
	margin-right: 0px;
}

.m8 .group .item .pic {
	border: 1px solid #CECECE;
	border-radius: 5px;
	height: 215px;
	overflow: hidden;
	position: relative;
}
.m8 .group .item .pic img{
    max-height: 90%;
    max-width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    	transform: translate(-50%, -50%);
}

.m8 .group .item .t1 {
	margin-top: 20px;
	text-align: center;
}

.m8 .group .item:hover .t1 {
	color: var(--primary-color);
	font-weight: bold;
}

.m7_rit_tit2 {
	margin-bottom: 40px;
}

.m9 .tit {
	text-align: center;
	font-size: 24px;
	color: #333333;
	margin-bottom: 50px;
	font-weight: bold;
}

.m9 .cont {
	margin-bottom: 100px;
	font-size: 14px;
	line-height: 30px;
}


.m10 {
	position: relative;
}


.m10 .item .bx {
	background: #F4F4F4;
	width: 45%;
	border-radius: 5px;
}

.m10 .item .bx .dm {
	padding: 20px 25px;
	position: relative;
}

.m10 .item .bx .dm .t1 {
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: bold;
}

.m10 .item .bx .dm .t2 {
	font-size: 16px;
	line-height: 30px;
}

.m10 .item .bk {
	position: absolute;
	top: 0px;
	left: 50%;
	width: 12px;
	height: 12px;
	background: #193782;
	display: block;
	border-radius: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.m10 .item:nth-child(2n) .bx {
	float: right;
}

.m10 .item .bx .sjx {
	position: absolute;
	top: 50%;
	right: 0px;
	transform: translate(100%, -50%);
	display: block;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #F4F4F4;
}

.m10 .item:nth-child(2n) .bx .sjx {
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: none;
	right: auto;
	left: 0px;
	transform: translate(-100%, -50%);
	border-right: 6px solid #F4F4F4;

}

.m10 .item .bx {
	position: relative;
}

.m10 .xian {
	position: absolute;
	height: 100%;
	left: 50%;
	width: 1px;
	background: #F4F4F4;
	transform: translate(-50%, 0);
}

.m10 .item {
	position: relative;
}

.m10_msg {
	text-align: center;
	margin-top: 25px;
}

.m10_msg span {
	background: var(--primary-color);
	color: #fff;
	display: inline-block;
	padding: 20px 80px;
	font-weight: bold;
	font-size: 22px;
}

.m12{
    display: none;
}
.m12_2{
    display: block;
}
.m12 .group {
	display: flex;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
	width: 100%;
}

.m12 .group .item {
	width: calc(25% - 15px - 2px);
	margin-right: 20px;
	margin-bottom: 30px;
	position: relative;
		border: 1px solid #C3C3C3;
	height: 100px;
	overflow: hidden;
}

.m12 .group .item:nth-child(4n) {
	margin-right: 0px;
}

.m12 .group .item a {
	display: block;

}

.m12 .group .item a img {
	position: absolute;
	top: 50%;

	left: 50%;
	max-width: 100%;
	transform: translate(-50%, -50%);
}

.m13 .item {
	margin-bottom: 60px;
}

.m13 .item .t1 {
	font-size: 22px;
	color: #000000;
	font-weight: bold;
	margin-bottom: 20px;
}

.m13 .item .c {
	font-size: 14px;
	line-height: 35px;
}

.m13 .item .form .box {
	width: 770px;
	background: #FFFFFF;
	box-shadow: 0px 0px 18px 0px rgba(150, 150, 150, 0.31);
	border-radius: 10px;
}

.m13 .item .form .box .dms {
	padding: 40px 20px;
}

.m13 .item .form .box .let {
	width: 49%;
}

.m13 .item .form .box .let input {
	width: 96%;
	padding: 0px 2%;
	border: 1px solid #D9D9D9;
	border-radius: 5px;
	font-size: 14px;
	height: 45px;
	margin-bottom: 30px;
}

.m13 .item .form .box .rit {
	width: 49%;
}

.m13 .item .form .box .rit textarea {
	width: 96%;
	padding: 10px 2%;
	border: 1px solid #D9D9D9;
	border-radius: 5px;
	font-size: 14px;
	height: 180px;
}

.m13 .item .form .box .rit .sub {
	margin-top: 30px;
}

.m13 .item .form .box .rit .sub input {
	background: #0071BC;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
	display: inline-block;
	border-radius: 10px;
	padding: 10px 50px;

}

.m13 .item .map {
	width: 770px;
	height: 415px;
	position: relative;
}

.m13 .item .map iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	border: 0px;
}



.m14 .group {
	display: flex;
	align-items: center;
	justify-content: left;
	flex-wrap: wrap;
}

.m14 .group .item {
	width: calc(33.33% - 20px);
	margin-right: 30px;
	margin-bottom: 30px;
}

.m14 .group .item:nth-child(3n) {
	margin-right: 0px;
}

.m14 .group .item .tt1 {
	color: #333333;
	font-size: 16px;
	font-weight: bold;
	margin-top: 10px;
	text-align: center;
	display: flex;
	justify-content: center;
}

.m14 .group .item .pic {
	position: relative;
	height: 210px;
	overflow: hidden;
	width: 100%;
}

.m14 .group .item .pic img {
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: 100%;
	transform: translate(-50%, -50%);
}

.m9_2 .cont {
	margin-bottom: 0px;
}

.m13_2 {
	margin-top: 50px;
}

.m13_2 .gp .lt {
	float: left;
	width: 32%;
	margin-right: 2%;
	margin-bottom: 20px;
}

.m13_2 .gp .lt:nth-child(3n) {
	margin-right: 0px;
}


.m7_let2 .gp ul li dl {
	border-top: 1px solid #D2D2D2;
	display: none;
}

.m7_let2 .gp ul .on dl {
	display: block;
}

.m7_let2 .gp ul li dl dd a {
	font-size: 14px;
	font-weight: normal !important;
	color: #333333 !important;
	padding-left: 30px;
	border-bottom: 1px solid #D2D2D2;
}

.m7_let2 .gp ul li a i {
	display: inline-block;
	width: 15px;
	height: 10px;
	background: url('../img/p61.png') center no-repeat;
	background-size: 100% auto;
	margin-top: 5px;
}

.m7_let2 .gp ul .on a i {
	background: url('../img/p60.png') center no-repeat;
	background-size: 100% auto;
}

.m16 .group .item {
	display: flex;
	align-items: center;
	border-bottom: 1px dotted #CECECE;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.m16 .group .item .pic {
	width: 285px;
	height: 235px;
	background: #FFFFFF;
	box-shadow: 0px 0px 9px 0px rgba(0, 54, 134, 0.19);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.m16 .group .item .pic img {
	object-fit: contain;
	height: 100%;
}

.m16 .group .item .cn {
	flex: 1;
	padding-left: 30px;
}

.m16 .group .item .cn .t1 {
	font-size: 22px;
	color: #333333;
	font-weight: bold;
}

.m16 .group .item .cn .t2 {
	font-size: 16px;
	color: #666666;
	margin: 25px 0;
}
.m16 .group .item .more{
    display: none;
}

.m16 .group .item .cn .more a {
	font-size: 14px;
}

.m16_2 .group .item .pic {
	width: 185px;
	height: 180px;
	box-shadow: none;
	position: relative;
}

.m16 .group .item .cn .t1 {
	height: 35px;
	overflow: hidden;
}

.m16_2 .group .item .time {
	position: absolute;
	bottom: 0px;
	left: 0px;
	font-size: 14px;
	text-align: center;
	padding: 10px;
	background: #84C324;
	color: #fff;
}

.m16_2 .group .item .time .ti_1 {
	font-size: 16px;
	font-weight: bold;
}

.m16_2 .group .item .cn .t1 {
	font-size: 20px;
	color: #333333;
	font-weight: normal;
}


.m16_2 .group .item:hover .cn .t1 {
	color: var(--primary-color);
}

.m8_2 .group .item .pic img {
	width: 100%;
}

.m8_2 .group .item .pic {
	height: 360px;
	border: 0px none;
}

.m8_2 .group .item .t1 {
	font-weight: bold;
}

.m8_2 .group .item {
	width: calc(33.33% - 47px);
	margin-right: 70px;
}

.m17 .t1 {
	font-size: 24px;
	color: #333333;
	text-align: center;
}

.m17 .t2 {
	font-size: 14px;
	margin: 30px 0 40px;
	text-align: center;
}

.m17 .t2 span {
	display: inline-block;
	color: #999999;
	margin: 0px 5px;
}

.m17 .cn {
	font-size: 16px;
	color: #333333;
	line-height: 35px;
	padding-bottom: 60px;
	border-bottom: 1px dashed #999999;
	margin-bottom: 40px;
}

.m17 .fun p {
	margin-bottom: 5px;
}

.m17 .fun p a {
	font-size: 14px;
	color: #333;
}

.m17 .fun p a span {
	color: #999;
}


.m17 .fun p a:hover span {
	color: #000;
}

.cm_title_5 {
	font-size: 24px;
	color: #333333;
	margin-bottom: 30px;
	font-weight: bold;
}

.m19 {
	position: fixed;
	z-index: 100;
	color: #fff;
	right: 1%;
	top: 70%;
	cursor: pointer;
}

.m20 {
	position: fixed;
	width: 100%;
	display: none;
	height: 100%;
	z-index: 410000;
}

.m20 .mark {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

.m20 .box {
	position: fixed;
	width: 880px;
	height: 590px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #FFFFFF;
	border-radius: 10px;
}

.m20 .box .close_pop {
	position: absolute;
	right: -40px;
	cursor: pointer;
	width: 35px;
	top: -15px;
}

.m20 .box .dm {
	display: flex;
	padding: 45px 35px;
}

.m20 .box .pic {
	width: 400px;
}

.m20 .box .cn {
	flex: 1;
	padding-left: 45px;
}

.m20 .box .cn .t1 {
	font-size: 30px;
	color: #003686;
	font-weight: bold;
	border-bottom: 1px solid #DEDCDC;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

.m20 .box .cn .fm .item .text {
	width: 96%;
	height: 45px;
	color: #333;
	font-size: 14px;
	background: #F5F9FF;
	padding: 0px 2%;
}

.m20 .box .cn .fm .item {
	margin-bottom: 20px;
}

.m20 .box .cn .fm .item textarea {
	width: 96%;
	height: 100px;
	color: #333;
	font-size: 14px;
	background: #F5F9FF;
	padding: 10px 2%;
}

.m20 .box .cn .fm .submit input {
	background: var(--primary-color);
	color: #fff;
	width: 150px;
	height: 40px;
	font-size: 16px;
}