app.wxss 942 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /**app.wxss**/
  2. page {
  3. height: 100%;
  4. --maincolor: #45A6B5;
  5. }
  6. .wh {
  7. width: 100%;
  8. height: 100%;
  9. }
  10. .placeholder-class {
  11. font-size: 30rpx;
  12. font-weight: 400;
  13. color: #999999;
  14. }
  15. .container {
  16. height: 100%;
  17. width: 100%;
  18. box-sizing: border-box;
  19. }
  20. .ittflex {
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. }
  25. .ittflex-jcs {
  26. display: flex;
  27. justify-content: flex-start;
  28. align-items: center;
  29. }
  30. .ittflex-jca {
  31. display: flex;
  32. justify-content: space-around;
  33. align-items: center;
  34. }
  35. .ittflex-jcb {
  36. display: flex;
  37. justify-content: space-between;
  38. align-items: center;
  39. }
  40. .itt-btn {
  41. background: var(--maincolor);
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. color: #fff;
  46. font-size: 26rpx;
  47. font-weight: 400;
  48. }
  49. .itt-btn-disabled {
  50. display: flex;
  51. justify-content: center;
  52. align-items: center;
  53. font-size: 26rpx;
  54. font-weight: 400;
  55. background: #CCCCCC;
  56. color: #FFFFFF;
  57. }