detail.scss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. // 课程标题,课程切换按钮
  2. .course_name {
  3. width: 100%;
  4. height: 80rpx;
  5. background-color: #fff;
  6. }
  7. .course_titles {
  8. width: 100%;
  9. display: flex;
  10. align-items: center;
  11. padding: 0rpx 20rpx;
  12. }
  13. .video_t1 {
  14. width: 405rpx;
  15. height: 80rpx;
  16. color: #333333;
  17. line-height: 80rpx;
  18. font-size: 30rpx;
  19. font-family: PingFang SC;
  20. font-weight: bold;
  21. color: #333333;
  22. overflow: hidden;
  23. text-overflow: ellipsis;
  24. white-space: nowrap;
  25. }
  26. .one {
  27. width: 450rpx;
  28. }
  29. .notice_wrap {
  30. height: 80rpx;
  31. display: flex;
  32. align-items: center;
  33. justify-content: flex-end;
  34. margin-right: 10rpx;
  35. .video_t1_t {
  36. width: 124rpx;
  37. height: 40rpx;
  38. line-height: 40rpx;
  39. text-align: center;
  40. background: rgba(245, 154, 35, 1);
  41. color: #333;
  42. border-radius: 10rpx;
  43. font-size: 24rpx;
  44. }
  45. }
  46. .toggle_course {
  47. width: 230rpx;
  48. height: 56rpx;
  49. background: #F1F5F8;
  50. border-radius: 28rpx;
  51. display: flex;
  52. align-items: center;
  53. justify-content: center;
  54. .img {
  55. width: 32rpx;
  56. height: 32rpx;
  57. margin-right: 4rpx;
  58. }
  59. .toggle_name, .numbers {
  60. color: #4B4B4B;
  61. font-size: 24rpx;
  62. }
  63. }
  64. // 切换课程弹窗
  65. .popup_box {
  66. width: 100%;
  67. height: 938rpx;
  68. padding: 56rpx 56rpx 0rpx;
  69. .check_head {
  70. height: 200rpx;
  71. border-bottom: 2rpx solid #F0F0F0;
  72. }
  73. .headers {
  74. width: 100%;
  75. display: flex;
  76. align-items: center;
  77. justify-content: space-between;
  78. .grade {
  79. font-size: 40rpx;
  80. font-weight: bold;
  81. color: #222222;
  82. }
  83. }
  84. .coruse_num {
  85. margin-top: 12rpx;
  86. font-size: 28rpx;
  87. color: #222222;
  88. }
  89. .menuSel {
  90. width: 100%;
  91. height: 58rpx;
  92. white-space:nowrap;
  93. overflow: hidden;
  94. margin-top: 40rpx;
  95. .r_t1 {
  96. font-size: 28rpx;
  97. font-weight: 400;
  98. color: #969696;
  99. }
  100. .sub_sliper {
  101. width: 100%;
  102. height: 100%;
  103. }
  104. .nactive {
  105. font-size: 32rpx;
  106. font-weight: bold;
  107. color: #222222;
  108. position: relative;
  109. top: 0rpx;
  110. left: 0rpx;
  111. &::after {
  112. content: '';
  113. width: 32rpx;
  114. height: 8rpx;
  115. background: #498AFE;
  116. border-radius: 180rpx;
  117. position: absolute;
  118. bottom: -15rpx;
  119. left: 19rpx;
  120. }
  121. }
  122. }
  123. .course_items {
  124. width: 100%;
  125. padding: 24rpx 0rpx 20rpx;
  126. display: flex;
  127. align-items: center;
  128. justify-content: space-between;
  129. border-bottom: 2rpx solid #F0F0F0;
  130. .course_lefts {
  131. width: 510rpx;
  132. }
  133. .course_title {
  134. font-size: 28rpx;
  135. font-weight: 500;
  136. color: #303030;
  137. }
  138. .course_pros {
  139. font-size: 22rpx;
  140. color: #969696;
  141. margin-top: 16rpx;
  142. >text {
  143. color: #4B4B4B;
  144. }
  145. }
  146. .course_rights {
  147. display: flex;
  148. flex-direction: column;
  149. align-items: center;
  150. .cicles {
  151. width: 32rpx;
  152. height: 32rpx;
  153. line-height: 26rpx;
  154. text-align: center;
  155. border-radius: 50%;
  156. background-color: #D5E4FF;
  157. }
  158. .intoStudy {
  159. font-size: 22rpx;
  160. color: #498AFE;
  161. margin-top: 16rpx;
  162. }
  163. }
  164. }
  165. }
  166. // 老师名字样式
  167. .teacher_names {
  168. display: flex;
  169. margin-bottom: 10rpx;
  170. .names {
  171. padding: 6rpx 12rpx;
  172. font-size: 26rpx;
  173. color: #969696;
  174. background: #F8F8F8;
  175. border-radius: 8rpx;
  176. margin-right: 10rpx;
  177. &.nactive {
  178. color: #3F8DFD;
  179. background: #F2F7FF;
  180. }
  181. }
  182. }