index.wxss 793 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .wux-notice-bar {
  2. background-color: #fefcec;
  3. height: 72rpx;
  4. overflow: hidden;
  5. font-size: 28rpx;
  6. line-height: 72rpx;
  7. color: #f76a24;
  8. display: flex;
  9. padding: 0 20rpx
  10. }
  11. .wux-notice-bar__icon {
  12. width: 30rpx;
  13. height: 30rpx;
  14. margin-right: 20rpx
  15. }
  16. .wux-notice-bar__action {
  17. width: 30rpx;
  18. height: 30rpx;
  19. margin-left: 20rpx
  20. }
  21. .wux-notice-bar__hd {
  22. display: flex;
  23. align-items: center
  24. }
  25. .wux-notice-bar__bd {
  26. flex: 1;
  27. width: 100%;
  28. width: auto;
  29. overflow: hidden;
  30. text-overflow: ellipsis;
  31. white-space: nowrap
  32. }
  33. .wux-notice-bar__marquee-container {
  34. overflow: hidden
  35. }
  36. .wux-notice-bar__marquee {
  37. position: relative;
  38. transform: translate3d(0,0,0);
  39. white-space: nowrap;
  40. display: inline-block
  41. }
  42. .wux-notice-bar__ft {
  43. display: flex;
  44. align-items: center
  45. }