button-fixed.wxss 538 B

12345678910111213141516171819202122232425262728293031323334
  1. /* 底部固定按钮 */
  2. .button-fixed {
  3. width: 100%;
  4. height: 124rpx;
  5. background: #fff;
  6. display: flex;
  7. align-items: center;
  8. justify-content: center;
  9. position: fixed;
  10. bottom: 0;
  11. left: 0;
  12. }
  13. .button-fixed-content {
  14. width: 690rpx;
  15. height: 88rpx;
  16. color: #fff;
  17. font-size: 34rpx;
  18. border-radius: 10rpx;
  19. display: flex;
  20. align-items: center;
  21. justify-content: center;
  22. position: relative;
  23. }
  24. .button-fixed-content-button {
  25. height: 100%;
  26. width: 100%;
  27. position: absolute;
  28. left: 0;
  29. top: 0;
  30. opacity: 0;
  31. }