index.wxss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. .containers {
  2. display: flex;
  3. align-items: stretch;
  4. overflow-x: hidden;
  5. }
  6. .has-info {
  7. display: flex;
  8. flex-direction: column;
  9. padding: 30rpx;
  10. width: 100%;
  11. }
  12. .has-info .info-item {
  13. padding: 30rpx 0;
  14. display: flex;
  15. justify-content: flex-start;
  16. align-items: center;
  17. background: #fff;
  18. border-radius: 10rpx;
  19. box-shadow: 2rpx 8rpx 18rpx #f1f1f1;
  20. margin-bottom: 24rpx;
  21. position: relative;
  22. }
  23. .has-info .info-item .edit-wrap {
  24. padding: 30rpx;
  25. position: absolute;
  26. right: 0;
  27. bottom: 0;
  28. display: flex;
  29. justify-content: center;
  30. align-items: center;
  31. }
  32. .has-info .info-item .edit-wrap .img {
  33. width: 42rpx;
  34. height: 42rpx;
  35. }
  36. .has-info .info-item .selected {
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. padding: 30rpx 0 30rpx 30rpx;
  41. }
  42. .has-info .info-item .selected .img {
  43. width: 40rpx;
  44. height: 40rpx;
  45. }
  46. .has-info .info-item .info-wrap {
  47. display: flex;
  48. flex-direction: column;
  49. padding-left: 30rpx;
  50. }
  51. .has-info .info-item .info-wrap .addr {
  52. display: flex;
  53. flex-direction: column;
  54. margin-bottom: 10rpx;
  55. }
  56. .has-info .info-item .info-wrap .addr .top {
  57. font-size: 30rpx;
  58. font-weight: 500;
  59. margin-bottom: 4rpx;
  60. }
  61. .has-info .info-item .info-wrap .addr .text {
  62. font-size: 24rpx;
  63. color: #777;
  64. }
  65. .has-info .info-item .info-wrap .addr .img-wrap {
  66. width: 44rpx;
  67. height: 44rpx;
  68. margin-right: 10rpx;
  69. }
  70. .has-info .info-item .info-wrap .name {
  71. display: flex;
  72. justify-content: flex-start;
  73. align-items: center;
  74. }
  75. .has-info .info-item .info-wrap .name .img-wrap {
  76. width: 44rpx;
  77. height: 44rpx;
  78. margin-right: 10rpx;
  79. }
  80. .has-info .info-item .info-wrap .name .img {
  81. width: 42rpx;
  82. height: 42rpx;
  83. }
  84. .has-info .info-item .info-wrap .name .default {
  85. font-size: 22rpx;
  86. color: #ff3456;
  87. background: #faedef;
  88. text-align: center;
  89. padding: 2rpx 10rpx;
  90. border-radius: 4rpx;
  91. }
  92. .has-info .info-item .info-wrap .name .text {
  93. font-size: 26rpx;
  94. margin-right: 10rpx;
  95. }
  96. .has-info .info-item .id-wrap {
  97. display: flex;
  98. flex-direction: column;
  99. }
  100. .has-info .info-item .id-wrap .ids {
  101. display: flex;
  102. justify-content: flex-start;
  103. align-items: center;
  104. font-size: 26rpx;
  105. color: #5d6777;
  106. margin-bottom: 8rpx;
  107. }
  108. .has-info .info-item .id-wrap .ids .id-name {
  109. margin-right: 20rpx;
  110. }
  111. .has-info .info-item .id-wrap .no-ids {
  112. font-size: 26rpx;
  113. color: #ffbb12;
  114. }
  115. .has-info .add-btn {
  116. display: flex;
  117. justify-content: center;
  118. align-items: center;
  119. background: #fff;
  120. border-radius: 10rpx;
  121. box-shadow: 2rpx 8rpx 18rpx #f1f1f1;
  122. margin-bottom: 24rpx;
  123. padding: 30rpx 0;
  124. }
  125. .has-info .add-btn .icon-wrap {
  126. display: flex;
  127. justify-content: center;
  128. align-items: center;
  129. width: 40rpx;
  130. height: 40rpx;
  131. margin-right: 8rpx;
  132. }
  133. .has-info .add-btn .icon-wrap .img {
  134. width: 40rpx;
  135. height: 40rpx;
  136. }
  137. .has-info .add-btn .text {
  138. font-size: 28rpx;
  139. color: #ffc310;
  140. }
  141. .no-info {
  142. display: flex;
  143. flex-direction: column;
  144. justify-content: center;
  145. align-items: center;
  146. margin-top: 300rpx;
  147. width: 100%;
  148. }
  149. .no-info .img {
  150. width: 100rpx;
  151. height: 100rpx;
  152. margin-bottom: 30rpx;
  153. }
  154. .no-info .text {
  155. font-size: 30rpx;
  156. color: #999;
  157. text-align: center;
  158. margin-bottom: 30rpx;
  159. }
  160. .no-info .add-btn {
  161. color: #192841;
  162. /* background: #ff3456; */
  163. background: linear-gradient(to right, #f8dd66, #fae277);
  164. border-radius: 100px;
  165. width: 400rpx;
  166. height: 80rpx;
  167. line-height: 80rpx;
  168. text-align: center;
  169. font-size: 28rpx;
  170. margin: 0 auto;
  171. }
  172. .btn-wrap {
  173. position: fixed;
  174. bottom: 0;
  175. width: 100%;
  176. display: flex;
  177. justify-content: center;
  178. align-items: center;
  179. }
  180. .btn-wrap .btn {
  181. width: 100%;
  182. background: linear-gradient(to right, #00b26a, #e6c006);
  183. color: #fff;
  184. font-size: 28rpx;
  185. text-align: center;
  186. height: 110rpx;
  187. line-height: 100rpx;
  188. }