address-manage.wxss 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  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. .address-manage {
  28. height: 100%;
  29. box-sizing: border-box;
  30. flex-direction: column;
  31. background: #F2F2F2;
  32. display: flex;
  33. justify-content: space-between;
  34. flex-direction: column;
  35. }
  36. .address-manage .content {
  37. flex: 1;
  38. height: 100%;
  39. position: relative;
  40. box-sizing: border-box;
  41. }
  42. .address-manage .AddressTop {
  43. display: flex;
  44. align-items: center;
  45. justify-content: space-between;
  46. background: #ffffff;
  47. width: 100%;
  48. padding: 30rpx;
  49. box-sizing: border-box;
  50. }
  51. .address-manage .AddressTop-left {
  52. flex: 1;
  53. overflow: hidden;
  54. margin-right: 30rpx;
  55. height: 80rpx;
  56. box-sizing: border-box;
  57. border: 1px solid #CCCCCC;
  58. border-radius: 80rpx;
  59. display: flex;
  60. align-items: center;
  61. justify-content: space-between;
  62. padding: 20rpx 30rpx;
  63. }
  64. .address-manage .AddressTop-left-search {
  65. display: block;
  66. width: 40rpx;
  67. height: 40rpx;
  68. }
  69. .address-manage .AddressTop-left-input {
  70. flex: 1;
  71. overflow: hidden;
  72. font-size: 28rpx;
  73. color: #333333;
  74. margin: 0 10rpx;
  75. }
  76. .address-manage .AddressTop-left-clear {
  77. display: block;
  78. width: 32rpx;
  79. height: 32rpx;
  80. }
  81. .address-manage .AddressTop-right {
  82. width: 132rpx;
  83. height: 64rpx;
  84. border-radius: 64rpx;
  85. background: linear-gradient(92deg, #FE4815 0%, #F30000 100%);
  86. color: #FFFFFF;
  87. font-size: 28rpx;
  88. text-align: center;
  89. line-height: 64rpx;
  90. }
  91. .address-manage .AddressList {
  92. width: 100%;
  93. padding: 30rpx;
  94. box-sizing: border-box;
  95. flex: 1;
  96. overflow: hidden;
  97. }
  98. .address-manage .AddressList-item {
  99. padding: 30rpx;
  100. background: #ffffff;
  101. margin-bottom: 30rpx;
  102. position: relative;
  103. border-radius: 24rpx;
  104. }
  105. .address-manage .AddressList-item.active {
  106. background: linear-gradient(to right, #F97C55, #F44545);
  107. }
  108. .address-manage .AddressList-item.active-set .set-used {
  109. background: #ffffff !important;
  110. }
  111. .address-manage .AddressList-item.active .level {
  112. background: linear-gradient(203deg, #FBDCAC 0%, #FFEFD7 31%, #FFDCA5 55%, #FEEACB 90%, #F9D193 100%) !important;
  113. color: #F44545 !important;
  114. }
  115. .address-manage .AddressList-item.active .color {
  116. color: #ffffff !important;
  117. }
  118. .address-manage .AddressList-item-title {
  119. color: #999999;
  120. font-size: 28rpx;
  121. margin-bottom: 20rpx;
  122. }
  123. .address-manage .AddressList-item-title .spec {
  124. color: #333333;
  125. font-size: 32rpx;
  126. margin-right: 20rpx;
  127. }
  128. .address-manage .AddressList-item-desc {
  129. color: #999999;
  130. font-size: 28rpx;
  131. margin-bottom: 30rpx;
  132. }
  133. .address-manage .AddressList-item-info {
  134. display: flex;
  135. align-items: center;
  136. justify-content: space-between;
  137. padding-bottom: 30rpx;
  138. margin-bottom: 30rpx;
  139. border-bottom: 1px solid #E9E9E9;
  140. }
  141. .address-manage .AddressList-item-info .info-text {
  142. color: #333333;
  143. font-size: 28rpx;
  144. flex: 1;
  145. overflow: hidden;
  146. margin-right: 40rpx;
  147. }
  148. .address-manage .AddressList-item-info .info-arrow {
  149. display: block;
  150. width: 30rpx;
  151. height: 30rpx;
  152. }
  153. .address-manage .AddressList-item-set {
  154. width: 100%;
  155. display: flex;
  156. align-items: center;
  157. justify-content: flex-start;
  158. }
  159. .address-manage .AddressList-item-set .get-used {
  160. color: #EA4A41;
  161. font-size: 24rpx;
  162. width: 136rpx;
  163. height: 50rpx;
  164. border-radius: 8rpx;
  165. background: #FFF4F3;
  166. text-align: center;
  167. line-height: 50rpx;
  168. margin-left: auto;
  169. }
  170. .address-manage .AddressList-item-set .set-used {
  171. color: #333;
  172. font-size: 24rpx;
  173. width: 136rpx;
  174. height: 50rpx;
  175. border-radius: 8rpx;
  176. background: #F8F8F8;
  177. text-align: center;
  178. line-height: 50rpx;
  179. margin-left: auto;
  180. }
  181. .address-manage .AddressList-item-set .set-control {
  182. color: #333333;
  183. font-size: 24rpx;
  184. width: 112rpx;
  185. height: 50rpx;
  186. border-radius: 50rpx;
  187. background: #F8F8F8;
  188. text-align: center;
  189. line-height: 50rpx;
  190. }
  191. .address-manage .AddressList-item-set .set-control:nth-of-type(1) {
  192. margin-right: 20rpx;
  193. }
  194. .address-manage .AddressList-item-level {
  195. position: absolute;
  196. top: 30rpx;
  197. right: 30rpx;
  198. -webkit-transform: translate(30rpx, 14rpx);
  199. transform: translate(30rpx, 14rpx);
  200. width: 156rpx;
  201. height: 50rpx;
  202. border-top-left-radius: 50rpx;
  203. border-bottom-left-radius: 50rpx;
  204. background: linear-gradient(92deg, #FE4815 0%, #F30000 100%);
  205. color: #FFFFFF;
  206. font-size: 24rpx;
  207. text-align: center;
  208. line-height: 50rpx;
  209. }
  210. .address-manage .address_search {
  211. width: 100%;
  212. display: flex;
  213. align-items: center;
  214. justify-content: space-between;
  215. padding: 12rpx 30rpx;
  216. box-sizing: border-box;
  217. color: #333333;
  218. background-color: #FFFFFF;
  219. margin-bottom: 1px;
  220. }
  221. .address-manage .address_search .address_search_main {
  222. width: calc(100% - 106rpx);
  223. background-color: #F2F4F5;
  224. height: 64rpx;
  225. padding: 0 22px;
  226. border-radius: 64rpx;
  227. display: flex;
  228. justify-content: space-between;
  229. align-items: center;
  230. }
  231. .address-manage .address_search .address_search_main::before {
  232. content: "";
  233. display: block;
  234. width: 36rpx;
  235. height: 36rpx;
  236. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAAXNSR0IArs4c6QAAAfJQTFRF////////////29vb39/f5ubm0dHR6Ojo2NjYyMjI29vbzMzM3d3dz8/P1dXV19fXzMzMzs7O0dHR09PTysrK1dXVzMzMzs7O2NjY0NDQ0dHRz8/P0dHR0tLSzMzM09PTz8/P0NDQzc3N0NDQ0tLSzc3N0dHRzs7Oz8/Py8vLzc3N0dHRzs7OzMzMysrKzMzMzs7Ozs7OysrKzc3Ny8vLzMzMz8/Pzs7Oz8/Pzc3NysrKzc3Ny8vLzc3Ny8vLzc3Nzs7OzMzMzMzMy8vLzc3Nzc3NzMzMzs7OzMzMzMzMzc3NzMzMzMzMzMzMz8/Pzc3NzMzMzMzMy8vLzMzMzMzMzMzMzs7OzMzMzc3NzMzMzMzMzMzMzc3NzMzMzMzMzMzMzMzMzc3NzMzMy8vLzc3Ny8vLzc3Nzc3NzMzMzc3NzMzMzMzMzc3Ny8vLzc3NzMzMzMzMzMzMzc3NzMzMy8vLy8vLzMzMzc3Nzc3NzMzMy8vLy8vLzc3Ny8vLzMzMzMzMzMzMzc3NzMzMzMzMy8vLzMzMzMzMzMzMzMzMzMzMzc3NzMzMzMzMy8vLzMzMzc3NzMzMzMzMzMzMzMzMzMzMzMzMzMzMy8vLzMzMzMzMzMzMzMzMy8vLzMzMzMzMzMzMy8vLzMzMy8vLzMzMzMzMzMzMzQV9fwAAAKV0Uk5TAwQGBwgKCwsNDg4PDxASExQVFhcYGBkaGhscICEiIyMlJikrLS4yNDU2ODg5PD5GSU5SUlRVVVlfYGFhYmZnZ2hpamtrbG1tbm9xcnN0dHV4eXt9foKCg4SGh4iJjJGSoaOlpqeoqKyurq+wsbKyuLm6vb/AwcTFxsjJysrLzc/Q0NHW19rb3N7f3+Hi4+Pk5+jr7O/w8fLz9PX29/j5+vv7/Pz9Xg6IhAAAAktJREFUGBndwelDiwEAx/FfVpMhFENIhDRXOZ7c5Eip5L5SJOROjty3HGU5Kq0Je6zv/+l5RM/WtofeeOHz0T83d8eZW+2hUPutM9vz9EfTTrwgxvO6HLlJr+llhN7qdKU04z5J3PMrhcIgtq/XtgXmZGbOCWxr/YotWKikSvqx9B+dpGGTj4ex9JcoiaIwlka/4kxvwhJerAQz3gHRKiXYMwh0zdQIaQ+B6CrZvBuaO0KhjnMbvLKtjgJ30xRvI5Zq2Uo7+KWjVLYaLGsVJyMInJXFU0eMOo8sZ4FOr2LtBfpzZaklTq0suWGgVrHeAodlawEGGop8vqKGAaBFtkPAa8UoAMwpsq0webNIPy16g7lCtmwTmC9HFXBdQxaWZemXrLKFGnIDqJTjKrBTLiqAS3I8ApbKxTLggRydQJ5c5AOv5fgMjJWL8UBIjhAwTi58QEiOV0C+XMwDXspxG1gmF8uBNjkuAOVyUQk0y7EfaJGLVmCfHAuALz6lNOEbUKAYL4EqpVQLtCvWMaAnWylM+wQcUaysbuCUUjgNfJyoOJVYdimp3VgqFM/zDPi+UkmsGQQeezTC7A9AtFoJagaB7llKsGQAS+NUxfE3YYsYSlQSxtJ3IFPDMg+GGBIxlKgwiK3v/KbAbK8vL7DlYh+29yYQMZTIf5ck7vgNE4gYSuTZ2sUIwc0eyTCBiKEkMiraogz73laeIZthAhFDSeWsP3nlaW/Pk8sn12XrN8MEIob+nmECkWL9PcMEbmoUDBPqNRrFN+vH6D/xA0qDV4C8g9YxAAAAAElFTkSuQmCC);
  237. background-size: 100% 100%;
  238. margin-right: 26rpx;
  239. }
  240. .address-manage .address_search .address_search_main .address_search_input {
  241. flex: 1;
  242. }
  243. .address-manage .address_search .address_search_btn {
  244. font-size: 32rpx;
  245. width: 80rpx;
  246. }
  247. .address-manage .content .item {
  248. background: #FFFFFF;
  249. border-bottom: 20rpx solid #F2F2F2;
  250. box-sizing: border-box;
  251. padding: 0 30rpx;
  252. }
  253. .address-manage .content .item .fixed_title {
  254. height: 74rpx;
  255. line-height: 74rpx;
  256. color: #333333;
  257. font-size: 28rpx;
  258. }
  259. .address-manage .content .item .item_main {
  260. padding: 18rpx 0;
  261. border-bottom: 1px solid #D7D7D7;
  262. }
  263. .address-manage .content .item .item_main .label {
  264. width: 120rpx;
  265. text-align: left;
  266. }
  267. .address-manage .content .item .item_main .item_main_agent {
  268. display: flex;
  269. justify-content: space-between;
  270. align-items: center;
  271. margin-bottom: 30rpx;
  272. }
  273. .address-manage .content .item .item_main .item_main_agent .item_agent_info {
  274. display: flex;
  275. align-items: center;
  276. justify-content: flex-start;
  277. color: #333333;
  278. font-size: 28rpx;
  279. width: calc(100% - 118rpx);
  280. text-overflow: ellipsis;
  281. overflow: hidden;
  282. }
  283. .address-manage .content .item .item_main .item_main_agent .item_agent_level {
  284. color: #FFFFFF;
  285. font-size: 24rpx;
  286. background-color: #F76454;
  287. border-radius: 4rpx;
  288. height: 36rpx;
  289. line-height: 36rpx;
  290. width: 108rpx;
  291. text-align: center;
  292. }
  293. .address-manage .content .item .item_main .item_main_user {
  294. color: #333333;
  295. font-size: 28rpx;
  296. display: flex;
  297. justify-content: space-between;
  298. align-items: center;
  299. margin-bottom: 20rpx;
  300. }
  301. .address-manage .content .item .item_main .item_main_user .item_main_user_left {
  302. display: flex;
  303. align-items: center;
  304. justify-content: flex-start;
  305. }
  306. .address-manage .content .item .item_main .item_main_user .item_main_user_right {
  307. display: flex;
  308. align-items: center;
  309. justify-content: center;
  310. height: 42rpx;
  311. border-radius: 42rpx;
  312. background-color: #F76454;
  313. color: #FFFFFF;
  314. padding: 0 15rpx;
  315. }
  316. .address-manage .content .item .item_main .item_main_address {
  317. width: 100%;
  318. display: flex;
  319. justify-content: flex-end;
  320. align-items: center;
  321. }
  322. .address-manage .content .item .item_main .item_main_address .address_text {
  323. width: 100%;
  324. color: #999999;
  325. font-size: 28rpx;
  326. line-height: 38rpx;
  327. }
  328. .address-manage .content .item .item_set_footer {
  329. height: 77rpx;
  330. display: flex;
  331. justify-content: space-between;
  332. align-items: center;
  333. color: #333333;
  334. font-size: 24rpx !important;
  335. }
  336. .address-manage .content .item .item_set_footer .check {
  337. display: flex;
  338. justify-content: flex-start;
  339. align-items: center;
  340. }
  341. .address-manage .content .item .item_set_footer .check::before {
  342. content: "";
  343. display: block;
  344. width: 36rpx;
  345. height: 36rpx;
  346. box-sizing: border-box;
  347. border: 2rpx solid #F76454;
  348. text-align: center;
  349. line-height: 34rpx;
  350. border-radius: 50%;
  351. color: #FFFFFF;
  352. margin-right: 17rpx;
  353. }
  354. .address-manage .content .item .item_set_footer .checked::before {
  355. content: "\2714";
  356. background-color: #F76454;
  357. }
  358. .address-manage .content .item .item_set_footer .item_set_footer_right .edit-del {
  359. display: flex;
  360. justify-content: flex-end;
  361. align-items: center;
  362. height: 100%;
  363. width: 268rpx;
  364. color: #999999;
  365. justify-content: space-between;
  366. }
  367. .address-manage .content .item .item_set_footer .item_set_footer_right .edit-del .edit,
  368. .address-manage .content .item .item_set_footer .item_set_footer_right .edit-del .del {
  369. flex: 1;
  370. height: 100%;
  371. text-align: center;
  372. }
  373. .address-manage .content .item .item_set_footer .item_set_footer_right .edit-del .edit.del,
  374. .address-manage .content .item .item_set_footer .item_set_footer_right .edit-del .del.del {
  375. text-align: right;
  376. }
  377. .address-manage .content .bottom {
  378. height: 88rpx;
  379. }
  380. .address-manage .noaddress {
  381. display: flex;
  382. align-items: center;
  383. justify-content: center;
  384. flex-direction: row;
  385. color: #999999;
  386. padding-top: 200rpx;
  387. }
  388. .address-manage .add-address {
  389. left: 0;
  390. bottom: 0;
  391. margin: 0;
  392. width: 100%;
  393. position: fixed;
  394. border-radius: 0;
  395. }
  396. .address-manage .bottom {
  397. height: 60rpx;
  398. }
  399. .address-manage .adress_bottom {
  400. left: 0;
  401. bottom: 0;
  402. margin: 0;
  403. width: 100%;
  404. position: fixed;
  405. border-radius: 0;
  406. height: 88rpx;
  407. display: flex;
  408. justify-content: space-between;
  409. align-items: center;
  410. }
  411. .address-manage .adress_bottom .add-address {
  412. text-align: center;
  413. flex: 1;
  414. line-height: 88rpx;
  415. position: relative;
  416. background: #FB231F;
  417. color: #fff;
  418. }
  419. .address-manage .adress_bottom .new_address {
  420. text-align: center;
  421. border: none;
  422. background-color: #FFFFFF;
  423. color: #FB231F;
  424. }
  425. .address-manage .userLevel {
  426. font-size: 24rpx !important;
  427. color: #F76454;
  428. overflow: hidden;
  429. text-overflow: ellipsis;
  430. white-space: nowrap;
  431. }