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

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: .16rem;
	font-family: Microsoft YaHei, Microsoft YaHei;
	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;
}
.tab {
	cursor: pointer;
}

strong *,
strong,
b {
	font-weight: bold;
	font-size: inherit;
	font-family: inherit;
}




:root {
	--c: #1D4098;
	--s_tran: 0.3s ease-in-out;
	--l_tran: 0.6s ease-in-out;
}

.main {
	max-width: 15rem;
	width: 100%;
	margin: 0 auto;
}


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

.fill_btn {
	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;
	align-items: center;
}

.flex_box_jc {
	justify-content: space-between;
}
.flex_start {
	align-items: flex-start;
}


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



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

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



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



.pointer {
	cursor: pointer;
}




/* 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(-0.1rem);
}




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

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

.page .list .item {
	display: block;
	width: 0.32rem;
	height: 0.32rem;
	border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
	border: 0.01rem solid rgba(222, 222, 222, 1);
	margin-left: 0.04rem;
	margin-right: 0.04rem;
	text-align: center;
	line-height: 0.32rem;
	cursor: pointer;
	overflow: hidden;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.14rem;
	color: #7D7D7D;
	line-height: 0.32rem;
	background: #fff;
}

.page .list .active ,
.page .list .item:hover {
	background: rgba(93, 150, 48, 1);
	color: white;
	border: 0.01rem solid rgba(93, 150, 48, 1);
}


.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(222, 222, 222, 1);
	cursor: pointer;
	overflow: hidden;
	border-radius: 0.02rem 0.02rem 0.02rem 0.02rem;
	background: #fff;
	color: #8A8A8A;
}

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

.page .btn:hover {
	background: rgba(93, 150, 48, 1);
	color: white;
	border: 0.01rem solid rgba(93, 150, 48, 1);
}

.main_page{
	padding-top: 1rem;
}


.more{
	width: 1.58rem;
	height: 0.48rem;
	background: #FFFFFF;
	border-radius: 0.05rem 0.05rem 0.05rem 0.05rem;
	margin-top: 0.3rem;
	font-family: Poppins, Poppins;
	font-weight: 400;
	font-size: 0.16rem;
	color: #5D9630;
	line-height: 0.48rem;
	justify-content: center;
	border: 0.01rem solid #5D9630;
	transition: all 0.5s;
}
.more img{
	width: 0.08rem;
	height: 0.15rem;
	margin-left: 0.15rem;
	display: none;
	transition: all 0.8s;
}
.more .img2{
	display: none;
}
.more .img1{
	display: block;
}
.more:hover{
	background: #5D9630;
	color: #FFFFFF;
}
.more:hover .img1{
	display: none;
}
.more:hover .img2{
	display: block;
}




.bread{
	width: 100%;
	height: 0.8rem;
}
.bread a{
	display: block;
	font-family: Poppins, Poppins;
	font-weight: 400;
	font-size: 0.14rem;
	color: #333333;
	line-height: 0.8rem;
	margin-right: 0.22rem;
	position: relative;
}
.bread a::after{
	content: '/';
	font-family: Poppins, Poppins;
	font-weight: 400;
	font-size: 0.14rem;
	color: #333333;
	line-height: 0.8rem;
	position: absolute;
	right: -0.16rem;
}
.bread a:last-child::after{
	content: unset;
}

.bread a:hover,
.bread a:last-child{
	color: #5D9630;
}
.bread .main{
	border-bottom: 0.01rem solid #EBEBEB;
}


.innerBanner{
	position: relative;
	width: 100%;
	height: 2.8rem;
}

.innerBanner .inBannerTitle{
    position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-family: Poppins, Poppins;
	font-weight: bold;
	font-size: 0.4rem;
	color: #FFFFFF;
	line-height: 0.56rem;
	text-align: center;
	z-index: 2;
}

.innerBanner .zb{
	width: 100%;
	height: 100%;
	background: url(../img/zb.png);
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}