12345678910111213141516171819202122232425262728293031323334353637 |
- /**app.wxss**/
- page {
- background-color: #f5f5f5;
- box-sizing: border-box;
- }
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- padding: 0 0;
- box-sizing: border-box;
- }
- view, text, button, input {
- font-family: 'PingFangSC-regular',
- 'Lucida Sans Regular',
- 'Lucida Sans',
- 'Lucida Grande',
- 'Lucida Sans Unicode',
- Geneva,
- Verdana,
- sans-serif;
-
- }
- .rw-card {
- background-color: #fff;
- border-top: 1px solid #f2f2f2;
- border-bottom: 1px solid #f2f2f2;
- box-sizing: border-box;
- }
|