index.wxss 2.2 KB

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