detail.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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: 156rpx;
  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 {
  60. color: #4B4B4B;
  61. font-size: 24rpx;
  62. }
  63. }
  64. .numbers {
  65. color: #4B4B4B;
  66. font-size: 24rpx;
  67. margin-left: 8rpx;
  68. }
  69. // 切换课程弹窗
  70. .popup_box {
  71. width: 100%;
  72. height: 938rpx;
  73. padding: 56rpx 56rpx 0rpx;
  74. .check_head {
  75. height: 140rpx;
  76. border-bottom: 2rpx solid #F0F0F0;
  77. }
  78. .headers {
  79. width: 100%;
  80. display: flex;
  81. align-items: center;
  82. justify-content: space-between;
  83. .grade {
  84. font-size: 40rpx;
  85. font-weight: bold;
  86. color: #222222;
  87. }
  88. }
  89. .coruse_num {
  90. margin-top: 12rpx;
  91. font-size: 28rpx;
  92. color: #222222;
  93. }
  94. .course_items {
  95. width: 100%;
  96. padding: 24rpx 0rpx 20rpx;
  97. display: flex;
  98. align-items: center;
  99. justify-content: space-between;
  100. border-bottom: 2rpx solid #F0F0F0;
  101. .course_lefts {
  102. width: 510rpx;
  103. }
  104. .course_title {
  105. font-size: 28rpx;
  106. font-weight: 500;
  107. color: #303030;
  108. }
  109. .course_pros {
  110. font-size: 22rpx;
  111. color: #969696;
  112. margin-top: 16rpx;
  113. >text {
  114. color: #4B4B4B;
  115. }
  116. }
  117. .course_rights {
  118. display: flex;
  119. flex-direction: column;
  120. align-items: center;
  121. .cicles {
  122. width: 32rpx;
  123. height: 32rpx;
  124. line-height: 26rpx;
  125. text-align: center;
  126. border-radius: 50%;
  127. background-color: #D5E4FF;
  128. }
  129. .intoStudy {
  130. font-size: 22rpx;
  131. color: #498AFE;
  132. margin-top: 16rpx;
  133. }
  134. }
  135. }
  136. }