orderEvaluate.scss 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. .sld_order_evaluate {
  2. width: 1200px;
  3. .title {
  4. margin: 20px auto;
  5. text-align: center;
  6. p {
  7. color: #1c1c1c;
  8. font-weight: 600;
  9. font-size: 16px;
  10. margin-bottom: 13px;
  11. }
  12. .order_info {
  13. color: #666666;
  14. .time {
  15. margin-left: 40px;
  16. }
  17. }
  18. }
  19. .store_item {
  20. width: 100%;
  21. .store_info {
  22. width: 100%;
  23. height: 132px;
  24. border: 1px solid #f1f1f1;
  25. .store_info_left {
  26. width: 303px;
  27. padding-left: 25px;
  28. .image {
  29. width: 90px;
  30. height: 90px;
  31. border: 1px solid #f3f3f3;
  32. margin-right: 13px;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. img {
  37. max-width: 100%;
  38. max-height: 100%;
  39. }
  40. }
  41. .rate {
  42. align-self: flex-start;
  43. .con {
  44. width: 165px;
  45. margin-top: 20px;
  46. span:nth-child(2) {
  47. margin-top: 15px;
  48. }
  49. }
  50. }
  51. .store_name {
  52. font-weight: 600;
  53. font-size: 14px;
  54. color: #1c1c1c;
  55. margin-top: 5px;
  56. display: inline-block;
  57. }
  58. }
  59. .store_info_right {
  60. margin-left: 160px;
  61. text-align: center;
  62. .item {
  63. width: 180px;
  64. span {
  65. margin-bottom: 15px;
  66. display: inline-block;
  67. }
  68. }
  69. }
  70. }
  71. .shop_info {
  72. width: 100%;
  73. min-height: 382px;
  74. border: 1px solid #f1f1f1;
  75. margin: 10px 0;
  76. padding: 38px;
  77. .good_info {
  78. width: 278px;
  79. margin-right: 80px;
  80. text-align: center;
  81. .image {
  82. width: 203px;
  83. height: 203px;
  84. margin: 0 auto;
  85. border: 1px solid #f3f3f3;
  86. img {
  87. max-width: 100%;
  88. max-height: 100%;
  89. }
  90. }
  91. .name {
  92. margin-top: 15px;
  93. color: #666666;
  94. line-height: 16px;
  95. }
  96. .price {
  97. margin-top: 15px;
  98. color: #1c1c1c;
  99. font-size: 14px;
  100. font-weight: 600;
  101. }
  102. }
  103. .right {
  104. align-self: flex-start;
  105. .shop_rate {
  106. margin: 0px 0 20px;
  107. .text {
  108. margin-right: 20px;
  109. display: inline-block;
  110. }
  111. }
  112. .remark {
  113. .textarea {
  114. width: 675px;
  115. margin-top: 15px;
  116. }
  117. }
  118. .picture {
  119. margin-top: 15px;
  120. .picture_wrap {
  121. display: flex;
  122. margin-top: 15px;
  123. position: relative;
  124. .pic_btn {
  125. top: 0;
  126. width: 72px;
  127. height: 72px;
  128. background: #ffffff;
  129. border: 1px solid #999999;
  130. border-radius: 7px;
  131. display: flex;
  132. justify-content: center;
  133. flex-direction: column;
  134. align-items: center;
  135. cursor: pointer;
  136. img {
  137. width: 23px;
  138. height: 20px;
  139. margin-top: 8px;
  140. }
  141. .countDown {
  142. font-size: 10px;
  143. //font-family: Microsoft YaHei;
  144. font-weight: 400;
  145. color: #999999;
  146. margin-top: 5px;
  147. height: 17px;
  148. }
  149. }
  150. input[type="file"] {
  151. display: none;
  152. }
  153. }
  154. ul,
  155. li {
  156. list-style: none;
  157. }
  158. .picture_list {
  159. display: flex;
  160. .picture_item {
  161. width: 72px;
  162. height: 72px;
  163. margin-right: 10px;
  164. border: 1px solid #dcdcdc;
  165. display: flex;
  166. position: relative;
  167. .close_icon {
  168. display: none;
  169. position: absolute;
  170. top: -7px;
  171. right: -7px;
  172. }
  173. .img_item {
  174. width: 70px;
  175. height: 70px;
  176. background-position: center center;
  177. background-size: contain;
  178. background-repeat: no-repeat;
  179. }
  180. &:hover {
  181. .close_icon {
  182. display: block;
  183. }
  184. }
  185. }
  186. }
  187. }
  188. }
  189. }
  190. }
  191. .submit {
  192. width: 100%;
  193. height: 132px;
  194. text-align: center;
  195. margin-bottom: 60px;
  196. border: 1px solid #f1f1f1;
  197. .btn {
  198. cursor: pointer;
  199. display: inline-block;
  200. width: 190px;
  201. height: 48px;
  202. background-color: $colorMain2;
  203. color: #fff;
  204. font-size: 14px;
  205. text-align: center;
  206. line-height: 48px;
  207. }
  208. }
  209. }