index.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  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. margin-top: 20rpx;
  41. .title {
  42. font-size: 28rpx;
  43. font-family: PingFang SC-Regular, PingFang SC;
  44. color: #333333;
  45. padding-left: 30rpx;
  46. }
  47. .content {
  48. width: 690rpx;
  49. border-radius: 8rpx;
  50. border: 2rpx solid #CCCCCC;
  51. margin-top: 20rpx;
  52. box-sizing: border-box;
  53. padding-bottom: 20rpx;
  54. margin-left: 30rpx;
  55. margin-bottom: 20rpx;
  56. .textarea {
  57. width: 625rpx;
  58. height: 130rpx;
  59. margin: 20rpx 0 20rpx 30rpx;
  60. }
  61. .upload {
  62. display: flex;
  63. align-items: center;
  64. width: 100%;
  65. height: 88rpx;
  66. box-sizing: border-box;
  67. border-bottom: 2rpx solid #CCCCCC;
  68. border-top: 2rpx solid #CCCCCC;
  69. background-color: #F4F5F7;
  70. navigator {
  71. width: 100rpx;
  72. height: 80rpx;
  73. line-height: 80rpx;
  74. text-align: center;
  75. padding: 0;
  76. background-color: #F4F5F7;
  77. }
  78. }
  79. .title {
  80. margin: 20rpx 0 0 0;
  81. }
  82. }
  83. }
  84. .footer {
  85. display: flex;
  86. align-items: center;
  87. justify-content: flex-end;
  88. position: fixed;
  89. width: 750rpx;
  90. height: 130rpx;
  91. background: #FFFFFF;
  92. box-shadow: 0px -4rpx 16rpx 2rpx rgba(150, 157, 165, 0.16);
  93. bottom: 0;
  94. .but {
  95. width: 156rpx;
  96. height: 90rpx;
  97. background: #3874F6;
  98. border-radius: 8rpx;
  99. font-size: 28rpx;
  100. font-family: PingFang SC-Bold, PingFang SC;
  101. font-weight: bold;
  102. color: #FFFFFF;
  103. margin-right: 30rpx;
  104. }
  105. }