index.module.less 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  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. .stepContent {
  58. padding-top: 10px;
  59. font-size: 13px;
  60. color: #7a7a7a;
  61. line-height: 20px;
  62. }
  63. }
  64. .videoText {
  65. padding-top: 6px;
  66. color: var(--van-primary);
  67. font-size: 14px;
  68. }
  69. .videoImg {
  70. margin-top: 10px;
  71. width: 150px;
  72. height: 100px;
  73. position: relative;
  74. border-radius: 4px;
  75. overflow: hidden;
  76. :global {
  77. .van-image {
  78. width: inherit;
  79. height: inherit;
  80. }
  81. }
  82. .videoStop {
  83. position: absolute;
  84. top: 0;
  85. right: 0;
  86. left: 0;
  87. bottom: 0;
  88. display: flex;
  89. align-items: center;
  90. justify-content: center;
  91. }
  92. }
  93. }
  94. .videoList {
  95. padding: 16px;
  96. .videoTitle {
  97. font-size: 18px;
  98. font-weight: 500;
  99. color: #333333;
  100. line-height: 30px;
  101. display: flex;
  102. align-items: center;
  103. i {
  104. display: inline-block;
  105. width: 4px;
  106. height: 18px;
  107. margin-right: 8px;
  108. border-radius: 2px;
  109. background-color: var(--van-primary);
  110. }
  111. }
  112. .videoSection {
  113. padding-top: 12px;
  114. display: flex;
  115. align-items: center;
  116. justify-content: space-between;
  117. flex-wrap: wrap;
  118. max-height: 60vh;
  119. overflow-x: hidden;
  120. overflow-y: auto;
  121. }
  122. .videoItem {
  123. width: 100%;
  124. border-radius: 6px;
  125. margin-bottom: 8px;
  126. }
  127. :global {
  128. .plyr {
  129. // width: 130px;
  130. min-width: 50%;
  131. }
  132. .vjs-poster {
  133. background-size: cover;
  134. }
  135. }
  136. }