index.less 833 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .atphoto-list {
  2. display: flex;
  3. flex-wrap: wrap;
  4. padding: 20rpx;
  5. }
  6. .atphoto-item {
  7. margin: 10rpx;
  8. width: calc(50% - 20rpx);
  9. aspect-ratio: 4 / 3;
  10. overflow: hidden;
  11. display: flex;
  12. align-items: center;
  13. border-radius: 8rpx;
  14. display: flex;
  15. animation: goshow 0.3s forwards;
  16. transform: translateY(-10px);
  17. opacity: 0;
  18. &.cate {
  19. padding-bottom: 40rpx;
  20. flex-direction: column;
  21. align-items: stretch;
  22. justify-content: center;
  23. position: relative;
  24. .floatname {
  25. position: absolute;
  26. bottom: 0;
  27. left: 0;
  28. right: 0;
  29. text-align: center;
  30. font-size: 26rpx;
  31. }
  32. }
  33. t-image {
  34. flex: 1;
  35. }
  36. .caseimage {
  37. width: 100%;
  38. height: 100%;
  39. }
  40. }
  41. @keyframes goshow {
  42. 0% {
  43. opacity: 0;
  44. }
  45. 100% {
  46. opacity: 1;
  47. transform: translateY(0);
  48. }
  49. }