pushArticle.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /* pages/pushArticle/pushArticle.wxss */
  2. .input-view{
  3. width: 670rpx;
  4. height: auto;
  5. padding: 40rpx 40rpx 96rpx;
  6. }
  7. .input-view>textarea:nth-child(1){
  8. width: 670rpx;
  9. height: 144rpx;
  10. font-size: 16px;
  11. font-family: PingFangSC-Regular, PingFang SC;
  12. font-weight: 400;
  13. color: rgba(0,0,0,0.87);
  14. line-height: 48rpx;
  15. }
  16. .img-box{
  17. width: 710rpx;
  18. height: auto;
  19. display: flex;
  20. flex-flow: row wrap;
  21. padding: 0 0 96rpx 40rpx;
  22. }
  23. .img-view{
  24. width: 216rpx;
  25. height: 216rpx;
  26. margin-right: 12rpx;
  27. margin-bottom: 12rpx;
  28. position: relative;
  29. }
  30. .img-view>image:nth-child(1){
  31. width: 216rpx;
  32. height: 216rpx;
  33. border-radius: 4px;
  34. }
  35. .img-view>image:nth-child(2){
  36. width: 32rpx;
  37. height: 32rpx;
  38. position: absolute;
  39. top: -8rpx;
  40. right: -8rpx;
  41. }
  42. .img-upload{
  43. width: 216rpx;
  44. height: 216rpx;
  45. margin-right: 12rpx;
  46. margin-bottom: 12rpx;
  47. display: flex;
  48. background-color: #F5F6F9;
  49. }
  50. .img-upload>image{
  51. width: 80rpx;
  52. height: 80rpx;
  53. margin: auto;
  54. }
  55. .tag-box{
  56. display: flex;
  57. flex-direction: row;
  58. width: 750rpx;
  59. height: 112rpx;
  60. display: flex;
  61. flex-direction: row;
  62. align-items: center;
  63. }
  64. .tag-box>image:nth-child(1){
  65. width: 48rpx;
  66. height: 48rpx;
  67. margin: auto 24rpx auto 40rpx;
  68. }
  69. .tag-box>text:nth-child(2){
  70. width: auto;
  71. height: 48rpx;
  72. font-size: 34rpx;
  73. font-family: PingFangSC-Regular, PingFang SC;
  74. font-weight: 400;
  75. color: rgba(0,0,0,0.87);
  76. line-height: 48rpx;
  77. margin-right: auto;
  78. }
  79. .tag-box>text:nth-child(3){
  80. width: auto;
  81. height: 44rpx;
  82. font-size: 30rpx;
  83. font-family: PingFangSC-Regular, PingFang SC;
  84. font-weight: 400;
  85. color: rgba(0,0,0,0.28);
  86. line-height: 44rpx;
  87. margin-left: auto;
  88. }
  89. .tag-box>image:nth-child(4){
  90. width: 48rpx;
  91. height: 48rpx;
  92. margin: auto 40rpx auto 8rpx;
  93. }
  94. .tag-box>switch{
  95. width: 102rpx;
  96. height: 62rpx;
  97. color: #FF5700;
  98. margin: auto 40rpx auto auto;
  99. }
  100. .tags-list{
  101. width: 686rpx;
  102. height: auto;
  103. display: flex;
  104. flex-flow: row wrap;
  105. padding: 0 24rpx 24rpx 40rpx;
  106. display: flex;
  107. }
  108. .tags-list>text{
  109. width: auto;
  110. height: 64rpx;
  111. border-radius: 16px;
  112. border: 1px solid rgba(0,0,0,0.08);
  113. font-size: 26rpx;
  114. font-family: SFProText-Regular, SFProText;
  115. font-weight: 400;
  116. color: rgba(0,0,0,0.6);
  117. line-height: 64rpx;
  118. padding: 0 24rpx;
  119. margin-right: 16rpx;
  120. margin-bottom: 16rpx;
  121. }
  122. .submit-view{
  123. width: 750rpx;
  124. height: auto;
  125. display: flex;
  126. /* margin-top: 120rpx; */
  127. padding-bottom: env(safe-area-inset-bottom);
  128. }
  129. .submit-view>text{
  130. width: 686rpx;
  131. height: 90rpx;
  132. background: rgba(0,0,0,0.87);
  133. border-radius: 23px;
  134. font-size: 34rpx;
  135. font-family: PingFangSC-Medium, PingFang SC;
  136. font-weight: 500;
  137. color: #FFFFFF;
  138. line-height: 90rpx;
  139. letter-spacing: 1px;
  140. text-align: center;
  141. margin: 32rpx;
  142. }