/* tab_bar.css - 重构后 */
@CHARSET "UTF-8";

.tab-bar-head {
	width:1000px; 
	height:42px; 
	position:relative; 
}		
.tab-bar-head-bg {
	width:1000px; 
	height:42px; 
	background: linear-gradient(45deg, #ffb6c1, #a6e3e9);
	position:absolute; 
	top:0px;
	border-radius: 25px 25px 0 0;
	box-shadow: 0 4px 15px rgba(255, 182, 193, 0.3);
}
.tab-bar-head-ul {
	position:absolute; 
	height:42px;  
	width:1000px;
	position:absolute;
	top:0px;
}
.tab-bar-head-li{
	float:left; 
	height:42px;  
	width:97px;
	margin-right:3px;
	cursor:pointer;  
	transition: all 0.3s ease;
	position: relative;
}
.tab-bar-head-li:hover {
	transform: translateY(-3px);
}
.tab-bar-head-li-bg {
	position:absolute;
	height:42px;  
	width:97px;
	background: linear-gradient(45deg, #ff85a2, #ffb6c1);
	border-radius: 20px 20px 0 0;
	transition: all 0.3s ease;
}
.tab-bar-head-li:hover .tab-bar-head-li-bg {
	background: linear-gradient(45deg, #ff5c8d, #ff85a2);
	box-shadow: 0 5px 15px rgba(255, 92, 141, 0.4);
}
.tab-bar-head-li-text {
	position:absolute;
	width:97px;
  	height:42px;
	font-size:14px;
	color:#ffffff;
	top:10px;
	font-weight: bold;
	text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.tab-bar-body{
	position:relative;
	margin-top:10px;
	width:1000px;
	display: none;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 0 0 25px 25px;
	padding: 20px;
	box-shadow: 0 8px 25px rgba(255, 182, 193, 0.2);
}

/* 添加心形指示器 */
.tab-bar-head-li::after {
	content: "♥";
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
	color: #ff5c8d;
	opacity: 0;
	transition: all 0.3s ease;
	font-size: 12px;
}

.tab-bar-head-li:hover::after {
	opacity: 1;
	transform: translateX(-50%) scale(1.2);
}