index.wxss 378 B

12345678910111213141516171819202122
  1. .wux-sticky-item {
  2. position: relative;
  3. font-size: 28rpx
  4. }
  5. .wux-sticky-item__hd {
  6. background: #d9d9d9;
  7. width: 100%;
  8. height: 64rpx;
  9. line-height: 64rpx
  10. }
  11. .wux-sticky-item__title {
  12. width: 100%;
  13. padding: 0 30rpx;
  14. box-sizing: border-box;
  15. background: #d9d9d9
  16. }
  17. .wux-sticky-item--fixed .wux-sticky-item__title {
  18. position: fixed;
  19. left: 0;
  20. top: 0;
  21. z-index: 2
  22. }