lessonList.wxss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  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. height: 38rpx;
  27. font-size: 32rpx;
  28. font-weight: 600;
  29. }
  30. .lesson-name text:nth-child(2) {
  31. height: 30rpx;
  32. margin-top: 10rpx;
  33. font-size: 24rpx;
  34. color: #C3C3C3;
  35. }
  36. /* 时间轴 */
  37. .timer-shaft {
  38. height: 276rpx;
  39. overflow: hidden;
  40. margin: 0 0 68rpx 10rpx;
  41. padding: 0 25rpx;
  42. }
  43. .art-lesson {
  44. position: relative;
  45. margin-top: 30rpx;
  46. }
  47. .art-con {
  48. display: flex;
  49. justify-content: space-between;
  50. margin-left: 53rpx;
  51. font-size: 28rpx;
  52. color: #444;
  53. }
  54. .graph {
  55. position: absolute;
  56. left: 0;
  57. top: 10rpx;
  58. display: flex;
  59. flex-direction: column;
  60. align-items: center;
  61. }
  62. .yuan {
  63. height: 18rpx;
  64. width: 18rpx;
  65. border-radius: 50%;
  66. }
  67. .long-line {
  68. height: 56rpx;
  69. width: 4rpx;
  70. }
  71. .nocheckyuan {
  72. border: 2rpx solid #878787;
  73. }
  74. .check {
  75. background: #48bdfb;
  76. }
  77. .nocheck {
  78. background: #878787;
  79. }
  80. .none {
  81. display: none;
  82. }
  83. .unfold {
  84. position: absolute;
  85. right: 28rpx;
  86. bottom: 24rpx;
  87. font-size: 28rpx;
  88. color: #93AAFA;
  89. }