index.wxss 466 B

123456789101112131415161718192021222324
  1. .zan-badge {
  2. position: relative;
  3. }
  4. .zan-badge__count {
  5. position: absolute;
  6. top: -8px;
  7. right: 0px;
  8. height: 1.6em;
  9. min-width: 1.6em;
  10. line-height: 1.6;
  11. padding: 0 .4em;
  12. font-size: 10px;
  13. font-family: tahoma;
  14. border-radius: .8em;
  15. background: #FF4444;
  16. color: #fff;
  17. text-align: center;
  18. white-space: nowrap;
  19. transform: translateX(50%);
  20. transform-origin: -10% center;
  21. z-index: 10;
  22. box-shadow: 0 0 0 1px #fff;
  23. box-sizing: border-box;
  24. }