1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .mine-bg {
- position: relative;
- }
- .mine-score {
- position: absolute;
- left: 0;
- bottom: -60rpx;
- display: flex;
- align-items: center;
- width: 670rpx;
- height: 120rpx;
- justify-content: space-between;
- background: linear-gradient(90deg, #ff7b60 0%, #ffad8e 100%);
- border-radius: 18rpx;
- margin: 0 40rpx;
- overflow: hidden;
- }
- .score-tip {
- margin-left: 40rpx;
- color: white;
- font-size: 30rpx;
- text-shadow: 0 2rpx 9rpx rgba(220, 38, 14, 0.78);
- }
- .score-btn {
- margin-right: 40rpx;
- width: 177rpx;
- height: 65rpx;
- background: #FFFFFF;
- box-shadow: 0 2rpx 24rpx 0 rgba(229, 37, 13, 0.4);
- border-radius: 32rpx;
- font-size: 30rpx;
- font-weight: bold;
- color: #FF5640;
- line-height: 65rpx;
- text-align: center;
- }
- .logout {
- margin: 25rpx 33rpx 20rpx;
- height: 86rpx;
- line-height: 86rpx;
- background: #FFFFFF;
- border-radius: 10rpx;
- font-size: 24rpx;
- text-align: center;
- color: #596D8D;
- overflow: hidden;
- }
- .loginBtn {
- width: 481rpx !important;
- height: 83rpx !important;
- }
- .empty {
- height: 100vh;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
|