app.wxss 1.1 KB

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