@font-face {
	font-family: '';
	src: url('');
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-size: 16px;*/
	/* font-family: Source Han Sans CN, Source Han Sans CN; */
	/*font-family: 'mr';*/
	/*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;
	font-family: "微软雅黑";
}

body,html{
    scroll-behavior: smooth;
}

:root {
	--c: #3D60ED;
	--s_tran: 0.3s ease-in-out;
	--l_tran: 0.8s ease-in-out;
}

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

.page_wrap {
	/* padding-top: 120px; */
}

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

html {
	font-size: 100px;
	overflow-x: 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: .02rem #2173FF;
 */
/* 兼容Webkit(Chrome/Safari)内核浏览器的写法
  -webkit-text-stroke: .02rem #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;
}


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



/*多行溢出*/
.line1 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.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 {}


/* 内页标题 */
.inner_title {}


/* 水波纹效果 */
.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);
	}
}




.more {
	height: 81px;
	width: 185px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #504D4D;
	font-size: 18px;
	border-right: 1px solid #787676;
	transition: all .25s;
}

.pointer {
	cursor: pointer;
}



/* 公共面包屑 */
.bread .icon {
	width: 15px;
	height: 15px;
	margin-right: 8px;
}

.bread .item span {
	display: flex;
	align-items: center;
	color: rgba(61, 96, 237, 1);
	font-size: 14px;
}

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

.bread .list .item:not(:first-child)::before {
	content: '/';
	display: block;
	font-size: 14px;
	color: rgba(61, 96, 237, 1);
	margin: 0 5px;
	align-self: center;
}

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

.bread .main {
	padding-top: 15px;
	padding-bottom: 15px;
}

.bread .active span {
	color: rgba(233, 238, 255, 1);
}

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



/* hover-图片放大1.1 */
.scale_box {
	display: block;
	width: auto;
	overflow: hidden;
}
.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;
}
.rotate_box .rotate_img {
	transition: var(--s_tran);
	object-fit: cover;
}
.hover_box:hover .rotate_img {
	transform: rotateY(180deg) translateY(-10px);
}




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

.page .list {
	display: flex;
	align-items: center;
	color: #666666;
}

.page .list .item {
	display: block;
	width: 32px;
	height: 32px;
	margin-left: 3px;
	margin-right: 3px;
	border: 1px solid rgba(56, 102, 240, 0);
	text-align: center;
	line-height: 32px;
	font-size: 16px;
	color: #666666;
	cursor: pointer;
	overflow: hidden;
}

.page .list .item:hover {
	/* background: rgba(56, 102, 240, 1); */
	font-size: 14px;
	color: #009fe9;
	/* border: 1px solid rgba(56, 102, 240, 1); */
}

.page .list .active {
	/* background: rgba(56, 102, 240, 1); */
	color: #005DCE;
	/* border: 1px solid rgba(56, 102, 240, 1); */
}

.page .btn {
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	/* width: 32px;
	height: 32px; */
	margin-left: 3px;
	margin-right: 3px;
	/* border: 1px solid rgba(56, 102, 240, 1); */
	cursor: pointer;
	overflow: hidden;
}

.page .btn img {
	height: 11px;
	object-fit: contain;
}

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

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

.page .prev::after,
.page .next::after {
	position: absolute;
	font-size: 16px;
	font-family: '宋体';
	color: #fff;
	font-weight: bold;
}

.page .btn:hover {
	/* background: rgba(61, 96, 237, 1); */
}

.page .disable {
	/* opacity: 0.5; */
}

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

.page .total {
	margin-right: 23px;
	font-size: 14px;
	color: #333333;
}

.page .to_page {
	font-size: 14px;
	color: #FFFFFF;
	margin-left: 8px;
}

.page .to_page input {
	width: 60px;
	height: 31px;
	margin: 0 5px;
	padding: 0 10px;
	border-radius: 1px 1px 1px 1px;
	border: 1px solid rgba(61, 96, 237, 1);
	outline: none;
	font-size: 14px;
	color: #FFFFFF;
	background: transparent;
}


.width{
	width: 95%;
	max-width: 1200px;
	margin: auto;
}

/* banner */
.banner{
	width: 100%;
	position: relative;
}
.banner_bg{
	width: 100%;
}
.banner_bg img{
	height: 450px;
}
.banner_posi{
	width: 50%;
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	left: 19%;
	/*z-index: 9;*/
	animation: posi 1s ease-in-out;
}
.slogon{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 36px;
	color: #FFFFFF;
	text-align: left;
}
.banner_posi hr{
	width: 310px;
	height: 1px;
	background: #FFFFFF;
	margin: 22px 0 35px;
}
.tony{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 28px;
	text-align: left;
}
@keyframes posi {
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}


@media only screen and (max-width:1024px){
    .banner{
	width: 100%;
	position: relative;
}
.banner_bg{
	width: 100%;
}
.banner_bg img{
	height: 4.5rem;
}
.banner_posi{
	width: 95%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
	left: 50%;
	max-width: 12rem;
	/*z-index: 9;*/
	animation: posi 1s ease-in-out;
}
.slogon{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.42rem;
	color: #FFFFFF;
	text-align: left;
}
.banner_posi hr{
	width: 3.1rem;
	height: 0.01rem;
	background: #FFFFFF;
	margin: 0.22rem 0 0.35rem;
}
.tony{
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.16rem;
	color: #FFFFFF;
	line-height: 0.28rem;
	text-align: left;
}
@keyframes posi {
	0%{
		opacity: 0;
	}
	100%{
		opacity: 1;
	}
}
     .banner{
        margin-top: 50px;
    }
    .banner_bg img,.banner_bg{
        height: 200px;
    }
    .tony,.page .btn,.page .list .item{
        font-size: 0.24rem;
    }
    .about_cont p{
        font-size: 0.3rem !important;
    }
    .banner_posi{
        width: 84%;
    }
    .page{
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
}