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

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

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




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

.main {
	justify-content: space-between;
	max-width: 14.4rem;
	width: 95%;
	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;
}

.fill_btn {
	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 {}


/* 内页标题 */
.inner_title {
	font-weight: bold;
	font-size: 0.3rem;
	color: #333333;
	text-align: center;
}

.inner_title::after {
	content: '';
	width: 0.8rem;
	height: 0.03rem;
	background: var(--c);
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.2rem;
}
.inner_title_left {
	font-weight: bold;
	font-size: 0.3rem;
	color: #333333;
	text-align: left;
}

.inner_title_left::after {
	content: '';
	width: 0.8rem;
	height: 0.03rem;
	background: var(--c);
	display: block;
	margin-left: 0;
	margin-top: 0.2rem;
}


/* 水波纹效果 */
.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 {
	height: 0.81rem;
	width: 1.85rem;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #504D4D;
	font-size: 0.18rem;
	border-right: 0.01rem solid #787676;
	transition: all .25s;
} */

.pointer {
	cursor: pointer;
}



/* 公共面包屑 */
.bread .icon {
	width: 0.15rem;
	height: 0.15rem;
	margin-right: 0.08rem;
}

.bread .item span {
	display: flex;
	align-items: center;
	color: rgba(61, 96, 237, 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(61, 96, 237, 1);
	margin: 0 0.05rem;
	align-self: center;
}

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

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

.bread .flex_box2 .list_flex a {
	padding: 0 0.3rem;
	line-height: 0.6rem;
	color: var(--c);
	font-size: 0.18rem;
	transition: var(--s_tran);
}
.bread .flex_box2 .list_flex .item.active a,
.bread .flex_box2 .list_flex .item:hover a {
	background: var(--c);
	color: #fff;
}
.bread .flex_box1 {
	position: relative;
}
.bread .flex_box1::after {
	content: '';
	height: 0.01rem;
	width: 1.46rem;
	background: var(--c);
	position: absolute;
	bottom: 0;
	left: 0;
}
.bread .flex_box3 {
	width: 0.2rem;
	flex: 0 0 0.2rem;
	margin-right: 0.1rem;
	height: auto;
}
.bread .flex_box3 {
}
.bread .flex_box4 {
        white-space: nowrap;
	font-weight: bold;
	font-size: 0.22rem;
	color: #1D4098;
}

.bread .active span {
	color: rgba(233, 238, 255, 1);
}

.bread .list {
	justify-content: flex-end;
}
.bread .main {
	border-bottom: 0.01rem solid #CDD0D5;
	align-items: stretch;
}
.bread .index_title {
    
	align-items: center;
	height: 0.6rem;
}

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

.page .list {
	display: flex;
	align-items: center;
	color: rgba(125, 125, 125, 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(222, 222, 222, 1);
	text-align: center;
	line-height: 0.32rem;
	font-size: 0.14rem;
	color: rgba(125, 125, 125, 1);
	cursor: pointer;
	overflow: hidden;
}

.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 .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(222, 222, 222, 1);
	cursor: pointer;
	overflow: hidden;
}

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

.page .btn:hover {
	background: var(--c);
}

.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: rgba(125, 125, 125, 1);
}

.page .to_page {
	font-size: 0.14rem;
	color: rgba(125, 125, 125, 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(222, 222, 222, 1);
	outline: none;
	font-size: 0.14rem;
	color: rgba(125, 125, 125, 1);
	background: transparent;
}

.prev_next {
	margin-top: 0.54rem;
	border-top: 0.01rem solid #DCDCDC;
	border-bottom: 0.01rem solid #DCDCDC;
}

.prev_next .prev a,
.prev_next .next a {
	height: 0.98rem;
	line-height: 0.98rem;
	color: #666666;
	display: block;
	width: 100%;
	transition: var(--s_tran);
}

.prev_next .next a {
	text-align: right;
}

.prev_next .prev a::before {
	content: '<';
	margin-right: 0.3rem;
	padding-right: 0.16rem;
	border-right: 0.01rem solid #949494;
}

.prev_next .next a::after {
	content: '>';
	margin-left: 0.3rem;
	padding-left: 0.16rem;
	border-left: 0.01rem solid #949494;
}

.prev_next .prev a::before,
.prev_next .next a::after {
	font-size: 0.16rem;
	color: #949494;
	font-family: '宋体';
	font-weight: 700;
	transition: var(--s_tran);
}

.prev_next .prev,
.prev_next .next {
	flex: 1;
	width: 50%;
}

.prev_next .prev a:hover,
.prev_next .next a:hover {
	color: var(--c);
}

.prev_next .prev a:hover::before,
.prev_next .next a:hover::after {
	color: var(--c);
}

.prev_next .back {
	flex: 0 0 0.3rem;
	width: 0.3rem;
	height: 0.3rem;
	margin-left: 0.3rem;
	margin-right: 0.3rem;
	filter: grayscale(1);
}
.prev_next .back:hover {
	filter: grayscale(0);
}


.box1 .cate_list {
	display: flex;
	margin-bottom: 0.5rem;
	flex-wrap: wrap;
	column-gap: .4rem;
	row-gap: .4rem;
}

.box1 .cate_list a {
	border: 0.01rem solid rgba(214, 214, 214, 1);
	border-radius: 0.5rem;
	width: fit-content;
	padding: 0 0.3rem;
	color: #333;
	line-height: 0.4rem;
	font-size: 0.18rem;
	display: block;
	/*margin-right: 0.4rem;*/
}


.box1 .cate_list a:hover,
.box1 .cate_list a.active {
	color: #fff;
	background: var(--c);
	border: 0.01rem solid var(--c);
}

/*侧边栏*/
.sidebar{
    position: fixed;
    right: 0;
    bottom: 1rem;
    z-index: 999;
}
.sidebark{
        padding-left: 0.14rem;
    display: flex;
    align-items: center;
    width: 1.5rem;
    height: 0.54rem;
    background: #1D4098;
    opacity: 0.8;
    margin-bottom: 0.02rem;
}
.sidebark img{
    width: 0.3rem;
    height: 0.3rem;
    object-fit: cover;
}
.sidebarktxt{
    margin-left: 0.08rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    font-size: 0.14rem;
    color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
.main{
    width: 100%;
    padding: 0 .3rem;
}
.banner{
    width: 100%;
  height: 3rem;
  margin-top: .9rem;
}
.bread .main{
    display: block;
}
.bread .flex_box1::after{
    width: 100%;
}
.bread .flex_box2 .list_flex{
    justify-content: flex-start;
}
.bread .flex_box2 .list_flex a{
    font-size: 0.24rem;
}
.bread .flex_box4{
    font-size: 0.24rem;
}  
.page .total{
    font-size: 0.24rem;
    display: none;
}
.prev_next .prev a::before, .prev_next .next a::after{
    font-size: 0.24rem;
}
.prev_next .next a{
    font-size: 0.24rem;
}
.box1 .cate_list a{
    font-size: 0.24rem;
}
.prev_next .prev, .prev_next .next{
    width: 100%;
}
.line2{
    font-size: .24rem;
}

.contact{
    display: block !important;
    height: auto !important;
    overflow: hidden;
    padding: .45rem !important;
}
.conItemTit{
    font-size: 0.24rem !important;
}
.conItemTxt a{
    font-size: 0.24rem !important;
}
.contactR{
    width: 100% !important;
} 
.historyBox{
    display: block !important;
    height: auto;
    overflow: hidden;
}
.historyTit{
    font-size: 0.24rem !important;
}
.historyTxt{
    font-size: 0.24rem !important;
}
.historyItem{
    float: left !important;
  width: 33.3% !important;
  margin-right: 0 !important;
}
.historyText{
    width: 100% !important;
}
.historYear{
     width: 100% !important;
}
.historYear{
    font-size: 0.24rem !important;
}
.page .btn{
    display: none;
}
.page .list .item{
    font-size: 0.18rem;
}
}
