12345678910111213141516171819 |
- /**app.wxss**/
- .container {
- box-sizing: border-box;
- background-color: #f4f4f4;
- font-family: PingFangSC-Light, helvetica, 'Heiti SC';
- }
- view, image, text, navigator {
- box-sizing: border-box;
- padding: 0;
- margin: 0;
- }
- view, text {
- font-family: PingFangSC-Light, helvetica, 'Heiti SC';
- font-size: 29rpx;
- color: #333;
- }
|