index.scss 603 B

1234567891011121314151617181920212223242526272829303132333435
  1. .page{
  2. padding-bottom: 160rpx;
  3. }
  4. .con{
  5. padding: 32rpx;
  6. }
  7. .btnBox{
  8. height: 160rpx;
  9. background: #FFFFFF;
  10. box-shadow: 0rpx 0rpx 8rpx 0rpx rgba(0,0,0,0.16);
  11. position: fixed;
  12. bottom: 0;
  13. width: calc(100% - 64rpx);
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. padding: 0 32rpx;
  18. .rBtn{
  19. width: 100%;
  20. height: 96rpx;
  21. background: #333333;
  22. border-radius: 4rpx;
  23. border: 2rpx solid #333333;
  24. display: flex;
  25. justify-content: center;
  26. align-items: center;
  27. font-size: 32rpx;
  28. font-family: PingFang-SC-Medium, PingFang-SC;
  29. font-weight: 500;
  30. color: #FFFFFF;
  31. }
  32. }