mch-detail.scss 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  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. >view {
  65. width: #{346rpx};
  66. height: #{80rpx};
  67. line-height: #{80rpx};
  68. text-align: center;
  69. border-radius: #{40rpx};
  70. font-size: #{28rpx};
  71. }
  72. .fail {
  73. background-color: #e2e2e2;
  74. color: #353535;
  75. }
  76. .by {
  77. background-color: #446dfd;
  78. color: white;
  79. }
  80. }
  81. .model {
  82. position: fixed;
  83. z-index: 1600;
  84. width: 100%;
  85. height: 100%;
  86. top: 0;
  87. left: 0;
  88. background-color: rgba(0,0,0,.3);
  89. .top {
  90. margin-top: #{40rpx};
  91. margin-bottom: #{32rpx};
  92. color: #353535;
  93. font-size: #{32rpx};
  94. text-align: center;
  95. }
  96. .content {
  97. width: calc(100% - #{64rpx});
  98. margin: 0 #{32rpx};
  99. }
  100. .buttons {
  101. width: 100%;
  102. border-top: #{1rpx} solid #e2e2e2;
  103. margin-top: #{32rpx};
  104. .but {
  105. width: calc(50% - #{1rpx});
  106. height: #{88rpx};
  107. line-height: #{88rpx};
  108. font-size: #{32rpx};
  109. text-align: center;
  110. }
  111. .line {
  112. width: #{2rpx};
  113. height: #{32rpx};
  114. background-color: #e2e2e2;
  115. }
  116. .cancel {
  117. color: #666666;
  118. }
  119. .confirm {
  120. color: #446dfd;
  121. }
  122. }
  123. .refuse {
  124. width: #{620rpx};
  125. position: absolute;
  126. top: 50%;
  127. left: 50%;
  128. transform: translate(-50%, -50%);
  129. border-radius: #{16rpx};
  130. background-color: white;
  131. .content {
  132. border-radius: #{16rpx};
  133. border: #{1rpx} solid #e2e2e2;
  134. height: #{300rpx};
  135. padding: #{24rpx} #{32rpx};
  136. box-sizing: border-box;
  137. }
  138. .textarea {
  139. width: #{620-64-64rpx};
  140. height: #{300-48rpx};
  141. font-size: #{28rpx};
  142. color: #80848f;
  143. }
  144. }
  145. .by {
  146. width: #{620rpx};
  147. position: absolute;
  148. top: 50%;
  149. left: 50%;
  150. transform: translate(-50%, -50%);
  151. border-radius: #{16rpx};
  152. background-color: white;
  153. .content {
  154. font-size: #{32rpx};
  155. color: #353535;
  156. text-align: center;
  157. }
  158. }
  159. }
  160. }