index.scss 2.6 KB

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