index.css 627 B

1234567891011121314151617181920212223242526
  1. .data-list .item .images {
  2. width: 265rpx;
  3. height: 265rpx !important;
  4. }
  5. .data-list .item .base-right {
  6. width: calc(100% - 285rpx);
  7. }
  8. .data-list .item .base-right .discount-icon {
  9. border-top-right-radius: 30rpx;
  10. border-bottom-left-radius: 30rpx;
  11. background-image: linear-gradient(45deg,#a3f9a3,#248828,#8bc34a,#d2374c,#9c27b0);
  12. background-size: 400%;
  13. animation: gradient 5s ease infinite;
  14. padding: 0 16rpx;
  15. }
  16. @keyframes gradient {
  17. 0% {
  18. background-position: 0% 50%;
  19. }
  20. 50% {
  21. background-position: 100% 50%;
  22. }
  23. 100% {
  24. background-position: 0% 50%;
  25. }
  26. }