identify.wxss 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. @charset "UTF-8";
  2. /**
  3. * 这里是uni-app内置的常用样式变量
  4. *
  5. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  6. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  7. *
  8. */
  9. /**
  10. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  11. *
  12. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  13. */
  14. /* 颜色变量 */
  15. /* 行为相关颜色 */
  16. /* 文字基本颜色 */
  17. /* 背景颜色 */
  18. /* 边框颜色 */
  19. /* 尺寸变量 */
  20. /* 文字尺寸 */
  21. /* 图片尺寸 */
  22. /* Border Radius */
  23. /* 水平间距 */
  24. /* 垂直间距 */
  25. /* 透明度 */
  26. /* 文章场景相关 */
  27. .identify .bigtitle.data-v-0af94406 {
  28. font-size: 28rpx;
  29. text-align: center;
  30. line-height: 60rpx;
  31. background-color: #2cb8d4;
  32. color: #fff;
  33. }
  34. .identify .list.data-v-0af94406 {
  35. padding: 10rpx 20rpx;
  36. }
  37. .identify .list .item.data-v-0af94406 {
  38. display: flex;
  39. align-items: center;
  40. justify-content: center;
  41. border: 1px solid #d4d3d3;
  42. margin-bottom: 20rpx;
  43. border-radius: 30rpx;
  44. padding: 30rpx;
  45. }
  46. .identify .list .item .itemL.data-v-0af94406 {
  47. width: 200rpx;
  48. height: 200rpx;
  49. border-radius: 100rpx;
  50. overflow: hidden;
  51. margin-right: 30rpx;
  52. }
  53. .identify .list .item .itemL image.data-v-0af94406 {
  54. width: 100%;
  55. height: 100%;
  56. }
  57. .identify .list .item .itemR.data-v-0af94406 {
  58. flex: 1;
  59. }
  60. .identify .list .item .itemR .title.data-v-0af94406 {
  61. display: flex;
  62. justify-content: space-between;
  63. }
  64. .identify .list .item .itemR .title .name.data-v-0af94406 {
  65. font-size: 30rpx;
  66. font-weight: bold;
  67. }
  68. .identify .list .item .itemR .title .address.data-v-0af94406 {
  69. font-size: 26rpx;
  70. color: #585858;
  71. }
  72. .identify .list .item .itemR .title .address image.data-v-0af94406 {
  73. width: 30rpx;
  74. height: 30rpx;
  75. vertical-align: text-bottom;
  76. }
  77. .identify .list .item .itemR .title .status.data-v-0af94406 {
  78. color: #fff;
  79. background-color: #0ec891;
  80. font-size: 24rpx;
  81. padding: 5rpx 15rpx;
  82. border-radius: 30px;
  83. height: 30rpx;
  84. line-height: 30rpx;
  85. }
  86. .identify .list .item .itemR .items.data-v-0af94406 {
  87. display: flex;
  88. justify-content: space-between;
  89. padding: 10rpx 0;
  90. }
  91. .identify .list .item .itemR .items image.data-v-0af94406 {
  92. width: 30rpx;
  93. height: 30rpx;
  94. margin-right: 10rpx;
  95. vertical-align: text-top;
  96. }
  97. .identify .list .item .itemR .items view.data-v-0af94406 {
  98. display: flex;
  99. align-items: center;
  100. }
  101. .identify .list .item .itemR .btn.data-v-0af94406 {
  102. font-size: 26rpx;
  103. background-color: #2cb8d4;
  104. border-radius: 30px;
  105. color: #fff;
  106. text-align: center;
  107. padding: 10rpx 0;
  108. }
  109. .identify .dialog.data-v-0af94406 {
  110. position: fixed;
  111. top: 0;
  112. left: 0;
  113. width: 100%;
  114. height: 100%;
  115. background: rgba(0, 0, 0, 0.5);
  116. z-index: 10;
  117. transition: -webkit-transform 0.3s ease-out;
  118. transition: transform 0.3s ease-out;
  119. transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  120. display: flex;
  121. flex-direction: column;
  122. }
  123. .identify .dialog .back.data-v-0af94406 {
  124. flex: 1;
  125. }
  126. .identify .dialog .closebox.data-v-0af94406 {
  127. height: calc(50vh - 60rpx);
  128. width: 100%;
  129. }
  130. .identify .dialog .dialog_content.data-v-0af94406 {
  131. background-color: #fff;
  132. position: absolute;
  133. bottom: 0;
  134. width: calc(100% - 60rpx);
  135. height: 50vh;
  136. border-top-left-radius: 20rpx;
  137. border-top-right-radius: 20rpx;
  138. padding: 30rpx;
  139. background-color: #f3f3f3;
  140. padding-bottom: 100rpx;
  141. display: flex;
  142. flex-direction: column;
  143. }
  144. .identify .dialog .dialog_content .box.data-v-0af94406 {
  145. height: 90%;
  146. overflow-y: auto;
  147. }
  148. .identify .dialog .dialog_content .box .lists.data-v-0af94406 {
  149. background-color: #fff;
  150. margin-bottom: 20rpx;
  151. display: flex;
  152. justify-content: space-between;
  153. padding: 20rpx 10rpx;
  154. border-radius: 10rpx;
  155. }
  156. .identify .dialog .dialog_content .box .lists .imgs.data-v-0af94406 {
  157. width: 240rpx;
  158. height: 160rpx;
  159. border-radius: 20rpx;
  160. overflow: hidden;
  161. }
  162. .identify .dialog .dialog_content .box .lists .imgs image.data-v-0af94406 {
  163. width: 100%;
  164. height: 100%;
  165. }
  166. .identify .dialog .dialog_content .box .lists .right.data-v-0af94406 {
  167. flex: 1;
  168. padding-left: 30rpx;
  169. }
  170. .identify .dialog .dialog_content .box .lists .right .list_title.data-v-0af94406 {
  171. display: flex;
  172. justify-content: space-between;
  173. align-items: center;
  174. }
  175. .identify .dialog .dialog_content .box .lists .right .list_title .title.data-v-0af94406 {
  176. font-size: 34rpx;
  177. font-weight: bold;
  178. }
  179. .identify .dialog .dialog_content .box .lists .right .list_title .time.data-v-0af94406 {
  180. font-size: 24rpx;
  181. }
  182. .identify .dialog .dialog_content .box .lists .right .price.data-v-0af94406 {
  183. padding-top: 50rpx;
  184. display: flex;
  185. justify-content: space-between;
  186. }
  187. .identify .dialog .dialog_content .box .lists .right .price .money.data-v-0af94406 {
  188. font-size: 42rpx;
  189. color: #e61b1b;
  190. font-weight: bold;
  191. }
  192. .identify .dialog .dialog_content .box .lists .right .price .counter.data-v-0af94406 {
  193. display: flex;
  194. }
  195. .identify .dialog .dialog_content .box .lists .right .price .counter view.data-v-0af94406 {
  196. width: 60rpx;
  197. height: 60rpx;
  198. line-height: 60rpx;
  199. background-color: #f7f8fa;
  200. text-align: center;
  201. border-radius: 60rpx;
  202. font-size: 50rpx;
  203. }
  204. .identify .dialog .dialog_content .box .lists .right .price .counter text.data-v-0af94406 {
  205. display: block;
  206. width: 100rpx;
  207. text-align: center;
  208. line-height: 60rpx;
  209. font-size: 30rpx;
  210. }
  211. .identify .dialog .dialog_content .now.data-v-0af94406 {
  212. width: 100%;
  213. text-align: center;
  214. height: 100rpx;
  215. padding-top: 10rpx;
  216. }
  217. .identify .dialog .dialog_content .now text.data-v-0af94406 {
  218. display: inline-block;
  219. height: 80rpx;
  220. line-height: 80rpx;
  221. width: 90%;
  222. background-color: #2cb8d4;
  223. color: #fff;
  224. border-radius: 50rpx;
  225. }