@font-face {
	font-family: 'tm';
	src: url('../font/Teko-Medium.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: #12A3FD;
	--s_tran: 0.6s ease-in-out;
	--l_tran: 0.8s ease-in-out;
}

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

html {
	font-size: 100px;
	overflow-x: auto;
	scroll-behavior: smooth;
}

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%; */
}

a:focus {
	outline: none;
}

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

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

.text img {
	width: revert-layer;
	height: revert-layer;
}

.text * {
	font-size: inherit;
}

.text a {
	display: inline-block;
	text-decoration: underline;
	width: revert-layer;
	height: revert-layer;
	color: revert;
}

/*文字描边*/
/* 设置描边宽度及颜色 默认为字体内外描边
  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;
}


/* 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.37rem;
	display: flex;
	align-items: center;
}

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

.page .list .item {
	display: block;
	width: 0.32rem;
	height: 0.32rem;
	margin-left: 0.03rem;
	margin-right: 0.03rem;
	border: 0.01rem solid rgba(56, 102, 240, 0);
	text-align: center;
	line-height: 0.32rem;
	font-size: 0.16rem;
	color: #5B5B5B;
	cursor: pointer;
	overflow: hidden;
}

.page .list .item:hover {
	background: #284FAD;
	color: white;
	border: 0.01rem solid var(--c);
}

.page .list .active {
	background: #284FAD;
	color: white;
	/* border: 0.01rem solid var(--c); */
}

.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 var(--c); */
	cursor: pointer;
	overflow: hidden;
	background-color: rgba(244, 244, 245, 1);
}

.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(109, 109, 109, 1);
	font-weight: bold;
}

.page .btn:hover {
	background: rgba(226, 225, 225, 1);
}

.page .btn:hover::after {
	color: #fff;
}

.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(109, 109, 109, 1);
	margin-left: 0.08rem;
}

.page .to_page input {
	width: 0.6rem;
	height: 0.31rem;
	margin: 0 0.05rem;
	padding: 0 0.1rem;
	border-radius: 0.01rem 0.01rem 0.01rem 0.01rem;
	border: 0.01rem solid rgba(226, 225, 225, 1);
	outline: none;
	font-size: 0.14rem;
	color: rgba(109, 109, 109, 1);
	background: transparent;
}

/* 按钮 */
.btn1 {
	width: fit-content;
	padding: 0 0.2rem;
	min-width: 1.3rem;
	height: 0.41rem;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.06rem;
	border-radius: 0.25rem;
	border: 0.01rem solid var(--c);
}

.btn1 p {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.16rem;
	color: var(--c);
}

.btn1 span {
	width: 0.2rem;
	height: 0.2rem;
	background-color: var(--c);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.btn1 span img {
	width: 0.08rem;
	height: 0.08rem;
	filter: brightness(0) invert(1);

}

.btn2 {
	width: fit-content;
	padding: 0 0.2rem;
	min-width: 1.3rem;
	height: 0.41rem;
	background: var(--c);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.06rem;
	border-radius: 0.25rem;
}

.btn2 p {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.16rem;
	color: #FFFFFF;
}

.btn2 span {
	width: 0.2rem;
	height: 0.2rem;
	background-color: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.btn2 span img {
	width: 0.08rem;
	height: 0.08rem;

}

.btn1:hover span,
.btn2:hover span {
	transform: rotate(-45deg);
	background: #FFFFFF;
}

.btn1:hover{
    background: var(--c);
}
.btn1:hover p{
    color: #FFFFFF;
}

.btn1:hover span img{
    filter: none;
}



.btn3 {
	width: fit-content;
	height: 0.41rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.06rem;
	border-bottom: 0.01rem solid #12A3FD;
}

.btn3 p {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.16rem;
	color: var(--c);
}

.btn3 span {
	width: 0.2rem;
	height: 0.2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.3s;
}

.btn3 span img {
	width: 0.08rem;
	height: 0.08rem;
}

.pub_banner {
	position: relative;
	width: 100%;
}

.pub_banner img {
	width: 100%;
	height: 6rem;
}

.pub_banner .pub_title1 {
	position: absolute;
	top: 2.28rem;
	left: 50%;
	transform: translateX(-50%);
}

.pub_banner .pub_title1 .pub_title2 {
	margin-bottom: 0.07rem;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: bold;
	font-size: 0.4rem;
	color: #FFFFFF;
	line-height: 0.53rem;
	text-align: center;
}

.pub_banner .pub_title1 .pub_title3 {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.18rem;
	color: #FFFFFF;
	line-height: 0.24rem;
	text-align: center;
}

.pub_nav {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 1rem;
}

.pub_nav a {
	width: 1.45rem;
	height: 0.49rem;
	border-radius: 0.25rem;
	transition: all 0.3s;
	margin-right: 0.21rem;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.16rem;
	color: #0A0A0A;
	line-height: 0.49rem;
	text-align: center;
}

.pub_nav a:last-child {
	margin-right: 0;
}

.pub_nav a:hover {
	background: #12A3FD;
	font-weight: bold;
	color: #FFFFFF;
}

.pub_nav a.active {
	background: #12A3FD;
	font-weight: bold;
	color: #FFFFFF;
}

.pub_page {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pub_page .page_prev,
.pub_page .page_next {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.32rem;
	height: 0.32rem;
	background: #FFFFFF;
	border-radius: 0.02rem;
	border: 0.01rem solid #DEDEDE;
	box-sizing: border-box;
	margin: 0 0.04rem;
}

.pub_page .page_prev img,
.pub_page .page_next img {
	width: 0.06rem;
	height: 0.1rem;
}

.pub_page .page_prev img {
	transform: rotate(180deg);
}

.pub_page .page_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.32rem;
	height: 0.32rem;
	background: #FFFFFF;
	border-radius: 0.02rem;
	border: 0.01rem solid #DEDEDE;
	box-sizing: border-box;
	margin: 0 0.04rem;
	transition: all 0.3s;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.14rem;
	color: #7D7D7D;
}

.pub_page .page_btn:hover {
	background: #12A3FD;
	color: #FFFFFF;
	border: 0.01rem solid #12A3FD;
}

.pub_page .page_btn.active {
	background: #12A3FD;
	color: #FFFFFF;
	border: 0.01rem solid #12A3FD;
}

.pub_page .page_text {
	display: block;
	width: 0.14rem;
	margin-left: 0.04rem;
	margin-right: 0.01rem;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.14rem;
	color: #7D7D7D;
	line-height: 0.19rem;
}