index.scss 358 B

1234567891011121314151617181920212223242526
  1. .img {
  2. width: 100%;
  3. height: 100%;
  4. }
  5. .type {
  6. padding: 5px;
  7. font-size: 22rpx;
  8. color: #fff;
  9. letter-spacing: 3px;
  10. writing-mode: vertical-lr;
  11. background: #4F7BFD;
  12. border-radius: 3px;
  13. margin-right: 5px;
  14. }
  15. .flex-align-center {
  16. position: relative;
  17. .leader {
  18. position: absolute;
  19. top: -2rpx;
  20. right: 0;
  21. background: blue;
  22. }
  23. }