@font-face {
	font-family: 'tm';
	src: url('../font/Teko-Medium.ttf');
}

@font-face {
	font-family: 'tr';
	src: url('../font/Teko-Regular.ttf');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-size: .16rem;*/
	/* font-family: Source Han Sans CN, Source Han Sans CN; */
	font-family: Arial;
	/*font-weight: 400;*/
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	/* For some Androids */
	/* 英文开启 */
	word-wrap: break-word !important;
	word-break: normal !important;
}

:root {
	--c: rgba(3, 140, 205, 1);
	--s_tran: 0.6s ease-in-out;
	--l_tran: 0.8s ease-in-out;
}

.main {
	justify-content: space-between;
	max-width: 14.4rem;
	width: 95%;
	margin: 0 auto;
}

.page_wrap {}

.lmx_h1 {
	width: 0px;
	height: 0px;
	margin: 0;
	text-indent: -9999em;
}

html {
	font-size: 100px;
	/* overflow-x: auto; */
}

body {
	/* overflow-x: hidden;
	overflow-y: hidden; */
}

a {
	text-decoration: none;
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	display: block;
	/* width: 100%;
	height: 100%; */
}

ul {
	list-style: none;
}

input,
textarea {
	outline: 0;
	border: none;
}

img {
	/*width: 100%;*/
	/*height: 100%;*/
	object-fit: cover;
	cursor: pointer;
	display: block;
}

hr {
	border: none;
}

/*文字描边*/
/* 设置描边宽度及颜色 默认为字体内外描边
  text-stroke: 2px #2173FF;
 */
/* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: 2px #2173FF;
  color: #fff;
 */
.swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/* 左右flex布局 */
.flex_box {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}

.flex_start {
	align-items: flex-start;
}

.flex_box [class*=flex_box] {
	flex: 1 1 auto;
	position: relative;
}


#header .slide_down {
	position: absolute;
	overflow: hidden;
	width: 100%;
	transition: var(--s_tran);
	left: 50%;
	transform: translateX(-50%);
}


/* 列表flex布局 */
.list_flex {
	display: flex;
	flex-wrap: wrap;
}



/*多行溢出*/
.line1 {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

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

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

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

.line5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 5;
}


/* 板块标题 */
.index_title {
	font-size: 0.6rem;
	font-family: 'tm';
	color: #000000;
	text-transform: uppercase;
	text-align: center;
}


/* 内页标题 */
.banner {
	position: relative;
}

.banner::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(38, 38, 38, 0.3);
	position: absolute;
	top: 0%;
	left: 0%;
}

.banner_title {
	font-size: 0.65rem;
	font-family: 'tm';
	color: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-transform: uppercase;
}

.banner_title p {
	font-size: 0.65rem;
	font-family: 'tm';
	color: #FFFFFF;
}


/* 水波纹效果 */
.btn-ripple {
	vertical-align: bottom;
}

.btn-ripple:not(:disabled):hover {
	opacity: 1;
	position: relative;
	overflow: hidden;
}

.btn-ripple:not(:disabled):hover::before {
	animation: ani_ripple 0.75s;
	z-index: 1;
	content: "";
	position: absolute;
	display: block;
	transition: all 0.6s;
	width: 100%;
	height: 0;
	border-radius: 50%;
	left: 50%;
	top: 50%;
	padding-top: 100%;
	transform: translateX(-50%) translateY(-50%);
}

@keyframes ani_ripple {
	0% {
		background: rgba(0, 0, 0, 0.25);
		transform: translateX(-50%) translateY(-50%) scale(0);
	}

	to {
		background: transparent;
		transform: translateX(-50%) translateY(-50%) scale(1);
	}
}


.bread {
	border-bottom: 0.02rem solid rgba(233, 233, 233, 1);
}

.bread .flex_box1 .item {
	padding: 0 0.2rem;
	line-height: 0.44rem;
	border-radius: 50px;
	font-size: 0.2rem;
	color: #333333;
	margin-right: 0.6rem;
	transition: var(--s_tran);
}

.bread .flex_box1 .item.active,
.bread .flex_box1 .item:hover {
	color: #fff;
	font-weight: 700;
	background: var(--c);
}


.pointer {
	cursor: pointer;
}



/* 公共面包屑 */
.bread {
	padding-top: 0.12rem;
	padding-bottom: 0.12rem;
}

.bread .icon {
	width: 0.15rem;
	height: 0.15rem;
	margin-right: 0.08rem;
}

.bread .flex_box2 .item span {
	display: flex;
	align-items: center;
	color: rgba(155, 155, 155, 1);
	font-size: 0.16rem;
}

.bread .flex_box2 .item>a {
	display: flex;
	align-items: center;
}

.bread .flex_box2 .list .item:not(:first-child)::before {
	content: '>';
	display: block;
	font-size: 0.16rem;
	color: rgba(155, 155, 155, 1);
	margin: 0 0.05rem;
	align-self: center;
}

.bread .flex_box2 .list,
.bread .flex_box2 .item {
	display: flex;
}


.bread .flex_box2 .active span {
	color: rgba(155, 155, 155, 1);
	line-height: 0.44rem;
}

.bread .flex_box2 .list {
	justify-content: flex-end;
}



/* hover-图片放大1.1 */
.scale_box {
	display: block;
	width: auto;
	overflow: hidden;
	position: relative;
}

.scale_box .scale_img {
	width: 100%;
	height: 100%;
	transition: var(--s_tran);
	cursor: pointer;
	object-fit: cover;
}

.hover_box:hover .scale_img {
	transform: scale(1.1);
}


/* hover-图片旋转向上位移 */
.rotate_box {
	display: block;
	width: auto;
	overflow: hidden;
}

.rotate_box .rotate_img {
	transition: var(--s_tran);
	object-fit: cover;
}

.hover_box:hover .rotate_img {
	transform: rotateY(180deg) translateY(-0.1rem);
}




/* 页码 */
.page {
	width: fit-content;
	margin: 0 auto;
	/* margin-top: 0.5rem; */
	display: flex;
	align-items: center;
}

.page .list {
	display: flex;
	align-items: center;
	color: rgba(154, 154, 154, 1);
}

.page .list span {
    display: flex;
    text-align: center;
    line-height: 0.32rem;
    font-size: 0.14rem;
    color: rgba(154, 154, 154, 1);
    cursor: pointer;
    overflow: hidden;
    border-radius: 0.02rem;
}

.page .list .item {
	display: block;
	width: 0.32rem;
	height: 0.32rem;
	margin-left: 0.03rem;
	margin-right: 0.03rem;
	border: 0.01rem solid rgba(230, 230, 230, 1);
	text-align: center;
	line-height: 0.32rem;
	font-size: 0.14rem;
	color: rgba(154, 154, 154, 1);
	cursor: pointer;
	overflow: hidden;
	border-radius: 0.02rem;
}

.page .list .item:hover {
	background: #009D44;
	color: #fff;
	border: 0.01rem solid #009D44;
}

.page .list .active {
	background: #009D44;
	color: #fff;
	border: 0.01rem solid #009D44;
}

.page .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.32rem;
	height: 0.32rem;
	margin-left: 0.03rem;
	margin-right: 0.03rem;
	border: 0.01rem solid rgba(230, 230, 230, 1);
	cursor: pointer;
	overflow: hidden;
	border-radius: 0.02rem;
}

.page .btn img {
	height: 0.11rem;
	object-fit: contain;
}

.page .prev::after {
	content: '<';
}

.page .next::after {
	content: '>';
}

.page .prev::after,
.page .next::after {
	position: absolute;
	font-size: 0.16rem;
	font-family: '宋体';
	color: rgba(154, 154, 154, 1);
	font-weight: bold;
}

.page .btn:hover {
	background: #009D44;
}

.page .disable {
	opacity: 0.5;
}

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

.page .total {
	margin-right: 0.23rem;
	font-size: 0.14rem;
	color: #333333;
}

.page .to_page {
	font-size: 0.14rem;
	color: rgba(154, 154, 154, 1);
	margin-left: 0.2rem;
	display: flex;
	align-items: center;
	font-family: Microsoft YaHei,
		Microsoft YaHei;
	font-weight: 400;
	font-size: 0.14rem;
	color: #7D7D7D;
	/* line-height: 0.24rem; */
	text-align: left;
	font-style: normal;
	text-transform: none;
}

.page .to_page input {
	width: 0.6rem;
	height: 0.32rem;
	margin: 0 0.05rem;
	padding: 0 0.1rem;
	padding-left: 0.12rem;
	border-radius: 0.02rem;
	border: 0.01rem solid rgba(230, 230, 230, 1);
	outline: none;
	font-size: 0.14rem;
	/* color: #FFFFFF; */
	background: transparent;
	box-sizing: border-box;
}

.to_input {
	position: relative;
}

.page .to_page .icon {
	display: inline-block;
	width: 0.16rem;
	height: 0.16rem;
	background-image: url(../../img/wzt/fold.png);
	background-repeat: no-repeat;
	position: absolute;
	top: 0.08rem;
	right: 0.08rem;

}

.page .list .bor {
	border: 0;
}

.page_btn {
	/* width: 0.72rem; */
	display: block;
	cursor: pointer;
	height: 0.32rem;
	padding: 0.07rem 0.22rem 0.06rem;
	background: #009D44;
	border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
	box-sizing: border-box;
	margin-left: 0.2rem;
}

.page_btn {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.14rem;
	color: #FFFFFF;
	text-align: left;
	font-style: normal;
	text-transform: none;
}



.public_text_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2.12rem;
	height: 0.66rem;
	background: #FFFFFF;
	border-radius: 0.37rem 0 0.37rem 0;
	border: 0.01rem solid #005FBD;
	transition: all 0.3s !important;
	cursor: pointer;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 600;
	font-size: 0.2rem;
	color: #005FBD;
}

.public_text_btn img {
	width: 0.46rem !important;
	height: 0.1rem !important;
	margin-left: 0.17rem;
}

.public_text_btn .img2 {
	display: none;
}

.public_text_btn:hover {
	background: #009D44;
	border: 0.01rem solid #009D44;
	border-radius: 0 0.37rem 0 0.37rem;
	color: #FFFFFF;
}

.public_text_btn:hover .img1 {
	display: none;
}

.public_text_btn:hover .img2 {
	display: block;
}

.public_banner {
	position: relative;
	display: block;
	width: 100%;
}

.public_banner img {
	display: block;
	width: 100%;
	height: 7rem;
	object-fit: cover;
}

.public_banner .banner_text {
	position: absolute;
	left: 1.1rem;
	top: 50%;
	transform: translateY(-50%);
}

.public_banner .banner_text .banner_text_title1 {
	margin-bottom: 0.14rem;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: bold;
	font-size: 0.47rem;
	color: #FFFFFF;
}

.public_banner .banner_text .banner_text_title2 {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.3rem;
	color: #FFFFFF;
}

.public_nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 1rem;
	padding: 0 1.1rem;
}

.public_nav .public_nav_left {
	display: flex;
	align-items: center;
}

.public_nav .public_nav_left .public_nav_item {
	/* width: 1.38rem; */
	padding: 0 0.25rem;
	height: 0.55rem;
	background: #FFFFFF;
	border-radius: 0.27rem 0 0.27rem 0;
	border: 0.01rem solid #005FBD;
	margin-right: 0.24rem;
	transition: all 0.3s;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.22rem;
	color: #005FBD;
	line-height: 0.55rem;
	text-align: center;
}

.public_nav .public_nav_left .public_nav_item:hover {
	background: #009D44;
	border: 0.01rem solid #009D44;
	border-radius: 0 0.27rem 0 0.27rem;
	color: #FFFFFF;
}

.public_nav .public_nav_left .public_nav_item.active {
	background: #009D44;
	border: 0.01rem solid #009D44;
	border-radius: 0 0.27rem 0 0.27rem;
	color: #FFFFFF;
}

.public_nav .publick_nav_right {
	display: flex;
	align-items: center;
}

.public_nav .publick_nav_right .navicon {
	display: block;
	width: 0.21rem;
	height: 0.18rem;
}

.public_nav .publick_nav_right .navarr {
	display: block;
	width: 0.05rem;
	height: 0.07rem;
	margin: 0 0.06rem;
}

.public_nav .publick_nav_right .nav_item {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.2rem;
	color: #888888;
}

.public_nav .publick_nav_right .nav_item.active {
	color: #009D44;
}

strong,
b {
	font-weight: bold !important;
	/*font-size: 0.2rem;*/
}


.detail_bottom {
	display: flex;
	justify-content: space-between;
	width: 17rem;
	/* margin: 0 auto 0.76rem; */
	border-top: 0.01rem solid #DCDCDC;
	padding-top: 0.28rem;
}

.detail_bottom .detail_bottom_item {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.detail_bottom .detail_bottom_item img {
	width: 0.1rem;
	height: 0.17rem;
}

.detail_bottom .detail_bottom_item .img2 {
	display: none;
}

.detail_bottom .detail_bottom_item .detail_bottom_bor {
	width: 0.01rem;
	height: 0.17rem;
	background: #949494;
	transition: all 0.3s;
}

.detail_bottom .detail_bottom_item .detail_bottom_text {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.18rem;
	color: #9D9D9D;
	line-height: 0.29rem;
	transition: all 0.3s;
}

.detail_bottom .prev .detail_bottom_bor {
	margin-left: 0.15rem;
	margin-right: 0.2rem;
}

.detail_bottom .next .detail_bottom_bor {
	margin-right: 0.15rem;
	margin-left: 0.2rem;
}

.detail_bottom .prev .img1 {
	transform: rotate(180deg);
}

.detail_bottom .next .img2 {
	transform: rotate(180deg);
}

.detail_bottom .detail_bottom_item:hover .img1 {
	display: none;
}

.detail_bottom .detail_bottom_item:hover .img2 {
	display: block;
}

.detail_bottom .detail_bottom_item:hover .detail_bottom_text {
	color: #009D44;
}

.detail_bottom .detail_bottom_item:hover .detail_bottom_bor {
	background: #009D44;
}

.int_title {
	position: relative;
	font-family: Arial, Arial;
	font-weight: bold;
	font-size: 0.9rem;
	color: rgba(0, 95, 189, 0.05);
	text-align: center;
	/* margin-bottom: 0.52rem; */
}

.int_title .int_title2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: bold;
	font-size: 0.5rem;
	color: #005FBD;
}

@media (max-width:1200px){
    #iconDiv1{
        display: none;
    }
	.public_nav{
		flex-direction: column-reverse;
		height: auto;
		width: 100%;
		padding: 0.19rem;
	}
	.public_nav .public_nav_left{
		flex-wrap:wrap;
		padding: 0.19rem;
		justify-content: space-around;
	}
	.public_nav .public_nav_left .public_nav_item{
	    margin-bottom:.2rem;
	}
	.detail_bottom{
		width:100%;
	}
	.line1{
	    white-space:wrap;
	}
}

.detail1_bot{
    width: 100%;
    height: 3.31rem;
    background: url('../img/bgccc.png') no-repeat;
    padding-top: 0.76rem;
    box-sizing: border-box;
}
.detail1_title{
    margin-bottom: 0.29rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.28rem;
    color: #000000;
    line-height: 0.37rem;
    text-align: center;
}
.detail1_title2{
    margin-bottom: 0.29rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.25rem;
    color: #262626;
    line-height: 0.33rem;
    text-align: center;
}
.detail1_btn{
    display: flex;
    justify-content: center;
}
.detail1_btn .btn_item{
    display: block;
    width: 2.19rem;
    height: 0.53rem;
    background: #0662BE;
    border-radius: 0.35rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 800;
    font-size: 0.24rem;
    color: #FFFFFF;
    line-height: 0.53rem;
    text-align: center;
    margin-right: 0.25rem;
    cursor: pointer;
}
.detail1_btn .btn_item:nth-child(2){
    margin-right: 0;
    background: #009D44;
}