lessonList.wxss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /* compontents/lesson_list/lessonList.wxss */
  2. .lesson-list {
  3. width: 100%;
  4. margin: 20rpx 0;
  5. border-radius: 25rpx;
  6. padding: 20rpx 0;
  7. box-sizing: border-box;
  8. background: #fff;
  9. position: relative;
  10. }
  11. .this-week {
  12. display: flex;
  13. padding: 0 25rpx;
  14. box-sizing: border-box;
  15. }
  16. .this-week image {
  17. width: 86rpx;
  18. height: 86rpx;
  19. }
  20. .lesson-name {
  21. display: flex;
  22. flex-direction: column;
  23. margin: 8rpx 16rpx;
  24. }
  25. .lesson-name text:nth-child(1) {
  26. font-size: 36rpx;
  27. font-weight: 600;
  28. }
  29. .lesson-name text:nth-child(2) {
  30. height: 30rpx;
  31. margin-top: 6rpx;
  32. font-size: 28rpx;
  33. color: #bebebe;
  34. }
  35. /* 时间轴 */
  36. .timer-shaft {
  37. overflow: hidden;
  38. margin: 0 0 50rpx 10rpx;
  39. padding: 0 25rpx;
  40. }
  41. .art-lesson {
  42. position: relative;
  43. height:40rpx;
  44. margin-top: 24rpx;
  45. }
  46. .art-con {
  47. display: flex;
  48. justify-content: space-between;
  49. margin-left: 53rpx;
  50. font-size: 28rpx;
  51. color: #303030;
  52. }
  53. .art-con text:nth-child(1) {
  54. width: 70%;
  55. overflow:hidden;
  56. white-space:nowrap;
  57. text-overflow:ellipsis;
  58. }
  59. .art-con-color {
  60. display: flex;
  61. justify-content: space-between;
  62. height:40rpx;
  63. margin-left: 53rpx;
  64. font-size: 28rpx;
  65. color: #878787;
  66. }
  67. .art-con-color text:nth-child(1) {
  68. width:70%;
  69. overflow:hidden;
  70. white-space:nowrap;
  71. text-overflow:ellipsis;
  72. }
  73. .graph {
  74. position: absolute;
  75. left: 0;
  76. top: 10rpx;
  77. display: flex;
  78. flex-direction: column;
  79. align-items: center;
  80. }
  81. .yuan {
  82. height: 18rpx;
  83. width: 18rpx;
  84. border-radius: 50%;
  85. }
  86. .long-line {
  87. height: 56rpx;
  88. width: 4rpx;
  89. }
  90. .nocheckyuan {
  91. border: 2rpx solid #878787;
  92. }
  93. .check {
  94. background: #48bdfb;
  95. }
  96. .no-check {
  97. border: 2rpx solid #878787;
  98. }
  99. .nocheck {
  100. background: #878787;
  101. }
  102. .none {
  103. display: none;
  104. }
  105. .unfold {
  106. position: absolute;
  107. right: 28rpx;
  108. top: 60rpx;
  109. font-size: 28rpx;
  110. line-height: 28rpx;
  111. height: 28rpx;
  112. color: #93AAFA;
  113. border: 2rpx solid #93AAFA;
  114. border-radius: 28rpx;
  115. padding: 10rpx 40rpx;
  116. }
  117. .dirImg{
  118. width: 16rpx;
  119. height: 9rpx;
  120. vertical-align: middle;
  121. margin-right: 10rpx;
  122. }