addProject.scss 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .project {
  2. width: 100vw;
  3. height: 158rpx;
  4. background-color: #ffffff;
  5. box-sizing: border-box;
  6. padding: 20rpx 30rpx;
  7. border-bottom: 1px solid #ddd;
  8. >view {
  9. font-size: 24rpx;
  10. font-family: PingFang SC-Regular, PingFang SC;
  11. color: #999999;
  12. line-height: 36rpx;
  13. }
  14. .title {
  15. font-size: 28rpx;
  16. font-family: PingFang SC-Regular, PingFang SC;
  17. color: #000000;
  18. margin-bottom: 15rpx;
  19. width: 550rpx;
  20. }
  21. }
  22. .target {
  23. height: 270rpx;
  24. width: 100vw;
  25. background-color: #ffffff;
  26. border-top: 1px solid #ddd;
  27. box-sizing: border-box;
  28. padding-left: 30rpx;
  29. >view {
  30. display: flex;
  31. justify-content: space-between;
  32. align-items: center;
  33. width: 100%;
  34. height: 90rpx;
  35. border-bottom: 1px solid #ddd;
  36. box-sizing: border-box;
  37. padding-right: 30rpx;
  38. font-size: 28rpx;
  39. font-family: PingFang SC-Regular, PingFang SC;
  40. color: #666666;
  41. text {
  42. color: red;
  43. margin-right: 8rpx;
  44. }
  45. input {
  46. text-align: right;
  47. }
  48. }
  49. }
  50. .footer {
  51. position: fixed;
  52. width: 100vw;
  53. height: 130rpx;
  54. display: flex;
  55. justify-content: center;
  56. align-items: center;
  57. bottom: 0;
  58. background-color: #fff;
  59. z-index: 999;
  60. .but {
  61. width: 500rpx;
  62. height: 90rpx;
  63. background: #FA8C16;
  64. border-radius: 100rpx;
  65. font-size: 28rpx;
  66. font-family: PingFang SC-Bold, PingFang SC;
  67. font-weight: bold;
  68. color: #FFFFFF;
  69. }
  70. }