target.wxss 1002 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* compontents/target/target.wxss */
  2. .target {
  3. width: 100%;
  4. margin: 20rpx 0;
  5. border-radius: 25rpx;
  6. padding: 28rpx 24rpx 61rpx 24rpx;
  7. box-sizing: border-box;
  8. background: #fff;
  9. position: relative;
  10. }
  11. .title {
  12. font-size: 36rpx;
  13. font-weight: 600;
  14. }
  15. .target-txt {
  16. height: 140rpx;
  17. display: -webkit-box;
  18. font-size: 28rpx;
  19. margin-top: 15rpx;
  20. line-height: 48rpx;
  21. word-break: break-all;
  22. -webkit-box-orient: vertical;
  23. -webkit-line-clamp: 4;
  24. overflow: hidden;
  25. text-overflow:ellipsis;
  26. color: #303030;
  27. }
  28. .target-txt-show {
  29. height: 200rpx;
  30. font-size: 28rpx;
  31. margin-top: 15rpx;
  32. line-height: 48rpx;
  33. word-break: break-all;
  34. }
  35. .week {
  36. margin-left: 92rpx;
  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: #5984f7;
  46. }
  47. .dirImg{
  48. width: 16rpx;
  49. height: 9rpx;
  50. position: absolute;
  51. top: 50%;
  52. left: -20rpx;
  53. margin-top: -5rpx;
  54. }