target.wxss 982 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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: 120rpx;
  17. display: -webkit-box;
  18. font-size: 28rpx;
  19. margin-top: 28rpx;
  20. line-height: 40rpx;
  21. word-break: break-all;
  22. -webkit-box-orient: vertical;
  23. -webkit-line-clamp: 4;
  24. overflow: hidden;
  25. text-overflow:ellipsis;
  26. }
  27. .target-txt-show {
  28. height: 200rpx;
  29. font-size: 28rpx;
  30. margin-top: 28rpx;
  31. line-height: 40rpx;
  32. word-break: break-all;
  33. }
  34. .week {
  35. margin-left: 92rpx;
  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. }