addProjectOffer.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .new-footer {
  2. display: flex;
  3. justify-content: flex-end;
  4. position: fixed;
  5. width: 100vw;
  6. height: 130rpx;
  7. background: #FFFFFF;
  8. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  9. bottom: 0;
  10. z-index: 9999999999;
  11. .new-submit {
  12. width: 156rpx;
  13. height: 90rpx;
  14. background: #3874F6;
  15. border-radius: 8rpx;
  16. font-size: 28rpx;
  17. font-family: PingFang SC-Bold, PingFang SC;
  18. font-weight: bold;
  19. color: #FFFFFF;
  20. margin-right: 30rpx;
  21. margin-top: 10rpx;
  22. }
  23. .orange{
  24. background-color: #F29C37;
  25. }
  26. }
  27. .box {
  28. width: 100vw;
  29. box-sizing: border-box;
  30. margin-top: 20rpx;
  31. background-color: #fff;
  32. .content {
  33. border-radius: 8rpx;
  34. padding: 0 30rpx;
  35. box-sizing: border-box;
  36. .upload {
  37. display: flex;
  38. align-items: center;
  39. width: 100%;
  40. height: 88rpx;
  41. box-sizing: border-box;
  42. .title {
  43. flex: 1;
  44. font-size: 28rpx;
  45. font-family: PingFang SC-Regular, PingFang SC;
  46. color: #333333;
  47. font-weight: bold;
  48. }
  49. navigator {
  50. width: 100rpx;
  51. height: 80rpx;
  52. line-height: 80rpx;
  53. text-align: center;
  54. padding: 0;
  55. }
  56. }
  57. }
  58. }