Cityservice.wxss 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. page {
  2. background: #F2EDED;
  3. }
  4. /* 取件时间弹框 */
  5. .popup_data {
  6. height: 600rpx;
  7. width: 100%;
  8. position: relative;
  9. }
  10. .data_title {
  11. width: 92%;
  12. margin: 0 auto;
  13. font-size: 34rpx;
  14. line-height: 110rpx;
  15. font-weight: bold;
  16. letter-spacing: 2rpx;
  17. position: relative;
  18. top: 0rpx;
  19. z-index: 99991;
  20. }
  21. .data_btn {
  22. position: absolute;
  23. bottom: 30rpx;
  24. width: 100%;
  25. z-index: 99992;
  26. }
  27. .btn {
  28. width: 90%;
  29. margin: 0 auto;
  30. height: 45rpx;
  31. color: white;
  32. background: #FF7F00;
  33. border-radius: 22rpx;
  34. text-align: center;
  35. line-height: 90rpx;
  36. letter-spacing: 2rpx;
  37. }
  38. .u-close {
  39. position: absolute;
  40. z-index: 999999 !important;
  41. }
  42. .u-picker-body {
  43. height: 355rpx !important;
  44. }
  45. /* .u-picker-header {
  46. position: relative !important;
  47. top: 138upx;
  48. z-index: 99992;
  49. } */
  50. /* 物品信息弹框 */
  51. .popup_info {
  52. height: 1140rpx;
  53. width: 100%;
  54. position: relative;
  55. }
  56. .data_items {
  57. width: 100%;
  58. }
  59. .item_box {
  60. width: 90%;
  61. margin: 0 auto;
  62. }
  63. .item_btn {
  64. border: 1rpx solid #cccccc;
  65. border-radius: 80rpx;
  66. width: 200rpx;
  67. height: 80rpx;
  68. text-align: center;
  69. line-height: 80rpx;
  70. font-size: 31rpx;
  71. margin-right: 10rpx;
  72. margin-left: 10rpx;
  73. margin-bottom: 20rpx;
  74. }
  75. .item_btn:active {
  76. background: #ffd9b3;
  77. border: 2rpx solid #ff7f00;
  78. }
  79. .item_type {
  80. display: flex;
  81. flex-wrap: wrap;
  82. margin-top: 20rpx;
  83. }
  84. /* 物品保价弹框 */
  85. .valua_icon {
  86. width: 90%;
  87. position: absolute;
  88. bottom: 140rpx;
  89. left: 42rpx;
  90. }
  91. .input {
  92. width: 90%;
  93. margin: 0 auto;
  94. }
  95. .u-input--border {
  96. border-radius: 12rupx;
  97. border: 2rpx solid #F2F2F2 !important;
  98. background: #F2F2F2 !important;
  99. }
  100. .input_bg {
  101. width: 90%;
  102. margin: 0 auto;
  103. position: relative;
  104. }
  105. .input_bg image {
  106. width: 100%;
  107. height: 90rpx;
  108. }
  109. .input_bg text {
  110. position: absolute;
  111. top: 30rpx;
  112. left: 36rpx;
  113. color: #FF7F00;
  114. font-size: 31rpx;
  115. }
  116. /* 红包弹框 */
  117. .popup_money {
  118. /* height: 400upx; */
  119. width: 100%;
  120. height: 630rpx;
  121. position: relative;
  122. background: #F2EDED;
  123. padding-bottom: 45rpx;
  124. }
  125. .uni-scroll-view,
  126. .uni-scroll-view-content {
  127. position: relative;
  128. width: 100%;
  129. height: 100%;
  130. background: #F2EDED;
  131. }
  132. .image_box {
  133. width: 40%;
  134. margin: 0 auto;
  135. margin-bottom: 110rpx;
  136. }
  137. .u-drawer-bottom {
  138. background-color: #FAF7F5 !important;
  139. }
  140. .money_box {
  141. width: 93%;
  142. margin: 0 auto;
  143. background: #ffffff;
  144. border-radius: 16rpx;
  145. height: 250rpx;
  146. margin-bottom: 20rpx;
  147. }
  148. .box_tit {
  149. width: 90%;
  150. margin: 0 auto;
  151. height: 80rpx;
  152. display: flex;
  153. }
  154. .money_name {
  155. flex: 1;
  156. display: flex;
  157. justify-content: left;
  158. align-items: center;
  159. font-size: 31rpx;
  160. font-weight: bold;
  161. letter-spacing: 2rpx;
  162. }
  163. .money_price {
  164. flex: 1;
  165. display: flex;
  166. justify-content: flex-end;
  167. align-items: center;
  168. font-size: 36rpx;
  169. font-weight: bold;
  170. color: red;
  171. }
  172. .money_data {
  173. color: #999999;
  174. font-size: 22rpx;
  175. width: 90%;
  176. margin: 0 auto;
  177. margin-top: -10rpx;
  178. }
  179. .u-line {
  180. width: 90% !important;
  181. border-bottom-width: 3rpx !important;
  182. margin: 0 auto !important;
  183. margin-top: 24rpx !important;
  184. margin-bottom: 24rpx !important;
  185. }
  186. .box_bottom {
  187. width: 90%;
  188. margin: 0 auto;
  189. display: flex;
  190. height: 40rpx;
  191. }
  192. .money_use {
  193. flex: 1;
  194. color: #999999;
  195. font-size: 22rpx;
  196. display: flex;
  197. justify-content: left;
  198. align-items: center;
  199. }
  200. .lj_use {
  201. width: 160rpx;
  202. border: 1rpx solid #FF7F00;
  203. color: #FF7F00;
  204. text-align: center;
  205. line-height: 46rpx;
  206. border-radius: 42rpx;
  207. font-size: 20rpx;
  208. }
  209. .help_send {
  210. width: 100%;
  211. }
  212. .content {
  213. margin-top: -380rpx;
  214. position: relative;
  215. z-index: 999;
  216. }
  217. .part_one {
  218. width: 95%;
  219. margin: 0 auto;
  220. height: 225rpx;
  221. background: #ffffff;
  222. border-radius: 20rpx;
  223. margin-top: 20rpx;
  224. }
  225. .pay_tit {
  226. width: 95%;
  227. margin: 0 auto;
  228. /* height: 200upx; */
  229. position: relative;
  230. }
  231. .pay_name {
  232. font-size: 32rpx;
  233. font-weight: bold;
  234. width: 95%;
  235. margin: 0 auto;
  236. letter-spacing: 2rpx;
  237. padding-top: 30rpx;
  238. }
  239. .pay_set {
  240. color: #333333;
  241. font-size: 24rpx;
  242. width: 95%;
  243. margin: 0 auto;
  244. /* margin-top: 20upx; */
  245. }
  246. .part_two {
  247. width: 95%;
  248. margin: 0 auto;
  249. /* height: 235rpx; */
  250. background: #ffffff;
  251. border-radius: 20rpx;
  252. margin-top: 20rpx;
  253. }
  254. .u-form {
  255. margin-top: -22rpx;
  256. }
  257. .service_box {
  258. display: flex;
  259. justify-content: space-between;
  260. align-items: center;
  261. width: 94%;
  262. margin: 0 auto;
  263. }
  264. .service_address {
  265. flex: 3;
  266. margin-left: 14rpx;
  267. }
  268. .service_name {
  269. width: 100%;
  270. margin-top: 30rpx;
  271. margin-bottom: 16rpx;
  272. font-size: 32rpx;
  273. }
  274. .service_dd {
  275. font-size: 28rpx;
  276. }
  277. .service_dd text {
  278. margin-left: 20rpx;
  279. }
  280. .service_icon {
  281. /* flex: 1; */
  282. display: flex;
  283. justify-content: flex-end;
  284. align-items: center;
  285. color: #CCCCCC;
  286. }
  287. .part_three {
  288. width: 95%;
  289. margin: 0 auto;
  290. /* height: 350rpx; */
  291. background: #ffffff;
  292. border-radius: 20rpx;
  293. margin-top: 45rpx;
  294. }
  295. .u-form-item__body {
  296. position: relative !important;
  297. }
  298. .u-form-item--left {
  299. position: absolute !important;
  300. top: 30rpx;
  301. left: 15rpx;
  302. font-size: 31rpx;
  303. font-weight: bold;
  304. letter-spacing: 2rpx;
  305. }
  306. .u-form-item--right__content {
  307. margin-right: 20rpx !important;
  308. }
  309. .u-form-item {
  310. line-height: 20rpx !important;
  311. }
  312. .u-form-item {
  313. padding: 20rpx 0 !important;
  314. }
  315. .u-input__input {
  316. font-size: 44rupx !important;
  317. }
  318. .u-input__input {
  319. font-size: 31rpx !important;
  320. }
  321. .part_four {
  322. width: 95%;
  323. padding: 20rpx 0rpx;
  324. background: #ffffff;
  325. margin: 0 auto;
  326. border-radius: 20rpx;
  327. display: flex;
  328. margin-top: 20rpx;
  329. }
  330. .service_type {
  331. flex: 1;
  332. /* display: flex; */
  333. /* justify-content: left; */
  334. /* align-items: center; */
  335. margin-left: 40rpx;
  336. font-size: 31rpx;
  337. font-weight: bold;
  338. }
  339. .service_you {
  340. /* flex: 1; */
  341. display: flex;
  342. justify-content: flex-end;
  343. align-items: center;
  344. margin-right: 20rpx;
  345. color: #CCCCCC;
  346. }
  347. .content_sure {
  348. display: flex;
  349. align-items: center;
  350. margin-bottom: 160rpx;
  351. margin-left: 15px;
  352. margin-top: 10px;
  353. }
  354. .u-checkbox__label {
  355. font-size: 28rpx !important;
  356. letter-spacing: 2rpx;
  357. color: #888888 !important;
  358. }
  359. .tabbar {
  360. width: 100%;
  361. height: 100rpx;
  362. background: #ffffff;
  363. position: fixed;
  364. bottom: 0rpx;
  365. left: 0rpx;
  366. right: 0rpx;
  367. display: flex;
  368. z-index: 99;
  369. }
  370. .tabbar_price {
  371. flex: 1;
  372. display: flex;
  373. justify-content: left;
  374. align-items: center;
  375. font-size: 31rpx;
  376. font-weight: bold;
  377. margin-left: 40rpx;
  378. }
  379. .tabbar_price text {
  380. color: #FF3333;
  381. font-size: 36rpx;
  382. font-weight: 500;
  383. }
  384. .tabbar_btn {
  385. flex: 1;
  386. display: flex;
  387. justify-content: center;
  388. align-items: center;
  389. }
  390. .but {
  391. background: #FF7F00;
  392. width: 200rpx;
  393. height: 70rpx;
  394. text-align: center;
  395. line-height: 70rpx;
  396. border-radius: 60rpx;
  397. color: white;
  398. font-size: 24rpx;
  399. }
  400. .actclass {
  401. background-color: #FFD9B3;
  402. }
  403. /* 支付弹框 */
  404. .popup_pay {
  405. width: 100%;
  406. }
  407. .pay_btns {
  408. width: 90%;
  409. margin: 20rpx auto 40rpx;
  410. text-align: center;
  411. background: #FF7F00;
  412. height: 80rpx;
  413. border-radius: 16rpx;
  414. color: #ffffff;
  415. line-height: 80rpx;
  416. }