contactBusiness.scss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. .wrapper {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. padding: 34rpx 0 68rpx;
  6. }
  7. .list {
  8. display: flex;
  9. align-items: center;
  10. width: 100%;
  11. margin-bottom: 40rpx;
  12. }
  13. .icon-wrap {
  14. display: flex;
  15. width: 114rpx;
  16. padding-left: 30rpx;
  17. image {
  18. width: 34rpx;
  19. height: 32rpx;
  20. background: pink;
  21. }
  22. }
  23. .goods-wrap {
  24. display: flex;
  25. align-items: center;
  26. width: calc(100% - 114rpx);
  27. }
  28. .photo-wrap {
  29. width: 202rpx;
  30. height: 194rpx;
  31. border-radius: 20rpx;
  32. overflow: hidden;
  33. image {
  34. display: block;
  35. width: 100%;
  36. height: 100%;
  37. background: pink;
  38. }
  39. }
  40. .info {
  41. display: flex;
  42. flex-direction: column;
  43. justify-content: space-between;
  44. width: calc(100% - 202rpx);
  45. min-height: 194rpx;
  46. padding: 0 30rpx 0 50rpx;
  47. }
  48. .name-wrap {
  49. display: flex;
  50. flex-direction: column;
  51. }
  52. .goods-name {
  53. width: 100%;
  54. font-size: 32rpx;
  55. line-height: 46rpx;
  56. color: rgba(0, 28, 51, 1);
  57. white-space: nowrap;
  58. overflow: hidden;
  59. text-overflow: ellipsis;
  60. }
  61. .partner-name {
  62. width: 100%;
  63. font-size: 24rpx;
  64. line-height: 34rpx;
  65. color: rgba(163, 163, 163, 1);
  66. white-space: nowrap;
  67. overflow: hidden;
  68. text-overflow: ellipsis;
  69. }
  70. .price {
  71. margin-top: 10rpx;
  72. font-size: 28rpx;
  73. line-height: 32rpx;
  74. color: rgba(0, 28, 51, 1);
  75. }
  76. .count-wrap {
  77. display: flex;
  78. align-items: center;
  79. }
  80. .count {
  81. min-width: 69rpx;
  82. font-size: 24rpx;
  83. line-height: 30rpx;
  84. color: rgba(0, 28, 51, 1);
  85. text-align: center;
  86. }
  87. .del,
  88. .add {
  89. width: 38rpx;
  90. height: 36rpx;
  91. background: pink;
  92. }
  93. .business-info {
  94. width: 100%;
  95. .label {
  96. width: 100%;
  97. padding-left: 36rpx;
  98. font-size: 36rpx;
  99. line-height: 52rpx;
  100. color: rgba(0, 28, 51, 1);
  101. }
  102. .value {
  103. display: flex;
  104. align-items: center;
  105. width: 100%;
  106. padding-left: 36rpx;
  107. margin-top: 24rpx;
  108. }
  109. .icon-map {
  110. width: 112rpx;
  111. height: 112rpx;
  112. border-radius: 16rpx;
  113. background: pink;
  114. }
  115. .address-wrap {
  116. width: 515rpx;
  117. padding: 0 80rpx 0 32rpx;
  118. }
  119. .address {
  120. width: 100%;
  121. font-size: 26rpx;
  122. line-height: 40rpx;
  123. color: rgba(0, 28, 51, 1);
  124. white-space: nowrap;
  125. overflow: hidden;
  126. text-overflow: ellipsis;
  127. }
  128. .phone {
  129. margin-top: 8rpx;
  130. font-size: 24rpx;
  131. line-height: 28rpx;
  132. color: rgba(163, 163, 163, 1);
  133. }
  134. .icon-arrow {
  135. width: 15rpx;
  136. height: 27rpx;
  137. background: pink;
  138. }
  139. }
  140. .qrcode {
  141. display: flex;
  142. align-items: center;
  143. justify-content: center;
  144. width: 542rpx;
  145. height: 542rpx;
  146. margin-top: 108rpx;
  147. border-radius: 20rpx;
  148. box-shadow: 0 4rpx 20rpx 0 rgba(0, 0, 0, 0.1);
  149. image {
  150. width: 468rpx;
  151. height: 468rpx;
  152. border-radius: 20rpx;
  153. overflow: hidden;
  154. background: pink;
  155. }
  156. }
  157. .tip {
  158. margin-top: 26rpx;
  159. font-size: 24rpx;
  160. line-height: 34rpx;
  161. color: rgba(163, 163, 163, 1);
  162. }
  163. button.btn-business[type="primary"] {
  164. width: 627rpx;
  165. height: 80rpx;
  166. margin-top: 250rpx;
  167. border-radius: 88rpx;
  168. background: rgba(145, 179, 121, 1);
  169. font-size: 36rpx;
  170. font-weight: 500;
  171. }