swiper_message.wxss 435 B

12345678910111213141516171819202122232425262728
  1. /* pages/components/blocks/swiper_message/swiper_message.wxss */
  2. .swiper_container {
  3. height: 50rpx;
  4. width: 100%;
  5. left:0;
  6. top:0px;
  7. position:absolute;
  8. padding-left: 20px;
  9. box-sizing: border-box;
  10. }
  11. .swiper_item {
  12. width: 100%;
  13. font-size: 30rpx;
  14. overflow: hidden;
  15. text-overflow: ellipsis;
  16. white-space: nowrap;
  17. letter-spacing: 2px;
  18. color: white;
  19. }
  20. .important{
  21. color: yellow;
  22. }
  23. .placeholder {
  24. height: 50rpx;
  25. }