123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- .container {
- padding: 30rpx;
- .top-tab {
- position: fixed;
- top: 0;
- left: 0rpx;
- width: 100%;
- height: 80rpx;
- background: #ededed;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- align-items: center;
- z-index: 999;
- padding: 0 48rpx;
- .tabbar {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100rpx;
- height: 58rpx;
- line-height: 60rpx;
- font-size: 40rpx;
- opacity: 0.7;
- font-weight: 800;
- border-bottom: none;
- color: #333;
- }
- .select {
- color: #333;
- font-size: 40rpx;
- border-bottom: 6rpx solid #14c962;
- opacity: 1;
- }
- }
- .userBox {
- margin-top: 85rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: white;
- padding: 30rpx 12rpx;
- border-radius: 20rpx;
- .avatar {
- width: 152rpx;
- height: 152rpx;
- border-radius: 50%;
- position: relative;
- }
- .userRight {
- flex: 1;
- margin-left: 40rpx;
- .uRtop {
- display: flex;
- justify-content: space-between;
- .uRtopleft {
- .nickName {
- color: #333;
- font-size: 30rpx;
- }
- .gradeText {
- margin: 14rpx 0rpx 8rpx;
- font-size: 23rpx;
- color: #989A9C;
- }
- }
- .uRtopRight {
- display: flex;
- align-items: center;
- .edit {
- width: 25rpx;
- height: 25rpx;
- }
- text {
- margin: 0px 10rpx;
- font-size: 24rpx;
- color: #666;
- }
- }
- }
- }
- }
- }
|