refunddetail.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /* 20190711 */
  2. .wrap {
  3. padding-bottom: 100rpx;
  4. }
  5. .details {
  6. padding: 30rpx;
  7. background-color: #fff;
  8. margin-bottom: 20rpx;
  9. }
  10. .tit {
  11. padding-bottom: 20rpx;
  12. }
  13. .content {
  14. color: #666;
  15. }
  16. /* timeline */
  17. .timeline {
  18. display: flex;
  19. flex-direction: column;
  20. position: relative;
  21. }
  22. .timeline-item {
  23. display: flex;
  24. flex-direction: row;
  25. position: relative;
  26. padding-bottom: 20rpx;
  27. box-sizing: border-box;
  28. overflow: hidden;
  29. }
  30. .timeline-item .timeline-item-keynode {
  31. width: 160rpx;
  32. flex-shrink: 0;
  33. box-sizing: border-box;
  34. padding-right: 20rpx;
  35. text-align: right;
  36. line-height: 65rpx;
  37. }
  38. .timeline-item .timeline-item-divider {
  39. flex-shrink: 0;
  40. position: relative;
  41. width: 30rpx;
  42. height: 30rpx;
  43. top: 6rpx;
  44. border-radius: 50%;
  45. background-color: #bbb;
  46. }
  47. .timeline-item-divider::before, .timeline-item-divider::after {
  48. position: absolute;
  49. left: 15rpx;
  50. width: 1rpx;
  51. height: 100vh;
  52. content: '';
  53. background: inherit;
  54. }
  55. .timeline-item-divider::before {
  56. bottom: 100%;
  57. }
  58. .timeline-item-divider::after {
  59. top: 100%;
  60. }
  61. .timeline .timeline-item:last-child .timeline-item-divider:after {
  62. display: none;
  63. }
  64. .timeline .timeline-item:first-child .timeline-item-divider:before {
  65. display: none;
  66. }
  67. .timeline-item .timeline-item-content {
  68. padding-left: 20rpx;
  69. }
  70. .timeline-last-item .bottom-border::after {
  71. display: none;
  72. }
  73. .timeline-item-content .datetime {
  74. color: #ccc;
  75. }
  76. .goods {
  77. background-color: #fff;
  78. }
  79. .goods-item {
  80. position: relative;
  81. display: flex;
  82. padding: 30rpx;
  83. }
  84. .goods-item-r {
  85. flex: 1;
  86. margin-left: 20rpx;
  87. width: 0;
  88. }
  89. .show-img {
  90. width: 120rpx;
  91. height: 120rpx;
  92. }
  93. .name {
  94. font-size: 26rpx;
  95. color: #444;
  96. text-overflow: ellipsis;
  97. white-space: nowrap;
  98. overflow: hidden;
  99. }
  100. .mount {
  101. font-size: 22rpx;
  102. color: #aaa;
  103. margin-top: 8rpx;
  104. }
  105. .goods-item .price {
  106. display: block;
  107. font-size: 28rpx;
  108. color: #444;
  109. margin-top: 14rpx;
  110. }
  111. .img-list {
  112. display: flex;
  113. }
  114. .img-list .img {
  115. width: 200rpx;
  116. height: 200rpx;
  117. margin-right: 30rpx;
  118. }
  119. .ll {
  120. color: #666;
  121. line-height: 2;
  122. }
  123. .ll text {
  124. color: #333;
  125. }
  126. .btn {
  127. display: flex;
  128. line-height: 98rpx;
  129. position: fixed;
  130. left: 0;
  131. right: 0;
  132. bottom: 0;
  133. }
  134. .btn-item {
  135. flex: 1;
  136. text-align: center;
  137. color: #fff;
  138. }
  139. .btn-item.red {
  140. background: linear-gradient(270deg, #f9c706 0%, #feb600 100%);
  141. }
  142. .btn-item.bule {
  143. background: linear-gradient(90deg, #ff5041 0%, #ff695c 100%);
  144. }