123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /* pages/contest/stars/stars.wxss */
- page {
- background: #fff;
- }
- .home {
- width: 40rpx;
- height: 40rpx;
- position: absolute;
- top: 70rpx;
- left: 50rpx;
- z-index: 99;
- }
- .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;
- }
- /* 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;
- }
- .stars-group {
- display: flex;
- padding-top: 280rpx;
- }
- .stars-group > image {
- width: 54rpx;
- height: 54rpx;
- position: relative;
- z-index: 10;
- margin: 0 15rpx;
- }
- .detail-text {
- font-size: 26rpx;
- font-weight: 400;
- color: #333333;
- margin-top: 40rpx;
- }
- .confim-button{
- width: 450rpx;
- height: 100rpx;
- border-radius: 110rpx;
- background-image: linear-gradient(to right, #57A8EF, #6247FF);
- text-align: center;
- line-height: 100rpx;
- font-size: 28rpx;
- font-weight: 600;
- color: #FFFFFF;
- margin-top: 56rpx;
- }
|