update.scss 490 B

1234567891011121314151617181920212223242526
  1. .footer {
  2. display: flex;
  3. justify-content: center;
  4. padding: 0 30rpx;
  5. position: fixed;
  6. width: 100vw;
  7. height: 130rpx;
  8. background: #FFFFFF;
  9. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  10. bottom: 0;
  11. box-sizing: border-box;
  12. z-index: 9999;
  13. padding-top: 10rpx;
  14. .but {
  15. width: 690rpx;
  16. height: 90rpx;
  17. background: var(--warning);
  18. border-radius: 16rpx;
  19. font-size: 28rpx;
  20. font-family: PingFang SC-Bold, PingFang SC;
  21. font-weight: bold;
  22. color: #fff;
  23. }
  24. }