curriculum.wxss 986 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* compontents/curriculum/curriculum.wxss */
  2. .record {
  3. width:100%;
  4. margin:20rpx 0;
  5. border-radius:25rpx;
  6. padding: 28rpx 28rpx 81rpx 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. margin-top: 30rpx;
  32. }
  33. .record_list text {
  34. color: #444;
  35. font-size: 28rpx;
  36. }
  37. .unfold {
  38. position: absolute;
  39. right: 28rpx;
  40. bottom: 24rpx;
  41. font-size: 28rpx;
  42. line-height: 28rpx;
  43. height: 28rpx;
  44. color: #93AAFA;
  45. }
  46. .dirImg{
  47. width: 16rpx;
  48. height: 9rpx;
  49. position: absolute;
  50. top: 50%;
  51. left: -20rpx;
  52. margin-top: -5rpx;
  53. }