index.scss 469 B

123456789101112131415161718192021222324
  1. .float-box {
  2. position: fixed;
  3. }
  4. .circle-box {
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. width: 160rpx;
  9. height: 160rpx;
  10. transform: translate(-50%, -50%);
  11. .circle {
  12. background-color: #1060E3;
  13. width: 130rpx;
  14. height: 130rpx;
  15. text-align: center;
  16. line-height: 120rpx;
  17. border-radius: 50%;
  18. color: #fff;
  19. font-size: 90rpx;
  20. box-sizing: border-box;
  21. }
  22. }