app.wxss 536 B

123456789101112131415161718192021222324
  1. /**app.wxss**/
  2. .container {
  3. height: 100%;
  4. display: flex;
  5. display: -webkit-flex;
  6. flex-direction: column;
  7. -webkit-flex-direction: column;
  8. justify-content: space-between;
  9. -webkit-justify-content: space-between;
  10. box-sizing: border-box;
  11. position:relative;
  12. font-family: "PingFang-SC-Regular","SimSun","Microsoft Yahei";
  13. font-variant-ligatures: none;
  14. background-color: #FAFAFA;
  15. }
  16. page {
  17. height: 100%;
  18. width: 100%;
  19. background: #FAFAFA;
  20. }
  21. input {
  22. font-family: "PingFang-SC-Regular","SimSun","Microsoft Yahei";
  23. }