global.scss 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .text-center {
  2. text-align: center;
  3. }
  4. .pb-10{
  5. padding-bottom: 20rpx;
  6. }
  7. .font-13 {
  8. font-size: 13px;
  9. }
  10. .font-12 {
  11. font-size: 12px;
  12. }
  13. .font-11 {
  14. font-size: 11px;
  15. }
  16. .text-grey1 {
  17. color: #888;
  18. }
  19. .text-grey2 {
  20. color: #aaa;
  21. }
  22. .list-cell-arrow::before {
  23. content: ' ';
  24. height: 10px;
  25. width: 10px;
  26. border-width: 2px 2px 0 0;
  27. border-color: #c0c0c0;
  28. border-style: solid;
  29. -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  30. transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  31. position: absolute;
  32. top: 50%;
  33. margin-top: -6px;
  34. right: 30rpx;
  35. }
  36. .list-cell {
  37. position: relative;
  38. width: 100%;
  39. box-sizing: border-box;
  40. background-color: #fff;
  41. color: #333;
  42. padding: 26rpx 30rpx;
  43. }
  44. .list-cell:first-child {
  45. border-radius: 8rpx 8rpx 0 0;
  46. }
  47. .list-cell:last-child {
  48. border-radius: 0 0 8rpx 8rpx;
  49. }
  50. .list-cell::after {
  51. content: '';
  52. position: absolute;
  53. border-bottom: 1px solid #eaeef1;
  54. -webkit-transform: scaleY(0.5) translateZ(0);
  55. transform: scaleY(0.5) translateZ(0);
  56. transform-origin: 0 100%;
  57. bottom: 0;
  58. right: 0;
  59. left: 0;
  60. pointer-events: none;
  61. }
  62. .red{
  63. color: red;
  64. }
  65. .mr-2{
  66. margin-right: 2px;
  67. }
  68. .menu-list {
  69. margin: 15px 15px;
  70. .menu-item-box {
  71. width: 100%;
  72. display: flex;
  73. align-items: center;
  74. .menu-icon {
  75. color: #007AFF;
  76. font-size: 16px;
  77. margin-right: 5px;
  78. }
  79. .text-right {
  80. margin-left: auto;
  81. margin-right: 34rpx;
  82. color: #999;
  83. }
  84. }
  85. }
  86. .pb-0{
  87. padding-bottom: 0;
  88. }