overseasCell.wxss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /* components/overseas/overseas.wxss */
  2. .overseas-card {
  3. width: 320rpx;
  4. margin-bottom: 38rpx;
  5. overflow: hidden;
  6. }
  7. .ov-img-wrap {
  8. position: relative;
  9. width: 100%;
  10. height: 240rpx;
  11. border-radius: 4rpx;
  12. overflow: hidden;
  13. }
  14. .ov-img {
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .overseas-card .video-tag {
  19. position: absolute;
  20. display: flex;
  21. align-items: center;
  22. right: 16rpx;
  23. bottom: 16rpx;
  24. padding: 10rpx 16rpx;
  25. background: rgba(0, 0, 0, 0.5);
  26. border-radius: 4px;
  27. }
  28. .video-tag .icon {
  29. width: 18rpx;
  30. height: 20rpx;
  31. margin-right: 10rpx;
  32. }
  33. .video-tag .time {
  34. font-size: 26rpx;
  35. font-family: PingFangSC-Regular, PingFang SC;
  36. font-weight: 400;
  37. color: rgba(255, 255, 255, 1);
  38. }
  39. .ov-title {
  40. font-size: 28rpx;
  41. font-family: PingFangSC-Regular, PingFang SC;
  42. font-weight: 400;
  43. color: rgba(34, 34, 34, 1);
  44. margin-top: 20rpx;
  45. }
  46. .twoline {
  47. overflow: hidden;
  48. text-overflow: ellipsis;
  49. display: -webkit-box;
  50. -webkit-box-orient: vertical;
  51. -webkit-line-clamp: 2;
  52. }