body{
	/* padding-top: 3rem; */
}

/* logo宽高 */
.logoWH{
	width: 6rem;
	height: 3rem;
}

/* 解决锚点定位不准确问题 */
.anchorRepair{
	padding-top: 4.625rem;
	margin-top: -4.625rem;
}

/* 移动端导航弹窗 */
.navbar_mobile_popup{
	/* display: none; */
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: -100%;
	z-index: 1050;
	-webkit-transition: 0.9s;
	transition: 0.9s;
}
.navbar_mobile_popup_bg{
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.navbar_mobile_popup_content{
	width: 60%;
	height: 100%;
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1052;
}
.navbar_mobile_popup_content ul{
	list-style-type: none;
	padding-left: 0;
	margin-left: 20px;
	margin-top: 50px;
}
.navbar_mobile_popup_content ul li{
	margin-bottom: 30px;
}
.navbar_mobile_popup_content ul li a{
	color: #333;
}
.navbar_mobile_popup_content img{
	margin: 10px 20px;
}


/* PC端 */
@media (min-width: 768px) {
	.nav-item{
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.navbar-expand-lg .navbar-nav .nav-link{
		padding-left: 0;
		padding-right: 0;
	}
}

/* 移动端 */
@media (max-width: 767.98px) {
	.container_mobile{
		justify-content: center!important;
		position: relative;
	}
	.qr_code_text {
		font-size: 0.7rem;
		padding-top: 3px;
	}
	.navbar-brand{
		margin-right: 0!important;
	}
	.logoWH{
		width: 4rem;
		height: 2rem;
	}
	.toggler_mobile{
		border-color: #ef5153;
		position: absolute;
		left: 0;
	}
	/* 底部 */
	#accordionExample .card-header{
		border: none;
	}
}


/* nav样式 */
.top_nav_cont{
	position: relative;
	z-index: 80;
}
.nav-link{
	position: relative;
}
.navbar-light .navbar-nav .active .nav-link_index{
	color: #fff;
}
.navbar-light .navbar-nav .nav-link_index{
	color: #fff;
}
.nav-link::after{
	display: block;
	content: "";
	height: 0.2rem;
	width: 100%;
	position: absolute;
	bottom: 0rem;
	left: 0;
	background: #FF0000;
	opacity: 0;
	transition: transform 0.2s ease-out,opacity 0.2s ease-out;
	transform-origin: 50% 0%;
	transform: scale(0.01,1);
}
.nav-item:hover .nav-link::after{
	opacity: 1;
	transform: scale(1,1);
}
.negative_film{
	width: 100%;
	height: 5rem;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 20;
	transition:all 0.6s;
}
.negative_film_transform{
	transform: scaleY(8);
}
.dropdown-menu{
	min-width: 6rem;
	border: none;
	margin: 0;
	padding: 0.8rem 0 0 0;
	background: none;
	z-index: 90;
}
.dropdown-menu_transform{
	display: block;
	animation:a_menu_item_show 0.3s ease-out both;
}
@keyframes a_menu_item_show {
	0%{ transform:translate(0,-2rem); opacity: 0;}
	100%{ transform:translate(0,0); opacity: 1;}
}

.dropdown-item{
	padding:0.8rem 0;
	background: none;
}

	
.noNewTwoLine{text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;}
.noNewFourLine{text-overflow: -o-ellipsis-lastline;overflow: hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 4;-webkit-box-orient: vertical;}


/* 内容标题样式 */
.con_tit_wrap{width: 100%;text-align: center;}
.con_tit_wrap_down{font-size: 2.5rem;color: #E7E7E7;letter-spacing: 0.5rem;}
.con_tit_wrap_up{width: 100%;text-align: center; font-size: 2.5rem;color: #FF0000;position: relative;top:-2.4rem;z-index: 2;}
@media (max-width: 767.98px) {
	.con_tit_wrap_down{font-size: 1rem;letter-spacing: 0rem;}
	.con_tit_wrap_up{font-size: 1rem;top:-1rem;}
}








