1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- /* nova-werun/pages/my/my-profile/index.wxss */
- .all{
- width: 100vw;
- .avatarbox{
- width: 100%;
- height: 270rpx;
- background-color: #4F9AF7;
- display: flex;
- justify-content: center;
- align-items: center;
- .avatar-box{
- width: 150rpx;
- height: 150rpx;
- position: relative;
- .avatar{
- width: 150rpx;
- height: 150rpx;
- border-radius: 50%;
- }
- .photo{
- width: 40rpx;
- height: 40rpx;
- position: absolute;
- right: -20rpx;
- }
- }
- }
- .selectbox{
- width: 100%;
- height: 88rpx;
- display: flex;
- align-items: center;
- padding-left: 16rpx;
- padding-right: 32rpx;
- padding-top: 20rpx;
- padding-bottom: 20rpx;
- .fuhao{
- color:#E22525ed;
- margin-right: 2rpx;
- }
- .selecttext{
- width: 174rpx;
- height: 48rpx;
- font-size: 28rpx;
- color: #646566;
- }
- .selectname{
- font-size: 28rpx;
- margin-left: 22rpx;
- }
- }
- .submitbox{
- width: 100%;
- height: 80rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 40rpx;
- .submit{
- width: 200rpx;
- height: 80rpx;
- font-size: 30rpx;
- color: white;
- background-color: #4F9AF7;
- display: flex;
- justify-content: center;
- align-items: center;
- border-radius: 40rpx;
- }
- }
- }
|