index.acss 689 B

12345678910111213141516171819202122232425262728
  1. .ab-fixed-button-container {
  2. position: fixed;
  3. bottom: 0;
  4. left: 0;
  5. z-index: 999;
  6. box-sizing: border-box;
  7. width: 100%;
  8. padding: 24rpx 12rpx;
  9. background-color: #fff;
  10. box-shadow: 0 2px 34px 0 rgba(0, 0, 0, 0.12);
  11. }
  12. .ab-fixed-button-container .safe-container {
  13. display: flex;
  14. justify-content: space-between;
  15. width: 100%;
  16. padding-bottom: calc(env(safe-area-inset-bottom) + 25rpx);
  17. padding-bottom: calc(constant(safe-area-inset-bottom) + 25rpx);
  18. }
  19. .ab-fixed-button-container .safe-container .button-color {
  20. width: 100%;
  21. padding: 24rpx 0;
  22. color: #fff;
  23. font-weight: 400;
  24. font-size: 36rpx;
  25. text-align: center;
  26. background: #1677ff;
  27. border-radius: 49rpx;
  28. }