12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- @import './tools';
- @import './ui';
- @font-face {
- font-family: OPPOSANS;
- src: url('~@/sheep/scss/font/OPPOSANS-M-subfont.ttf');
- }
- .font-OPPOSANS {
- font-family: OPPOSANS;
- }
- page {
- -webkit-overflow-scrolling: touch;
- height: 100%;
- width: 100%;
-
- word-break: break-all;
- white-space: normal;
- background-color: $bg-page;
- color: $dark-3;
- }
- ::-webkit-scrollbar {
- width: 0;
- height: 0;
- color: transparent;
- display: none;
- }
- .points-red,
- .points-green {
- position: relative;
- width: 40rpx;
- height: 40rpx;
- margin-right: 4rpx;
- &::before {
- content: '积';
- color: #fff;
- font-size: 24rpx;
- position: absolute;
- display: flex;
- justify-content: center;
- align-items: center;
- width: 100%;
- height: 100%;
- border-radius: 50%;
- background-color: #FF4D4F;
- }
- }
- .points-green {
- &::before {
- background-color: #52C41A;
- content: '积';
- }
- }
|