* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', Arial, sans-serif;
	background: linear-gradient(135deg, #f4f6f9 0%, #e0e5ec 100%);
}

/* 顶部导航栏 */
.top-nav {
	background: linear-gradient(90deg, #2c3e50 0%, #34495e 100%);
	color: white;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	animation: fadeInDown 0.8s ease;
}

/* 侧边栏和主内容区布局 */
.container {
	display: flex;
	margin: 20px;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar {
	width: 20%;
	background: linear-gradient(180deg, #ecf0f1 0%, #dfe6e9 100%);
	min-height: 100vh;
	padding: 20px;
	box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
	animation: fadeInLeft 0.8s ease;
}

.sidebar-item {
	margin-bottom: 10px;
	padding: 15px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 8px;
	display: flex;
	align-items: center;
}

.sidebar-item i {
	margin-right: 10px;
}

.sidebar-item:hover {
	background-color: #bdc3c7;
	color: white;
	transform: translateX(5px);
}

.sidebar-item.active {
	background-color: #3498db;
	color: white;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.main-content {
	width: 80%;
	background-color: white;
	min-height: 100vh;
	padding: 30px;
	animation: fadeInRight 0.8s ease;
}

/* 用户信息区 */
.user-info {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.user-avatar {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: #ddd;
	margin-right: 20px;
	object-fit: cover;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-account {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 5px;
}

/* 操作按钮区 */
.action-buttons {
	background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
	padding: 20px;
	margin-bottom: 30px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.action-buttons button {
	padding: 12px 20px;
	margin-right: 15px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-size: 16px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-buttons button.primary {
	background-color: #3498db;
	color: white;
}

.action-buttons button.primary:hover {
	background-color: #2980b9;
	transform: translateY(-2px);
}

.action-buttons button.secondary {
	background-color: #e74c3c;
	color: white;
}

.action-buttons button.secondary:hover {
	background-color: #c0392b;
	transform: translateY(-2px);
}

/* 订单列表区 */
.order-list {
	background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.order-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	margin-bottom: 15px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	/* 添加鼠标指针样式 */
}

.order-item:hover {
	transform: translateY(-2px);
}

.order-icon {
	width: 40px;
	height: 40px;
	background-color: #bdc3c7;
	margin-right: 15px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
}

/* 其他信息区 */
.other-info {
	background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	margin-top: 30px;
}

/* 响应式设计 */
@media (max-width: 768px) {
	.container {
		flex-direction: column;
	}

	.sidebar {
		width: 100%;
		min-height: auto;
	}

	.main-content {
		width: 100%;
	}
}

/* 动画效果 */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}