curveDeviation.scss 856 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .searchBox{
  2. width: 100%;
  3. padding: 20px 0;
  4. }
  5. .chartBox{
  6. width: 100%;
  7. height: 500px;
  8. position: relative;
  9. .chartDom{
  10. width: 100%;
  11. height: 100%;
  12. }
  13. &>.tips{
  14. position: absolute;
  15. width: 100%;
  16. height: 100%;
  17. left: 0;
  18. top: 0;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. font-size: 20px;
  23. }
  24. .cMove{
  25. letter-spacing: 5px;
  26. text-align: center;
  27. background-image: -webkit-linear-gradient(left, #147B96, #E6D205 25%, #147B96 50%, #E6D205 75%, #147B96);
  28. -webkit-text-fill-color: transparent;
  29. -webkit-background-clip: text;
  30. -webkit-background-size: 200% 100%;
  31. -webkit-animation: colorMove 2s infinite linear;
  32. }
  33. @-webkit-keyframes colorMove {
  34. 0% {
  35. background-position: 0 0;
  36. }
  37. 100% {
  38. background-position: -100% 0;
  39. }
  40. }
  41. }