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

/* 瀛椾綋 */


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: .18rem;
	/* font-family: Source Han Sans CN, Source Han Sans CN; */
	font-family: Microsoft YaHei, Microsoft YaHei;
	/* font-weight: 400; */
	color: #333;
	-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;
}
body{
	overflow: hidden;
}
body::-webkit-scrollbar {
	width: 0.06rem;
	/*height: 4px;*/
}

body::-webkit-scrollbar-thumb {
	border-radius: 0.1rem;
	-webkit-box-shadow: inset 0 0 0.06rem rgba(0, 0, 0, 0.2);
	background: rgba(0, 0, 0, 0.2);
}

body::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 0.06rem rgba(255, 255, 255);
	border-radius: 0;
	background: rgba(255, 255, 255);
}

.page_wrap {
	padding-top: 1.1rem;
	background: url('../img/bg.png') rgba(251, 251, 251, 1) no-repeat bottom center;
	background-size: contain;
	padding-bottom: 0.87rem;
}

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

.main {
	max-width: 14.8rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 0.12rem;
	box-sizing: border-box;
}

@media (min-width: 576px) {
	.main {
		max-width: 5.4rem
	}
}

@media (min-width: 768px) {
	.main {
		max-width: 7.2rem
	}
}

@media (min-width: 992px) {
	.main {
		max-width: 9.6rem
	}
}

@media (min-width: 1200px) {
	.main {
		max-width: 11.4rem;
	}
}

@media (min-width: 1400px) {
	.main {
		max-width: 13.2rem;
	}
}

@media (min-width: 1580px) {
	.main {
		max-width: 14.8rem;
	}
}



.flex_box {
	display: flex;
}

.hc_flex_box {
	display: flex;
	align-items: flex-start;
}

[class*="fb"] {
	flex: 1;
	margin-left: 0;
	margin-right: 0;
	min-width: 0;
}

.flex_list {
	display: flex;
	flex-wrap: wrap;
}

.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%;
	outline: none;
}

span {
	color: inherit;
	font-size: inherit;
}

ul {
	list-style: none;
}

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

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

hr {
	border-top: 0.01rem solid rgba(222, 222, 222, 1);
	margin-top: 0.47rem;
	margin-bottom: 0.4rem;
}

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

/*多行溢出*/
.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;
}




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







/* 公共面包屑 */



/* 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;
	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_box {
	width: fit-content;
	margin: 0 auto;
	margin-top: 0.3rem;
	display: flex;
	align-items: center;
}

.page_box .pages {
	display: flex;
	align-items: center;
}

.page_box .pages .item {
	min-width: 0.32rem;
	height: 0.32rem;
	border: 0.005rem  solid #dee2e6;
	background-color: #ffffff03;
	border-radius: 0.02rem;
	text-align: center;
	line-height: 0.32rem;
	font-size: 0.14rem;
	color: #303133;
	cursor: pointer;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.page_box .pages .active {
	background: #d64857;
	border: 0.005rem  solid #b4343b;
	color: white !important;
	cursor: default;
    font-weight: 700;
}
.page_box .pages .item:hover{
	color: #d64857;
}
.page_box .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.32rem;
	height: 0.32rem;
	border: 0.01rem solid #dee2e6;
	background-color: #ffffff03;
	border-radius: 0.02rem;
	cursor: pointer;
	overflow: hidden;
}
.page_box .pages .item i{
	display: block;
	background: url(../img/dian3.png) center no-repeat;
	background-size: contain !important;
	width: 0.16rem;
	height: 0.16rem;
}

.page_box .pages .item.fr:hover i{
	background: url(../img/twojiantou.png) center no-repeat;
}
.page_box .pages .item.fl:hover i{
	background: url(../img/twojiantou.png) center no-repeat;
	transform: rotate(180deg);
}

.page_box .btn img{
	width: 0.05rem;
	height: 0.1rem;
}
.page_box .btn.prev{
	background: url(../img/page_prev.png) center no-repeat;
}
.page_box .btn.next{
	background: url(../img/page_next.png) center no-repeat;
}
.page_box .btn.prev:hover {
	background: url(../img/page_prev2.png) center no-repeat;
}
.page_box .btn.next:hover{
	background: url(../img/page_next2.png) center no-repeat;
}

.page_box .prev.disabled,
.page_box .next.disabled{
    cursor: not-allowed;
}
.page_box .prev.disabled{
    background: url(../img/page_prev3.png) center no-repeat;
}
.page_box .next.disabled{
    background: url(../img/page_next3.png) center no-repeat;
}












