app.wxss 759 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /**app.wxss**/
  2. page{
  3. width: 100%;
  4. height: 100vh;
  5. background-color: #20223b;
  6. --tips-btn: 1.05em;
  7. }
  8. .container {
  9. position: absolute;
  10. top: 0;
  11. bottom: 0;
  12. left: 0;
  13. right: 0;
  14. display: flex;
  15. flex-direction: column;
  16. align-items: center;
  17. justify-content: space-between;
  18. box-sizing: border-box;
  19. }
  20. .basePage{
  21. min-height: 100vh;
  22. width: 100vw;
  23. color: #bfcbd9;
  24. font-size: 14px;
  25. font-family: PingFang SC;
  26. padding-bottom: 2em;
  27. }
  28. .localCells {
  29. padding-left: 15rpx;
  30. position: relative;
  31. height: 40px;
  32. line-height: 40px;
  33. }
  34. .localCells::before{
  35. position: absolute;
  36. left: 0;
  37. top: 50%;
  38. transform: translateY(-50%);
  39. width: 5rpx;
  40. content: "";
  41. height: 1em;
  42. background-color: #bfcbd9;
  43. }
  44. .subTitle{
  45. font-size: 12px;
  46. }