preview.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* compontents/lesson_list/lessonList.wxss */
  2. .material {
  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: 36rpx;
  28. font-weight: 600;
  29. }
  30. .lesson-name text:nth-child(2) {
  31. height: 30rpx;
  32. margin-top: 10rpx;
  33. font-size: 28rpx;
  34. color: #bebebe;
  35. }
  36. /* 预览图片 */
  37. .material-con {
  38. margin: 0 0 68rpx 10rpx;
  39. padding: 0 25rpx;
  40. overflow: hidden;
  41. }
  42. .art-img {
  43. display: flex;
  44. justify-content: space-between;
  45. margin-left: 53rpx;
  46. font-size: 28rpx;
  47. color: #303030;
  48. margin-top: 30rpx;
  49. }
  50. .unfold {
  51. position: absolute;
  52. right: 28rpx;
  53. bottom: 24rpx;
  54. font-size: 28rpx;
  55. line-height: 28rpx;
  56. height: 28rpx;
  57. color: #93AAFA;
  58. }
  59. .dirImg{
  60. width: 16rpx;
  61. height: 9rpx;
  62. position: absolute;
  63. top: 50%;
  64. left: -20rpx;
  65. margin-top: -5rpx;
  66. }