金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

191 lines
3.9 KiB

  1. @import '../../../common/css/global';
  2. #order-index {
  3. .navbar {
  4. position: fixed;
  5. top: 0px;
  6. width: 100%;
  7. display: flex;
  8. z-index: 20;
  9. height: 50px;
  10. line-height: 50px;
  11. background: #FFFFFF;
  12. font-size: 14px;
  13. color: #353535;
  14. .navbar-item {
  15. flex: 1;
  16. width: 0%;
  17. text-align: center;
  18. .navbar-title{
  19. .triangle{
  20. display: inline-block;
  21. border-top:5px solid @globalColor;
  22. border-right: 5px solid transparent;
  23. border-left: 5px solid transparent;
  24. }
  25. }
  26. &.activity {
  27. color: @globalColor;
  28. }
  29. }
  30. .navbar-slider {
  31. position: absolute;
  32. content: " ";
  33. left: 0;
  34. bottom: 0;
  35. width: 4em;
  36. height: 3px;
  37. background-color: @globalColor;
  38. -webkit-transition: -webkit-transform .3s;
  39. transition: -webkit-transform .3s;
  40. transition: transform .3s;
  41. transition: transform .3s, -webkit-transform .3s
  42. }
  43. .select-list{
  44. position: absolute;
  45. background-color: #ffffff;
  46. padding:0 0 0 15px;
  47. left: 0;
  48. right: 0;
  49. top: 50px;
  50. .item{
  51. display: flex;
  52. align-items:center;
  53. justify-content: space-between;
  54. height: 40px;
  55. line-height: 40px;
  56. color: #999999;
  57. font-size: 13px;
  58. .iconfont{
  59. display: none;
  60. padding-right: 15px;
  61. font-size: 12px;
  62. }
  63. }
  64. .activeItem{
  65. color: @globalColor;
  66. .iconfont{
  67. display: inline-block;
  68. }
  69. }
  70. }
  71. }
  72. .tab-panel{
  73. padding-top: 60px;
  74. }
  75. .order-box {
  76. .order-item__none{
  77. text-align: center;
  78. color: #959595;
  79. padding-top: 10px;
  80. }
  81. .order-item {
  82. margin-bottom: 10px;
  83. background: #FFFFFF;
  84. font-size: 15px;
  85. .item-add{
  86. height: 40px;
  87. line-height: 40px;
  88. display: flex;
  89. align-items: center;
  90. justify-content: space-between;
  91. padding: 0 15px;
  92. font-size: 12px;
  93. color:#4A4A4A;
  94. .left-info{
  95. span{
  96. color:#FB5054;
  97. }
  98. }
  99. .right-info{
  100. color:#FB5054;
  101. }
  102. }
  103. .item-top {
  104. font-size: 12px;
  105. .indent {
  106. line-height: 40px;
  107. display: flex;
  108. align-items: center;
  109. justify-content: space-between;
  110. padding: 0 15px;
  111. .order-num {
  112. white-space: nowrap;
  113. text-overflow: ellipsis;
  114. overflow: hidden;
  115. flex: 1;
  116. padding-right: 10px;
  117. span {
  118. font-weight: bold;
  119. }
  120. }
  121. .order-type {
  122. color: #666666;
  123. }
  124. }
  125. }
  126. .item-middle {
  127. font-size: 12px;
  128. .middle-item {
  129. display: flex;
  130. padding: 15px;
  131. color: #959595;
  132. image {
  133. width: 60px;
  134. height: 60px;
  135. border: 1px solid #e5e5e5;
  136. }
  137. .text {
  138. flex: 1;
  139. padding-left: 10px;
  140. overflow: hidden;
  141. .names {
  142. color: #000000;
  143. white-space: nowrap;
  144. text-overflow: ellipsis;
  145. overflow: hidden;
  146. font-size: 14px;
  147. }
  148. }
  149. .money-box {
  150. text-align: right;
  151. }
  152. }
  153. }
  154. .item-bottom {
  155. display: flex;
  156. align-items: center;
  157. justify-content: space-between;
  158. padding: 10px;
  159. .button-box {
  160. font-size: 13px;
  161. color: @globalColor;
  162. padding: 5px 10px;
  163. border: 1px solid @globalColor;
  164. border-radius: 3px;
  165. }
  166. }
  167. }
  168. .loadingbox{
  169. height: 40px;
  170. line-height: 40px;
  171. text-align: center;
  172. }
  173. }
  174. .mask{
  175. position: fixed;
  176. top: 0;
  177. right: 0;
  178. bottom: 0;
  179. left: 0;
  180. background-color:rgba(0,0,0,0.6);
  181. }
  182. }