app.wxss 692 B

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