12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .ActivityListItem {
  2. width: 100%;
  3. position: relative;
  4. overflow: hidden;
  5. background: #fff;
  6. border-radius: 12px;
  7. > .Img {
  8. width: 100%;
  9. padding-bottom: 56.25%;
  10. position: relative;
  11. overflow: hidden;
  12. background: #ccc;
  13. > image {
  14. width: 100%;
  15. height: 100%;
  16. z-index: 1;
  17. }
  18. }
  19. > .Info {
  20. padding: 0 20px;
  21. position: relative;
  22. overflow: hidden;
  23. align-items: center;
  24. > .flex-item {
  25. position: relative;
  26. overflow: hidden;
  27. margin-right: 20px;
  28. padding: 24px 0;
  29. > text {
  30. display: block;
  31. font-size: 24px;
  32. color: #999;
  33. line-height: 40px;
  34. white-space: nowrap;
  35. overflow: hidden;
  36. text-overflow: ellipsis;
  37. &:first-child {
  38. color: #333;
  39. font-size: 32px;
  40. font-weight: bold;
  41. margin-bottom: 10px;
  42. }
  43. }
  44. }
  45. > text {
  46. font-size: 30px;
  47. color: #333;
  48. line-height: 60px;
  49. padding: 0 30px;
  50. border-radius: 60px;
  51. background: #ccc;
  52. &.active {
  53. color: #f35844;
  54. background: rgba(243, 88, 68, 0.3);
  55. }
  56. }
  57. }
  58. }