order-detail.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. ax-body{
  2. display: block;
  3. height: 100%;
  4. background: #F6FAFF;
  5. }
  6. .body{
  7. position: relative;
  8. z-index: 1;
  9. }
  10. /* 页面背景 */
  11. .page-background{
  12. position: fixed;
  13. top: 0;
  14. left: 0;
  15. right: 0;
  16. z-index: 0;
  17. }
  18. .page-background image{
  19. display: block;
  20. width: 100%;
  21. }
  22. /* 基础信息 */
  23. .base-info{
  24. font-size: 14px;
  25. position: relative;
  26. color: #fff;
  27. transform: translateY(5px);
  28. }
  29. .base-info .content{
  30. padding: 10px;
  31. position: relative;
  32. z-index: 2;
  33. }
  34. .base-info .val{
  35. margin-top: 10px;
  36. }
  37. .base-info .value{
  38. display: inline-block;
  39. font-weight: bold;
  40. font-size: 30px;
  41. margin-right: 5px;
  42. transform: translateY(2px);
  43. }
  44. .base-info .name{
  45. display: flex;
  46. align-items: center;
  47. }
  48. .base-info .name .icon{
  49. width: 24px;
  50. margin-right: 10px;
  51. }
  52. .base-info .bg{
  53. width: 100%;
  54. position: absolute;
  55. top: 0;
  56. left: 0;
  57. }
  58. /* 卡片 */
  59. .card{
  60. display: flex;
  61. align-items: center;
  62. padding: 10px;
  63. margin-top: 20px;
  64. background-color: #fff;
  65. border-radius: 8px;
  66. }
  67. .card .item{
  68. flex: 1;
  69. display: flex;
  70. align-items: center;
  71. justify-content: center;
  72. flex-direction: column;
  73. }
  74. .card .item .icon{
  75. display: flex;
  76. align-items: center;
  77. justify-content: center;
  78. width: 30px;
  79. height: 30px;
  80. color: #fff;
  81. background-color: #aaa;
  82. border-radius: 4px;
  83. }
  84. .card .item .icon.green{
  85. background-color: #4EDC86;
  86. }
  87. .card .item .icon.red{
  88. background-color: #F44033;
  89. }
  90. .card .item .date{
  91. font-size: 12px;
  92. color: #aaa;
  93. text-align: center;
  94. }
  95. .card .item .time{
  96. font-weight: bold;
  97. }
  98. .card .item .arrow{
  99. width: 8em;
  100. }
  101. .card .item.middle{
  102. margin: 0 10px;
  103. font-size: 14px;
  104. }
  105. /* 单元格 */
  106. .cell-group{
  107. background-color: #fff;
  108. border-radius: 8px;
  109. padding: 10px;
  110. margin-top: 10px;
  111. }
  112. .cell-group .cell{
  113. display: flex;
  114. align-items: center;
  115. justify-content: space-between;
  116. height: 32px;
  117. font-size: 14px;
  118. }
  119. .cell-group .cell .contet{
  120. color: #aaa;
  121. }
  122. .cell-group .summarize{
  123. display: flex;
  124. align-items: center;
  125. justify-content: space-between;
  126. font-size: 14px;
  127. height: 46px;
  128. }
  129. .cell-group .sum{
  130. font-size: 16px;
  131. color: #F44033 !important;
  132. }
  133. .cell-group.multi-line{
  134. position: relative;
  135. z-index: 2;
  136. }
  137. .cell-group.multi-line .cell{
  138. display: block;
  139. height: auto;
  140. }
  141. .cell-group.multi-line .cell .lable{
  142. height: 28px;
  143. color: #AAA;
  144. }
  145. .cell-group.multi-line .cell .contet{
  146. height: 32px;
  147. color: #2B303A;
  148. font-size: 16px;
  149. font-weight: bold;
  150. }
  151. /* 提示 */
  152. .tips{
  153. display: flex;
  154. align-items: center;
  155. justify-content: center;
  156. height: 24px;
  157. font-size: 12px;
  158. border-radius: 4px;
  159. background-color: #E2FDFE;
  160. margin-top: 10px;
  161. }
  162. .tips .icon{
  163. display: block;
  164. width: 14px;
  165. height: 14px;
  166. margin-right: 10px;
  167. }
  168. .hr{
  169. border-top: 1px solid #f0f0f0;
  170. }