detail.scss 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. .com-main {
  2. color: #101010;
  3. max-width: 1400px;
  4. box-sizing: border-box;
  5. .order-detail-part {
  6. max-width: 1400px;
  7. width: 100%;
  8. margin: 0 auto;
  9. }
  10. .breadcrumb {
  11. font-size: 14px;
  12. color: #8f9ab5;
  13. margin-top: 23px;
  14. padding: 0 20px;
  15. }
  16. section {
  17. width: 100%;
  18. max-width: 1300px;
  19. margin: 0 auto;
  20. box-sizing: border-box;
  21. padding: 30px 20px;
  22. border-bottom: 1px solid #c9c9c9;
  23. }
  24. .main-header {
  25. h1 {
  26. font-size: 28px;
  27. font-weight: 600;
  28. margin-bottom: 20px;
  29. }
  30. .main-header-mid {
  31. .user_logo {
  32. max-width: 120px;
  33. max-height: 120px;
  34. width: 100%;
  35. height: 100%;
  36. object-fit: cover;
  37. }
  38. .left {
  39. font-size: 20px;
  40. align-self: flex-start;
  41. li {
  42. i {
  43. vertical-align: middle;
  44. }
  45. span {
  46. color: #1890ff;
  47. cursor: pointer;
  48. }
  49. }
  50. }
  51. .right {
  52. font-size: 18px;
  53. li {
  54. text-align: right;
  55. margin-top: 10px;
  56. }
  57. }
  58. @media screen and (max-width: 1000px) {
  59. flex-direction: column;
  60. align-items: flex-start;
  61. .right li {
  62. text-align: left;
  63. }
  64. }
  65. }
  66. .steps {
  67. margin: 50px 0 0;
  68. .steps-title{
  69. font-size: 24px;
  70. font-weight: 600;
  71. }
  72. .pointer{
  73. cursor: pointer;
  74. }
  75. @media screen and (min-width: 1000px) {
  76. :deep(.el-step) {
  77. .is-wait {
  78. .el-step__icon-inner {
  79. display: none;
  80. }
  81. }
  82. .el-step__main {
  83. position: absolute;
  84. top: -40px;
  85. left: 50%;
  86. transform: translate(-50%, 0);
  87. width: 100%;
  88. .el-step__title {
  89. font-size: 16px;
  90. }
  91. .el-step__description {
  92. font-size: 16px;
  93. margin-top: 35px;
  94. padding: 0;
  95. }
  96. .is-success {
  97. color: #07921d !important;
  98. }
  99. }
  100. }
  101. }
  102. }
  103. .margin-b-30{
  104. margin-bottom: 30px;
  105. }
  106. .margin-b-50{
  107. margin-bottom: 50px;
  108. }
  109. }
  110. .main-custom {
  111. div {
  112. vertical-align: top;
  113. display: inline-block;
  114. width: 250px;
  115. margin-right: 180px;
  116. }
  117. }
  118. .sharing-title {
  119. font-size: 24px;
  120. margin-bottom: 30px;
  121. font-weight: 600;
  122. }
  123. .sharing-subtitle {
  124. font-size: 16px;
  125. margin-bottom: 30px;
  126. }
  127. .sharing-address {
  128. line-height: 24px;
  129. &.limit {
  130. padding: 0 16px;
  131. border: 1px solid #c9c9c9;
  132. max-height: 300px;
  133. overflow: scroll;
  134. }
  135. }
  136. .table-wrap {
  137. overflow: hidden;
  138. .total {
  139. float: right;
  140. text-align: right;
  141. margin: 30px 0 0 0;
  142. border: 0px;
  143. border-collapse: collapse;
  144. border-spacing: 0;
  145. tr {
  146. td {
  147. border-bottom: 1px solid #c9c9c9;
  148. &:nth-child(2) {
  149. padding: 10px 0 10px 40px;
  150. }
  151. }
  152. }
  153. }
  154. }
  155. .orderTable {
  156. :deep(.el-table__body) {
  157. .el-table__cell {
  158. vertical-align: top;
  159. line-height: 53px;
  160. }
  161. }
  162. }
  163. :deep(.expanded + tr) {
  164. .el-table__expanded-cell {
  165. padding: 0 0 15px !important;
  166. }
  167. }
  168. .colorBlue {
  169. color: #1890ff;
  170. }
  171. .ellipsis {
  172. text-overflow: ellipsis;
  173. overflow: hidden;
  174. display: -webkit-box;
  175. -webkit-box-orient: vertical;
  176. -webkit-line-clamp: 7;
  177. }
  178. .cursor {
  179. cursor: pointer;
  180. }
  181. .notes-1 {
  182. width: 138px;
  183. border-bottom: 2px solid #101010;
  184. padding-bottom: 10px;
  185. margin-bottom: 40px;
  186. font-size: 16px;
  187. font-weight: 600;
  188. }
  189. .notes-2 {
  190. margin-bottom: 10px;
  191. font-size: 14px;
  192. font-weight: 600;
  193. }
  194. .notes-3 {
  195. width: 70%;
  196. line-height: 22px;
  197. }
  198. }