evaluate.wxss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page {
  12. background: #ffffff;
  13. height: 100%;
  14. }
  15. page .content {
  16. background: #ffffff;
  17. height: 100%;
  18. }
  19. /* 多条商品 */
  20. .order-item {
  21. display: flex;
  22. flex-direction: column;
  23. padding: 0rpx 30rpx;
  24. background: #fff;
  25. margin-top: 20rpx;
  26. /* 单条商品 */
  27. }
  28. .order-item .goods-box-single {
  29. display: flex;
  30. padding: 20rpx 0;
  31. }
  32. .order-item .goods-box-single .goods-img {
  33. display: block;
  34. width: 120rpx;
  35. height: 120rpx;
  36. }
  37. .order-item .goods-box-single .right {
  38. flex: 1;
  39. display: flex;
  40. flex-direction: column;
  41. padding: 0 30rpx 0 24rpx;
  42. overflow: hidden;
  43. height: 100%;
  44. }
  45. .order-item .goods-box-single .right .title {
  46. align-self: flex-start;
  47. font-size: 30rpx;
  48. color: #303133;
  49. height: 80rpx;
  50. overflow: hidden;
  51. text-overflow: ellipsis;
  52. display: -webkit-box;
  53. -webkit-box-orient: vertical;
  54. -webkit-line-clamp: 2;
  55. }
  56. .order-item .goods-box-single .right .title-right {
  57. flex-shrink: 0;
  58. text-align: right;
  59. align-self: flex-start;
  60. }
  61. .order-item .goods-box-single .right .attr-box {
  62. font-size: 26rpx;
  63. color: #909399;
  64. }
  65. .order-item .goods-box-single .right .price {
  66. font-size: 30rpx;
  67. color: #303133;
  68. }
  69. .order-item .goods-box-single .right .price:before {
  70. content: '¥';
  71. font-size: 24rpx;
  72. margin: 0 2rpx 0 8rpx;
  73. }
  74. .equity_box {
  75. background-color: #fafafa;
  76. border-radius: 10rpx;
  77. padding: 25rpx 25rpx;
  78. margin: 25rpx 0rpx;
  79. }
  80. .equity_box .text-box {
  81. height: 200rpx;
  82. }
  83. .equity_box .text-box textarea {
  84. font-size: 25rpx;
  85. width: 100%;
  86. height: 100%;
  87. overflow: hidden;
  88. text-overflow: ellipsis;
  89. display: -webkit-box;
  90. -webkit-box-orient: vertical;
  91. -webkit-line-clamp: 5;
  92. }
  93. .zhil {
  94. font-size: 28rpx !important;
  95. padding: 15rpx 15rpx;
  96. }
  97. .submit-box {
  98. bottom: 0;
  99. left: 0;
  100. width: 750rpx;
  101. }
  102. .submit-btn {
  103. margin-top: 10px;
  104. display: inline-block;
  105. width: 670rpx;
  106. height: 96rpx;
  107. line-height: 96rpx;
  108. text-align: center;
  109. background-color: #1BCC26 !important;
  110. opacity: 1;
  111. border-radius: 32rpx;
  112. border-width: 8rpx;
  113. border-color: white;
  114. box-shadow: 0rpx 8rpx 12rpx rgba(0, 0, 0, 0.16);
  115. border-radius: 56rpx;
  116. font-size: 39rpx;
  117. font-weight: bold;
  118. color: white;
  119. }
  120. .submit-btn-txt {
  121. font-size: 39rpx;
  122. font-weight: bold;
  123. line-height: 47rpx;
  124. color: white;
  125. opacity: 1;
  126. }
  127. .map-box {
  128. width: 484rpx;
  129. height: 256rpx;
  130. border-width: 4rpx;
  131. border-color: white;
  132. box-shadow: 0rpx 0rpx 24rpx rgba(0, 0, 0, 0.16);
  133. /* border-radius: 12rpx; */
  134. position: relative;
  135. }
  136. .map {
  137. position: absolute;
  138. top: 0;
  139. left: 0;
  140. right: 0;
  141. bottom: 0;
  142. width: 476rpx;
  143. height: 250rpx;
  144. }
  145. .map-img {
  146. position: absolute;
  147. top: 90rpx;
  148. left: 156rpx;
  149. width: 230rpx;
  150. height: 68rpx;
  151. background-color: rgba(51, 51, 51, 0.64);
  152. border-width: 1rpx;
  153. border-color: rgba(0, 0, 0, 0);
  154. border-radius: 34px;
  155. font-size: 28rpx;
  156. font-weight: bold;
  157. line-height: 66rpx;
  158. color: white;
  159. text-align: center;
  160. }
  161. .address-box {
  162. padding: 15rpx 40rpx;
  163. margin-bottom: 10px;
  164. }
  165. .label {
  166. font-size: 36rpx;
  167. font-weight: bold;
  168. line-height: 50rpx;
  169. color: #222222;
  170. }
  171. .label-img {
  172. padding-left: 40rpx;
  173. }
  174. .add-img-box {
  175. width: 100%;
  176. flex-direction: row;
  177. flex-wrap: wrap;
  178. margin-top: 50rpx;
  179. }
  180. .add-img-item {
  181. width: 180rpx;
  182. height: 180rpx;
  183. border-radius: 24rpx;
  184. position: relative;
  185. margin: 0rpx 20rpx;
  186. margin-bottom: 25rpx;
  187. }
  188. .add-img-item .add-img {
  189. width: 100%;
  190. height: 100%;
  191. border-radius: 24rpx;
  192. }
  193. .add-img-camera {
  194. flex: 1;
  195. }
  196. .add-img-del {
  197. position: absolute;
  198. width: 40rpx;
  199. height: 40rpx;
  200. left: 155rpx;
  201. bottom: 155rpx;
  202. border-radius: 20rpx;
  203. }
  204. .address-time {
  205. width: 484rpx;
  206. height: 88rpx;
  207. background-color: whitesmoke;
  208. opacity: 1;
  209. border-radius: 24rpx;
  210. text-align: center;
  211. font-size: 35rpx;
  212. font-weight: 500;
  213. color: #333333;
  214. }
  215. .line {
  216. width: 750rpx;
  217. height: 1px;
  218. -webkit-transform: scaleY(0.3);
  219. transform: scaleY(0.3);
  220. background-color: rgba(0, 0, 0, 0.5);
  221. }