app.wxss 584 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**app.wxss**/
  2. @import "/static/iconfont/iconfont.wxss";
  3. .container {
  4. height: 100%;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. justify-content: space-between;
  9. padding: 200rpx 50rpx;
  10. box-sizing: border-box;
  11. }
  12. .appscrollarea {
  13. flex: 1;
  14. overflow-y: hidden;
  15. height: 100vh;
  16. box-sizing: border-box;
  17. }
  18. .padding_50{
  19. padding:50rpx;
  20. }
  21. page {
  22. --themeColor: #316192;
  23. }
  24. button[type=primary]{
  25. background-color: var(--themeColor);
  26. }
  27. .loadData{
  28. width: 100%;
  29. color: #969799;
  30. background-color: #f7f8fa;
  31. text-align: center;
  32. line-height:100rpx;
  33. }