app.wxss 871 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /**app.wxss**/
  2. @import "colorui/main.wxss";
  3. @import "colorui/icon.wxss";
  4. Page {
  5. background-color: #f8f8f8;
  6. --color: #2D59E6;
  7. }
  8. .line-color,
  9. .text-color {
  10. color: var(--color);
  11. }
  12. .line-color::after {
  13. border-color: var(--color);
  14. }
  15. .bg-color {
  16. background-color: var(--color);
  17. color: var(--white);
  18. }
  19. .toptip {
  20. line-height: 40rpx;
  21. text-align: center;
  22. width: 100%;
  23. position: fixed;
  24. display: none;
  25. z-index: 10;
  26. top: 0;
  27. left: 0;
  28. padding: 15rpx;
  29. z-index: 99999;
  30. }
  31. .show {
  32. display: block;
  33. }
  34. .hide {
  35. display: none;
  36. }
  37. pages {
  38. position: relative;
  39. z-index: 9999998;
  40. background: #fff;
  41. }
  42. .textH1 {
  43. color: #333333;
  44. font-size: 30rpx;
  45. }
  46. .textH3 {
  47. color: #999999;
  48. font-size: 24rpx;
  49. }
  50. .addLabel{
  51. text-align: center;
  52. padding: 30rpx;
  53. position: fixed;
  54. bottom: 0;
  55. width: 100%;
  56. background-color: var(--color);
  57. color: #fff;
  58. }