footer.scss 681 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. .footer {
  2. display: flex;
  3. justify-content: center;
  4. position: fixed;
  5. bottom: 0;
  6. width: 100vw;
  7. min-height: 130rpx;
  8. background-color: #fff;
  9. box-shadow: rgba(0, 0, 0, 0.15) 0px 5rpx 15rpx 0px;
  10. z-index: 999999999999999;
  11. .but {
  12. width: 690rpx;
  13. height: 90rpx;
  14. background: #FA8C16;
  15. border-radius: 16rpx;
  16. font-size: 28rpx;
  17. font-weight: 600;
  18. color: #FFFFFF;
  19. margin-top: 10rpx;
  20. }
  21. }
  22. .document-box {
  23. width: 100vw;
  24. box-sizing: border-box;
  25. padding: 20rpx 30rpx;
  26. background-color: #fff;
  27. .document {
  28. word-break: break-all;
  29. white-space: pre-wrap;
  30. font-size: 28rpx;
  31. font-family: PingFang SC-Regular, PingFang SC;
  32. color: #3874F6;
  33. margin-bottom: 20rpx;
  34. }
  35. }