index.scss 3.5 KB

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