|
@@ -1 +1,137 @@
|
|
|
-/* pages/score/index.wxss */
|
|
|
+.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 .btn {
|
|
|
+ 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);
|
|
|
+}
|
|
|
+.container .footer .btn2 {
|
|
|
+ background-color: #F84041;
|
|
|
+ box-shadow: 0 6rpx 14rpx 0 rgba(251, 79, 80, 0.76);
|
|
|
+}
|