123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- .container {
- background-color: #50AE75;
- width: 100vw;
- height: 100vh;
- overflow: auto;
- }
- .container .scoreBox {
- width: 610rpx;
- margin: 80rpx auto 0rpx;
- }
- .container .scoreBox .lightBox {
- position: relative;
- height: 180rpx;
- }
- .container .scoreBox .lightBox .light {
- position: absolute;
- width: 360rpx;
- height: 180rpx;
- left: 0px;
- right: 0px;
- margin: auto;
- }
- .container .scoreBox .lightBox .stars {
- position: absolute;
- width: 62rpx;
- height: 62rpx;
- }
- .container .scoreBox .lightBox .stars-1 {
- top: 64rpx;
- left: 132rpx;
- }
- .container .scoreBox .lightBox .stars-2 {
- top: 25rpx;
- left: 198rpx;
- }
- .container .scoreBox .lightBox .stars-3 {
- top: 6rpx;
- left: 276rpx;
- }
- .container .scoreBox .lightBox .stars-4 {
- top: 25rpx;
- right: 198rpx;
- }
- .container .scoreBox .lightBox .stars-5 {
- top: 62rpx;
- right: 132rpx;
- }
- .container .scoreBox .score {
- position: relative;
- width: 100%;
- box-sizing: border-box;
- padding: 70rpx 40rpx 32rpx;
- border-radius: 18rpx;
- background-color: white;
- box-shadow: rgba(255, 255, 255, 0.15) 0px 6px 12px -2px, rgba(255, 255, 255, 0.1) 0px 3px 7px -3px;
- }
- .container .scoreBox .score .avatarBox {
- position: absolute;
- top: -72rpx;
- left: 0px;
- right: 0px;
- margin: 0 auto;
- width: 100rpx;
- height: 100rpx;
- padding: 16rpx;
- border-radius: 50%;
- background-color: white;
- font-size: 0px;
- }
- .container .scoreBox .score .avatarBox .avatar {
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- .container .scoreBox .score .nickName {
- font-size: 36rpx;
- text-align: center;
- }
- .container .scoreBox .score .totalScore {
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 26rpx;
- font-size: 42rpx;
- }
- .container .scoreBox .score .totalScore .num {
- color: #58C5FF;
- font-size: 42rpx;
- }
- .container .scoreBox .score .progressBox {
- margin-top: 50rpx;
- }
- .container .scoreBox .score .progressBox .row {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin-bottom: 42rpx;
- }
- .container .scoreBox .score .progressBox .row .name {
- font-size: 32rpx;
- width: 96rpx;
- }
- .container .scoreBox .score .progressBox .row .progress {
- width: 306rpx;
- border-radius: 20rpx;
- overflow: hidden;
- }
- .container .scoreBox .score .progressBox .row .scoreInfo {
- font-size: 27rpx;
- color: #666666;
- }
- .container .scoreBox .score .songBg {
- width: 100%;
- height: 644rpx;
- }
- .container .scoreBox .songScore {
- padding: 0;
- }
- .container .footer {
- width: 610rpx;
- padding: 50rpx 35rpx;
- box-sizing: border-box;
- margin: 40rpx auto;
- background-color: white;
- border-radius: 18rpx;
- box-shadow: rgba(50, 50, 93, 0.15) 0px 6px 12px -2px, rgba(0, 0, 0, 0.1) 0px 3px 7px -3px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- }
- .container .footer .stBtn {
- padding: 16rpx 0rpx;
- text-align: center;
- border-radius: 50rpx;
- width: 220rpx;
- font-size: 30rpx;
- color: white;
- background-color: #66C5FF;
- box-shadow: 0 6px 14px 0 rgba(50, 197, 255, 0.65);
- }
|