app.wxss 899 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /**app.wxss**/
  2. page {
  3. height: 100%;
  4. --maincolor: #45A6B5;
  5. font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Helvetica,
  6. Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB', 'Microsoft Yahei',
  7. sans-serif;
  8. }
  9. .container {
  10. height: 100%;
  11. width: 100%;
  12. box-sizing: border-box;
  13. }
  14. .ittflex {
  15. display: flex;
  16. justify-content: center;
  17. align-items: center;
  18. }
  19. .ittflex-jcs {
  20. display: flex;
  21. justify-content: flex-start;
  22. align-items: center;
  23. }
  24. .ittflex-jca {
  25. display: flex;
  26. justify-content: space-around;
  27. align-items: center;
  28. }
  29. .ittflex-jcb {
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: center;
  33. }
  34. .itt-btn {
  35. background: var(--maincolor);
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. color: #fff;
  40. font-size: 26rpx;
  41. font-weight: 400;
  42. }
  43. itt-btn-disabled {
  44. background: #CCCCCC;
  45. color: #FFFFFF;
  46. }