index.wxss 886 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .barrage-area {
  2. position: relative;
  3. box-sizing: border-box;
  4. width: 100%;
  5. height: 100%;
  6. pointer-events: auto;
  7. }
  8. .barrage-tunnel {
  9. box-sizing: border-box;
  10. position: relative;
  11. display: flex;
  12. align-items: center;
  13. border-top: 1px dashed #CCB24D;
  14. width: 100%;
  15. }
  16. .tunnel-tips {
  17. display: inline-block;
  18. margin-left: 10px;
  19. color: #CCB24D;
  20. }
  21. .bullet-item {
  22. position: absolute;
  23. display: flex;
  24. align-items: center;
  25. top: 0;
  26. left: 100%;
  27. white-space: nowrap;
  28. }
  29. .bullet-item.paused {
  30. background: #000;
  31. opacity: 0.6;
  32. padding: 0 10px;
  33. z-index: 1001;
  34. }
  35. .bullet-item_img {
  36. max-height: 100%;
  37. display: inline-block;
  38. }
  39. .bullet-item_text {
  40. display: inline-block;
  41. margin: 0;
  42. }
  43. .bullet-move {
  44. animation: 0s linear slidein
  45. }
  46. @keyframes slidein {
  47. 0% {
  48. transform: translate3d(0, 0, 0)
  49. }
  50. 100% {
  51. transform: translate3d(-2000px, 0, 0)
  52. }
  53. }