/* 共用侧边栏 */
	.communal-sidebar{
		gap: 10px;
		display: flex;
		width: 20.000%;
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}

	/* 共用侧边栏-会员信息 */
	.communal-sidebar .member-info{
		gap: 15px;
		width: 100%;
		display: flex;
		padding: 35px 0%;
		border-radius: 10px;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		background-color: rgba(246, 246, 246, 1);
	}
	
	.communal-sidebar .member-info .avatar{
		width: 80px;
		cursor: pointer;
		border-radius: 50%;
	}
	
	.communal-sidebar .member-info .avatar img{
		width: 100%;
		height: 100%;
		border-radius: inherit;
	}
	
	.communal-sidebar .member-info .member-name{
		line-height: 1;
		font-size: 24px;
		color: rgba(16, 16, 16, 1);
		font-family: "SourceHanSansCN-Bold";
	}
	
	.communal-sidebar .member-info .member-id{
		line-height: 1;
		font-size: 18px;
		color: rgba(16, 16, 16, 1);
		font-family: "SourceHanSansCN-Light";
	}
	
	.communal-sidebar .member-info .member-level-name{
		line-height: 1;
		font-size: 24px;
		color: rgba(16, 16, 16, 1);
	}

	/* 共用侧边栏-菜单 */
	.communal-sidebar .member-menu-wrapper{
		width: 100%;
		padding: 50px 0%;
		border-radius: 10px;
		background-color: rgba(246, 246, 246, 1);
	}
	
	.communal-sidebar .member-menu-wrapper .menu{
		gap: 10px;
		width: 100%;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}
	
	.communal-sidebar .member-menu-wrapper .menu .menu-item a{
		gap: 20px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.communal-sidebar .member-menu-wrapper .menu .menu-item a .iconfont{
		line-height: 1;
		font-size: 22px;
		color: rgba(44, 44, 44, 1);
	}
	
	.communal-sidebar .member-menu-wrapper .menu .menu-item a samp{
		line-height: 1;
		font-size: 18px;
		color: rgba(118, 118, 118, 1);
	}

	/* 共用侧边栏-菜单-选中 */
	.communal-sidebar .member-menu-wrapper .menu .menu-item.current-menu-item a samp{
		color: rgba(0, 0, 0, 1);
		font-weight: bold;
	}

/* 响应 1680 */	
@media screen and (max-width: 1680px) {}

/* 响应 1440 */
@media screen and (max-width: 1440px) {
/* 共用侧边栏 */

	/* 共用侧边栏-会员信息 */
	.communal-sidebar .member-info{
		padding: 25px 0%;
		border-radius: 5px;
	}
	
	.communal-sidebar .member-info .avatar{
		width: 65px;
	}
	
	.communal-sidebar .member-info .member-name{
		font-size: 20px;
	}
	
	.communal-sidebar .member-info .member-id{
		font-size: 14px;
	}
	
	.communal-sidebar .member-info .member-level-name{
		font-size: 20px;
	}

	/* 共用侧边栏-菜单 */
	.communal-sidebar .member-menu-wrapper{
		padding: 35px 0%;
	}
	
	.communal-sidebar .member-menu-wrapper .menu .menu-item a .iconfont{
		font-size: 18px;
	}
	
	.communal-sidebar .member-menu-wrapper .menu .menu-item a samp{
		font-size: 14px;
	}

	/* 共用侧边栏-菜单-选中 */
}

/* 响应 1280 */
@media screen and (max-width: 1280px) {}

/* 响应 1000 */
@media screen and (max-width: 1000px) {}

/* 响应 750 */
@media screen and (max-width: 750px) {}