index.module.less 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. .col-steps {
  2. padding: 0 0 0 28px;
  3. overflow: hidden;
  4. background-color: #fff;
  5. .col-step {
  6. display: block;
  7. float: none;
  8. padding: 10px 0;
  9. line-height: 18px;
  10. position: relative;
  11. flex: 1;
  12. color: #7a7a7a;
  13. font-size: 13px;
  14. &:last-child .col-step__line {
  15. border: 0;
  16. }
  17. }
  18. .col-step_circle {
  19. position: absolute;
  20. top: 19px;
  21. left: -18px;
  22. z-index: 1;
  23. width: 18px;
  24. height: 18px;
  25. font-size: 12px;
  26. border-radius: 50%;
  27. background: var(--van-primary);
  28. transform: translate(-50%, -50%);
  29. text-align: center;
  30. line-height: 20px;
  31. color: #fff;
  32. }
  33. .col-step__line {
  34. top: 16px;
  35. left: -19px;
  36. width: 0px;
  37. border-left: 1px dashed var(--van-primary);
  38. height: 100%;
  39. position: absolute;
  40. transform: background-color 0.3s;
  41. }
  42. .stepSection {
  43. .stepTitle {
  44. display: flex;
  45. align-items: center;
  46. justify-content: space-between;
  47. font-size: 13px;
  48. color: #999;
  49. .stepTitleNum {
  50. font-size: 14px;
  51. font-weight: 500;
  52. }
  53. .active {
  54. color: var(--van-primary);
  55. }
  56. }
  57. .stepTitleText {
  58. font-size: 13px;
  59. color: #999999;
  60. line-height: 18px;
  61. }
  62. .stepContent {
  63. padding-top: 6px;
  64. font-size: 13px;
  65. color: #7a7a7a;
  66. line-height: 20px;
  67. }
  68. .state0,
  69. .state1,
  70. .state2 {
  71. font-weight: 500;
  72. font-size: 14px;
  73. color: #ff802c;
  74. line-height: 22px;
  75. }
  76. .state2 {
  77. color: #2dc7aa;
  78. }
  79. .state2 {
  80. color: #999999;
  81. }
  82. }
  83. .videoText {
  84. margin-top: 6px;
  85. background: #2dc7aa;
  86. border-radius: 11px;
  87. font-weight: 500;
  88. font-size: 12px;
  89. color: #ffffff;
  90. padding: 0 5px;
  91. line-height: 22px;
  92. display: inline-block;
  93. }
  94. .videoImg {
  95. margin-top: 10px;
  96. width: 150px;
  97. height: 100px;
  98. position: relative;
  99. border-radius: 4px;
  100. overflow: hidden;
  101. :global {
  102. .van-image {
  103. width: inherit;
  104. height: inherit;
  105. }
  106. }
  107. .videoStop {
  108. position: absolute;
  109. top: 0;
  110. right: 0;
  111. left: 0;
  112. bottom: 0;
  113. display: flex;
  114. align-items: center;
  115. justify-content: center;
  116. }
  117. }
  118. }
  119. .videoList {
  120. padding: 16px;
  121. .videoTitle {
  122. font-size: 18px;
  123. font-weight: 500;
  124. color: #333333;
  125. line-height: 30px;
  126. display: flex;
  127. align-items: center;
  128. i {
  129. display: inline-block;
  130. width: 4px;
  131. height: 18px;
  132. margin-right: 8px;
  133. border-radius: 2px;
  134. background-color: var(--van-primary);
  135. }
  136. }
  137. .videoSection {
  138. padding-top: 12px;
  139. display: flex;
  140. align-items: center;
  141. justify-content: space-between;
  142. flex-wrap: wrap;
  143. max-height: 60vh;
  144. overflow-x: hidden;
  145. overflow-y: auto;
  146. }
  147. .videoItem {
  148. width: 100%;
  149. border-radius: 6px;
  150. margin-bottom: 8px;
  151. }
  152. :global {
  153. .plyr {
  154. // width: 130px;
  155. min-width: 50%;
  156. }
  157. .vjs-poster {
  158. background-size: cover;
  159. }
  160. }
  161. }