.treasure-tabbar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	height: 64px;
	background: linear-gradient(to top, #2e2a26, #3b322b);
	border-top: 1px solid rgba(255, 215, 0, 0.15);
	display: flex;
	justify-content: space-around;
	align-items: center;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
	z-index: 999;
}

.tabbar-item {
	flex: 1;
	text-align: center;
	position: relative;
}

.tabbar-link {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #d2b48c;
	font-size: 12px;
	transition: color 0.3s;
}

.tabbar-item.active .tabbar-link {
	color: gold;
}

.icon-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: radial-gradient(circle at center, #4a3b30, #2e2a26);
	box-shadow: inset 0 0 5px rgba(255, 215, 0, 0.2);
	margin-bottom: 4px;
	transition: all 0.3s;
}

.tab-icon {
	font-size: 18px;
	color: gold;
	text-shadow: 0 0 3px rgba(255, 215, 0, 0.6);
}

.tabbar-item.active .tab-icon {
	transform: scale(1.2);
}

.tab-text {
	margin: 0;
	font-size: 12px;
	color: inherit;
}

/* 中间按钮特殊样式（上浮、加大） */
.center-tab {
	position: relative;
	top: -20px;
	z-index: 10;
}

.center-icon {
	font-size: 24px;
}

.center-tab .icon-wrapper {
	width: 52px;
	height: 52px;
	background: radial-gradient(circle at center, #a87c3a, #604830);
	box-shadow: 0 0 10px rgba(255, 215, 0, 0.5), inset 0 0 8px rgba(255, 215, 0, 0.3);
}

.center-tab .tab-text {
	font-size: 13px;
	font-weight: bold;
	color: #fff8dc;
	text-shadow: 0 0 4px #b8860b;
}
