feedback.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. ax-body{
  2. display: block;
  3. height: 100%;
  4. background: #F6FAFF;
  5. }
  6. .page-background{
  7. position: fixed;
  8. top: 0;
  9. left: 0;
  10. right: 0;
  11. z-index: 0;
  12. }
  13. .page-background image{
  14. display: block;
  15. width: 100%;
  16. }
  17. .body{
  18. display: block;
  19. width: 100%;
  20. height: 100%;
  21. position: relative;
  22. overflow: auto;
  23. z-index: 1;
  24. }
  25. /* 标题 */
  26. .top{
  27. display: flex;
  28. align-items: center;
  29. justify-content: space-between;
  30. }
  31. .title{
  32. color: #333;
  33. font-size: 18px;
  34. font-weight: bold;
  35. }
  36. .subtitle{
  37. color: #aaa;
  38. font-size: 14px;
  39. margin-top: 8px;
  40. }
  41. .card{
  42. background-color: #fff;
  43. border-radius: 10px;
  44. padding: 10px;
  45. margin-top: 10px;
  46. box-shadow: 0 0 10px #eee;
  47. }
  48. .card .lable{
  49. color: #333;
  50. font-size: 16px;
  51. margin-bottom: 10px;
  52. margin-top: 5px;
  53. }
  54. .card .lable.required::after{
  55. content: '*';
  56. color: #f44033;
  57. margin-left: 5px;
  58. }
  59. .card.form-type .content{
  60. display: grid;
  61. grid-template-columns: 1fr 1fr 1fr;
  62. gap: 10px;
  63. }
  64. .card.form-type .content .tag{
  65. display: flex;
  66. align-items: center;
  67. justify-content: center;
  68. background-color: #f6f6f6;
  69. border-radius: 5px;
  70. font-size: 14px;
  71. color: #2b303a;
  72. height: 36px;
  73. transition: all 300ms ease;
  74. }
  75. .card.form-type .content .tag.active{
  76. background-color: #3eb6f8;
  77. color: #fff;
  78. }
  79. .card.form-describe .content .textarea{
  80. width: 100%;
  81. height: 60px;
  82. font-size: 14px;
  83. }
  84. .card.form-describe .footer{
  85. display: flex;
  86. align-items: center;
  87. justify-content: space-between;
  88. font-size: 14px;
  89. color: #aaa;
  90. margin-top: 10px;
  91. padding-top: 10px;
  92. border-top: 1px solid #eee;
  93. }
  94. .card.form-picture .footer{
  95. display: flex;
  96. align-items: center;
  97. justify-content: space-between;
  98. font-size: 14px;
  99. color: #aaa;
  100. margin-top: 10px;
  101. }
  102. .card.form-picture .picture{
  103. display: flex;
  104. align-items: center;
  105. justify-content: center;
  106. flex-direction: column;
  107. width: 70px;
  108. height: 70px;
  109. border-radius: 10px;
  110. border: 1px solid #ddd;
  111. }
  112. .card.form-picture .picture .icon{
  113. font-size: 28px;
  114. color: #aaa;
  115. }
  116. .card.form-picture .picture .name{
  117. font-size: 12px;
  118. margin-top: 5px;
  119. color: #aaa;
  120. }
  121. .card.form-picture .content{
  122. display: flex;
  123. }
  124. .card.form-picture .picture.view{
  125. position: relative;
  126. overflow: hidden;
  127. border: none;
  128. box-shadow: 0 0 5px rgba(0, 0, 0, 0.6) inset;
  129. }
  130. .card.form-picture .picture.view .remove{
  131. display: flex;
  132. align-items: center;
  133. justify-content: center;
  134. width: 20px;
  135. height: 20px;
  136. border-radius: 5px;
  137. position: absolute;
  138. top: 0;
  139. right: 0;
  140. background-color: rgba(0, 0, 0, 0.3);
  141. z-index: 2;
  142. }
  143. .card.form-picture .picture.view .remove .icon{
  144. color: #fff;
  145. font-size: 10px;
  146. }
  147. .card.form-picture .picture.view .image{
  148. width: 100%;
  149. height: 100%;
  150. }
  151. .card.form-picture .picture + .picture{
  152. margin-left: 10px;
  153. }
  154. .card.form-contact{
  155. display: flex;
  156. align-items: center;
  157. justify-content: space-between;
  158. height: 50px;
  159. }
  160. .card.form-contact .lable{
  161. margin: 0;
  162. }
  163. .card.form-contact .content{
  164. flex: 1;
  165. margin-left: 20px;
  166. }
  167. .card.form-contact .content .input{
  168. font-size: 14px;
  169. }
  170. .tips{
  171. display: block;
  172. text-align: center;
  173. font-size: 14px;
  174. margin: 20px 0;
  175. }
  176. .em{
  177. color: #3eb6f8;
  178. }
  179. .submit{
  180. display: flex;
  181. align-items: center;
  182. justify-content: center;
  183. width: 100%;
  184. height: 50px;
  185. border-radius: 8px;
  186. font-size: 14px;
  187. color: #2b303a;
  188. background: linear-gradient(to right,#8FF8FB,#47AEFF);
  189. }
  190. .submit::after{
  191. content: unset;
  192. display: none;
  193. }