img-box.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. @import "../../../../icon.wxss";
  2. .img-box {
  3. position: relative;
  4. width: 100%;
  5. margin-bottom: 20rpx;
  6. background: #fff;
  7. border-radius: 10rpx;
  8. overflow: hidden;
  9. box-shadow: 0 0 3px #ccc;
  10. }
  11. .img-box .img {
  12. display: block;
  13. width: 100%;
  14. border-radius: 10rpx 10rpx 0 0;
  15. overflow: hidden;
  16. }
  17. .img-box .play {
  18. position: absolute;
  19. font-size: 42rpx;
  20. right: 10rpx;
  21. top: 10rpx;
  22. color: rgba(0, 0, 0, .6);
  23. z-index: 10;
  24. }
  25. .img-box .title {
  26. font-size: 28rpx;
  27. font-weight: bold;
  28. line-height: 1.4;
  29. margin-bottom: 15rpx;
  30. display: -webkit-box;
  31. -webkit-box-orient: vertical;
  32. -webkit-line-clamp: 2;
  33. overflow: hidden;
  34. word-break: break-all;
  35. }
  36. .img-box .cont {
  37. padding: 20rpx;
  38. }
  39. .img-box .user {
  40. display: flex;
  41. align-items: center;
  42. color: #666;
  43. font-size: 22rpx;
  44. }
  45. .img-box .user .avatar {
  46. width: 40rpx;
  47. height: 40rpx;
  48. border-radius: 50%;
  49. margin-right: 10rpx;
  50. }
  51. .img-box .user .nickname {
  52. max-width: 130rpx;
  53. overflow: hidden;
  54. text-overflow: ellipsis;
  55. white-space: nowrap;
  56. }
  57. .img-box .user .iconfont {
  58. margin-right: 5rpx;
  59. color: #999;
  60. font-size: 34rpx;
  61. transition: all 200ms ease-in;
  62. }
  63. .img-box .user .iconfont.active {
  64. color: #ff5344;
  65. }