pub.wxss 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. .cell {
  2. position: relative;
  3. display: flex;
  4. justify-content: space-between;
  5. background-color: #fff;
  6. padding: 30rpx;
  7. }
  8. .cell::after {
  9. content: "";
  10. position: absolute;
  11. left: 0;
  12. bottom: 0;
  13. right: 0;
  14. border-bottom: 1px solid #e5e5e5;
  15. transform-origin: 0 0;
  16. transform: scaleY(0.5);
  17. }
  18. .cell-hd,
  19. .tit {
  20. color: #000;
  21. }
  22. .cell-bd {
  23. flex: 1;
  24. }
  25. .cell-col {
  26. position: relative;
  27. background-color: #fff;
  28. padding: 20rpx 30rpx;
  29. }
  30. .cell-col .tit {
  31. margin-bottom: 20rpx;
  32. }
  33. .cell-col::after {
  34. content: "";
  35. position: absolute;
  36. left: 0;
  37. bottom: 0;
  38. right: 0;
  39. border-bottom: 1px solid #e5e5e5;
  40. transform-origin: 0 0;
  41. transform: scaleY(0.5);
  42. }
  43. .image_uploader_selector {
  44. width: 56px;
  45. height: 56px;
  46. border: 1px dashed #ccc;
  47. display: inline-block;
  48. }
  49. .image_uploader_indicate {
  50. position: absolute;
  51. font-size: 32px;
  52. color: #ccc;
  53. width: 56px;
  54. height: 56px;
  55. line-height: 52px;
  56. text-align: center;
  57. }
  58. .cell-ipt {
  59. text-align: right;
  60. }
  61. .cell-textarea {
  62. width: 100%;
  63. padding-bottom: 40rpx;
  64. }
  65. .wordLimit {
  66. position: absolute;
  67. right: 30rpx;
  68. bottom: 20rpx;
  69. }
  70. .image_uploader_image {
  71. position: relative;
  72. display: inline-block;
  73. width: 56px;
  74. height: 56px;
  75. border: 1px dashed #e6e6e6;
  76. padding: 1px;
  77. box-sizing: border-box;
  78. margin-right: 12px;
  79. }
  80. .image_uploader_image image {
  81. width: 52px;
  82. height: auto;
  83. max-width: 52px;
  84. max-height: 52px;
  85. overflow: hidden;
  86. margin: auto;
  87. position: absolute;
  88. top: 0;
  89. left: 0;
  90. bottom: 0;
  91. right: 0;
  92. }
  93. .image_uploader_image .image_uploader_image_img_portrait {
  94. width: auto !important;
  95. height: 52px !important;
  96. }
  97. .image_uploader_image .image_uploader_image_delete {
  98. border-radius: 50%;
  99. -webkit-border-radius: 50%;
  100. position: absolute;
  101. right: -8px;
  102. top: -8px;
  103. background-color: #ff2742;
  104. line-height: 20px;
  105. height: 20px;
  106. width: 20px;
  107. text-align: center;
  108. color: #fff;
  109. font-size: 14px;
  110. font-weight: bold;
  111. }
  112. .submit_button {
  113. height: 70rpx;
  114. line-height: 70rpx;
  115. top: 10px;
  116. position: relative;
  117. border-top: 1px solid #eee;
  118. text-align: center;
  119. margin: 15px 30rpx 30px;
  120. }
  121. .submit_button .span {
  122. padding: 5px 20px;
  123. font-size: 15px;
  124. color: #fff;
  125. background-color: #F75451;
  126. position: relative;
  127. text-align: center;
  128. border-radius: 5px;
  129. }
  130. .addBtn {
  131. display: inline-block;
  132. color: #fff;
  133. padding: 4px 15rpx;
  134. border-radius: 8rpx;
  135. background: #F75451;
  136. margin-top: 20rpx;
  137. }
  138. .video-wrap {
  139. padding: 0 0 10rpx;
  140. }
  141. .video-wrap .item {
  142. position: relative;
  143. padding: 30rpx 0;
  144. }
  145. .video-wrap .item::after {
  146. content: "";
  147. position: absolute;
  148. left: 0;
  149. bottom: 0;
  150. right: 0;
  151. border-bottom: 1px solid #e5e5e5;
  152. transform-origin: 0 0;
  153. transform: scaleY(0.5);
  154. }
  155. .video-wrap .item:last-child::after {
  156. content: none;
  157. }