floatButton.wxss 702 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* myComponents/floatButton/floatButton.wxss */
  2. @import "/static/iconfont/iconfont.wxss";
  3. .float-btn-container {
  4. position: fixed;
  5. width: 100rpx;
  6. height: 100rpx;
  7. line-height: 100rpx;
  8. margin: auto;
  9. /* top: 280px;
  10. left: 0; */
  11. z-index: 999; /* 确保按钮在其他内容之上 */
  12. overflow: hidden; /* 防止拖动时页面滚动 */
  13. }
  14. .badge{
  15. position: relative;
  16. }
  17. .count{
  18. /* font-size: 12px; */
  19. /* padding: 0 10rpx; */
  20. color: white;
  21. /* background-color: red; */
  22. /* min-width: 18px; */
  23. /* height: 18px; */
  24. text-align: center;
  25. line-height: 18px;
  26. border-radius: 50%;
  27. position:absolute;
  28. left: 16px;
  29. top: 6px;
  30. }
  31. .iconfont{
  32. font-size: 60rpx;
  33. }