global.scss 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. .text-center {
  2. text-align: center;
  3. }
  4. .pb-10{
  5. padding-bottom: 10rpx;
  6. }
  7. .pb-0{
  8. padding-bottom: 0;
  9. }
  10. .pb-20{
  11. padding-bottom: 20rpx;
  12. }
  13. .pb-30{
  14. padding-bottom: 30rpx;
  15. }
  16. .padding20{
  17. padding: 20rpx;
  18. }
  19. .font-13 {
  20. font-size: 13px;
  21. }
  22. .font-12 {
  23. font-size: 12px;
  24. }
  25. .font-11 {
  26. font-size: 11px;
  27. }
  28. .text-grey1 {
  29. color: #888;
  30. }
  31. .text-grey2 {
  32. color: #aaa;
  33. }
  34. .list-cell-arrow::before {
  35. content: ' ';
  36. height: 10px;
  37. width: 10px;
  38. border-width: 2px 2px 0 0;
  39. border-color: #c0c0c0;
  40. border-style: solid;
  41. -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  42. transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  43. position: absolute;
  44. top: 50%;
  45. margin-top: -6px;
  46. right: 30rpx;
  47. }
  48. .list-cell {
  49. position: relative;
  50. width: 100%;
  51. box-sizing: border-box;
  52. background-color: #fff;
  53. color: #333;
  54. padding: 26rpx 30rpx;
  55. }
  56. .list-cell:first-child {
  57. border-radius: 8rpx 8rpx 0 0;
  58. }
  59. .list-cell:last-child {
  60. border-radius: 0 0 8rpx 8rpx;
  61. }
  62. .list-cell::after {
  63. content: '';
  64. position: absolute;
  65. border-bottom: 1px solid #eaeef1;
  66. -webkit-transform: scaleY(0.5) translateZ(0);
  67. transform: scaleY(0.5) translateZ(0);
  68. transform-origin: 0 100%;
  69. bottom: 0;
  70. right: 0;
  71. left: 0;
  72. pointer-events: none;
  73. }
  74. .red{
  75. color: red;
  76. }
  77. .mr-2{
  78. margin-right: 2px;
  79. }
  80. .menu-list {
  81. margin: 15px 15px;
  82. .menu-item-box {
  83. width: 100%;
  84. display: flex;
  85. align-items: center;
  86. .menu-icon {
  87. color: #007AFF;
  88. font-size: 16px;
  89. margin-right: 5px;
  90. }
  91. .text-right {
  92. margin-left: auto;
  93. margin-right: 34rpx;
  94. color: #999;
  95. }
  96. }
  97. }
  98. .flex {
  99. display: flex;
  100. }
  101. .flex-1 {
  102. flex: 1;
  103. }
  104. .flex-2 {
  105. flex: 2;
  106. }
  107. .flex-3 {
  108. flex: 3;
  109. }
  110. .flex-4 {
  111. flex: 4;
  112. }
  113. .fixedbombtn {
  114. position: fixed;
  115. bottom: calc(constant(safe-area-inset-bottom) + 40rpx);
  116. bottom: calc(env(safe-area-inset-bottom) + 40rpx);
  117. left: 30rpx;
  118. right: 30rpx;
  119. z-index:10
  120. }