index.scss 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. page {
  2. // background: #ededed;
  3. }
  4. .detailBox{
  5. padding-top: 30rpx;
  6. padding-bottom: 200rpx;
  7. .label1{
  8. font-size: 32rpx;
  9. padding-left: 30rpx;
  10. }
  11. .textArea{
  12. padding:0 30rpx;
  13. padding-top: 30rpx;
  14. // height: 200rpx;
  15. .textarea{
  16. width: 100%;
  17. // height: auto;
  18. height: 200rpx;
  19. }
  20. }
  21. .line{
  22. padding: 0 30rpx;
  23. .lineCon{
  24. height: 4rpx;
  25. border-bottom: 3rpx solid #eee;
  26. }
  27. }
  28. .label2{
  29. font-size: 32rpx;
  30. padding-left: 30rpx;
  31. margin-top: 30rpx;
  32. margin-bottom: 20rpx;
  33. }
  34. .kefuAndBtn{
  35. position: fixed;
  36. bottom: 0;
  37. display: flex;
  38. align-items: center;
  39. background: #fff;
  40. padding: 30rpx;
  41. width: 100%;
  42. z-index: 9999999999999;
  43. .btn{
  44. width: 100%;
  45. background: #26B3A0;
  46. height: 100rpx;
  47. border-radius: 20rpx;
  48. font-size: 30rpx;
  49. display: flex;
  50. align-items: center;
  51. justify-content: center;
  52. color: #fff;
  53. font-weight: 600;
  54. }
  55. }
  56. }
  57. // 图片上传区域
  58. .chooscontainer {
  59. display: flex;
  60. flex-wrap: wrap;
  61. position: relative;
  62. // border-bottom: 1rpx solid #EDEDED;
  63. margin-bottom: 48rpx;
  64. padding: 0 20rpx;
  65. .addpicall {
  66. width: 31%;
  67. margin-right: 6rpx;
  68. margin-left: 6rpx;
  69. margin-top: 15rpx;
  70. position: relative;
  71. z-index: 10;
  72. &:nth-child(3n) {
  73. margin-right: 0;
  74. }
  75. image {
  76. width: 100%;
  77. height: 100%;
  78. border-radius: 8rpx;
  79. }
  80. .del_btn {
  81. position: absolute;
  82. top: 10rpx;
  83. right: 45rpx;
  84. width: 36rpx;
  85. height: 36rpx;
  86. // background: #6C5A44;
  87. border-radius: 18rpx;
  88. // color: #B99874;
  89. background: rgba(0, 0, 0, .41);
  90. color: rgba(255, 255, 255, 1);
  91. display: flex;
  92. justify-content: center;
  93. align-items: center;
  94. }
  95. }
  96. }
  97. .addpic {
  98. display: flex;
  99. justify-content: center;
  100. align-items: center;
  101. width: 210rpx;
  102. height: 210rpx;
  103. .addPicBox{
  104. width: 184rpx;
  105. height:186rpx;
  106. border-radius: 14rpx;
  107. border: 1rpx solid #E6E6E6;
  108. display: flex;
  109. justify-content: center;
  110. align-items: center;
  111. background: #F7F8FA;
  112. image{
  113. width: 40rpx;
  114. height: 40rpx;
  115. }
  116. }
  117. text {
  118. display: block;
  119. padding: 0;
  120. font-size: 60rpx;
  121. }
  122. }
  123. ::v-deep .uni-textarea-textarea {
  124. color: #2C2C2C;
  125. font-size: 30rpx;
  126. }
  127. ::v-deep .uni-input-input {
  128. color: #2C2C2C;
  129. font-size: 28rpx;
  130. }
  131. //封面
  132. .cover {
  133. width: 230rpx;
  134. height: 290rpx;
  135. border-radius: 8rpx;
  136. position: absolute;
  137. display: flex;
  138. justify-content: center;
  139. top: -64rpx;
  140. left: -8rpx;
  141. color: #fff;
  142. background-color: #000;
  143. z-index: 2;
  144. }
  145. // 图片上传区域结束