index.wxss 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. .title {
  2. font-weight: Medium;
  3. font-size: 36rpx;
  4. color: #222222;
  5. }
  6. .text-large {
  7. font-size: 36rpx;
  8. }
  9. .text {
  10. font-size: 30rpx;
  11. }
  12. .text-small {
  13. font-size: 24rpx;
  14. /* word-break: keep-all; */
  15. }
  16. .grey {
  17. color: #666666;
  18. }
  19. .flex {
  20. display: flex;
  21. }
  22. .justify-between {
  23. justify-content: space-between;
  24. }
  25. .flex-aligin-center {
  26. display: flex;
  27. align-items: center;
  28. }
  29. .flex-1 {
  30. flex: 1;
  31. }
  32. .flex-grow-1 {
  33. flex-grow: 1;
  34. }
  35. .w-100 {
  36. width: 100%;
  37. }
  38. .h-100 {
  39. height: 100%;
  40. }
  41. .page-section {
  42. margin: 20rpx;
  43. border-radius: 20rpx;
  44. background-color: #ffffff;
  45. }
  46. .page-section-spacing {
  47. padding: 20rpx;
  48. }
  49. .spacing-small {
  50. padding: 10rpx;
  51. }
  52. .ellipsis {
  53. width: 100%;
  54. overflow: hidden;
  55. text-overflow: ellipsis;
  56. display: -webkit-box;
  57. -webkit-line-clamp: 1;
  58. -webkit-box-orient: vertical;
  59. }
  60. .ellipsis-2 {
  61. width: 100%;
  62. overflow: hidden;
  63. text-overflow: ellipsis;
  64. display: -webkit-box;
  65. -webkit-line-clamp: 2;
  66. -webkit-box-orient: vertical;
  67. }
  68. .detail-tags {
  69. width: 100%;
  70. margin: 8rpx 0;
  71. overflow: hidden;
  72. text-overflow: ellipsis;
  73. display: -webkit-box;
  74. -webkit-line-clamp: 2;
  75. -webkit-box-orient: vertical;
  76. }
  77. .goods-tags {
  78. width: 100%;
  79. margin: 8rpx 0;
  80. overflow: hidden;
  81. text-overflow: ellipsis;
  82. display: -webkit-box;
  83. -webkit-line-clamp: 2;
  84. -webkit-box-orient: vertical;
  85. }
  86. .cell-title {
  87. flex: 1;
  88. margin-bottom: 10rpx;
  89. }
  90. .cell-icon {
  91. margin-right: 10rpx;
  92. }
  93. .cell-end {
  94. display: flex;
  95. align-items: center;
  96. min-width: 100rpx;
  97. justify-content: flex-end;
  98. }
  99. .detail-name {
  100. width: 100%;
  101. margin: 10rpx 0;
  102. font-size: 30rpx;
  103. color: #222222;
  104. overflow: hidden;
  105. text-overflow: ellipsis;
  106. display: -webkit-box;
  107. -webkit-line-clamp: 1;
  108. -webkit-box-orient: vertical;
  109. }
  110. .detail-describe {
  111. width: 100%;
  112. margin: 10rpx 0;
  113. min-height: 80rpx;
  114. overflow: hidden;
  115. text-overflow: ellipsis;
  116. display: -webkit-box;
  117. -webkit-line-clamp: 2;
  118. -webkit-box-orient: vertical;
  119. }
  120. .detail-tags {
  121. width: 100%;
  122. margin: 8rpx 0;
  123. overflow: hidden;
  124. text-overflow: ellipsis;
  125. display: -webkit-box;
  126. -webkit-line-clamp: 2;
  127. -webkit-box-orient: vertical;
  128. }
  129. .detail-price-wrapper {
  130. display: flex;
  131. color: #F01740;
  132. margin-top: 10rpx;
  133. }
  134. .detail-price-wrapper .detail-price-text {
  135. margin: 0 10rpx 0 0;
  136. }
  137. .detail-price-wrapper .detail-price-num {
  138. font-size: 28rpx;
  139. font-weight: 600;
  140. }