video-play-detail.scss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. .video_detail_container {
  2. padding: 20px;
  3. min-height: 100vh;
  4. background: #f7f7f7;
  5. .el-main {
  6. padding: 7px 8px;
  7. background: #fff;
  8. }
  9. .aside_header {
  10. background: white;
  11. display: flex;
  12. flex-direction: column;
  13. justify-content: flex-end;
  14. padding: 24px 16px 0 16px;
  15. margin-bottom: 16px;
  16. }
  17. .el-aside {
  18. background: white;
  19. padding: 0;
  20. margin-bottom: 0;
  21. margin-right: 16px;
  22. }
  23. .aside_header span {
  24. margin-top: 5px;
  25. width: 84px;
  26. height: 22px;
  27. font-size: 16px;
  28. font-family: PingFangSC-Medium, PingFang SC;
  29. font-weight: 500;
  30. color: #343434;
  31. line-height: 22px;
  32. }
  33. .aside_header span:first-child {
  34. width: 173px;
  35. height: 27px;
  36. background: linear-gradient(180deg, #ffffff 0%, var(--themeColor) 100%);
  37. opacity: 0.5;
  38. }
  39. .video_wrap {
  40. border-bottom: 10px solid #f7f7f7;
  41. }
  42. .video_wrap video {
  43. width: 100%;
  44. height: 566px;
  45. }
  46. .text {
  47. padding-left: 32px;
  48. }
  49. .text span {
  50. cursor: pointer;
  51. width: 64px;
  52. font-size: 16px;
  53. font-family: PingFangSC-Medium, PingFang SC;
  54. font-weight: 600;
  55. color: #343434;
  56. margin-right: 16px;
  57. position: relative;
  58. padding: 32px 0 25px 0;
  59. display: inline-block;
  60. }
  61. .video_info {
  62. width: 100%;
  63. height: 172px;
  64. background: #ffffff;
  65. border-radius: 4px;
  66. padding-top: 28px;
  67. padding-left: 32px;
  68. font-size: 14px;
  69. font-family: PingFangSC-Medium, PingFang SC;
  70. font-weight: 500;
  71. color: #343434;
  72. }
  73. .info_active::after {
  74. content: "";
  75. width: 0px;
  76. height: 0px;
  77. border-width: 10px;
  78. border-style: solid;
  79. border-color: transparent transparent var(--themeColor) transparent;
  80. position: absolute;
  81. bottom: -10px;
  82. left: 50%;
  83. transform: translateX(-50%);
  84. }
  85. .video_info {
  86. border-top: 4px solid var(--themeColor);
  87. border-radius: 4px 4px 0px 0px;
  88. }
  89. .summary_tit {
  90. margin-bottom: 16px;
  91. }
  92. .vis_totle {
  93. display: flex;
  94. flex-direction: row;
  95. align-items: center;
  96. }
  97. .vis_totle img {
  98. margin-right: 6px;
  99. }
  100. .introduce .introduce_tit {
  101. height: 20px;
  102. font-size: 14px;
  103. font-family: PingFangSC-Medium, PingFang SC;
  104. font-weight: 600;
  105. color: #343434;
  106. line-height: 20px;
  107. margin-bottom: 12px;
  108. }
  109. .introduce_con {
  110. height: 66px;
  111. font-size: 14px;
  112. font-family: PingFangSC-Regular, PingFang SC;
  113. font-weight: 400;
  114. color: #727272;
  115. line-height: 22px;
  116. }
  117. .teacher_info {
  118. display: flex;
  119. flex-direction: column;
  120. align-items: center;
  121. }
  122. .teacher_ach_info {
  123. display: flex;
  124. flex-wrap: wrap;
  125. }
  126. .teacher_ach_info .ach_item {
  127. margin-bottom: 4px;
  128. flex: 50%;
  129. height: 20px;
  130. font-family: PingFangSC-Regular, PingFang SC;
  131. font-weight: 400;
  132. color: #797979;
  133. line-height: 20px;
  134. font-size: 14px;
  135. }
  136. .el-tree {
  137. overflow: scroll;
  138. height: 600px;
  139. scroll-margin: 20px;
  140. overflow-x: hidden;
  141. }
  142. ::-webkit-scrollbar {
  143. width: 4px;
  144. }
  145. ::-webkit-scrollbar-thumb {
  146. -webkit-box-shadow: inset 0 0 1px rgba(136, 136, 136, 0.3);
  147. background-color: rgb(238, 241, 245);
  148. }
  149. }