::-webkit-scrollbar {
width: 8px; /* 设置滚动条宽度 */
}
::-webkit-scrollbar-thumb {
background-color: #999; /* 设置滑块颜色 */
border-radius: 0.1rem;
}
::-webkit-scrollbar-track {
background-color: #f0f0f0; /* 设置滚动条背景颜色 */
}
::-webkit-scrollbar-button {
display: none; /* 隐藏滚动条两侧的按钮 */
}


/* 选中默认样式 */
input:focus{
outline:none;
}

input::-webkit-input-placeholder{
color:#fff;
    font-size: var(--t_size);
}
input:-moz-placeholder{
	color:#fff;
	    font-size: var(--t_size);
}
input::-moz-placeholder{
	color:#fff;
	    font-size: var(--t_size);
}
input:-ma-input-placeholder{
	color:#fff;
	    font-size: var(--t_size);
}


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

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 0.22rem;
	/* 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;
}

:root {
	--c: #000000;
	--c_size: 0.16rem;
	--t_size: 0.2rem;
	--s_size: 0.24rem;
	--s_tran: 0.3s ease-in-out;
	--l_tran: 0.8s ease-in-out;
}

.main {
	justify-content: space-between;
	max-width: 15.2rem;
	width: 94%;
	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;
	display: block;
	width: 100%;
	height: 100%;
	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;
}

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


/* 板块标题 */
.common_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);
	}
}


/* 公共面包屑 */
.common_crumb .crumb_box {
	display: flex;
	align-items: center;
	color: #333;
}

.common_crumb .crumb_box img {
	width: .15rem;
	height: .15rem;
	margin-right: .05rem;
	object-fit: contain;
}

.common_crumb .crumb_box .road {
	display: flex;
	align-items: center;
	font-size: .16rem;
	color: #333333;
}

.common_crumb .crumb_box .road a {
	font-size: .16rem;
	color: #333333;
	margin: 0 0.03rem;
	width: auto;
}

.common_crumb .crumb_box .road span {
	display: block;
	max-width: 4.5rem;
	/* font-size: .18rem;
  color: #666666;
  font-weight: bold; */
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: #000089;
	margin: 0 0.03rem;
}




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

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

.page_box .pages .item {
	display: block;
	width: 0.3rem;
	height: 0.3rem;
	margin-right: 0.1rem;
	border: 0.01rem solid #EEEEEE;
	border-radius: 0.02rem;
	text-align: center;
	line-height: 0.32rem;
	font-size: 0.14rem;
	cursor: pointer;
	color: #222222;
}

.page_box .pages span {
	border-color: transparent !important;
}

.page_box .pages .item:hover {

	background: #8E4223;
	color: white;
	border: none;

}

.page_box .pages .active {

	background: #8E4223;
	color: white;
	border: none;
}

.page_box .btn {
	display: block;
	/* width: 0.3rem; */
	height: 0.3rem;
	margin-right: 0.1rem;
	padding: 0 0.06rem;
	border: 0.01rem solid #EEEEEE;
	border-radius: 0.02rem;
	line-height: 0.3rem;
	font-size: 0.14rem;
	color: #222222;
	white-space: nowrap;
	cursor: pointer;
}

.page_box .btn:hover {

	background: #8E4223;
	color: white;

}

.page_box .prev {
	padding: 0 0.13rem;
}

.page_box .next {
	padding: 0 0.13rem;
}


/* b2 */

.page_box {
	width: fit-content;
	margin: 0 auto;
	margin-top: 0.5rem;
	display: flex;
	align-items: center;
}

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

.page_box .pages .item {
	display: block;
	width: 0.32rem;
	height: 0.32rem;
	margin-right: 0.1rem;
	border: 0.01rem solid #E5E5E5;
	background-color: #fff;
	border-radius: 0.01rem;
	text-align: center;
	line-height: 0.32rem;
	font-size: 0.14rem;
	color: #4D4D4D;
	cursor: pointer;
	overflow: hidden;
}

.page_box .pages .item:hover {
	background: #006AAD;
	color: white;
}

.page_box .pages .active {
	background: #006AAD;
	color: white;
}

.page_box .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.32rem;
	height: 0.32rem;
	margin-right: 0.1rem;
	border: 0.01rem solid #E5E5E5;
	background-color: #fff;
	border-radius: 0.01rem;
	cursor: pointer;
	overflow: hidden;
}

.page_box .btn img {
	height: 0.18rem;
	object-fit: contain;
}

.page_box .btn:hover {
	background: #006AAD;
}

.page_box .total {
	margin-right: 0.23rem;
	font-size: 0.14rem;
	color: #333333;
}

.page_box .toPage {
	font-size: 0.14rem;
	color: #333333;
}

.page_box .toPage input {
	width: 0.79rem;
	height: 0.32rem;
	margin: 0 0.1rem;
	padding: 0 0.1rem;
	border-radius: 0.01rem 0.01rem 0.01rem 0.01rem;
	border: 0.01rem solid #B3B3B3;
	outline: none;
	font-size: 0.14rem;
	color: #4D4D4D;
}




/* 轮播按钮组-按钮 */






.swiper-button-next,
.swiper-button-prev {
	width: 0.36rem;
	height: 0.36rem;
	padding: 0.08rem 0.09rem;
	border-radius: 100%;
	border: 0.01rem solid rgba(132, 50, 18, 1);
	right: 0.76rem;
	opacity: 1 !important;
	bottom: 0rem;
	top: auto;
	left: auto;
	position: absolute;
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;

}


.swiper-button-next {
	left: auto;
	right: 0rem;

}

.swiper-button-next::after,
.swiper-button-prev::after {
	content: '<';
	font-family: '宋体';
	font-size: 0.2rem;
	font-weight: bold;
	color: rgba(132, 50, 18, 1);

}

.swiper-button-next::after {
	content: '>';
}

/* 按钮 f */

/* 分页器 b */
.swiper-pagination {
	bottom: 0.4rem	;
	padding-right: 0.05rem;
	text-align: center;
	
}

.swiper-pagination-bullet {
width: 0.32rem;
height: 0.12rem;
background:#fff;
border-radius: 0.06rem;
	margin-right: 0.2rem !important;
	margin-left: 0rem !important;
	opacity: 1 !important;

}

.swiper-pagination-bullet-active {
width: 0.64rem;
background: #000000;
}







/* 分页器  f*/


.w1600{
	width: 16rem;
	margin: 0 auto;
}



@media only screen and (max-width: 768px) {
  .w1600{
         width: auto!important;
    }
    }