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.
|
- /* pages/mine/index.wxss */
- .mine_container {
- width: 100%;
- height: 100vh;
- background-color: #F3F4F5;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- }
- .user_massage {
- width: 100%;
- height: 200rpx;
- padding: 36rpx 60rpx;
- background-color: #ffffff;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
- .user_avatar {
- width: 128rpx;
- height: 128rpx;
- border-radius: 50%;
- margin-right: 30rpx;
- }
- .function_list {
- width: 100%;
- margin-top: 30rpx;
- background-color: #ffffff;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- }
- .function_item {
- width: 100%;
- padding: 20rpx 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .item_title {
- display: flex;
- justify-content: flex-start;
- align-items: center;
- }
|