| 12345678910111213141516171819202122232425 |
- @charset "UTF-8";
- /**
- * 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
- * uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
- */
- page {
- background-color: #f4f6f8;
- }
- .u-flexs {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .self-rank {
- position: fixed;
- width: 100%;
- bottom: 0;
- left: 0;
- }
- .medal {
- width: 50rpx;
- height: 50rpx;
- }
|