@font-face {
	font-family: 'yf';
	src: url('../font/YUNFENGFEIYUNTI-2.TTF');
}

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

:root {
	--c: rgba(3, 140, 205, 1);
	--s_tran: 0.6s ease-in-out;
	--l_tran: 0.8s ease-in-out;
}

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

.doc_banner {
	background-repeat: no-repeat;
	background-size: cover;
	height: 6rem;
}

.doc_banner .main {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: center;
}

.doc_banner p,
.doc_banner_p1 {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: bold;
	font-size: 0.54rem;
	color: #333333;
}

.doc_banner_p2 {
	font-weight: 400 !important;
	font-size: 0.18rem !important;
	color: #383635 !important;
	margin-top: 0.25rem;
	margin-bottom: 0.47rem;
}

.doc_banner_p3 {
	/*font-family: yf !important;*/
	font-weight: 400 !important;
	font-size: 0.28rem !important;
}

/* 页内导航 */
.doc_nav_wrap {
	height: 0.8rem;
	background: #FFFFFF;
	box-shadow: 0rem 0.03rem 0.06rem 0.01rem rgba(0, 0, 0, 0.08);
}

.doc_nav_wrap .main {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.doc_nav {
	display: flex;
	align-items: center;
	gap: 1.1rem;
}

.doc_nav a {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.14rem;
	color: #383635;
	line-height: 0.8rem;
	width: fit-content;
	position: relative;
	transition: 0.3s;
}

.doc_nav a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0.02rem;
	background: #BD261D;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: 0.3s;
}

.doc_nav a:hover {
	color: #BD261D;
	font-weight: bold;
}

.doc_nav a:hover::after {
	width: 100%;
}

.doc_nav_active {
	color: #BD261D !important;
	font-weight: bold !important;
}

.doc_nav_active::after {
	width: 100% !important;
}

.crumbs {
	display: flex;
	align-items: center;
	gap: 0.05rem;
}

.crumbs img {
	width: 0.18rem;
	height: 0.16rem;
	margin-right: 0.06rem;
}

.crumbs a,
.crumbs span {
	width: fit-content;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.14rem;
	color: #8D8D8D;
}

.page_wrap {}

.lmx_h1 {
	width: 0px;
	height: 0px;
	margin: 0;
	text-indent: -9999em;
}

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

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

ul {
	list-style: none;
}

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

img {
	max-width: 100%;
	max-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;
}


#header .slide_down {
	position: absolute;
	overflow: hidden;
	width: 100%;
	transition: var(--s_tran);
	left: 50%;
	transform: translateX(-50%);
}


/* 列表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 {
	font-size: 0.6rem;
	font-family: 'tm';
	color: #000000;
	text-transform: uppercase;
	text-align: center;
}


/* 内页标题 */
.banner {
	position: relative;
}

.banner::before {
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(38, 38, 38, 0.3);
	position: absolute;
	top: 0%;
	left: 0%;
}

.banner_title {
	font-size: 0.65rem;
	font-family: 'tm';
	color: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-transform: uppercase;
}

.banner_title p {
	font-size: 0.65rem;
	font-family: 'tm';
	color: #FFFFFF;
}


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


.bread {
	border-bottom: 0.02rem solid rgba(233, 233, 233, 1);
}

.bread .flex_box1 .item {
	padding: 0 0.2rem;
	line-height: 0.44rem;
	border-radius: 50px;
	font-size: 0.2rem;
	color: #333333;
	margin-right: 0.6rem;
	transition: var(--s_tran);
}

.bread .flex_box1 .item.active,
.bread .flex_box1 .item:hover {
	color: #fff;
	font-weight: 700;
	background: var(--c);
}


.pointer {
	cursor: pointer;
}



/* 公共面包屑 */
.bread {
	padding-top: 0.12rem;
	padding-bottom: 0.12rem;
}

.bread .icon {
	width: 0.15rem;
	height: 0.15rem;
	margin-right: 0.08rem;
}

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

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

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

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


.bread .flex_box2 .active span {
	color: rgba(155, 155, 155, 1);
	line-height: 0.44rem;
}

.bread .flex_box2 .list {
	justify-content: flex-end;
}



/* 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_p {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.14rem;
	color: #333333;

}

.page_p1 {
	margin-right: 0.22rem;
}

.page_p2 {
	margin-left: 0.17rem;
	margin-right: 0.1rem;
}

.page_p3 {
	margin-left: 0.09rem;
}

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

.page .list .item,
.page .list .item_0 {
	display: block;
	width: 0.32rem;
	height: 0.32rem;
	margin-left: 0.045rem;
	margin-right: 0.045rem;
	border: 0.01rem solid rgba(56, 102, 240, 0);
	font-family: Microsoft YaHei, Microsoft YaHei;
	text-align: center;
	line-height: 0.32rem;
	font-size: 0.16rem;
	color: #4D4D4D;
	cursor: pointer;
	overflow: hidden;
	border: 0.01rem solid #E5E5E5;
}

.page .list .item_0 {
	line-height: 0.24rem;
}

.page .list .item:hover {
	background: #BD261D;
	color: white;
}

.page .list .active {
	background: #BD261D;
	color: white;
}

.page .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 0.32rem;
	height: 0.32rem;
	margin-left: 0.045rem;
	margin-right: 0.045rem;
	/* border: 0.01rem solid var(--c); */
	cursor: pointer;
	overflow: hidden;
	border: 0.01rem solid #E5E5E5;
	/* background-color: rgba(244, 244, 245, 1); */
}

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

.page .prev,
.page .next {
	position: relative;
}

.page .prev::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)rotate(-90deg);
	width: 0;
	height: 0;
	border-left: 0.06rem solid transparent;
	border-right: 0.06rem solid transparent;
	border-bottom: 0.08rem solid #D6D6D6;

}

.page .next::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)rotate(90deg);
	width: 0;
	height: 0;
	border-left: 0.06rem solid transparent;
	border-right: 0.06rem solid transparent;
	border-bottom: 0.08rem solid #D6D6D6;
}

/* .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: #BD261D;
}

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

.page .disable {
	opacity: 0.5;
	cursor: auto;
}

.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 input {
	width: 0.79rem;
	height: 0.32rem;
	background: #FFFFFF;
	border-radius: 0.01rem 0.01rem 0.01rem 0.01rem;
	border: 0.01rem solid #B3B3B3;
	text-indent: 0.12rem;
}

.page input::placeholder,
.page input {
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.14rem;
	color: #4D4D4D;
}

/* 圆形分页器 */
.honor_page {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.1rem;
}

.honor_page a {
	width: 0.3rem;
	height: 0.3rem;
	border: 0.01rem dashed #CCCCCC;
	border-radius: 50%;
	font-family: Arial, Arial;
	font-weight: 400;
	font-size: 0.16rem;
	color: #999999;
	line-height: 0.3rem;
	text-align: center;
	transition: 0.3s;
	cursor: pointer;
}

.honor_page a:hover {
	background: #BD261D;
	color: #FFFFFF;
	border-color: transparent;
}

.honor_page_active {
	background: #BD261D !important;
	color: #FFFFFF !important;
	border-color: transparent !important;
}



@media only screen and (max-width: 768px) {
.doc_banner{
        height: 2.4rem;
    margin-top: 1rem;
    }
    .doc_nav{
        gap: 0.3rem;
        flex-wrap: wrap;
    }
    .doc_nav_wrap{
        height: 100%;
        padding: 0.2rem 0.2rem 0 0.2rem;
    }
    .doc_nav_wrap .main{
            flex-direction: column-reverse;
    }
    .main tr {
    display: flex;
    flex-direction: column;
    }
    .main td {
    width: 100%!important;
    margin-top: 0.1rem;
   }
   .doc_banner_p2{
       margin-bottom: 0rem;
       margin-top: 0rem;
   }
   .page{
           width: 94%;
               flex-wrap: wrap;
   }
   .text span{
       font-size: .16rem!important;
   }
   .page_p3{
       margin-top: 0.2rem;
   }
   .page input::placeholder, .page input{
       margin-top: 0.2rem;
   }
   .page_p2{
           margin-left: 1.17rem;
    margin-right: 0.1rem;
    margin-top: 0.2rem;
   }
   .recruit .box1 .main tr{
       display: table-row!important;
   }
   .recruit .box1 .main td {
    width: inherit!important;
    margin-top: 0!important;
    }
    .doc_banner .main .doc_banner_p3{
        word-break: break-all!important;
  word-wrap: break-word !important;
    }
}