1234567891011121314151617181920212223242526272829303132333435363738 |
- /**app.wxss**/
- page {
- background-color: #f5f5f5;
- box-sizing: border-box;
- font-family: "PingFang SC", "H/。,elvetica Neue", "Microsoft YaHei", sans-serif;
- }
- .container {
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: end;
- 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;
- }
|