insert.scss 822 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .new-footer {
  2. display: flex;
  3. align-items: center;
  4. justify-content: flex-end;
  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. z-index: 9999;
  12. .new-submit {
  13. width: 156rpx;
  14. height: 90rpx;
  15. background: #3874F6;
  16. border-radius: 8rpx;
  17. font-size: 28rpx;
  18. font-family: PingFang SC-Bold, PingFang SC;
  19. font-weight: bold;
  20. color: #FFFFFF;
  21. margin-right: 30rpx;
  22. }
  23. }
  24. .info {
  25. height: 48rpx;
  26. text-align: center;
  27. line-height: 48rpx;
  28. background: #E7EEFF;
  29. border-radius: 8rpx;
  30. font-size: 24rpx;
  31. font-family: PingFang SC-Bold, PingFang SC;
  32. font-weight: bold;
  33. color: #3874F6;
  34. padding: 0 10rpx;
  35. }