feedback.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. page {
  2. background: #f4f4f4;
  3. min-height: 100%;
  4. }
  5. .container {
  6. background: #f4f4f4;
  7. min-height: 100%;
  8. padding-top: 30rpx;
  9. }
  10. .fb-type {
  11. height: 104rpx;
  12. width: 100%;
  13. background: #fff;
  14. margin-bottom: 20rpx;
  15. display: flex;
  16. flex-direction: row;
  17. align-items: center;
  18. padding-left: 30rpx;
  19. padding-right: 30rpx;
  20. }
  21. .fb-type .type-label {
  22. height: 36rpx;
  23. flex: 1;
  24. color: #333;
  25. font-size: 28rpx;
  26. }
  27. .fb-type .type-icon {
  28. height: 36rpx;
  29. width: 36rpx;
  30. }
  31. .fb-body {
  32. width: 100%;
  33. background: #fff;
  34. height: 600rpx;
  35. padding: 18rpx 30rpx 64rpx 30rpx;
  36. }
  37. .fb-body .content {
  38. width: 100%;
  39. height: 400rpx;
  40. color: #333;
  41. line-height: 40rpx;
  42. font-size: 28rpx;
  43. }
  44. .weui-uploader__files {
  45. width: 100%;
  46. }
  47. .weui-uploader__file {
  48. float: left;
  49. margin-right: 9px;
  50. margin-bottom: 9px;
  51. }
  52. .weui-uploader__img {
  53. display: block;
  54. width: 50px;
  55. height: 50px;
  56. }
  57. .weui-uploader__input-box {
  58. float: left;
  59. position: relative;
  60. margin-right: 9px;
  61. margin-bottom: 9px;
  62. width: 50px;
  63. height: 50px;
  64. border: 1px solid #d9d9d9;
  65. }
  66. .weui-uploader__input-box:after, .weui-uploader__input-box:before {
  67. content: " ";
  68. position: absolute;
  69. top: 50%;
  70. left: 50%;
  71. -webkit-transform: translate(-50%, -50%);
  72. transform: translate(-50%, -50%);
  73. background-color: #d9d9d9;
  74. }
  75. .weui-uploader__input-box:before {
  76. width: 2px;
  77. height: 39.5px;
  78. }
  79. .weui-uploader__input-box:after {
  80. width: 39.5px;
  81. height: 2px;
  82. }
  83. .weui-uploader__input-box:active {
  84. border-color: #999;
  85. }
  86. .weui-uploader__input-box:active:after, .weui-uploader__input-box:active:before {
  87. background-color: #999;
  88. }
  89. .weui-uploader__input {
  90. position: absolute;
  91. z-index: 1;
  92. top: 0;
  93. left: 0;
  94. width: 100%;
  95. height: 100%;
  96. opacity: 0;
  97. }
  98. .fb-body .text-count {
  99. line-height: 30rpx;
  100. float: right;
  101. color: #666;
  102. font-size: 24rpx;
  103. }
  104. .fb-mobile {
  105. height: 162rpx;
  106. width: 100%;
  107. }
  108. .fb-mobile .label {
  109. height: 58rpx;
  110. width: 100%;
  111. padding-top: 14rpx;
  112. padding-bottom: 11rpx;
  113. color: #7f7f7f;
  114. font-size: 24rpx;
  115. padding-left: 30rpx;
  116. padding-right: 30rpx;
  117. line-height: 33rpx;
  118. }
  119. .fb-mobile .mobile-box {
  120. height: 104rpx;
  121. width: 100%;
  122. color: #333;
  123. padding-left: 30rpx;
  124. padding-right: 30rpx;
  125. font-size: 24rpx;
  126. background: #fff;
  127. position: relative;
  128. }
  129. .fb-mobile .mobile {
  130. position: absolute;
  131. top: 27rpx;
  132. left: 30rpx;
  133. height: 50rpx;
  134. width: 100%;
  135. color: #333;
  136. line-height: 50rpx;
  137. font-size: 24rpx;
  138. }
  139. .fb-mobile .clear-icon {
  140. position: absolute;
  141. top: 27rpx;
  142. right: 30rpx;
  143. width: 48rpx;
  144. height: 48rpx;
  145. z-index: 2;
  146. }
  147. .fb-btn {
  148. right: 0;
  149. display: flex;
  150. justify-content: center;
  151. align-items: center;
  152. width: 90%;
  153. height: 90rpx;
  154. line-height: 98rpx;
  155. position: absolute;
  156. bottom: 25rpx;
  157. left: 0;
  158. border-radius: 0;
  159. padding: 0;
  160. margin: 0;
  161. margin-left: 5%;
  162. text-align: center;
  163. /* padding-left: -5rpx; */
  164. font-size: 25rpx;
  165. color: #f4f4f4;
  166. border-top-left-radius: 50rpx;
  167. border-bottom-left-radius: 50rpx;
  168. border-top-right-radius: 50rpx;
  169. border-bottom-right-radius: 50rpx;
  170. letter-spacing: 3rpx;
  171. background-image: linear-gradient(to right, #242a48 0%, #242a48 100%);
  172. }