You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
96 lines
1.4 KiB
96 lines
1.4 KiB
/* pages/wode/wode.wxss */
|
|
.userinfo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background: #f0145a;
|
|
}
|
|
.account-bg {
|
|
width: 100%;
|
|
height: 150rpx;
|
|
}
|
|
.userinfo-avatar {
|
|
width: 108rpx;
|
|
height: 108rpx;
|
|
margin: 20rpx;
|
|
border-radius: 50%;
|
|
}
|
|
.userinfo-nickname {
|
|
color: #fff;
|
|
}
|
|
/* 订单 */
|
|
.order {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 90rpx;
|
|
}
|
|
.myorder-text {
|
|
font-size: 30rpx;
|
|
color: gray;
|
|
margin: 20rpx;
|
|
width: 40%;
|
|
}
|
|
.myorderlook-text {
|
|
font-size: 30rpx;
|
|
color: gray;
|
|
position: relative;
|
|
right: 20rpx;
|
|
width: 60%;
|
|
text-align: right;
|
|
}
|
|
.next-image {
|
|
width: 20rpx;
|
|
height: 25rpx;
|
|
position: relative;
|
|
right: 10rpx;
|
|
}
|
|
.navs {
|
|
display: flex;
|
|
}
|
|
.nav-item {
|
|
width: 25%;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
padding: 20rpx;
|
|
}
|
|
.nav-item .nav-image {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
margin: 5rpx;
|
|
}
|
|
.nav-item text {
|
|
margin-top: 20rpx;
|
|
font-size: 25rpx;
|
|
color: gray;
|
|
}
|
|
/* 列表 */
|
|
.person-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: left;
|
|
}
|
|
.list-item {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
height: 80rpx;
|
|
}
|
|
.item-image {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
margin: 20rpx;
|
|
}
|
|
.item-text {
|
|
color: gray;
|
|
font-size: 25rpx;
|
|
margin-left: 20rpx;
|
|
}
|
|
.person-line {
|
|
width: 100%;
|
|
height: 2rpx;
|
|
background: lightgray;
|
|
margin-left: 90rpx;
|
|
} |