index.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  1. page {
  2. background-color: #F0F2F6;
  3. }
  4. .container {
  5. position: relative;
  6. width: 100vw;
  7. height: 100vh;
  8. overflow: hidden;
  9. }
  10. .title-img {
  11. width: 750rpx;
  12. /* height: 372rpx; */
  13. height: 196rpx;
  14. /* background: linear-gradient(135deg, rgba(143, 103, 232, 1) 0%, rgba(99, 87, 204, 1) 100%); */
  15. background-color: #8F67E8;
  16. border-radius: 0px 0px 0px 70rpx;
  17. }
  18. .list {
  19. position: absolute;
  20. /* top: 176rpx; */
  21. top: 0;
  22. left: 50rpx;
  23. right: 50rpx;
  24. bottom: 0;
  25. }
  26. .label {
  27. position: relative;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. width: 650rpx;
  32. height: 120rpx;
  33. background-color: #fff;
  34. border-radius: 16rpx;
  35. box-sizing: border-box;
  36. padding: 0 40rpx;
  37. margin-bottom: 40rpx;
  38. }
  39. .label .icon {
  40. width: 48rpx;
  41. height: 48rpx;
  42. margin-right: 40rpx;
  43. }
  44. .label .icon image{
  45. width: 100%;
  46. height: 100%;
  47. }
  48. .label .input {
  49. flex: 1;
  50. color: #333;
  51. font-size: 32rpx;
  52. }
  53. .text-888 {
  54. color: #888;
  55. }
  56. .input-detail {
  57. flex: 1;
  58. overflow: hidden;
  59. }
  60. .input-title {
  61. font-size: 24rpx;
  62. color: #636363;
  63. padding-bottom: 6rpx;
  64. }
  65. .input-section {
  66. font-size: 31rpx;
  67. color: #313131;
  68. }
  69. .label .picker-box {
  70. position: absolute;
  71. top: 0;
  72. left: 0;
  73. bottom: 0;
  74. right: 0;
  75. z-index: 10;
  76. }
  77. .label .picker-box .tui-picker-detail {
  78. width: 100%;
  79. height: 120rpx;
  80. }
  81. .input textarea {
  82. width: 100%;
  83. }
  84. .label-textarea {
  85. padding: 20rpx 40rpx;
  86. box-sizing: border-box;
  87. height: auto;
  88. min-height: 120rpx;
  89. }
  90. .textarea-detail {
  91. position: relative;
  92. /* padding-right: 90rpx; */
  93. }
  94. /* .textarea-dowm-img{
  95. position: absolute;
  96. right: 16rpx;
  97. top: 28rpx;
  98. width: 40rpx;
  99. height: 40rpx;
  100. } */
  101. .pic-add {
  102. display: flex;
  103. flex-direction: column;
  104. align-items: center;
  105. justify-content: center;
  106. width: 100rpx;
  107. height: 100rpx;
  108. background: rgba(255, 255, 255, 1);
  109. border-radius: 16rpx;
  110. font-size: 20rpx;
  111. color: #676767;
  112. }
  113. .pic-add image {
  114. width: 48rpx;
  115. height: 48rpx;
  116. }
  117. .pic-item {
  118. position: relative;
  119. width: 140rpx;
  120. height: 100rpx;
  121. background: rgba(216, 216, 216, 1);
  122. border-radius: 10rpx;
  123. margin-right: 40rpx;
  124. margin-bottom: 20rpx;
  125. }
  126. .pic-item image.pic {
  127. width: 100%;
  128. height: 100%;
  129. border-radius: 10rpx;
  130. }
  131. .pic-item .pic-close {
  132. display: flex;
  133. align-items: center;
  134. justify-content: center;
  135. position: absolute;
  136. width: 26rpx;
  137. height: 26rpx;
  138. top: -12rpx;
  139. right: -12rpx;
  140. background: rgba(6, 5, 5, 0.5);
  141. border-radius: 50%;
  142. }
  143. .pic-close image {
  144. width: 16rpx;
  145. height: 16rpx;
  146. }
  147. .pic-list {
  148. display: flex;
  149. flex-wrap: wrap;
  150. padding-bottom: 30rpx;
  151. }
  152. .btn {
  153. position: relative;
  154. display: flex;
  155. align-items: center;
  156. justify-content: center;
  157. font-size: 32rpx;
  158. color: #fff;
  159. width: 650rpx;
  160. height: 100rpx;
  161. background: linear-gradient(135deg, rgba(143, 103, 232, 1) 0%, rgba(99, 87, 204, 1) 100%);
  162. border-radius: 50rpx;
  163. }
  164. .btn button:not([size='mini']){
  165. width: 100%;
  166. height: 100%;
  167. background-color: none;
  168. margin:0;
  169. padding:0;
  170. position: absolute;
  171. top:0;
  172. left:0;
  173. right:0;
  174. bottom:0;
  175. background: none;
  176. }
  177. .black-100{
  178. height: 100rpx;
  179. overflow: hidden;
  180. clear: both;
  181. }
  182. .black-112{
  183. height: 112rpx;
  184. overflow: hidden;
  185. clear: both;
  186. }