detail.scss 3.1 KB

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