/* 侧边栏 */
.sidebar_box{
	position: fixed;
	bottom: 3rem;
	right: 0.2rem;
	z-index: 800;
	padding: 3vh 2vh;
	background-color: #f8f8f8;
	border-radius: 3%;
	opacity: 0;
	transition: all .8s;
	pointer-events: none;
}
.sidebar_box.active{
	opacity: 1;
	pointer-events: auto;
}
.sidebar_box a{
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	cursor: pointer;
}
.sidebar_icon{
	position: relative;
}
.sidebar_icon img{
	width: 0.25rem;
	opacity: 0.7;
	transition: all .8s;
}
.sidebar_icon:hover img{
	opacity: 1;
}
.sidebar_pop{
	position: absolute;
	opacity: 0;
	width: 3.5rem;
	right: 0.6rem;
	top: 50%;
	transform: translateY(-40%);
	transition: all .3s;
	pointer-events: none;
}
.sidebar_pop .sidebar_bk{
	width: 3.5rem;
}
.sidebar_pop .sidebar_pop_d{
	position: absolute;
	top: 0rem;
	padding: 0.45rem;
}
.sidebar_pop_top{
	display: flex;
	border-bottom: 1px solid #a8a8a8;
	align-items: center;
	padding-bottom: 0.1rem;
}
.sidebar_pop_top div{
	margin-left: 0.1rem;
	font-size: 0.18rem;
}
.sidebar_pop_bottom{
	margin-top: 0.1rem;
	font-size: 0.14rem;
	font-weight: 300;
}
.sidebar_box a:hover .sidebar_pop{
	opacity: 1;
}
.sidebar_line{
	margin: 2vh 0;
	height: 1px;
	background-color: #dadada;
}
@media (max-width: 768px) {
    /* 侧边栏 */
	.sidebar_box.active{
		opacity: .7;
		pointer-events: auto;
		border-radius: 10px;
	}
	.sidebar_icon img{
		width: 0.3rem;
		opacity: 1;
	}
	.sidebar_line{
		margin: 2.5vh 0;
	}
	.sidebar_box a:hover .sidebar_pop{
		opacity: 0;
	}
	
	.sidebar_box_mb{
		position: fixed;
		bottom: 1.5rem;
		right: 0.2rem;
		z-index: 800;
		background-color: #fff;
		border-radius: 100px;
		opacity: 1;
		transition: all .8s;
		/* padding: 0.2rem 0; */
		height: 1rem;
		width: 1rem;
		overflow: hidden;
		box-shadow: 0px 2px 10px 0.5px rgb(0 0 0 / 10%);
		opacity: 0;
		pointer-events: none;
	}
	.sidebar_box_mb.show_s{
		pointer-events: auto;
		opacity: 1;
	}
	.sidebar_box_mb.active{
		height: 3.3rem;
		background-color: #3daeae;
	}
	.sidebar_fold_box{
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		position: absolute;
		bottom: 0rem;
	}
	.sidebar_fold_box img{
		width: 0.4rem;
		margin: 0.3rem;
	}
	.sidebar_fold_box .sidebar_btn_mb img{
		width: 0.3rem;
		margin: 0.35rem;
	}
	.sidebar_line_mb{
		width: 0.4rem;
		height: 1px;
		background-color: rgba(255,255,255,.5);
	}
	.sidebar_btn_mb{
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.sidebar_btn_mb img:nth-of-type(2){
		position: absolute;
		transform: rotate(45deg);
		opacity: 0;
		transition: all .4s;
	}
	.sidebar_box_mb.active .sidebar_btn_mb img:nth-of-type(1){
		opacity: 0;
		transform: rotate(90deg);
	}
	.sidebar_box_mb.active .sidebar_btn_mb img:nth-of-type(2){
		transform: rotate(90deg);
		opacity: 1;
	}
}