123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- /* pages/contest/score/score.wxss */
- page {
- background: #fff;
- }
- .page-title {
- position: absolute;
- z-index: 1;
- width: 100%;
- font-size: 32rpx;
- font-weight: 400;
- color: #FFFFFF;
- top: 68rpx;
- text-align: center;
- }
- .bg {
- position: fixed;
- background: transparent;
- width: 100%;
- height: 100vh;
- top: 0;
- z-index: 0;
- }
- .content {
- width: 100%;
- height: 100vh;
- position: relative;
- z-index: 9;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .kuang {
- width: 730rpx;
- position: absolute;
- background: transparent;
- z-index: 9;
- }
- .detail {
- position: relative;
- z-index: 9;
- display: flex;
- flex-direction: column;
- align-items: center;
- height: 970rpx;
- }
- .title {
- font-weight: bold;
- font-size: 36rpx;
- color: #161616;
- margin-top: 54rpx;
- }
- .score {
- margin-top: 52rpx;
- position: relative;
- width: 670rpx;
- height: 266rpx;
- }
- .score-bg {
- width: 670rpx;
- height: 266rpx;
- position: absolute;
- background: transparent;
- z-index: 1;
- }
- .score-text {
- position: relative;
- z-index: 9;
- display: flex;
- justify-content: center;
- align-items: flex-end;
- margin-top: 70rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: #FFFFFF;
- }
- .score-num {
- font-size: 72rpx;
- font-weight: 500;
- color: #FFBD92;
- line-height: 60rpx;
- }
- .text {
- font-size: 32rpx;
- font-weight: 400;
- color: #59598D;
- margin-top: -20rpx;
- }
- .ranking {
- position: relative;
- display: flex;
- justify-content: center;
- margin-top: 12rpx;
- font-size: 52rpx;
- font-weight: 500;
- color: #FFFFFF;
- height: 102rpx;
- }
- .icon{
- position: absolute;
- width: 112rpx;
- z-index: 1;
- }
- .ranking > view {
- position: relative;
- z-index: 10;
- margin-top: 10rpx;
- }
- .button-group {
- margin-top: 36rpx;
- /* display: flex; */
- /* justify-content: center; */
- }
- .button-group .button-icon {
- width: 44rpx;
- height: 44rpx;
- margin: 0 28rpx 0 40rpx;
- }
- .share-icon {
- width: 34rpx;
- height: 34rpx;
- margin: 0 32rpx 0 45rpx;
- }
- .arrow-icon {
- width: 20rpx;
- height: 20rpx;
- border-bottom: 4rpx solid #9BA4A6;
- border-right: 4rpx solid #9BA4A6;
- transform: rotate(-45deg);
- position: absolute;
- right: 40rpx;
- }
- .button-group button {
- width: 650rpx;
- height: 120rpx;
- display: flex;
- align-items: center;
- font-weight: 400;
- color: #000000;
- font-size: 32rpx;
- position: relative;
- }
- button {
- background-color: transparent;
- padding-left: 0;
- padding-right: 0;
- border-radius: 0;
- line-height:inherit;
- }
-
- button::after {
- border: 0;
- border-bottom: 2rpx solid #EAEFF2;
- }
- /* .button-group > button {
- width: 284rpx;
- height: 96rpx;
- border-radius: 50rpx;
- border: 2rpx solid #C7CCF9;
- font-weight: 500;
- color: #59598D;
- font-size: 28rpx;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0 5rpx;
- } */
|