微信

page.scss 2.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. .orderListItem{
  2. width: 100%;
  3. position: relative;
  4. overflow: hidden;
  5. .title{
  6. width: 100%;
  7. position: relative;
  8. overflow: hidden;
  9. align-items: center;
  10. &>div:nth-child(1){
  11. width: .5rem;
  12. text-align: center;
  13. *{
  14. display: inline-block;
  15. font-size: .1rem;
  16. line-height: .17rem;
  17. }
  18. i{
  19. font-size: .15rem;
  20. }
  21. }
  22. &>div:nth-child(1).orange{
  23. *{
  24. color: #fc6243;
  25. }
  26. }
  27. &>div:nth-child(1).grey{
  28. *{
  29. color: #ccc;
  30. }
  31. }
  32. &>div:nth-child(1).green{
  33. *{
  34. color: #63c86f;
  35. }
  36. }
  37. &>div:nth-child(2){
  38. margin-right: .1rem;
  39. &>div{
  40. width: 100%;
  41. position: relative;
  42. overflow: hidden;
  43. span{
  44. width: 100%;
  45. display: block;
  46. font-size: .14rem;
  47. overflow: hidden;
  48. text-overflow: ellipsis;
  49. white-space: nowrap;
  50. }
  51. }
  52. }
  53. &>span{
  54. font-size: .11rem;
  55. color: #666;
  56. margin-right: .15rem;
  57. }
  58. }
  59. .line{
  60. width: 100%;
  61. height: .2rem;
  62. position: relative;
  63. overflow: hidden;
  64. &>div{
  65. width: 100%;
  66. position: absolute;
  67. overflow: hidden;
  68. left: 0;
  69. top: 50%;
  70. transform: translateY(-50%) translateX(-.035rem);
  71. -webkit-transform: translateY(-50%) translateX(-.035rem);
  72. font-size: 0;
  73. white-space: nowrap;
  74. i{
  75. display: inline-block;
  76. width: .07rem;
  77. height: .07rem;
  78. position: relative;
  79. overflow: hidden;
  80. border-radius: 100%;
  81. background: #eee;
  82. margin-right: .1rem;
  83. }
  84. }
  85. }
  86. .list{
  87. &>div{
  88. margin: 0 .15rem;
  89. &>ul{
  90. margin: .06rem auto;
  91. &>li{
  92. font-size: 0;
  93. white-space: nowrap;
  94. &>*{
  95. display: inline-block;
  96. vertical-align: middle;
  97. width: 50%;
  98. overflow: hidden;
  99. text-overflow: ellipsis;
  100. white-space: nowrap;
  101. }
  102. &>span{
  103. line-height: .26rem;
  104. font-size: .14rem;
  105. color: #555;
  106. }
  107. &>div{
  108. text-align: right;
  109. font-size: 0;
  110. span{
  111. font-size: .11rem;
  112. line-height: .26rem;
  113. color: #666;
  114. }
  115. }
  116. }
  117. }
  118. }
  119. }
  120. }