daixjgk.wxss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /**
  2. * 这里是uni-app内置的常用样式变量
  3. *
  4. * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
  5. * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
  6. *
  7. */
  8. /**
  9. * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
  10. *
  11. * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
  12. */
  13. /* 颜色变量 */
  14. /* 行为相关颜色 */
  15. /* 文字基本颜色 */
  16. /* 背景颜色 */
  17. /* 边框颜色 */
  18. /* 尺寸变量 */
  19. /* 文字尺寸 */
  20. /* 图片尺寸 */
  21. /* Border Radius */
  22. /* 水平间距 */
  23. /* 垂直间距 */
  24. /* 透明度 */
  25. /* 文章场景相关 */
  26. .page.data-v-846eb3b4 {
  27. position: relative;
  28. }
  29. .page.data-v-846eb3b4::before {
  30. content: "";
  31. position: absolute;
  32. top: 0;
  33. left: 0;
  34. width: 100%;
  35. height: 200rpx;
  36. background: linear-gradient(180deg, #cfddfc, #eff2f5);
  37. z-index: -1;
  38. }
  39. .filter-icon-container.data-v-846eb3b4 {
  40. position: relative;
  41. float: right;
  42. top: 20rpx;
  43. right: 40rpx;
  44. }
  45. .filter-icon-container image.data-v-846eb3b4 {
  46. width: 40rpx;
  47. height: 40rpx;
  48. }
  49. .warehouse-list.data-v-846eb3b4 {
  50. padding: 80rpx 40rpx 20rpx;
  51. }
  52. .warehouse-list .warehouse-item.data-v-846eb3b4 {
  53. background: linear-gradient(180deg, #ffffff, #F5F8FF);
  54. border-radius: 10px;
  55. padding: 20px;
  56. margin-bottom: 20px;
  57. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  58. }
  59. .warehouse-list .warehouse-item .warehouse-header.data-v-846eb3b4 {
  60. display: flex;
  61. justify-content: space-between;
  62. align-items: flex-start;
  63. padding-bottom: 30rpx;
  64. border-bottom: 1px solid #E7E8EA;
  65. font-size: 35rpx;
  66. color: #00122F;
  67. }
  68. .warehouse-list .warehouse-item .warehouse-header .info-container.data-v-846eb3b4 {
  69. flex-grow: 1;
  70. }
  71. .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-name.data-v-846eb3b4,
  72. .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-address.data-v-846eb3b4 {
  73. display: flex;
  74. align-items: center;
  75. margin-bottom: 5px;
  76. }
  77. .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-name.data-v-846eb3b4:last-child,
  78. .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-address.data-v-846eb3b4:last-child {
  79. margin-bottom: 0;
  80. }
  81. .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-name image.data-v-846eb3b4,
  82. .warehouse-list .warehouse-item .warehouse-header .info-container .warehouse-address image.data-v-846eb3b4 {
  83. width: 20px;
  84. height: 20px;
  85. margin-right: 10px;
  86. }
  87. .warehouse-list .warehouse-item .warehouse-header .select-button.data-v-846eb3b4 {
  88. display: flex;
  89. align-items: flex-start;
  90. margin-left: 10px;
  91. }
  92. .warehouse-list .warehouse-item .warehouse-details.data-v-846eb3b4 {
  93. padding-top: 30rpx;
  94. font-size: 30rpx;
  95. color: #747476;
  96. }
  97. .warehouse-list .warehouse-item .warehouse-details .detail-row.data-v-846eb3b4 {
  98. display: flex;
  99. justify-content: space-between;
  100. margin-bottom: 10px;
  101. }
  102. .button-container.data-v-846eb3b4 {
  103. position: fixed;
  104. bottom: 0;
  105. background-color: #ffffff;
  106. width: 100vw;
  107. padding: 40rpx 0;
  108. }
  109. .button-container .button-pad.data-v-846eb3b4 {
  110. padding: 0 40rpx;
  111. display: flex;
  112. justify-content: space-between;
  113. }
  114. .button-container .select-all.data-v-846eb3b4,
  115. .button-container .confirm.data-v-846eb3b4 {
  116. width: 44%;
  117. height: 70rpx;
  118. line-height: 70rpx;
  119. border-radius: 10rpx;
  120. background-color: #1E5FDF;
  121. color: #fff;
  122. font-size: 28rpx;
  123. text-align: center;
  124. }