detail.scss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. .intr {
  2. position: relative;
  3. width: 100vw;
  4. box-sizing: border-box;
  5. background-color: #fff;
  6. padding: 20rpx 30rpx;
  7. .num {
  8. height: 40rpx;
  9. line-height: 40rpx;
  10. font-size: 32rpx;
  11. font-family: PingFang SC-Bold, PingFang SC;
  12. font-weight: bold;
  13. color: #333333;
  14. }
  15. .tags {
  16. margin-bottom: 15rpx;
  17. text {
  18. display: inline-block;
  19. height: 40rpx;
  20. line-height: 40rpx;
  21. background: #E7EEFF;
  22. border-radius: 20rpx;
  23. padding: 0 15rpx;
  24. font-size: 20rpx;
  25. color: #fff;
  26. margin-right: 10rpx;
  27. }
  28. }
  29. .exp {
  30. height: 34rpx;
  31. line-height: 34rpx;
  32. font-size: 26rpx;
  33. margin-bottom: 8rpx;
  34. color: #666;
  35. }
  36. .copy {
  37. position: absolute;
  38. right: 30rpx;
  39. top: 20rpx;
  40. background-color: #FF9933;
  41. border-radius: 12rpx;
  42. padding: 0 10rpx;
  43. color: #fff;
  44. border: none;
  45. height: 70rpx;
  46. }
  47. }
  48. .box {
  49. width: 100vw;
  50. padding: 20rpx 30rpx;
  51. box-sizing: border-box;
  52. background-color: #fff;
  53. margin-top: 10rpx;
  54. .row {
  55. display: flex;
  56. justify-content: space-between;
  57. min-height: 60rpx;
  58. align-items: center;
  59. .label {
  60. font-size: 28rpx;
  61. }
  62. checkbox {
  63. width: 36rpx;
  64. height: 36rpx;
  65. margin-right: 6rpx;
  66. }
  67. checkbox .wx-checkbox-input {
  68. width: 36rpx;
  69. height: 36rpx;
  70. }
  71. }
  72. }
  73. /* 地址 */
  74. .location {
  75. display: flex;
  76. align-items: center;
  77. .icon {
  78. color: #FF9933;
  79. font-size: 62rpx;
  80. flex-shrink: 0;
  81. margin-right: 10rpx;
  82. }
  83. .content {
  84. flex: 1;
  85. .name {
  86. font-size: 30rpx;
  87. font-family: PingFang SC-Bold, PingFang SC;
  88. font-weight: bold;
  89. text {
  90. font-size: 28rpx;
  91. font-weight: 400;
  92. margin-left: 20rpx;
  93. }
  94. }
  95. .address {
  96. font-size: 28rpx;
  97. margin-top: 6rpx;
  98. flex-shrink: 0;
  99. }
  100. }
  101. .iconfont {
  102. font-size: 40rpx;
  103. margin-left: 20rpx;
  104. color: #999;
  105. }
  106. }
  107. .pay {
  108. .title {
  109. font-size: 30rpx;
  110. font-family: PingFang SC-Bold, PingFang SC;
  111. font-weight: bold;
  112. }
  113. }
  114. /* 备注 */
  115. .remarks {
  116. flex: 1;
  117. margin-left: 30rpx;
  118. border: 1rpx solid #ddd;
  119. box-sizing: border-box;
  120. padding-left: 15rpx;
  121. color: #333;
  122. font-size: 28rpx;
  123. }
  124. .placeholder {
  125. font-size: 24rpx !important;
  126. }
  127. .footer {
  128. display: flex;
  129. justify-content: space-between;
  130. padding: 0 30rpx;
  131. position: fixed;
  132. width: 100vw;
  133. height: 130rpx;
  134. background: #FFFFFF;
  135. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  136. bottom: 0;
  137. box-sizing: border-box;
  138. z-index: 9999;
  139. padding-top: 10rpx;
  140. .count {
  141. height: 90rpx;
  142. line-height: 90rpx;
  143. font-size: 32rpx;
  144. font-weight: bold;
  145. color: var(--error);
  146. }
  147. .but-box {
  148. .but {
  149. min-width: 156rpx;
  150. height: 90rpx;
  151. background: #3874F6;
  152. border-radius: 8rpx;
  153. font-size: 28rpx;
  154. font-family: PingFang SC-Bold, PingFang SC;
  155. font-weight: bold;
  156. color: #FFFFFF;
  157. }
  158. .delete {
  159. background: var(--error);
  160. }
  161. }
  162. }