/* 整体容器样式 */
.tab-container {
	position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background-color: #f4f4f4;
    z-index: 999999;
    color: #ffffff;
	border-radius: 5px;
	font-size: 14px;
}

/* 标签样式 */
.tab {
	font-family: auto;
	padding: 10px 20px;
	cursor: pointer;
	border-bottom: 1px solid #ccc;
	background: #cf17c3;
    border: none;
}
.tab:first-child{
	border-top-left-radius: 5px;
}
.tab:last-child {
	border-bottom: none;
	border-bottom-left-radius: 5px;
}

/* 激活标签样式 */
.tab.active {
	background-color: #ddd;
}