add.scss 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. .item {
  2. width: 100vw;
  3. box-sizing: border-box;
  4. padding: 20rpx 30rpx;
  5. font-size: 24rpx;
  6. font-family: PingFang SC-Regular, PingFang SC;
  7. color: #666666;
  8. border-bottom: 2rpx solid #DDDDDD;
  9. background: #fff;
  10. .title {
  11. display: flex;
  12. .name {
  13. flex: 1;
  14. }
  15. }
  16. .remarks{
  17. margin-top: 20rpx;
  18. }
  19. }
  20. .box {
  21. width: 100vw;
  22. box-sizing: border-box;
  23. background-color: #fff;
  24. padding-top: 20rpx;
  25. margin-top: 20rpx;
  26. .title {
  27. font-size: 28rpx;
  28. font-family: PingFang SC-Regular, PingFang SC;
  29. color: #333333;
  30. padding-left: 30rpx;
  31. }
  32. .content {
  33. width: 690rpx;
  34. border-radius: 8rpx;
  35. border: 2rpx solid #CCCCCC;
  36. margin-top: 20rpx;
  37. box-sizing: border-box;
  38. padding-bottom: 20rpx;
  39. margin-left: 30rpx;
  40. margin-bottom: 20rpx;
  41. .textarea {
  42. width: 625rpx;
  43. height: 130rpx;
  44. margin: 20rpx 0 20rpx 30rpx;
  45. }
  46. .upload {
  47. display: flex;
  48. align-items: center;
  49. width: 100%;
  50. height: 88rpx;
  51. box-sizing: border-box;
  52. border-bottom: 2rpx solid #CCCCCC;
  53. border-top: 2rpx solid #CCCCCC;
  54. background-color: #F4F5F7;
  55. navigator {
  56. width: 100rpx;
  57. height: 80rpx;
  58. line-height: 80rpx;
  59. text-align: center;
  60. padding: 0;
  61. background-color: #F4F5F7;
  62. }
  63. }
  64. .title {
  65. margin: 20rpx 0 0 0;
  66. }
  67. }
  68. }
  69. .footer {
  70. display: flex;
  71. align-items: center;
  72. justify-content: flex-end;
  73. position: fixed;
  74. width: 750rpx;
  75. height: 130rpx;
  76. background: #FFFFFF;
  77. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  78. bottom: 0;
  79. .but {
  80. width: 156rpx;
  81. height: 90rpx;
  82. background: #FA8C16;
  83. border-radius: 8rpx;
  84. font-size: 28rpx;
  85. font-family: PingFang SC-Bold, PingFang SC;
  86. font-weight: bold;
  87. color: #FFFFFF;
  88. margin-right: 30rpx;
  89. }
  90. }