text.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /* ==================
  2. 文本
  3. ==================== */
  4. .text-xs {
  5. font-size: 20upx;
  6. }
  7. .text-22 {
  8. font-size: 22rpx;
  9. }
  10. .text-sm {
  11. font-size: 24upx;
  12. }
  13. .text-df {
  14. font-size: 28upx;
  15. }
  16. .text-lg {
  17. font-size: 32upx;
  18. }
  19. .text-xl {
  20. font-size: 36upx;
  21. }
  22. .text-xxl {
  23. font-size: 44upx;
  24. }
  25. .text-xxxl {
  26. font-size: 52upx;
  27. }
  28. .text-sl {
  29. font-size: 80upx;
  30. }
  31. .text-xsl {
  32. font-size: 120upx;
  33. }
  34. .text-Abc {
  35. text-transform: Capitalize;
  36. }
  37. .text-ABC {
  38. text-transform: Uppercase;
  39. }
  40. .text-abc {
  41. text-transform: Lowercase;
  42. }
  43. .text-price::before {
  44. content: '¥';
  45. font-size: 80%;
  46. margin-right: 4upx;
  47. }
  48. .text-cut {
  49. text-overflow: ellipsis;
  50. white-space: nowrap;
  51. overflow: hidden;
  52. }
  53. .text-bold {
  54. font-weight: bold;
  55. }
  56. .text-center {
  57. text-align: center;
  58. }
  59. .text-content {
  60. line-height: 1.6;
  61. }
  62. .text-left {
  63. text-align: left;
  64. }
  65. .text-right {
  66. text-align: right;
  67. }
  68. .text-red,
  69. .line-red,
  70. .lines-red {
  71. color: #e54d42;
  72. }
  73. .text-orange,
  74. .line-orange,
  75. .lines-orange {
  76. color: #f37b1d;
  77. }
  78. .text-yellow,
  79. .line-yellow,
  80. .lines-yellow {
  81. color: #fbbd08;
  82. }
  83. .text-olive,
  84. .line-olive,
  85. .lines-olive {
  86. color: #8dc63f;
  87. }
  88. .text-green,
  89. .line-green,
  90. .lines-green {
  91. color: #39b54a;
  92. }
  93. .text-cyan,
  94. .line-cyan,
  95. .lines-cyan {
  96. color: #1cbbb4;
  97. }
  98. .text-blue,
  99. .line-blue,
  100. .lines-blue {
  101. color: #0081ff;
  102. }
  103. .text-purple,
  104. .line-purple,
  105. .lines-purple {
  106. color: #6739b6;
  107. }
  108. .text-mauve,
  109. .line-mauve,
  110. .lines-mauve {
  111. color: #9c26b0;
  112. }
  113. .text-pink,
  114. .line-pink,
  115. .lines-pink {
  116. color: #e03997;
  117. }
  118. .text-brown,
  119. .line-brown,
  120. .lines-brown {
  121. color: #a5673f;
  122. }
  123. .text-grey,
  124. .line-grey,
  125. .lines-grey {
  126. color: #8799a3;
  127. }
  128. .text-gray,
  129. .line-gray,
  130. .lines-gray {
  131. color: #aaaaaa;
  132. }
  133. .text-black,
  134. .line-black,
  135. .lines-black {
  136. color: #333333;
  137. }
  138. .text-white,
  139. .line-white,
  140. .lines-white {
  141. color: #ffffff;
  142. }