123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- .container {
- background-color: #50AE75;
- width: 100vw;
- height: 100vh;
- overflow: hidden;
- }
- .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 .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);
- }
- .uploadBox {
- position: fixed;
- top: 0px;
- left: 0px;
- width: 100%;
- height: 100%;
- background-color: rgba(255, 255, 255, 0);
- z-index: 999;
- }
- .uploadBox .upload {
- position: absolute;
- left: 0rpx;
- right: 0rpx;
- top: 30%;
- margin: auto;
- width: 293rpx;
- height: 293rpx;
- border-radius: 30rpx;
- color: white;
- background-color: rgba(0, 0, 0, 0.8);
- text-align: center;
- padding: 0rpx 38rpx;
- box-sizing: border-box;
- font-size: 30rpx;
- }
- .uploadBox .upload .speed {
- margin-top: 70rpx;
- }
- .uploadBox .upload .speedProgress {
- border-radius: 50rpx;
- overflow: hidden;
- margin: 18rpx 0rpx 60rpx;
- }
- .successBox {
- background-color: rgba(0, 0, 0, 0.438);
- }
- .successBox .success {
- width: 558rpx;
- height: 520rpx;
- position: absolute;
- left: 0rpx;
- right: 0rpx;
- top: 0rpx;
- bottom: 0px;
- margin: auto;
- border-radius: 30rpx;
- background-color: white;
- font-size: 30rpx;
- padding: 35rpx;
- box-sizing: border-box;
- text-align: center;
- font-size: 36rpx;
- }
- .successBox .success .icon {
- width: 100rpx;
- height: 100rpx;
- }
- .successBox .success .tips1 {
- margin: 16rpx 0rpx 34rpx;
- }
- .successBox .success .tips2 {
- margin-bottom: 15rpx;
- }
- .successBox .success .shareBtn {
- width: 280rpx;
- margin: 60rpx auto 0rpx;
- padding: 14rpx 0rpx;
- color: white;
- background-image: linear-gradient(270deg, #FC5556 0%, #F84041 100%, #14C962 100%);
- box-shadow: 0 6rpx 14rpx 0 rgba(251, 79, 80, 0.76);
- border-radius: 40rpx;
- }
|