curriculum.wxss 1003 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* compontents/curriculum/curriculum.wxss */
  2. .record {
  3. width:100%;
  4. margin:20rpx 0;
  5. border-radius:25rpx;
  6. padding: 28rpx 28rpx 61rpx 28rpx;
  7. box-sizing:border-box;
  8. background:#fff;
  9. position: relative;
  10. }
  11. .record_con {
  12. overflow: hidden;
  13. }
  14. .record_title {
  15. display: flex;
  16. justify-content: space-between;
  17. align-items: center;
  18. }
  19. .record_title text:nth-child(1) {
  20. font-size: 36rpx;
  21. font-weight: 600;
  22. }
  23. .record_title text:nth-child(2) {
  24. font-size: 28rpx;
  25. color: #878787;
  26. }
  27. .record_list {
  28. display: flex;
  29. justify-content: space-between;
  30. align-items: center;
  31. height:32rpx;
  32. margin-top:24rpx;
  33. }
  34. .record_list text {
  35. color: #444;
  36. font-size: 28rpx;
  37. }
  38. .unfold {
  39. position: absolute;
  40. right: 28rpx;
  41. bottom: 24rpx;
  42. font-size: 28rpx;
  43. line-height: 28rpx;
  44. height: 28rpx;
  45. color: #93AAFA;
  46. }
  47. .dirImg{
  48. width: 16rpx;
  49. height: 9rpx;
  50. position: absolute;
  51. top: 50%;
  52. left: -20rpx;
  53. margin-top: -5rpx;
  54. }