.tabbar{width: 95%;
	height: 70px;
	background: rgba(255, 255, 255, 0.15);
	display: flex;
	justify-content: space-evenly;
	position: fixed;
	bottom: 10px;
	left: 2.5%;
	right: 2.5%;
	direction: rtl;
	border-radius: 50px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
	 z-index: 9999 !important;
	 font-family: 'ALKATIP Tor Tom', 'Noto Sans Arabic', 'Scheherazade New', Tahoma, Arial, sans-serif;
}
.tabbar  a {
    width:30%;
    height:60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.tabbar_title{
	width: 100%;
		height: 60px;
		background: transparent;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		border-radius: 50px;
		margin-top: 5px;
		overflow: hidden;
		transition: all 0.2s ease;
}
.tabbar_title i{
    font-size: 1.6rem;
    color: #000000 !important; /* 强制黑色 */
    filter: none !important; /* 删掉干扰的滤镜，关键！ */
    font-style: normal; /* 清除i标签斜体，保证字体图标显示正常 */
}
.tabbar_title span:nth-child(2){
    color: #000000 !important; /* 强制黑色 */
    font-size: 0.6rem;
}
/* 选中状态 - 背景+图标+文字统一样式 */
.tabbar_title.active{
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 50px !important;
}
.tabbar_title.active i {
    color: #FF0000 !important; /* 选中图标红色 */
}
.tabbar_title.active span:nth-child(2) {
    color: #FF0000 !important; /* 选中文字红色 */
    font-weight: bold !important;
}
