#right_menu {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 999;
}

#right_menu .li {
	width: 0.6rem;
	height: 0.6rem;
	background: #333333;
	margin-bottom: 0.02rem;
	position: relative;
}

#right_menu .li:last-child {
	margin-bottom: 0;
}

#right_menu .li_section {
	width: 100%;
	height: 100%;
}

#right_menu .li .icon {
	width: .28rem;
	height: .28rem;
}

#right_menu .li:hover .tk {
	display: block;
}

#right_menu .tk {
	display: none;
	position: absolute;
	top: 50%;
	right: 0.9rem;
	transform: translateY(-50%);
	padding: 0.2rem;
	border-radius: 0.08rem;
	background: #333333;
	font-size: 0.24rem;
	color: #fff;
	z-index: -1;
}

#right_menu .tk::before{
	content: "";
	width: 0;
	height: 0;
	border-left: solid 0.18rem #333;
	border-top: solid 0.14rem transparent;
	border-bottom: solid 0.14rem transparent;
	position: absolute;
	top: 0;
	left: 100%;
	bottom: 0;
	margin: auto;
}

#right_menu .tk img {
	width: 2rem;
	height: 2rem;
	background: red;
}

#right_menu .tk::after {
	content: "";
	width: 0.6rem;
	height: 0.6rem;
	position: absolute;
	top: 0;
	right: -0.5rem;
	bottom: 0;
	margin: auto;
	z-index: -99;
}

/* 移动端样式 */
@media screen and (max-width: 900px) {
	#right_menu {
		display: none;
	}
}