mch-detail.scss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. .mch-detail {
  2. width: #{750rpx};
  3. background-color: #f7f7f7;
  4. padding: 0 #{24rpx};
  5. box-sizing: border-box;
  6. .title {
  7. font-size: #{28rpx};
  8. color: #999999;
  9. box-sizing: border-box;
  10. padding: #{32rpx 0 24rpx 0};
  11. }
  12. .information {
  13. width: #{750-48rpx};
  14. border-radius: #{16rpx};
  15. background-color: white;
  16. padding: #{32rpx 24rpx 32rpx 32rpx};
  17. box-sizing: border-box;
  18. .line {
  19. width: #{750-48-32-24rpx};
  20. font-size: #{28rpx};
  21. .label {
  22. width: #{200-32rpx};
  23. text-align: left;
  24. color: #999999;
  25. >view {
  26. display: inline-block;
  27. }
  28. .icon {
  29. width: #{26rpx};
  30. height: #{26rpx};
  31. margin-right: #{8rpx};
  32. }
  33. }
  34. .label.have-icon {
  35. height: #{52rpx};
  36. line-height: #{52rpx};
  37. }
  38. .expression {
  39. color: #353535;
  40. width: #{750-48-200-24rpx};
  41. .input {
  42. color: #353535;
  43. width: #{460rpx};
  44. }
  45. .image {
  46. width: #{150rpx};
  47. height: #{150rpx};
  48. border-radius: #{8rpx};
  49. margin: #{0 10rpx 10rpx 0};
  50. }
  51. }
  52. .break-word {
  53. word-wrap: break-word;
  54. }
  55. }
  56. .line-margin {
  57. margin-bottom: #{28rpx};
  58. }
  59. }
  60. .button {
  61. width: #{750-48rpx};
  62. height: #{80rpx};
  63. margin: #{24rpx} #{12rpx};
  64. &.fixed {
  65. position: fixed;
  66. bottom: 0;
  67. left: 0;
  68. z-index: 999;
  69. }
  70. >view {
  71. width: #{346rpx};
  72. height: #{80rpx};
  73. line-height: #{80rpx};
  74. text-align: center;
  75. border-radius: #{40rpx};
  76. font-size: #{28rpx};
  77. }
  78. .fail {
  79. background-color: #e2e2e2;
  80. color: #353535;
  81. }
  82. .by {
  83. background-color: #446dfd;
  84. color: white;
  85. }
  86. }
  87. .model {
  88. position: fixed;
  89. z-index: 1600;
  90. width: 100%;
  91. height: 100%;
  92. top: 0;
  93. left: 0;
  94. background-color: rgba(0,0,0,.3);
  95. .top {
  96. margin-top: #{40rpx};
  97. margin-bottom: #{32rpx};
  98. color: #353535;
  99. font-size: #{32rpx};
  100. text-align: center;
  101. }
  102. .content {
  103. width: calc(100% - #{64rpx});
  104. margin: 0 #{32rpx};
  105. }
  106. .buttons {
  107. width: 100%;
  108. border-top: #{1rpx} solid #e2e2e2;
  109. margin-top: #{32rpx};
  110. .but {
  111. width: calc(50% - #{1rpx});
  112. height: #{88rpx};
  113. line-height: #{88rpx};
  114. font-size: #{32rpx};
  115. text-align: center;
  116. }
  117. .line {
  118. width: #{2rpx};
  119. height: #{32rpx};
  120. background-color: #e2e2e2;
  121. }
  122. .cancel {
  123. color: #666666;
  124. }
  125. .confirm {
  126. color: #446dfd;
  127. }
  128. }
  129. .refuse {
  130. width: #{620rpx};
  131. position: absolute;
  132. top: 50%;
  133. left: 50%;
  134. transform: translate(-50%, -50%);
  135. border-radius: #{16rpx};
  136. background-color: white;
  137. .content {
  138. border-radius: #{16rpx};
  139. border: #{1rpx} solid #e2e2e2;
  140. height: #{300rpx};
  141. padding: #{24rpx} #{32rpx};
  142. box-sizing: border-box;
  143. }
  144. .textarea {
  145. width: #{620-64-64rpx};
  146. height: #{300-48rpx};
  147. font-size: #{28rpx};
  148. color: #80848f;
  149. }
  150. }
  151. .by {
  152. width: #{620rpx};
  153. position: absolute;
  154. top: 50%;
  155. left: 50%;
  156. transform: translate(-50%, -50%);
  157. border-radius: #{16rpx};
  158. background-color: white;
  159. .content {
  160. font-size: #{32rpx};
  161. color: #353535;
  162. text-align: center;
  163. }
  164. }
  165. }
  166. }