index.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. @import '@/assets/css/function';
  2. @import '@/assets/css/theme';
  3. .parking{
  4. background: $parking-icon no-repeat;
  5. background-size: 100% 100%;
  6. height: halfH(378);
  7. color: $statistical-txt;
  8. padding: 0 halfH(22);
  9. overflow: hidden;
  10. .tips{
  11. display: flex;
  12. padding: halfH(20) 0 halfH(12);
  13. align-items: flex-end;
  14. .tips-logo{
  15. width: halfW(56);
  16. }
  17. .tips-desc{
  18. flex: 1;
  19. text-align: right;
  20. font-size: halfH(22);
  21. .tips-desc-unit{
  22. color: #52DCFF;
  23. font-size: halfH(12);
  24. }
  25. }
  26. }
  27. .linst-line{
  28. height: 1px;
  29. background: $communication-line;
  30. }
  31. .list{
  32. // border-top: 1px solid $communication-line;
  33. padding-top: halfH(12);
  34. height: halfH(240);
  35. overflow: hidden;
  36. .list-item{
  37. display: flex;
  38. align-items: center;
  39. padding-bottom: halfH(12);
  40. // animation: bubble 20s linear infinite;
  41. // backface-visibility: hidden;
  42. // animation-fill-mode: forwards;
  43. .list-item-txt{
  44. padding-left: 10px;
  45. font-size: halfH(14);
  46. color: $tag-house-txt;
  47. display: inline-block;
  48. max-width: 80%;
  49. overflow: hidden;
  50. text-overflow: ellipsis;
  51. white-space: nowrap;
  52. }
  53. .list-item-lr{
  54. flex: 1;
  55. text-align: right;
  56. }
  57. }
  58. }
  59. @keyframes bubble {
  60. 0% {
  61. transform: translateY(0);
  62. }
  63. 100% {
  64. transform: translateY(-600px);
  65. }
  66. }
  67. }