123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- /* pages/contest/ranking/ranking.wxss */
- .bg {
- width: 100%;
- height: 100vh;
- position: fixed;
- z-index: 0;
- }
- .page-title {
- position: relative;
- z-index: 1;
- width: 100%;
- font-size: 32rpx;
- font-weight: 400;
- color: #FFFFFF;
- padding-top: 68rpx;
- text-align: center;
- }
- .content {
- position: relative;
- z-index: 1;
- margin-top: 42rpx;
- }
- .navList {
- display: flex;
- justify-content: space-around;
- }
- .navList > view {
- width: 210rpx;
- height: 60rpx;
- line-height: 60rpx;
- border-radius: 38rpx;
- border: 2rpx solid rgba(255, 255, 255,.6);
- font-weight: 600;
- color: #FFFFFF;
- font-size: 28rpx;
- text-align: center;
- }
- .navList .active {
- background: #F4B622;
- border-color: #F4B622;
- }
- .ranking-top {
- display: flex;
- justify-content: space-around;
- margin-top: 64rpx;
- margin-bottom: 60rpx;
- padding: 0 40rpx;
- }
- .ranking-top > view {
- display: flex;
- align-items: center;
- flex-direction: column;
- }
- .second, .third {
- margin-top: 60rpx;
- }
- .second > image, .third > image {
- width: 120rpx;
- height: 120rpx;
- border-radius: 60rpx;
- background: rgb(187, 181, 181);
- }
- .first > image {
- background: rgb(187, 181, 181);
- width: 140rpx;
- height: 140rpx;
- border-radius: 70rpx;
- }
- .num {
- margin-top:-18rpx ;
- width: 40rpx;
- height: 40rpx;
- border-radius: 20rpx;
- text-align: center;
- line-height: 40rpx;
- font-weight: 800;
- color: #000000;
- font-size: 28rpx;
- margin-bottom: 10rpx;
- }
- .second .num {
- background: #31B5FF;
- }
- .first .num {
- background: #F4B622;
- }
- .third .num {
- background: #E66F6F;
- }
- .nickname {
- font-size: 32rpx;
- font-weight: 600;
- color: #FFFFFF;
- line-height: 44rpx;
- }
- .ranking-top .fraction {
- margin-top: 6rpx;
- width: 160rpx;
- height: 40rpx;
- border-radius: 20rpx;
- text-align: center;
- font-size: 24rpx;
- font-weight: 800;
- line-height: 40rpx;
- color: #FFF431;
- background: rgba(0, 0, 0,.15);
- }
- .ranking-item {
- border-top: 2rpx rgba(255, 255, 255,.1) solid;
- display: flex;
- align-items: center;
- height: 144rpx;
- }
- .order-num {
- font-size: 32rpx;
- color: #FFFFFF;
- margin: 0 48rpx 0 44rpx;
- }
- .ranking-item > image {
- width: 88rpx;
- height: 88rpx;
- border-radius: 44rpx;
- background: rgb(187, 181, 181);
- }
- .ranking-item .nickname {
- margin-left: 36rpx;
- width: 300rpx;
- margin-right: 100rpx;
- }
- .ranking-item .fraction {
- font-size: 24rpx;
- font-weight: 800;
- line-height: 40rpx;
- color: #FFF431;
- }
|