123456789101112131415161718192021222324252627282930 |
- /**app.wxss**/
- @import 'miniprogram_npm/weui-miniprogram/weui-wxss/dist/style/weui.wxss';
- page{
- width: 100%;
- height: 100%;
- background-color: #181818;
- font-family: Microsoft Yahei,Hiragino Sans GB,Heiti SC,WenQuanYi Micro Hei,sans-serif;
- font-weight: 400;
- color: #e9e9e9;
- }
- .container {
- height: 100%;
- width: 100%;
- box-sizing: border-box;
- }
- .PageTitle{
- font-size: 44rpx;
- font-weight: 500;
- padding-left: 22rpx;
- }
- .radio{
- border-radius: 20rpx;
- }
- .localCell, .localCell .weui-cell__ft{
- color: #e9e9e9;
- background-color: #181818;
- }
|