@font-face {
	font-family: 'AlimamaShuHeiTi';
	src: url('../font/AlimamaShuHeiTi-Bold.ttf');
}

@font-face {
	font-family: 'SourceHanSansCN';
	src: url('../font/SourceHanSansCN-Regular.otf');
}
/* 瀛椾綋 */

ul{
    padding-left: 2em;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-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;
}


body{
	font-size: 0.16rem;
	line-height: 1.5;
	color: #333;
	font-family: SourceHanSansCN, Microsoft YaHei;
}


.page_wrap {
	padding-top: 1.1rem;
	background: url('../img/bg.png') rgba(251, 251, 251, 1) no-repeat bottom center;
	background-size: contain;
	padding-bottom: 0.87rem;
}

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

.main {
	max-width: 12.8rem;
	width: 94%;
	margin: 0 auto;
}

.flex_box {
	display: flex;
}
.hc_flex_box {
	display: flex;
	align-items: flex-start;
}

[class*="fb"] {
	flex: 1;
	margin-left: 0;
	margin-right: 0;
	min-width: 0;
}

.flex_list {
	display: flex;
	flex-wrap: wrap;
}

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

span {
	color: inherit;
	font-size: inherit;
}


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


hr {
	border-top: 0.01rem solid rgba(222, 222, 222, 1);
	margin-top: 0.47rem;
	margin-bottom: 0.4rem;
}

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




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







/* 公共面包屑 */



/* 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.3rem auto 0;
	display: flex;
	align-items: center;
	column-gap: 0.15rem;
}
.page_box .pages {
	display: flex;
	align-items: center;
	column-gap: 0.15rem;
}
.page_box .pages .item,
.page_box .btn{
	width: 0.28rem;
	height: 0.28rem;
	background: #FFFFFF;
	border-radius: 0.02rem;
	border: 0.01rem solid #E3E3E3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	font-size: 0.12rem;
	color: #333;
	cursor: pointer;
	overflow: hidden;
}
.page_box .pages .item:hover,
.page_box .pages .active,
.page_box .btn:hover{
	border-color: #0063C4;
	background: #0063C4;
	color: white;
}
.page_box .btn.disabled {
    background-color: #f4f4f5;
    color: #c0c4cc;
    border-color: #f4f4f5;
    cursor: not-allowed;
}





/* header */
.header {
	background: #fff;
}
.head_top {
	padding: 0.3rem 0;
	position: relative;
}
.head_top::before{
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.02rem;
	background: linear-gradient(90deg, #0063C4 0%, #00C27F 100%);
}
.head_top .main{
	display: flex;
	align-items: flex-start;
}
.head_logo {
	width: 1.88rem;
	height: 0.8rem;
	display: block;
	flex-shrink: 0;
}

.head_logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.head_search {
	width: 7.26rem;
	margin-left: 0.4rem;
	padding-top: 0.06rem;
}

.head_search form {
	height: 0.4rem;
	display: flex;
}

.head_search input {
	width: 6.46rem;
	height: 0.4rem;
	padding: 0 0.15rem;
	background: #f7f7f7;
	border: 0.01rem solid #eaeaea;
	border-right: none;
	border-radius: 0.03rem 0 0 0.03rem;
	font-family: "SourceHanSansCN";
	font-size: 0.12rem;
	color: #333;
}

.head_search input::placeholder {
	color: #9f9f9f;
}

.head_search button {
	width: 0.8rem;
	height: 0.4rem;
	border: none;
	border-radius: 0 0.03rem 0.03rem 0;
	background: #0063c4;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.head_search button img {
	width: 0.3rem;
	height: 0.3rem;
	object-fit: contain;
}

.hot_words {
	margin-top: 0.1rem;
	display: flex;
	align-items: center;
	gap: 0.15rem;
	font-size: 0.14rem;
	line-height: 1.5;
	color: #666;
	white-space: nowrap;
}

.hot_words a:hover{
	color: #0063c4;
}

.head_login {
	margin-left: 0.28rem;
}

.head_login img {
	width: 0.26rem;
	height: 0.26rem;
	flex-basis: 100%;
	display: block;
	margin: 0 auto;
	object-fit: contain;
}
.head_login .head_user_btn{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.04rem 0.05rem;
	font-size: 0.14rem;
	color: #7d7d7d;
	line-height: 1.5;
}
.head_login .head_user_btn span {
	width: 0.01rem;
	height: 0.12rem;
	margin-top: 0.05rem;
	background: #cfcfcf;
}
.head_login .head_user_status{
	position: relative;
}
.head_login .head_user_status span{
	display: flex;
	align-items: center;
	gap: 0.04rem;
	color: #7D7D7D;
	font-family: "SourceHanSansCN";
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
}
.head_login .head_user_status span i{
	content: "▼";
	display: block;
	width: 0.08rem;
	height: 0.12rem;
	background: url(../img/xiala.png) no-repeat center center;
	background-size: contain;
	cursor: pointer;
}
.head_login .head_user_status a{
	position: absolute;
	right: 0;
	top: 100%;
	padding: 0.02rem 0.14rem;
	border-radius: 3px;
	background: #0063C4;
	font-size: 0.14rem;
	color: #fff;	
	line-height: 1.5;
	display: none;
}



.head_code {
	margin-left: 0.28rem;
	display: flex;
	align-items: center;
	gap: 0.15rem;
	font-size: 0.14rem;
	line-height: 1.5;
	color: #333;
	white-space: nowrap;
}
.head_code img {
	width: 0.8rem;
	height: 0.8rem;
	object-fit: cover;
}
.head_nav .main{
	padding: 0.3rem 0;
	display: flex;
	column-gap: 0.72rem;
}
.nav_group {
	width: calc(50% - 0.36rem);
	display: flex;
	align-items: stretch;
}
.nav_tit {
	width: 0.24rem;
    height: auto;
    background: #0063c4;
    font-size: 0.12rem;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: end;
    letter-spacing: 0.06rem;
}

.nav_list {
	width: calc(100% - 0.24rem);
	padding-left: 0.2rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.06rem 0.26rem;
	font-size: 0.14rem;
	line-height: 1.5;
	color: #333;
	justify-content: space-between;
}

.nav_list a:hover,
.news_list a:hover,
.rank_list a:hover {
	color: #0063c4;
}








/* footer */
.footer {
	height: auto;
	margin-top: 0.6rem;
}

.friend_links {
	height: auto;
	padding: 0.3rem 0;
	background: #F2F9FF;
	font-size: 0.16rem;
	color: #333;
}

.friend_links .main {
	display: flex;
	align-items: flex-start;
	column-gap: 0.1rem;
}

.friend_links strong {
	flex-shrink: 0;
	font-weight: 700;
}

.friend_list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem 0.2rem;
	line-height: 1.5;
}
.friend_list a:hover{
	color: #0063c4;
}
.foot_about {
	padding: 0.3rem 0;
	background: #0063c4;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.3rem;
	font-size: 0.16rem;
	font-weight: 500;
	color: #fff;
}

.foot_about span,
.foot_nav a + a::before {
	content: "";
	width: 0.06rem;
	height: 0.06rem;
	border-radius: 50%;
	background: #fff;
	display: block;
}

.foot_body {
	background: #008b4d;
	color: #fff;
}

.foot_main {
	padding: 0.2rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 0.01rem solid rgba(255,255,255,0.3);
}

.foot_logo {
	width: 1.78rem;
	height: 0.76rem;
	display: block;
	filter: brightness(0) invert(1);
}

.foot_logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.foot_nav {
	display: flex;
	align-items: center;
	gap: 0.2rem;
	font-size: 0.16rem;
	font-weight: 500;
	white-space: nowrap;
}
.foot_nav a {
	display: flex;
	align-items: center;
	gap: 0.2rem;
}
.foot_nav a:first-child::before {
	display: none;
}
.foot_code {
	display: flex;
	gap: 0.2rem;
}

.foot_code div {
	width: fit-content;
	text-align: center;
	font-size: 0.13rem;
	color: rgba(255,255,255,0.82);
}

.foot_code img {
	width: 0.6rem;
	height: 0.6rem;
	margin: 0 auto 0.06rem;
	object-fit: cover;
}

.foot_bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.15rem 0;
	gap: 0.15rem;
	font-size: 0.14rem;
	color: rgba(255,255,255,0.8);
}






.side_tools {
	position: fixed;
	z-index: 3;
	right: 2.32rem;
	/*top: 50%;*/
	/*transform: translateY(-50%);*/
	bottom: 10%;
	width: 0.48rem;
	height: auto;
	box-shadow: 0 0.04rem 0.16rem rgba(0, 99, 196, 0.16);
}
.side_tools .side_item:first-child {
	border-radius: 0.05rem 0.05rem 0 0;
}
.side_tools .side_item:last-child{
	border-radius: 0 0 0.05rem 0.05rem;
}
.side_tools .side_item{
	width: 0.48rem;
	height: 0.48rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0063C4;
	border-bottom: 0.01rem solid rgba(255,255,255,0.35);
	position: relative;
	cursor: pointer;
}
.side_tools .side_item img{
	width: 0.2rem;
	height: 0.2rem;
	object-fit: contain;
}
.side_tools .side_item:hover{
	background: #0673DE;
}
.side_tools .side_item .side_code{
	position: absolute;
	top: 50%;
	right: calc(100% + 0.05rem);
	transform: translateY(-50%);
	background: url(../img/side_bg.png) no-repeat center center;
	background-size: cover;
	width: 1.06rem;
	height: 1rem;
	padding: 0.1rem 0.16rem 0.1rem 0.1rem;
	z-index: -1;
	display: none;
}
.side_tools .side_item .side_code img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.side_tools .side_item:hover .side_code{
	display: block;
}


.news_side {
	width: 3.2rem;
	flex-shrink: 0;
}
.news_side a {
	width: 100%;
	height: fit-content;
	display: block;
}
.news_side a + a {
	margin-top: 0.2rem;
}
.news_side img {
	width: 100%;
	height: auto;
}




.bread_nav {
	display: flex;
	align-items: center;
	font-family: "SourceHanSansCN";
	font-size: 0.14rem;
	line-height: 1.5;
	color: #999;
}
.bread_nav img{
	width: 0.14rem;
	height: 0.14rem;
	object-fit: contain;
	margin-right: 0.05rem;
}
.bread_nav a{
	margin-right: 0.15rem;
	position: relative;
}
.bread_nav a::after {
	content: "";
	position: absolute;
	right: -0.1rem;
	top: 50%;
	transform: translateY(-50%);
	width: 0.05rem;
	height: 0.05rem;
	background: url(../img/bread_icon.png) no-repeat center center;
	background-size: contain;
}
.bread_nav a:hover,
.bread_nav span {
	color: #0063c4;
}





/* 专题面包屑导航 */
.great_bread{
    width: 100%;
    background: #0063C4;
	margin-bottom: 0.3rem;
}
.great_bread .main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "SourceHanSansCN";
	gap: 0.24rem;
    overflow-x: auto;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    font-weight: 400;
    padding: 0.07rem 0;
    font-size: 0.18rem;
    line-height: 1.5;
    color: #fff;
}
.great_bread .main a{
    flex-shrink: 0;
}
.great_bread .main.is-dragging{
    cursor: grabbing;
    user-select: none;
}
.great_bread .main::-webkit-scrollbar{
    display: none;
}








.search_btn,
.navbar-default{
	display: none;
}


@media (max-width: 1042px) {
	.head_top .main{
		justify-content: space-between;
	}
	.head_logo{
		width: 160px;
		height: auto;
	}
	.head_search{
		width: 60%;
        margin: 0;
	}
	.head_login{
		margin: 0;
	}
	.head_code{
		display: none;
	}
	.head_nav .main{
		column-gap: 40px;
	}
	.nav_list{
		gap: 4px 10px;
	}




	.foot_main{
		flex-wrap: wrap;
		row-gap: 20px;
	}
	.foot_nav{
		flex-wrap: wrap;
	}





	.news_side{
		display: none;
	}



	.side_tools{
		right: 16px;
	}







	.great_bread .main{
		white-space: nowrap;
	}
	.great_bread .main::-webkit-scrollbar{
		display: none;
	}

	.great_bread .main{
		font-size: 18px;
		overflow-x: auto;
	}

}

@media (max-width: 768px) {
	body{
		font-size: 14px;
	}


	
	.header{
		position: fixed;
        top: 0;
        width: 100%;
        z-index: 9999;
	}
	.head_top{
		padding: 10px 0;
	}
	.head_top::before{
		height: 2px;
	}
	.head_top .main{
		align-items: center;
		justify-content: inherit;
	}
	.head_logo{
		width: auto;
		height: 54px;
	}

	.search_btn{
		background: #0063C4;
		border-radius: 50%;
		width: 28px;
		height: 28px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		margin: 0 16px 0 auto;
	}
	.search_btn img{
		width: 88%;
		height: auto;
	}
	.head_login{
		margin-right: 20px;
	}
	.head_login img{
		width: 28px;
		height: 28px;
		display: none;
	}
	.head_login .head_user_btn{
		font-size: 16px;
        gap: 0px 8px;
        align-items: center;;
	}
	.head_login .head_user_btn span{
		width: 1px;
		height: 12px;
		margin: 0;
	}




	.head_search{
		position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 2;
        display: none;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
	}
	.head_search form{
		width: 90%;
		height: 36px;
		background: #fff;
		border-radius: 0.05rem;
		display: flex;
		align-items: center;
		justify-content: center;
		overflow: hidden;
	}
	.head_search input{
		width: calc(100% - 42px);
		height: 100%;
		font-size: 14px;
	}
	.head_search button{
		width: 42px;
		height: 100%;
	}
	.head_search button img{
		width: 64%;
		height: auto;
	}
	.hot_words{
		width: 90%;
        flex-wrap: wrap;
        color: #fff;
        font-size: 14px;
        gap: 2px 10px;
        margin-top: 14px;
	}




	.navbar-default {
		display: block;
	}

	.head_btn {position: relative !important;float: right;padding: 0;background-color: transparent;background-image: none;border: 0;border-radius: 0}
	.head_btn:focus {outline: 0}
	.head_btn .icon-bar {display: block;width: 22px;height: 2px;border-radius: 1px}
	.head_btn .icon-bar+.icon-bar {margin-top: 4px}
	.navbar-default .head_btn .icon-bar {background-color: #606060}
	.head_btn .icon-bar {position: relative}
	.head_btn .icon-bar+.icon-bar {margin-top: 6px}
	.head_btn .icon-bar:nth-child(2) {-moz-transition: background .3s ease 0s;-o-transition: background .3s ease 0s;-webkit-transition: background .3s ease;-webkit-transition-delay: 0s;transition: background .3s ease 0s;background: transparent}
	.transform-fallback-fix .head_btn .icon-bar:nth-child(2) {background: #606060}
	.head_btn .icon-bar:nth-child(1),
	.head_btn .icon-bar:nth-child(3) {-moz-transition: top .3s ease, -moz-transform .3s ease .4s;-o-transition: top .3s ease, -o-transform .3s ease .4s;-webkit-transition: top .3s ease, -webkit-transform .3s ease;-webkit-transition-delay: 0s, .4s;transition: top .3s ease, transform .3s ease .4s}
	.head_btn .icon-bar:nth-child(1) {top: 8px;-moz-transform: rotate(45deg);-ms-transform: rotate(45deg);-webkit-transform: rotate(45deg);transform: rotate(45deg)}
	.transform-fallback-fix .head_btn .icon-bar:nth-child(1) {top: 0}
	.head_btn .icon-bar:nth-child(3) {top: -8px;-moz-transform: rotate(-45deg);-ms-transform: rotate(-45deg);-webkit-transform: rotate(-45deg);transform: rotate(-45deg)}
	.transform-fallback-fix .head_btn .icon-bar:nth-child(3) {top: 0}
	.head_btn.collapsed .icon-bar:nth-child(2) {-moz-transition: background .3s ease .4s;-o-transition: background .3s ease .4s;-webkit-transition: background .3s ease;-webkit-transition-delay: .4s;transition: background .3s ease .4s;background-color: #606060}
	.head_btn.collapsed .icon-bar:nth-child(1),
	.head_btn.collapsed .icon-bar:nth-child(3) {top: 0;-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-webkit-transform: rotate(0deg);transform: rotate(0deg);-moz-transform-origin: 50% 50%;-ms-transform-origin: 50% 50%;-webkit-transform-origin: 50% 50%;transform-origin: 50% 50%;-moz-transition: top .3s ease .4s, -moz-transform .3s ease;-o-transition: top .3s ease .4s, -o-transform .3s ease;-webkit-transition: top .3s ease, -webkit-transform .3s ease;-webkit-transition-delay: .4s, 0s;transition: top .3s ease .4s, transform .3s ease}
	
	.head_login .head_user_status span i{
		width: 8px;
		height: 12px;
	}
	.head_login .head_user_status a{
		font-size: 14px;
	}



	.header .head_nav{
		position: fixed;
		width: 100%;
		height: calc(100vh - 74px);
		left: 0;
		bottom: 0;
		padding: 20px 3% 0;
		background: #fff;
		transform: translateX(100%);
		transition: all 0.5s;
		pointer-events: all;
		overflow: auto;
		flex-direction: column;
		gap: 0;
		z-index: -1;
	}
	.header .head_nav.on {
		transform: translateX(0);
		overflow-x: hidden;
		z-index: 9;
	}

	.head_nav .main{
		flex-wrap: wrap;
		width: 100%;
		padding: 0;
		row-gap: 30px;
	}
	.nav_group{
		width: 100%;
		flex-wrap: wrap;
	}
	.nav_tit{
		width: 100%;
		background: none;
		font-size: 16px;
		font-weight: 700;
		color: #212121;
		margin-bottom: 12px;
		justify-content: flex-start;
	}
	.nav_list{
		width: 100%;
		padding: 0;
		gap: 10px 6px;
		font-size: 14px;
	}
	.nav_list a{
		text-align: center;
		color: #212121;
		background: #eeeff1;
		width: calc(33.33% - 4px);
		padding: 6px;
		border-radius: 2px;
	}





	/* footer */
	.friend_links,
	.foot_about{
		font-size: 14px;
	}
	.foot_main{
		padding: 20px 0;
	}
	.foot_nav{
		font-size: 14px;
        justify-content: center;
	}
	.foot_logo{
		width: auto;
		height: 56px;
		margin: 0 auto;
	}
	.foot_code{
		width: 100%;
		justify-content: center;
		column-gap: 16px;
	}
	.foot_code div{
		font-size: 13px;
	}
	.foot_code img{
		width: 86px;
		height: auto;
	}
	.foot_bottom{
		flex-wrap: wrap;
		font-size: 12px;
	}



	.bread_nav{
		font-size: 14px;
	}
	.bread_nav img{
		width: 14px;
		height: 14px;
		margin-right: 5px;
	}
	.bread_nav a{
		margin-right: 15px;
	}
	.bread_nav a::after{
		width: 5px;
		height: 5px;
		right: -10px;
	}



	.page_box .pages .item, .page_box .btn{
		width: 32px;
		height: 32px;
		font-size: 14px;
	}





	.great_bread .main{
		font-size: 14px;
	}
	.great_bread .main{
		font-size: 16px;
		padding: 7px 0;
	}
}




