app.wxss 513 B

1234567891011121314151617181920212223
  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. }
  15. page {
  16. height: 100%;
  17. width: 100%;
  18. background-color: #FAFAFA;
  19. }
  20. input {
  21. font-family: "PingFang-SC-Regular","SimSun","Microsoft Yahei";
  22. }