personal.wxss 1.6 KB
/* pages/personal/personal.wxss */
.z_container{
	height: 100vh;
	background-color: #EFEFF4;
} 
.person_info{
	height: 170rpx;
	width: 100%;
	display: flex;
	align-items: center;
	padding-left: 30rpx;
	background: #FFF;
}
.image_box{
	width: 106rpx;
	height: 106rpx;
	border-radius: 50%;
	overflow: hidden;
	margin-right: 34rpx;
}
.image_box image{
	width: 100%;
	height: 100%;
}
.name{
	font-size: 30rpx;
}
.userInfo{
	height: 120rpx;
	background: #FFF;
	display: flex;
	padding-left: 30rpx;
	margin-top: 30rpx;
	margin-bottom: 30rpx;
	align-items: center;
  justify-content: center;
}
.left{
  display: flex;
  flex-direction: column; 
	justify-content: center;
	font-size: 34rpx;
}
.right{
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.right image{
  width: 30rpx;
  height: 30rpx;
  margin-right: 30rpx;
}
.userInfo_note_tips{
	font-size: 26rpx;
	color: #999;
}
.baseInfo{
	margin-top: 30rpx;
	background-color: #FFF;
}

.baseInfo_item{
	padding: 0 30rpx;
	height: 88rpx;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 34rpx;
	color: #666;
	border-bottom: 1rpx solid #D8D8D8; 
}
.baseInfo_item:last-child{
	border: none;
}
.baseInfo_item_top{
	height: 98rpx;
}
.action{
	color: #FFF;
	width: 84rpx;
	height: 50rpx;
	background: #51DBA2;
	border-radius: 100px;
	justify-content: center;
	align-items: center;
	font-size: 30rpx;
	display: flex;
}
.bottom_menu{
	display: flex;
	align-items: center;
	justify-content: space-around;
	height: 98rpx;
	background: #F7F7FA;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	border-top: 1rpx solid rgba(247,247,250,.1);
}