app.wxss 778 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. /**app.wxss**/
  2. page {
  3. background-color: #f5f5f5;
  4. box-sizing: border-box;
  5. font-family: "PingFang SC", "H/。,elvetica Neue", "Microsoft YaHei", sans-serif;
  6. }
  7. .container {
  8. height: 100%;
  9. display: flex;
  10. flex-direction: column;
  11. align-items: center;
  12. justify-content: end;
  13. padding: 0 0;
  14. box-sizing: border-box;
  15. }
  16. view, text, button, input {
  17. font-family: 'PingFangSC-regular',
  18. 'Lucida Sans Regular',
  19. 'Lucida Sans',
  20. 'Lucida Grande',
  21. 'Lucida Sans Unicode',
  22. Geneva,
  23. Verdana,
  24. sans-serif;
  25. }
  26. .rw-card {
  27. background-color: #fff;
  28. border-top: 1px solid #f2f2f2;
  29. border-bottom: 1px solid #f2f2f2;
  30. box-sizing: border-box;
  31. }