﻿/*@font-face {
	font-family: 'sb';
	src: url('/assets/font/SourceHanSans-Bold.otf');
}
@font-face {
	font-family: 'sr';
	src: url('/assets/font/SourceHanSans-Regular.otf');
}
@font-face {
	font-family: 'sm';
	src: url('/assets/font/SourceHanSans-Medium.otf');
}*/
@font-face {
	font-family: 'psb';
	src: url('/assets/font/Poppins-SemiBold.otf');
}


body {
    overflow: hidden;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: .16rem;
	/* font-family: Source Han Sans CN, Source Han Sans CN; */
	font-family: 'sr';
	/*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;
}

/* 主题色变量已移至 template/default/html/comm/head.html 中管理 */

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

.page_wrap {
	padding-top: 1.8rem;
	transition: var(--s_tran);
}

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


/* 列表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 {
	text-align: center;
	font-family: 'sb';
	font-size: 0.46rem;
	color: #333333;
	line-height: 1;
}

.index_title::after {
	content: '';
	display: block;
	width: 1rem;
	height: 0.05rem;
	background: url('../image/i8.png') no-repeat;
	background-size: 100% 100%;
	background-position: center;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.21rem;
}


/* 内页标题 */
.banner {
	position: relative;
}
.banner .img::after {
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(51, 51, 51, 0.25);
	position: absolute;
	top: 0;
	left: 0;
}
.b_title {
	text-shadow: 0.02rem 0.02rem 0.05rem rgba(0,0,0,0.16);
	color: #fff;
	font-family: 'sb';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	font-size: 0.3rem;
	line-height: 1;
}

.b_title::after {
	content: '';
	width: 0.35rem;
	height: 0.02rem;
	display: block;
	background: var(--g);
	margin: 0.2rem auto 0;
}


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

.pointer {
	cursor: pointer;
}



/* 公共面包屑 */
.bread {
	padding-top: 0.2rem;
}
.bread .icon {
	width: 0rem;
	height: 0.15rem;
}

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

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

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

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

.bread .main {
	padding-top: 0.15rem;
	padding-bottom: 0.15rem;
}

.bread .active span {
	color: rgba(102, 102, 102, 1);
}

.bread .list {
	justify-content: flex-start;
}
.bread {
	padding-bottom: 0.2rem;
	border-bottom: 0.01rem solid rgba(223, 223, 223, 1);
}
.bread > .flex_box {
	justify-content: space-between;
}
.bread .cate {
	justify-content: flex-end;
}
.bread .cate .c_item {
	font-size: 0.18rem;
	color: #333333;
	flex: 0 0 1.2rem;
	text-align: center;
	margin-left: 0.25rem;
	transition: var(--s_tran);
	position: relative;
}
.bread .cate .c_item a {
	font-family: 'sm';
	
}

.bread .cate .c_item::after {
	content: '';
	display: block;
	width: 100%;
	height: 0.02rem;
	background: var(--c);
	opacity: 0;
	transition: var(--s_tran);
	position: absolute;
	bottom: -0.21rem;
	left: 50%;
	transform: translateX(-50%);
}

.bread .cate .c_item:hover,
.bread .cate .c_item.active {
	color: var(--c);
}

.bread .cate .c_item:hover::after,
.bread .cate .c_item.active::after {
	opacity: 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;
}
.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 .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: var(--c);
	color: white;
	border: 0.01rem solid var(--c);
}

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

.page .l_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 {
	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 .l_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 .l_btn:hover {
	background: var(--c);
}

.page .disable {
	opacity: 0.5;
}

.page .l_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.08rem;
}

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

@media (max-width:768px) {
    .page{
        flex-wrap: wrap;
    }
    .page_wrap{
        padding-top: 74px !important;
    }
    .bread .item span {
        font-size: 12px;
    }
    .bread .list .item:not(:first-child)::before {
        font-size: 12px;
    }
    .bread > .flex_box {
        flex-wrap: wrap;
    }
    .bread > .flex_box > ul {
        flex: 0 0 100%;
    }
    .bread > .flex_box .cate {
        justify-content: center;
        margin-top: 20px;
    }
    .bread .cate .c_item {
        font-size: 12px;
        flex: 0 0 auto;
    }
    .bread .cate .c_item::after{
        bottom: 0rem;
    }
    .bread > .flex_box .cate{
        flex-wrap: wrap !important;
    }
    .page .list .item {
        width: 20px;
        height: 20px;
    }
    .page .to_page input {
        height: 20px;
    }
    .page .list .item,
    .page .to_page {
        font-size: 12px;
        line-height: 18px;
    }
    .page .l_btn {
        width: 20px;
        height: 20px;
    }
    .info * {
        width: 100%;
        font-size: 12px !important;
    }
    
    .t_overflow {
        overflow: auto;
        width: 100%;
    }
}
.info a {
    display: inline-block;
}
