create.scss 611 B

123456789101112131415161718192021222324252627282930313233
  1. .container {
  2. background-color: #f5f5f5;
  3. min-height: 100vh;
  4. }
  5. .new-footer {
  6. display: flex;
  7. align-items: center;
  8. justify-content: flex-end;
  9. position: fixed;
  10. width: 100vw;
  11. height: 130rpx;
  12. background: #FFFFFF;
  13. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  14. bottom: 0;
  15. z-index: 9999;
  16. .new-submit {
  17. width: 156rpx;
  18. height: 90rpx;
  19. background: #3874F6;
  20. border-radius: 8rpx;
  21. font-size: 28rpx;
  22. font-family: PingFang SC-Bold, PingFang SC;
  23. font-weight: bold;
  24. color: #FFFFFF;
  25. margin-right: 30rpx;
  26. }
  27. .van-button {
  28. margin-right: 20rpx;
  29. }
  30. }