detail.scss 3.7 KB

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