detail.scss 3.8 KB

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