global.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. .text-center {
  2. text-align: center;
  3. }
  4. .font-14 {
  5. font-size: 14px;
  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. /* #ifndef APP-ANDROID */
  24. content: ' ';
  25. /* #endif */
  26. height: 10px;
  27. width: 10px;
  28. border-width: 2px 2px 0 0;
  29. border-color: #c0c0c0;
  30. border-style: solid;
  31. /* #ifdef WEB */
  32. -webkit-transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  33. /* #endif */
  34. transform: matrix(0.5, 0.5, -0.5, 0.5, 0, 0);
  35. position: absolute;
  36. top: 50%;
  37. margin-top: -6px;
  38. right: 30rpx;
  39. }
  40. .list-cell {
  41. position: relative;
  42. width: 100%;
  43. box-sizing: border-box;
  44. background-color: #fff;
  45. color: #333;
  46. padding: 26rpx 30rpx;
  47. }
  48. .list-cell:first-child {
  49. border-radius: 8rpx 8rpx 0 0;
  50. }
  51. .list-cell:last-child {
  52. border-radius: 0 0 8rpx 8rpx;
  53. }
  54. .list-cell::after {
  55. /* #ifndef APP-ANDROID */
  56. content: '';
  57. /* #endif */
  58. position: absolute;
  59. border-bottom: 1px solid #eaeef1;
  60. /* #ifdef WEB */
  61. -webkit-transform: scaleY(0.5) translateZ(0);
  62. /* #endif */
  63. transform: scaleY(0.5) translateZ(0);
  64. transform-origin: 0 100%;
  65. bottom: 0;
  66. right: 0;
  67. left: 0;
  68. pointer-events: none;
  69. }
  70. .menu-list {
  71. margin: 15px 15px;
  72. .menu-item-box {
  73. width: 100%;
  74. display: flex;
  75. align-items: center;
  76. .menu-icon {
  77. color: #007AFF;
  78. font-size: 16px;
  79. margin-right: 5px;
  80. }
  81. .text-right {
  82. margin-left: auto;
  83. margin-right: 34rpx;
  84. color: #999;
  85. }
  86. }
  87. }
  88. .uni-row{
  89. flex-direction: row;
  90. }
  91. .uni-column{
  92. flex-direction: column;
  93. }