addSetclientOffer.scss 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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: 9999999999;
  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. .box {
  25. width: 100vw;
  26. box-sizing: border-box;
  27. margin-top: 20rpx;
  28. background-color: #fff;
  29. .content {
  30. border-radius: 8rpx;
  31. padding: 0 30rpx;
  32. box-sizing: border-box;
  33. .upload {
  34. display: flex;
  35. align-items: center;
  36. width: 100%;
  37. height: 88rpx;
  38. box-sizing: border-box;
  39. .title {
  40. flex: 1;
  41. font-size: 28rpx;
  42. font-family: PingFang SC-Regular, PingFang SC;
  43. color: #333333;
  44. font-weight: bold;
  45. }
  46. navigator {
  47. width: 100rpx;
  48. height: 80rpx;
  49. line-height: 80rpx;
  50. text-align: center;
  51. padding: 0;
  52. }
  53. }
  54. }
  55. }