@font-face {
	font-family: Source Han Sans;
	src: url('../fonts/SourceHanSansCN-Regular.otf');
}
@font-face {
	font-family: Poppins;
	src: url('../fonts/Poppins\ Regular.otf');
}
@font-face {
	font-family: YPchuangxiang-GB;
	src: url('../fonts/YPchuangxiang-GB.ttf');
}
	
@font-face {
	font-family: Source Han Serif CN;
	src: url('../fonts/SourceHanSerifCN-Medium.otf');
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: .16rem;
	font-family: Source Han Sans SC, Source Han Sans SC;
	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 {
	max-width: 15rem;
	width: 100%;
	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;
 */

/* 左右flex布局 */
.flex_box {
	display: flex;
	flex-wrap: nowrap;
}

.flex_box_jc {
	justify-content: space-between;
}
.flex_center{
	align-items: center;
}
.flex_start {
	align-items: flex-start;
}


/* 列表flex布局 */
.list_flex {
	display: flex;
	flex-wrap: wrap;
}



/*多行溢出*/
.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;
}



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



.pointer {
	cursor: pointer;
}


/* 公共面包屑 */
.bread1{
	
}


/* 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.08);
}


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

.page .list {
	display: flex;
	align-items: center;
	font-family: Microsoft YaHei, Microsoft YaHei;
	font-weight: 400;
	font-size: 0.18rem;
	color: #999999;
}

.page .list .item {
	width: 0.53rem;
	height: 0.53rem;
	background: #FFFFFF;
	border-radius: 0rem 0rem 0rem 0rem;
	border: 0.01rem solid #E2E2E2;
	display: block;
	margin: 0 0.085rem;
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 400;
	font-size: 0.2rem;
	color: #686868;
	line-height: 0.53rem;
	text-align: center;
}

.page .list .item:hover,
.page .list .active {
	color: #FFFFFF;
	background: #162D59;
	border: none;
}

.page .btn:hover{
	background: #162D59;
	border: none;
}
.page .btn:hover img{
	filter: brightness(0) invert(10);
}
.page .btn {
	width: 0.53rem;
	height: 0.53rem;
	margin: 0 0.085rem;
	border: 0.01rem solid #E2E2E2;
}
.page .btn img{
	width: 40%;
	height: auto;
	display: block;
	margin: 0.15rem auto;
}
.page .btn.next{
	text-align: left;
}

.page .btn:hover {
}




.innerBanner{
	width: 100%;
	height: 6rem;
	position: relative;
}
.innerBanner .inBannerImg{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.innerBanner .inBannerImg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.inBannerTitle{
    position: absolute;
    top: 50%;
	transform: translateY(-50%);
    left: 1.85rem;
}
.inBannerTitle .inTxt{
	font-family: Source Han Sans SC, Source Han Sans SC;
	font-weight: 400;
	font-size: 0.4rem;
	color: #FFFFFF;
}


/* 公共面包屑 */
.bread{
	height: 0.6rem;
	background: #F7F7F7;
}

.bread .main{
	height: 100%;
}
.bread .flex_box{
	display: flex;
	justify-content: space-between;
}
.bread .flex_box1 {
	display: flex;
}

.bread .flex_box1 a{
	font-family: Source Han Sans SC, Source Han Sans SC;
	font-weight: 400;
	font-size: 0.16rem;
	color: #686868;
	display: flex;
	align-items: center;
}
.bread .flex_box1 a::after{
	content: '|';
	font-family: Source Han Sans SC, Source Han Sans SC;
	font-weight: 500;
	font-size: 0.14rem;
	color: #666666;
	display: flex;
	align-items: center;
	margin: 0 0.12rem;
	margin-top: -0.03rem;
}
.bread .flex_box1 a:last-child::after{
	display: none;
}

.bread .flex_box2 .all{
	width: 1rem;
	height: 0.4rem;
	background: #104198;
	border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
	font-family: Source Han Sans SC, Source Han Sans SC;
	font-weight: 500;
	font-size: 0.18rem;
	color: #FFFFFF;
	text-align: center;
	line-height: 0.4rem;
	margin-right: 0.2rem;
}

.bread .flex_box2 .layui-form{
	width: 2rem;
	height: 0.4rem;
	margin-right: 0.1rem;
}
.bread .flex_box2 .layui-col-md6{
	width: 2rem;
	height: 0.4rem;
	border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
	border: 0.01rem solid #EEEEEE;
	/* overflow: hidden; */
	position: relative;
}
.bread .flex_box2 .layui-col-md6::after{
	content: '';
	width: 0.24rem;
	height: 0.24rem;
	display: block;
	background: url(../img/select_icon.png);
	background-size: 100% 100%;
	position: absolute;
	right: 0.1rem;
	top: 0.08rem;
	transition: all 0.5s;
}
.bread .flex_box2 .layui-form-select,
.bread .flex_box2 .layui-form-select .layui-select-title{
	height: 100%;
}
.bread .flex_box2 .layui-form-select .layui-input{
	width: 100%;
	height: 100%;
	border: unset;
	border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
}
.bread .flex_box2 .layui-form-select dl{
	top: 0.49rem;
	border: unset;
	height: 1.95rem;
	overflow-y: auto;
	padding: 0.05rem 0;
	box-shadow: unset;
}
.bread .flex_box2 .layui-form-selected::before{
	content: '';
	width: 2rem;
	height: 2.05rem;
	background: #FFFFFF;
	box-shadow: 0rem 0.03rem 0.1rem 0.01rem rgba(0,0,0,0.1);
	border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
	padding: 0.1rem 0;
	position: absolute;
	left: 0;
	top: 0.39rem;
	z-index: 1;
}
.bread .flex_box2 .layui-form-select dl dd,
.bread .flex_box2 .layui-form-select dl dt {
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 400;
	font-size: 0.18rem;
	color: #999999;
	margin-bottom: 0.1rem;
}
.bread .flex_box2 .layui-form-select dl dd:last-child,
.bread .flex_box2 .layui-form-select dl dt:last-child{
	margin-bottom: 0;
}
.layui-form-select dl dd.layui-this,
.bread .flex_box2 .layui-form-select dl dd:hover{
	background: unset !important;
	color: #104198;
}
.bread .flex_box2 .layui-form-select dl dd, 
.bread .flex_box2 .layui-form-select dl dt{
	line-height: 0.27rem;
	margin-bottom: 0.15rem;
}


.bread .flex_box2 .layui-form-select dl::-webkit-scrollbar {
    width: 0.04rem;
    background: #EDEDED;
    border-radius:0.02rem;
	margin-right: 0.02rem;
	margin: 0.1rem 0;
	height: 80%;
}

.bread .flex_box2 .layui-form-select dl::-webkit-scrollbar-thumb {
    width: 0.04rem;
    background: #104198;
    border-radius:0.02rem;
}
.bread .flex_box2 .layui-input:focus, .layui-textarea:focus{
	box-shadow: unset;
}

.bread .flex_box2 .layui-col-md6:has(input:focus)::after{
	content: '';
	width: 0.24rem;
	height: 0.24rem;
	display: block;
	background: url(../img/select_icon.png);
	background-size: 100% 100%;
	position: absolute;
	right: 0.1rem;
	top: 0.08rem;
	rotate: 180deg;
	transition: all 0.5s;
}
.bread .flex_box2 .searchBox{
	width: 3.4rem;
	height: 0.4rem;
	border-radius: 0.2rem 0.2rem 0.2rem 0.2rem;
	border: 0.01rem solid #EEEEEE;
}
.bread .flex_box2 .searchBox .img{
	padding-left: 0.2rem;
	padding-right: 0.1rem;
	display: flex;
}
.bread .flex_box2 .searchBox .img img{
	width: 0.2rem;
	height: 0.2rem;
}
.bread .flex_box2 .searchBox input{
	width: 2.1rem;
	flex: 1;
}
.bread .flex_box2 .searchBox input,
.bread .flex_box2 .searchBox input::placeholder{
	height: 100%;
	font-family: Source Han Sans SC, Source Han Sans SC;
	font-weight: 500;
	font-size: 0.18rem;
	color: #999999;
	line-height: 0.34rem;
}

.bread .flex_box2 .searchBox .btn{
	width: 0.8rem;
	height: 0.38rem;
	background: #EEEEEE;
	border-radius: 0rem 0.2rem 0.2rem 0rem;
	border: 0.01rem solid #EEEEEE;
	font-family: Source Han Sans SC, Source Han Sans SC;
	font-weight: 500;
	font-size: 0.18rem;
	line-height: 0.34rem;
	color: #999999;
	text-align: center;
	cursor: pointer;
}


.page_inner{
	padding-top: 1rem;
}


.sqbgWrap{
    background: url(../img/sqbBg.png);
    background-size: 100% 100%;
    padding-top: 0.99rem;
    padding-bottom: 0.9rem;
}
.sqbgWrap .sqTitle{
    font-family: Source Han Sans SC, Source Han Sans SC;
    font-weight: 500;
    font-size: 0.32rem;
    color: #FFFFFF;
    text-align: center;
    line-height: 1;
    margin-bottom: 0.36rem;
}
.sqbgWrap .sqTxt{
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 400;
    color: #FFFFFF;
    font-size: 0.16rem;
    line-height: 0.32rem;
    text-align: center;
}
.sqbgWrap .sqTxt span{
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 400;
    font-size: 0.16rem;
    color: #104198;
    margin-bottom: 0.5rem;
}
.sqbgWrap .sqb{
    padding: 0 4.08rem;
}
.sqbgWrap .sqb .sqTabel{
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 0.5rem;
}
.sqbgWrap .sqb .sqInp{
    width: 5.11rem;
    display: flex;
    margin-bottom: 0.3rem;
}
.sqbgWrap .sqb .sqInp label{
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 400;
    font-size: 0.18rem;
    color: #FFFFFF;
    text-align: right;
    width: 1.11rem;
    padding-right: 0.1rem;
    line-height: 0.48rem;
}
.sqbgWrap .sqb .sqInp label span{
    display: inline-block;
    margin-right: 0.03rem;
    color: #FFFFFF;
}
.sqbgWrap .sqb .sqInp input{
    width: 4rem;
    height: 0.48rem;
    background: #FFFFFF;
    border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
    border: 0.01rem solid #EEEEEE;
    padding: 0 0.15rem;
    background: #FFFFFF;
}
.sqbgWrap .sqb .sqInp input::placeholder{
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 400;
    font-size: 0.16rem;
    color: #999999;
}
.sqbgWrap .sqb .xy{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
}
.sqbgWrap .sqb .xy input{
    width: 0.14rem;
    height: 0.14rem;
    background: #FFFFFF;
    border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
    border: 0.01rem solid #E2E2E2;
    margin-right: 0.05rem;
    appearance: none;
    -webkit-appearance: none;
}
.sqbgWrap .sqb .xy a{
    font-family: Source Han Sans, Source Han Sans;
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
}
.sqbgWrap .sqb .submit{
    width: 2rem;
    height: 0.4rem;
    background: #FFFFFF;
    border-radius: 0.04rem 0.04rem 0.04rem 0.04rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: bold;
    font-size: 0.16rem;
    color: #FFFFFF;
    line-height: 0.4rem;
    text-align: center;
    margin: 0 auto;
    margin-top: 0.3rem;
    font-family: Source Han Sans SC, Source Han Sans SC;
    font-weight: 500;
    font-size: 0.16rem;
    color: #104198;
    cursor: pointer;
}

.bread2{
	height: 0.8rem;
	background: #FFFFFF;
}
.bread2 .tab_wrap{
	padding: 0 0.55rem;
}
.bread2 .tab{
	padding: 0 0.16rem;
	font-family: Source Han Sans, Source Han Sans;
	font-weight: 400;
	font-size: 0.22rem;
	color: #333333;
	line-height: 0.8rem;
	margin: 0 0.84rem;
	position: relative;
	transition: all 0.5s;
}

.bread2 .tab::after{
	content: '';
	width: 0%;
	height: 0.04rem;
	background: #104198;
	border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s;
}
.bread2 .tab.active,
.bread2 .tab:hover{
	color: #104198;
	transition: all 0.5s;
}
.bread2 .tab.active::after,
.bread2 .tab:hover::after{
	content: '';
	width: 100%;
	height: 0.04rem;
	background: #104198;
	border-radius: 0.06rem 0.06rem 0.06rem 0.06rem;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all 0.5s;
}

.img_icon1{
	display: block;
	opacity: 1;
	transition: all 0.3s;
}
.img_icon2{
	display: none;
	opacity: 0;
	transition: all 0.3s;
}
.imgBox .img_icon1{
	display: none;
	opacity: 0;
	transition: all 0.3s;
}
.imgBox .img_icon2{
	display: block;
	opacity: 1;
	transition: all 0.3s;
}
.imgHover:hover .img_icon1{
	display: none;
	opacity: 0;
	transition: all 0.3s;
}
.imgHover:hover .img_icon2{
	display: block;
	opacity: 1;
	transition: all 0.3s;
}

.more{
	width: 2rem;
	height: 0.6rem;
	background: #162D59;
	border-radius: 0.34rem 0.34rem 0.34rem 0.34rem;
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 400;
	font-size: 0.18rem;
	color: #FFFFFF;
	line-height: 0.26rem;
	justify-content: center;
	transition: all 0.5s;
}
.more img{
	width: 0.14rem;
	height: 0.14rem;
	margin-left: 0.21rem;
	display: block;
	transition: all 0.5s;
}

.more:hover{
	background: #C5A65D;
	color: #FFFFFF;
}
.more:hover img{
	margin-left: 0.18rem;
	transform: rotate(45deg);
}




.tab_wrap1{
    justify-content: center;
}
.tab_wrap1 .tab{
    width: 2.22rem;
    height: 0.66rem;
    background: #162D59;
    border-radius: 0.34rem 0.34rem 0.34rem 0.34rem;
    margin: 0 0.1rem;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 0.22rem;
    color: #FFFFFF;
    line-height: 0.66rem;
    text-align: center;
    transition: all 0.5s;
}
.tab_wrap1 .tab a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab_wrap1 .tab:hover,
.tab_wrap1 .tab.active{
    background: #C5A65D;
}











.searchTop{
    width: 100%;
    height: 5rem;
    background: rgba(249, 249, 249, 0.8);
    padding: 1.6rem 0;
}
.searchTop .title{
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: bold;
    font-size: 0.54rem;
    color: #000000;
    line-height: 0.79rem;
    text-align: left;
    text-align: center;
    margin-bottom: 0.6rem;
}
.searchTop .inpt{
    width: 9rem;
    height: 0.85rem;
    background: #EBEBEB;
    margin-left: auto;
    margin-right: auto;
    background: #FFFFFF;
}
.searchTop .inpt input{
    width: 8.11rem;
    padding: 0.3rem;
}
.searchTop .inpt .ssbtn{
    width: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.searchTop .inpt .ssbtn img{
    width: 0.4rem;
    height: 0.4rem;
}
.searchTop .inpt .ssbtn::after{
    content: '';
    width: 0rem;
    height: 0.53rem;
    border: 0.01rem solid #EBEBEB;
    display: block;
    position: absolute;
    right: 0.82rem;
    top: 0.18rem;
}
.searchTop .jg{
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 0.2rem;
    color: #000000;
    line-height: 0.29rem;
    text-align: center;
    margin-top: 0.45rem;
}
.tab_wrap1.sear{
    justify-content: flex-start;
}
.searchTop2{
	height: auto;
}
.searchTop .jg2 img{
	width: 6.54rem;
	height: 4.92rem;
	display: block;
	margin-left: auto;
	margin-right: auto;
	mix-blend-mode: multiply;   
}
.searchTop .jg2{
	position: relative;
	margin-top: 0.35rem;
}
.searchTop .jg2 span{
	font-family: Source Han Sans CN, Source Han Sans CN;
	font-weight: 400;
	font-size: 0.2rem;
	color: #000000;
	line-height: 0.29rem;
	text-align: center;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}