detail.scss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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: 140rpx;
  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. .course_items {
  90. width: 100%;
  91. padding: 24rpx 0rpx 20rpx;
  92. display: flex;
  93. align-items: center;
  94. justify-content: space-between;
  95. border-bottom: 2rpx solid #F0F0F0;
  96. .course_lefts {
  97. width: 510rpx;
  98. }
  99. .course_title {
  100. font-size: 28rpx;
  101. font-weight: 500;
  102. color: #303030;
  103. }
  104. .course_pros {
  105. font-size: 22rpx;
  106. color: #969696;
  107. margin-top: 16rpx;
  108. >text {
  109. color: #4B4B4B;
  110. }
  111. }
  112. .course_rights {
  113. display: flex;
  114. flex-direction: column;
  115. align-items: center;
  116. .cicles {
  117. width: 32rpx;
  118. height: 32rpx;
  119. line-height: 26rpx;
  120. text-align: center;
  121. border-radius: 50%;
  122. background-color: #D5E4FF;
  123. }
  124. .intoStudy {
  125. font-size: 22rpx;
  126. color: #498AFE;
  127. margin-top: 16rpx;
  128. }
  129. }
  130. }
  131. }