index.scss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. view {
  2. box-sizing: border-box;
  3. }
  4. .container {
  5. // padding: 30rpx;
  6. min-height: 100vh;
  7. background: #F7F8FB;
  8. }
  9. ::-webkit-scrollbar {
  10. display: none;
  11. }
  12. .box {
  13. padding: 24rpx 30rpx;
  14. padding-bottom: 100px;
  15. .itemBox {
  16. display: flex;
  17. white-space: nowrap;
  18. flex-wrap: nowrap;
  19. overflow-x: scroll;
  20. height: 188rpx;
  21. // margin-bottom: 24rpx;
  22. margin-bottom: 12rpx;
  23. .delBtn {
  24. flex-shrink: 0;
  25. display: flex;
  26. align-items: center;
  27. justify-content: center;
  28. width: 150rpx;
  29. height: 188rpx;
  30. color: white;
  31. background: red;
  32. border-radius: 0 20rpx 20rpx 0;
  33. }
  34. }
  35. .item {
  36. flex-shrink: 0;
  37. width: 100%;
  38. height: 188rpx;
  39. // background: #FFFFFF;
  40. // border-radius: 20rpx 0 0 20rpx;
  41. border-radius: 20rpx;
  42. padding: 32rpx 24rpx;
  43. background-size: 100% 100%;
  44. background-repeat: no-repeat;
  45. // background: red;
  46. .top {
  47. .currLabel {
  48. display: flex;
  49. align-items: center;
  50. .icon {
  51. width: 36rpx;
  52. height: 36rpx;
  53. margin-right: 24rpx;
  54. }
  55. .name {
  56. margin-right: 32rpx;
  57. font-size: 30rpx;
  58. font-family: PingFang-SC, PingFang-SC;
  59. font-weight: 800;
  60. color: #080F18;
  61. }
  62. .phone {
  63. font-size: 30rpx;
  64. font-family: PingFang-SC, PingFang-SC;
  65. font-weight: 800;
  66. color: #080F18;
  67. }
  68. }
  69. }
  70. .bot {
  71. display: flex;
  72. justify-content: space-between;
  73. width: 100%;
  74. margin-top: 20rpx;
  75. .left {
  76. font-size: 26rpx;
  77. font-family: PingFang-SC, PingFang-SC;
  78. font-weight: 500;
  79. color: #080F18;
  80. line-height: 36rpx;
  81. .addr {}
  82. .des {}
  83. }
  84. .bianjiBox {
  85. width: 100rpx;
  86. // background: red;
  87. display: flex;
  88. // justify-content: flex-end;
  89. justify-content: center;
  90. align-items: center;
  91. .bianji {
  92. margin-top: 8rpx;
  93. width: 26rpx;
  94. height: 26rpx;
  95. }
  96. }
  97. }
  98. }
  99. .addBtn {
  100. height: 50px;
  101. background: #eee;
  102. border-radius: 5px;
  103. display: flex;
  104. justify-content: center;
  105. align-items: center;
  106. // color: white;
  107. position: fixed;
  108. width: calc(100% - 20px);
  109. bottom: 50px;
  110. }
  111. }
  112. .btnBox{
  113. height: 176rpx;
  114. background: #FFFFFF;
  115. // background:red;
  116. box-shadow: 0rpx -2rpx 20rpx 0rpx rgba(0,0,0,0.05);
  117. border-radius: 32rpx 32rpx 0rpx 0rpx;
  118. position: fixed;
  119. bottom: 0;
  120. width: 100%;
  121. padding-left: 30rpx;
  122. padding-right: 30rpx;
  123. padding-top: 32rpx;
  124. z-index: 9999999999999999999999999999999;
  125. .btn{
  126. height: 96rpx;
  127. background: linear-gradient(132deg, #0298FF 0%, #017AFF 100%);
  128. box-shadow: 0rpx 4rpx 8rpx 0rpx rgba(0,122,255,0.2);
  129. border-radius: 54rpx;
  130. display: flex;
  131. justify-content: center;
  132. align-items: center;
  133. font-size: 32rpx;
  134. font-family: SourceHanSansCN, SourceHanSansCN;
  135. font-weight: bold;
  136. color: #FFFFFF;
  137. }
  138. }