.mine-user{
	background-color: #b9ffcf;
	align-items: center;
	padding: 40px;
	height: 200px;
}
.user{
	display: flex;
	align-items: center;

}
.avatar{
	width: 70px;
	height: 70px;
	border-radius: 50%;
	margin-right: 18px;	
}
.user-card{
	margin: 0 auto;
	background-color: #fff;
	margin-top: -35px;
	border-radius: 15px;
	width: 98%;
}
.card-ui{
	padding-left: 10px;
	display: flex;	
	height: 70px;
	align-items: center;
}
.hr {
	border-bottom: 1px solid black; 
	} 
.weui-cell{
	position: relative;
	display: block;        /* 让链接占满整行（方便点击） */
	text-decoration: none; 
	color: #333;        
	border-bottom: 1px solid #eee; /* 用底部分割线替代下划线 */
}
.weui-cell::after{
	content: "";
	  position: absolute;
	  right: 15px; /* 调整距离右侧的位置 */
	  top: 50%;
	  transform: translateY(-50%);
	  width: 0;
	  height: 0;
	  border-width: 5px;
	  border-style: solid;
	border-color: transparent transparent transparent #999;
}
.weui-cell:active{
	background-color: #f5f5f5;
	transition: background-color 0.2s; /* 平滑过渡效果 */
}
