index.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. *{
  2. padding: 0;
  3. margin: 0;
  4. font-family:"Microsoft YaHei",微软雅黑,"MicrosoftJhengHei",华文细黑,STHeiti,MingLiu;
  5. line-height: 1;
  6. }
  7. ::-webkit-scrollbar {
  8. width: 0.6rem;
  9. height: 1rem;
  10. background-color: #71471d;
  11. }
  12. ::-webkit-scrollbar-thumb {
  13. height: 5rem;
  14. background-color: #EA9649;
  15. outline: 0.5rem solid #EA9649;
  16. outline-offset: -0.5rem;
  17. }
  18. ::-webkit-scrollbar-thumb:hover {
  19. height: 5rem;
  20. background-color: #EA9649;
  21. }
  22. li{
  23. list-style: none;
  24. }
  25. html,body{
  26. width: 100%;
  27. height: 100%;
  28. font-size: 34px;
  29. }
  30. body{
  31. position: relative;
  32. color: #EA9649;
  33. max-width: 100%;
  34. margin: 0 auto;
  35. }
  36. button,input{
  37. border: none;
  38. outline: none;
  39. background: none;
  40. font-size: 1rem;
  41. }
  42. .body{
  43. width: 100%;
  44. height: 100%;
  45. }
  46. .bg{
  47. width: 100%;
  48. top: 0;
  49. position: absolute;
  50. z-index: -1;
  51. }
  52. .content{
  53. width: 1728px;
  54. height: 900px;
  55. margin: 0 auto;
  56. }
  57. .title{
  58. text-align: center;
  59. padding-top: 6%;
  60. }
  61. .input{
  62. display: flex;
  63. width: 100%;
  64. font-size: 0;
  65. position: relative;
  66. }
  67. .input input{
  68. border: #EA9649 0.13rem solid;
  69. border-right: none;
  70. background: none;
  71. color: #EA9649;
  72. padding-left: 0.63rem;
  73. padding-right: 2.63rem;
  74. margin: 0;
  75. flex: 30;
  76. }
  77. .input span{
  78. display: inline-block;
  79. height: 1rem;
  80. padding: 0.63rem 1.25rem;
  81. border-top: #EA9649 0.13rem solid;
  82. border-bottom: #EA9649 0.13rem solid;
  83. flex: 1;
  84. text-align: center;
  85. }
  86. .input span img{
  87. vertical-align: middle;
  88. display: inline-block;
  89. height: 100%;
  90. opacity: 0;
  91. }
  92. .input .button{
  93. flex: 3;
  94. padding: 0.63rem 1.25rem;
  95. background: #EA9649;
  96. border-top: #EA9649 0.13rem solid;
  97. border-bottom: #EA9649 0.13rem solid;
  98. margin: 0;
  99. font-size:1rem;
  100. line-height: 1rem;
  101. height: 1rem;
  102. margin: 0 auto;
  103. color: #000;
  104. min-width: 15%;
  105. text-align: center;
  106. }
  107. .result{
  108. display: flex;
  109. width: 100%;
  110. margin: 0.63rem 0;
  111. min-height: 1.88rem;
  112. }
  113. .result li{
  114. list-style: none;
  115. display: inline-block;
  116. margin-right: 0.38rem;
  117. padding: 0.13rem 0.25rem;
  118. vertical-align: middle;
  119. }
  120. .result li:last-of-type{
  121. margin-right: 0;
  122. }
  123. .result li img{
  124. width: 1.25rem;
  125. vertical-align: middle;
  126. }
  127. .result .active{
  128. background: #EA9649;
  129. color: #000;
  130. }
  131. #canvasWrap {
  132. position:relative;
  133. margin:0 auto;
  134. width:1728px;
  135. height:700px;
  136. border:5px solid #EA9649;
  137. font-size: 0;
  138. }
  139. #clear{
  140. opacity: 0;
  141. }
  142. .cls{
  143. text-align: center;
  144. width: 100%;
  145. position: fixed;
  146. left: 50%;
  147. transform: translateX(-50%);
  148. }
  149. .cls img{
  150. width: 1.88rem;
  151. }
  152. .result-page{
  153. display: none;
  154. }
  155. .reload{
  156. margin-top: 0.5rem;
  157. text-align: right;
  158. }
  159. #reload{
  160. width: 1rem;
  161. }
  162. .result-page ul {
  163. margin-left: 0.63rem;
  164. margin-top: 0.5rem;
  165. user-select: none;
  166. }
  167. .result-page ul li{
  168. display: flex;
  169. align-items: center;
  170. margin-top: 0.63rem;
  171. font-size: 1.2rem;
  172. }
  173. .result-page ul li img{
  174. width: 7rem;
  175. height: 7rem;
  176. margin-right: 1.88rem;
  177. }
  178. .result-page ul li span{
  179. width: 15.63rem;
  180. line-height: 1.5;
  181. }
  182. .no-result{
  183. text-align: center;
  184. margin-top: 5rem;
  185. display: none;
  186. }
  187. .no-result img{
  188. width: 14.38rem;
  189. height:auto;
  190. }
  191. .no-result p{
  192. line-height: 1.5;
  193. }