index.less 364 B

12345678910111213141516171819202122
  1. .messageNoticebar{
  2. box-shadow: 1px 1px 14px -1px #767272;
  3. position: fixed;
  4. left: 0;
  5. right: 0;
  6. top: 0;
  7. z-index: 99999;
  8. opacity:0;
  9. background: #FCF6ED;
  10. .content{
  11. display: flex;
  12. flex-flow: row nowrap;
  13. align-items: center;
  14. position: relative;
  15. .noticebar{
  16. position: absolute;
  17. z-index: 1;
  18. right: 20px;
  19. }
  20. }
  21. }