123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- .container {
- padding: 30rpx;
- }
- .container .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;
- }
- .container .top-tab .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;
- }
- .container .top-tab .select {
- color: #333;
- font-size: 40rpx;
- border-bottom: 6rpx solid #14c962;
- opacity: 1;
- }
- .container .userBox {
- margin-top: 85rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- background-color: white;
- padding: 30rpx 12rpx;
- border-radius: 20rpx;
- }
- .container .userBox .avatar {
- width: 152rpx;
- height: 152rpx;
- border-radius: 50%;
- position: relative;
- }
- .container .userBox .userRight {
- flex: 1;
- margin-left: 40rpx;
- }
- .container .userBox .userRight .uRtop {
- display: flex;
- justify-content: space-between;
- }
- .container .userBox .userRight .uRtop .uRtopleft .nickName {
- color: #333;
- font-size: 30rpx;
- }
- .container .userBox .userRight .uRtop .uRtopleft .gradeText {
- margin: 14rpx 0rpx 8rpx;
- font-size: 23rpx;
- color: #989A9C;
- }
- .container .userBox .userRight .uRtop .uRtopRight {
- display: flex;
- align-items: center;
- }
- .container .userBox .userRight .uRtop .uRtopRight .edit {
- width: 25rpx;
- height: 25rpx;
- }
- .container .userBox .userRight .uRtop .uRtopRight text {
- margin: 0px 10rpx;
- font-size: 24rpx;
- color: #666;
- }
|