detail.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. }
  38. .box {
  39. width: 100vw;
  40. padding: 20rpx 30rpx;
  41. box-sizing: border-box;
  42. background-color: #fff;
  43. margin-top: 10rpx;
  44. .row {
  45. display: flex;
  46. justify-content: space-between;
  47. min-height: 60rpx;
  48. align-items: center;
  49. .label {
  50. font-size: 28rpx;
  51. }
  52. checkbox {
  53. width: 36rpx;
  54. height: 36rpx;
  55. margin-right: 6rpx;
  56. }
  57. checkbox .wx-checkbox-input {
  58. width: 36rpx;
  59. height: 36rpx;
  60. }
  61. }
  62. }
  63. /* 地址 */
  64. .location {
  65. display: flex;
  66. align-items: center;
  67. .icon {
  68. color: #FF9933;
  69. font-size: 62rpx;
  70. flex-shrink: 0;
  71. margin-right: 10rpx;
  72. }
  73. .content {
  74. flex: 1;
  75. .name {
  76. font-size: 30rpx;
  77. font-family: PingFang SC-Bold, PingFang SC;
  78. font-weight: bold;
  79. text {
  80. font-size: 28rpx;
  81. font-weight: 400;
  82. margin-left: 20rpx;
  83. }
  84. }
  85. .address {
  86. font-size: 28rpx;
  87. margin-top: 6rpx;
  88. flex-shrink: 0;
  89. }
  90. }
  91. .iconfont {
  92. font-size: 40rpx;
  93. margin-left: 20rpx;
  94. color: #999;
  95. }
  96. }
  97. /* 备注 */
  98. .remarks {
  99. flex: 1;
  100. margin-left: 30rpx;
  101. border: 1rpx solid #ddd;
  102. box-sizing: border-box;
  103. padding-left: 15rpx;
  104. color: #333;
  105. font-size: 28rpx;
  106. }
  107. .placeholder {
  108. font-size: 24rpx !important;
  109. }
  110. .footer {
  111. display: flex;
  112. justify-content: space-between;
  113. padding: 0 30rpx;
  114. position: fixed;
  115. width: 100vw;
  116. height: 130rpx;
  117. background: #FFFFFF;
  118. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  119. bottom: 0;
  120. box-sizing: border-box;
  121. z-index: 9999;
  122. padding-top: 10rpx;
  123. .count {
  124. height: 90rpx;
  125. line-height: 90rpx;
  126. font-size: 32rpx;
  127. font-weight: bold;
  128. color: var(--error);
  129. }
  130. .but-box {
  131. .but {
  132. min-width: 156rpx;
  133. height: 90rpx;
  134. background: #3874F6;
  135. border-radius: 8rpx;
  136. font-size: 28rpx;
  137. font-family: PingFang SC-Bold, PingFang SC;
  138. font-weight: bold;
  139. color: #FFFFFF;
  140. }
  141. .delete {
  142. background: var(--warning);
  143. }
  144. }
  145. }