ylyx-cli 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (402) hide show
  1. package/README.md +184 -0
  2. package/bin/ylyx.js +95 -0
  3. package/lib/generator.js +192 -0
  4. package/lib/index.js +113 -0
  5. package/lib/interactive.js +87 -0
  6. package/lib/remote.js +179 -0
  7. package/lib/template.js +174 -0
  8. package/lib/utils.js +134 -0
  9. package/package.json +56 -0
  10. package/templates/react-app/files/README.md +23 -0
  11. package/templates/react-app/files/package.json +29 -0
  12. package/templates/react-app/files/public/index.html +11 -0
  13. package/templates/react-app/files/src/App.css +15 -0
  14. package/templates/react-app/files/src/App.js +15 -0
  15. package/templates/react-app/files/src/index.css +10 -0
  16. package/templates/react-app/files/src/index.js +11 -0
  17. package/templates/react-app/template.json +12 -0
  18. package/templates/react-component/files/Component.module.css +5 -0
  19. package/templates/react-component/files/Component.tsx +31 -0
  20. package/templates/react-component/files/index.ts +2 -0
  21. package/templates/react-component/template.json +49 -0
  22. package/templates/vue-app/files/.editorconfig +14 -0
  23. package/templates/vue-app/files/.env.development +21 -0
  24. package/templates/vue-app/files/.env.production +18 -0
  25. package/templates/vue-app/files/.eslintignore +5 -0
  26. package/templates/vue-app/files/.eslintrc.js +267 -0
  27. package/templates/vue-app/files/.prettierignore +12 -0
  28. package/templates/vue-app/files/.travis.yml +5 -0
  29. package/templates/vue-app/files/.vscode/extensions.json +7 -0
  30. package/templates/vue-app/files/.vscode/settings.json +39 -0
  31. package/templates/vue-app/files/LICENSE +191 -0
  32. package/templates/vue-app/files/README.md +87 -0
  33. package/templates/vue-app/files/babel.config.js +11 -0
  34. package/templates/vue-app/files/jest.config.js +24 -0
  35. package/templates/vue-app/files/package.json +136 -0
  36. package/templates/vue-app/files/plopfile.js +7 -0
  37. package/templates/vue-app/files/postcss.config.js +5 -0
  38. package/templates/vue-app/files/prettier.config.js +36 -0
  39. package/templates/vue-app/files/public/default.js +26 -0
  40. package/templates/vue-app/files/public/favicon.ico +0 -0
  41. package/templates/vue-app/files/public/index.html +26 -0
  42. package/templates/vue-app/files/src/App.vue +54 -0
  43. package/templates/vue-app/files/src/api/bigDataV/index.js +198 -0
  44. package/templates/vue-app/files/src/api/data.js +42 -0
  45. package/templates/vue-app/files/src/api/dataArchive/index.js +186 -0
  46. package/templates/vue-app/files/src/api/generator/genConfig.js +16 -0
  47. package/templates/vue-app/files/src/api/generator/generator.js +32 -0
  48. package/templates/vue-app/files/src/api/indexManagement/index.js +39 -0
  49. package/templates/vue-app/files/src/api/institutionMonitor/index.js +396 -0
  50. package/templates/vue-app/files/src/api/institutionSet/index.js +120 -0
  51. package/templates/vue-app/files/src/api/login.js +44 -0
  52. package/templates/vue-app/files/src/api/selfStatistics/index.js +50 -0
  53. package/templates/vue-app/files/src/api/system/code.js +15 -0
  54. package/templates/vue-app/files/src/api/system/dict.js +34 -0
  55. package/templates/vue-app/files/src/api/system/dictDetail.js +52 -0
  56. package/templates/vue-app/files/src/api/system/equipment.js +35 -0
  57. package/templates/vue-app/files/src/api/system/examManage.js +49 -0
  58. package/templates/vue-app/files/src/api/system/examProject.js +48 -0
  59. package/templates/vue-app/files/src/api/system/hosModel.js +35 -0
  60. package/templates/vue-app/files/src/api/system/hospital.js +88 -0
  61. package/templates/vue-app/files/src/api/system/job.js +40 -0
  62. package/templates/vue-app/files/src/api/system/menu.js +67 -0
  63. package/templates/vue-app/files/src/api/system/model.js +42 -0
  64. package/templates/vue-app/files/src/api/system/risConfig.js +9 -0
  65. package/templates/vue-app/files/src/api/system/role.js +64 -0
  66. package/templates/vue-app/files/src/api/system/sysSet.js +19 -0
  67. package/templates/vue-app/files/src/api/system/timing.js +41 -0
  68. package/templates/vue-app/files/src/api/system/user.js +121 -0
  69. package/templates/vue-app/files/src/api/tools/alipay.js +25 -0
  70. package/templates/vue-app/files/src/api/tools/email.js +24 -0
  71. package/templates/vue-app/files/src/api/tools/localStorage.js +27 -0
  72. package/templates/vue-app/files/src/api/tools/qiniu.js +40 -0
  73. package/templates/vue-app/files/src/assets/401_images/401.gif +0 -0
  74. package/templates/vue-app/files/src/assets/404_images/404.png +0 -0
  75. package/templates/vue-app/files/src/assets/404_images/404_cloud.png +0 -0
  76. package/templates/vue-app/files/src/assets/css/font-awesome.css +2342 -0
  77. package/templates/vue-app/files/src/assets/css/font-awesome.min.css +2336 -0
  78. package/templates/vue-app/files/src/assets/fonts/FontAwesome.otf +0 -0
  79. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.eot +0 -0
  80. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.svg +2671 -0
  81. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.ttf +0 -0
  82. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.woff +0 -0
  83. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.woff2 +0 -0
  84. package/templates/vue-app/files/src/assets/icons/index.js +9 -0
  85. package/templates/vue-app/files/src/assets/icons/svg/Steve-Jobs.svg +1 -0
  86. package/templates/vue-app/files/src/assets/icons/svg/achive.svg +1 -0
  87. package/templates/vue-app/files/src/assets/icons/svg/alipay.svg +1 -0
  88. package/templates/vue-app/files/src/assets/icons/svg/anq.svg +1 -0
  89. package/templates/vue-app/files/src/assets/icons/svg/app.svg +1 -0
  90. package/templates/vue-app/files/src/assets/icons/svg/archive.svg +1 -0
  91. package/templates/vue-app/files/src/assets/icons/svg/backup.svg +1 -0
  92. package/templates/vue-app/files/src/assets/icons/svg/chain.svg +1 -0
  93. package/templates/vue-app/files/src/assets/icons/svg/chart.svg +1 -0
  94. package/templates/vue-app/files/src/assets/icons/svg/codeConsole.svg +1 -0
  95. package/templates/vue-app/files/src/assets/icons/svg/dashboard.svg +1 -0
  96. package/templates/vue-app/files/src/assets/icons/svg/database.svg +1 -0
  97. package/templates/vue-app/files/src/assets/icons/svg/date.svg +1 -0
  98. package/templates/vue-app/files/src/assets/icons/svg/deploy.svg +1 -0
  99. package/templates/vue-app/files/src/assets/icons/svg/dept.svg +1 -0
  100. package/templates/vue-app/files/src/assets/icons/svg/dev.svg +1 -0
  101. package/templates/vue-app/files/src/assets/icons/svg/develop.svg +1 -0
  102. package/templates/vue-app/files/src/assets/icons/svg/dictionary.svg +1 -0
  103. package/templates/vue-app/files/src/assets/icons/svg/doc.svg +1 -0
  104. package/templates/vue-app/files/src/assets/icons/svg/download.svg +1 -0
  105. package/templates/vue-app/files/src/assets/icons/svg/edit.svg +1 -0
  106. package/templates/vue-app/files/src/assets/icons/svg/education.svg +1 -0
  107. package/templates/vue-app/files/src/assets/icons/svg/email.svg +1 -0
  108. package/templates/vue-app/files/src/assets/icons/svg/equSet.svg +1 -0
  109. package/templates/vue-app/files/src/assets/icons/svg/error.svg +1 -0
  110. package/templates/vue-app/files/src/assets/icons/svg/exit-fullscreen.svg +1 -0
  111. package/templates/vue-app/files/src/assets/icons/svg/fullscreen.svg +1 -0
  112. package/templates/vue-app/files/src/assets/icons/svg/fwb.svg +1 -0
  113. package/templates/vue-app/files/src/assets/icons/svg/github.svg +1 -0
  114. package/templates/vue-app/files/src/assets/icons/svg/goBack.svg +1 -0
  115. package/templates/vue-app/files/src/assets/icons/svg/gonggao.svg +1 -0
  116. package/templates/vue-app/files/src/assets/icons/svg/hospital.svg +2 -0
  117. package/templates/vue-app/files/src/assets/icons/svg/hospital1.svg +2 -0
  118. package/templates/vue-app/files/src/assets/icons/svg/hospitalTotal.svg +1 -0
  119. package/templates/vue-app/files/src/assets/icons/svg/icon.svg +1 -0
  120. package/templates/vue-app/files/src/assets/icons/svg/image.svg +1 -0
  121. package/templates/vue-app/files/src/assets/icons/svg/index.svg +1 -0
  122. package/templates/vue-app/files/src/assets/icons/svg/international.svg +1 -0
  123. package/templates/vue-app/files/src/assets/icons/svg/ipvisits.svg +1 -0
  124. package/templates/vue-app/files/src/assets/icons/svg/java.svg +1 -0
  125. package/templates/vue-app/files/src/assets/icons/svg/link.svg +1 -0
  126. package/templates/vue-app/files/src/assets/icons/svg/list.svg +1 -0
  127. package/templates/vue-app/files/src/assets/icons/svg/lock.svg +1 -0
  128. package/templates/vue-app/files/src/assets/icons/svg/log.svg +1 -0
  129. package/templates/vue-app/files/src/assets/icons/svg/login.svg +1 -0
  130. package/templates/vue-app/files/src/assets/icons/svg/loginOne.svg +35 -0
  131. package/templates/vue-app/files/src/assets/icons/svg/loginOneWhite.svg +19 -0
  132. package/templates/vue-app/files/src/assets/icons/svg/loginOr.svg +93 -0
  133. package/templates/vue-app/files/src/assets/icons/svg/loginUp.svg +96 -0
  134. package/templates/vue-app/files/src/assets/icons/svg/markdown.svg +1 -0
  135. package/templates/vue-app/files/src/assets/icons/svg/menu.svg +1 -0
  136. package/templates/vue-app/files/src/assets/icons/svg/message.svg +1 -0
  137. package/templates/vue-app/files/src/assets/icons/svg/mnt.svg +1 -0
  138. package/templates/vue-app/files/src/assets/icons/svg/money.svg +1 -0
  139. package/templates/vue-app/files/src/assets/icons/svg/monitor.svg +1 -0
  140. package/templates/vue-app/files/src/assets/icons/svg/nested.svg +1 -0
  141. package/templates/vue-app/files/src/assets/icons/svg/network.svg +1 -0
  142. package/templates/vue-app/files/src/assets/icons/svg/offline.svg +1 -0
  143. package/templates/vue-app/files/src/assets/icons/svg/online.svg +1 -0
  144. package/templates/vue-app/files/src/assets/icons/svg/password.svg +1 -0
  145. package/templates/vue-app/files/src/assets/icons/svg/people.svg +1 -0
  146. package/templates/vue-app/files/src/assets/icons/svg/peoples.svg +1 -0
  147. package/templates/vue-app/files/src/assets/icons/svg/perSet.svg +1 -0
  148. package/templates/vue-app/files/src/assets/icons/svg/permission.svg +1 -0
  149. package/templates/vue-app/files/src/assets/icons/svg/phone.svg +1 -0
  150. package/templates/vue-app/files/src/assets/icons/svg/piechart.svg +1 -0
  151. package/templates/vue-app/files/src/assets/icons/svg/qiniu.svg +1 -0
  152. package/templates/vue-app/files/src/assets/icons/svg/redis.svg +1 -0
  153. package/templates/vue-app/files/src/assets/icons/svg/resetpassword.svg +1 -0
  154. package/templates/vue-app/files/src/assets/icons/svg/resetpassword1.svg +1 -0
  155. package/templates/vue-app/files/src/assets/icons/svg/role.svg +1 -0
  156. package/templates/vue-app/files/src/assets/icons/svg/search.svg +1 -0
  157. package/templates/vue-app/files/src/assets/icons/svg/server.svg +1 -0
  158. package/templates/vue-app/files/src/assets/icons/svg/shopping.svg +1 -0
  159. package/templates/vue-app/files/src/assets/icons/svg/size.svg +1 -0
  160. package/templates/vue-app/files/src/assets/icons/svg/skill.svg +1 -0
  161. package/templates/vue-app/files/src/assets/icons/svg/source.svg +1 -0
  162. package/templates/vue-app/files/src/assets/icons/svg/sqlMonitor.svg +1 -0
  163. package/templates/vue-app/files/src/assets/icons/svg/statistical.svg +1 -0
  164. package/templates/vue-app/files/src/assets/icons/svg/swagger.svg +1 -0
  165. package/templates/vue-app/files/src/assets/icons/svg/sys-tools.svg +1 -0
  166. package/templates/vue-app/files/src/assets/icons/svg/system.svg +1 -0
  167. package/templates/vue-app/files/src/assets/icons/svg/system1.svg +1 -0
  168. package/templates/vue-app/files/src/assets/icons/svg/tab.svg +1 -0
  169. package/templates/vue-app/files/src/assets/icons/svg/teams.svg +1 -0
  170. package/templates/vue-app/files/src/assets/icons/svg/theme.svg +1 -0
  171. package/templates/vue-app/files/src/assets/icons/svg/timing.svg +1 -0
  172. package/templates/vue-app/files/src/assets/icons/svg/tools.svg +1 -0
  173. package/templates/vue-app/files/src/assets/icons/svg/tree-table.svg +1 -0
  174. package/templates/vue-app/files/src/assets/icons/svg/tree.svg +1 -0
  175. package/templates/vue-app/files/src/assets/icons/svg/unlock.svg +1 -0
  176. package/templates/vue-app/files/src/assets/icons/svg/user.svg +1 -0
  177. package/templates/vue-app/files/src/assets/icons/svg/user1.svg +1 -0
  178. package/templates/vue-app/files/src/assets/icons/svg/validCode.svg +1 -0
  179. package/templates/vue-app/files/src/assets/icons/svg/visits.svg +1 -0
  180. package/templates/vue-app/files/src/assets/icons/svg/web.svg +1 -0
  181. package/templates/vue-app/files/src/assets/icons/svg/wechat.svg +1 -0
  182. package/templates/vue-app/files/src/assets/icons/svg/weixin.svg +1 -0
  183. package/templates/vue-app/files/src/assets/icons/svg/zujian.svg +1 -0
  184. package/templates/vue-app/files/src/assets/icons/svgo.yml +21 -0
  185. package/templates/vue-app/files/src/assets/images/archive.png +0 -0
  186. package/templates/vue-app/files/src/assets/images/archive_icon.png +0 -0
  187. package/templates/vue-app/files/src/assets/images/avatar.png +0 -0
  188. package/templates/vue-app/files/src/assets/images/background.jpg +0 -0
  189. package/templates/vue-app/files/src/assets/images/bg.png +0 -0
  190. package/templates/vue-app/files/src/assets/images/gongan.png +0 -0
  191. package/templates/vue-app/files/src/assets/images/hospital_icon.png +0 -0
  192. package/templates/vue-app/files/src/assets/images/location.png +0 -0
  193. package/templates/vue-app/files/src/assets/images/logintitle.jpg +0 -0
  194. package/templates/vue-app/files/src/assets/images/logo-copy1.png +0 -0
  195. package/templates/vue-app/files/src/assets/images/logo.png +0 -0
  196. package/templates/vue-app/files/src/assets/images/logoBg.png +0 -0
  197. package/templates/vue-app/files/src/assets/images/offline-bg.png +0 -0
  198. package/templates/vue-app/files/src/assets/images/position.png +0 -0
  199. package/templates/vue-app/files/src/assets/images/qualityBg.jpg +0 -0
  200. package/templates/vue-app/files/src/assets/images/self-bg.png +0 -0
  201. package/templates/vue-app/files/src/assets/images/self-bg2.png +0 -0
  202. package/templates/vue-app/files/src/assets/images/triAngel.png +0 -0
  203. package/templates/vue-app/files/src/assets/images/triAngelNormal.png +0 -0
  204. package/templates/vue-app/files/src/assets/styles/btn.scss +103 -0
  205. package/templates/vue-app/files/src/assets/styles/eladmin.scss +124 -0
  206. package/templates/vue-app/files/src/assets/styles/element-ui.scss +217 -0
  207. package/templates/vue-app/files/src/assets/styles/element-variables.scss +31 -0
  208. package/templates/vue-app/files/src/assets/styles/global.scss +73 -0
  209. package/templates/vue-app/files/src/assets/styles/index.scss +220 -0
  210. package/templates/vue-app/files/src/assets/styles/mixin.scss +60 -0
  211. package/templates/vue-app/files/src/assets/styles/publicStyle.scss +224 -0
  212. package/templates/vue-app/files/src/assets/styles/sidebar.scss +239 -0
  213. package/templates/vue-app/files/src/assets/styles/transition.scss +48 -0
  214. package/templates/vue-app/files/src/assets/styles/variables.scss +44 -0
  215. package/templates/vue-app/files/src/common/flexible.js +145 -0
  216. package/templates/vue-app/files/src/components/Breadcrumb/index.vue +87 -0
  217. package/templates/vue-app/files/src/components/Crud/CRUD.operation.vue +248 -0
  218. package/templates/vue-app/files/src/components/Crud/Pagination.vue +20 -0
  219. package/templates/vue-app/files/src/components/Crud/RR.operation.vue +39 -0
  220. package/templates/vue-app/files/src/components/Crud/UD.operation.vue +106 -0
  221. package/templates/vue-app/files/src/components/Crud/crud.js +907 -0
  222. package/templates/vue-app/files/src/components/Crud/user/UR.operation.vue +154 -0
  223. package/templates/vue-app/files/src/components/DateRangePicker/index.vue +42 -0
  224. package/templates/vue-app/files/src/components/DateRangePickerProhibitNext/index.vue +42 -0
  225. package/templates/vue-app/files/src/components/DateRangePickerProhibitTodayNext/index.vue +48 -0
  226. package/templates/vue-app/files/src/components/Dict/Dict.js +31 -0
  227. package/templates/vue-app/files/src/components/Dict/index.js +29 -0
  228. package/templates/vue-app/files/src/components/Doc/index.vue +16 -0
  229. package/templates/vue-app/files/src/components/Echarts/BarChart.vue +115 -0
  230. package/templates/vue-app/files/src/components/Echarts/Category.vue +768 -0
  231. package/templates/vue-app/files/src/components/Echarts/Funnel.vue +120 -0
  232. package/templates/vue-app/files/src/components/Echarts/Gauge.vue +74 -0
  233. package/templates/vue-app/files/src/components/Echarts/Graph.vue +101 -0
  234. package/templates/vue-app/files/src/components/Echarts/HeatMap.vue +301 -0
  235. package/templates/vue-app/files/src/components/Echarts/Line3D.vue +110 -0
  236. package/templates/vue-app/files/src/components/Echarts/PieChart.vue +84 -0
  237. package/templates/vue-app/files/src/components/Echarts/Point.vue +161 -0
  238. package/templates/vue-app/files/src/components/Echarts/RadarChart.vue +123 -0
  239. package/templates/vue-app/files/src/components/Echarts/Rich.vue +160 -0
  240. package/templates/vue-app/files/src/components/Echarts/Sankey.vue +114 -0
  241. package/templates/vue-app/files/src/components/Echarts/Scatter.vue +192 -0
  242. package/templates/vue-app/files/src/components/Echarts/Sunburst.vue +127 -0
  243. package/templates/vue-app/files/src/components/Echarts/ThemeRiver.vue +233 -0
  244. package/templates/vue-app/files/src/components/Echarts/WordCloud.vue +201 -0
  245. package/templates/vue-app/files/src/components/GithubCorner/index.vue +55 -0
  246. package/templates/vue-app/files/src/components/Hamburger/index.vue +44 -0
  247. package/templates/vue-app/files/src/components/HeaderSearch/index.vue +196 -0
  248. package/templates/vue-app/files/src/components/IconSelect/index.vue +74 -0
  249. package/templates/vue-app/files/src/components/IconSelect/requireIcons.js +10 -0
  250. package/templates/vue-app/files/src/components/Iframe/index.vue +30 -0
  251. package/templates/vue-app/files/src/components/JavaEdit/index.vue +78 -0
  252. package/templates/vue-app/files/src/components/Pagination/index.vue +100 -0
  253. package/templates/vue-app/files/src/components/PanThumb/index.vue +149 -0
  254. package/templates/vue-app/files/src/components/ParentView/index.vue +3 -0
  255. package/templates/vue-app/files/src/components/Permission/index.js +13 -0
  256. package/templates/vue-app/files/src/components/Permission/permission.js +21 -0
  257. package/templates/vue-app/files/src/components/RightPanel/index.vue +149 -0
  258. package/templates/vue-app/files/src/components/Screenfull/index.vue +60 -0
  259. package/templates/vue-app/files/src/components/SizeSelect/index.vue +60 -0
  260. package/templates/vue-app/files/src/components/SvgIcon/index.vue +66 -0
  261. package/templates/vue-app/files/src/components/ThemePicker/index.vue +177 -0
  262. package/templates/vue-app/files/src/components/UploadExcel/index.vue +149 -0
  263. package/templates/vue-app/files/src/components/WaterMark/setWaterMark.js +68 -0
  264. package/templates/vue-app/files/src/components/WaterMark/waterMark.vue +69 -0
  265. package/templates/vue-app/files/src/components/Xgplayer/index.vue +49 -0
  266. package/templates/vue-app/files/src/components/YamlEdit/index.vue +81 -0
  267. package/templates/vue-app/files/src/layout/components/AppMain.vue +67 -0
  268. package/templates/vue-app/files/src/layout/components/Navbar.vue +209 -0
  269. package/templates/vue-app/files/src/layout/components/Settings/index.vue +125 -0
  270. package/templates/vue-app/files/src/layout/components/Sidebar/FixiOSBug.js +26 -0
  271. package/templates/vue-app/files/src/layout/components/Sidebar/Item.vue +29 -0
  272. package/templates/vue-app/files/src/layout/components/Sidebar/Link.vue +35 -0
  273. package/templates/vue-app/files/src/layout/components/Sidebar/Logo.vue +93 -0
  274. package/templates/vue-app/files/src/layout/components/Sidebar/SidebarItem.vue +104 -0
  275. package/templates/vue-app/files/src/layout/components/Sidebar/index.vue +79 -0
  276. package/templates/vue-app/files/src/layout/components/TagsView/ScrollPane.vue +90 -0
  277. package/templates/vue-app/files/src/layout/components/TagsView/index.vue +299 -0
  278. package/templates/vue-app/files/src/layout/components/index.js +5 -0
  279. package/templates/vue-app/files/src/layout/index.vue +119 -0
  280. package/templates/vue-app/files/src/layout/mixin/ResizeHandler.js +45 -0
  281. package/templates/vue-app/files/src/main.js +89 -0
  282. package/templates/vue-app/files/src/mixins/crud.js +348 -0
  283. package/templates/vue-app/files/src/router/index.js +156 -0
  284. package/templates/vue-app/files/src/router/routers.js +203 -0
  285. package/templates/vue-app/files/src/settings.js +57 -0
  286. package/templates/vue-app/files/src/store/getters.js +29 -0
  287. package/templates/vue-app/files/src/store/index.js +25 -0
  288. package/templates/vue-app/files/src/store/modules/api.js +33 -0
  289. package/templates/vue-app/files/src/store/modules/app.js +55 -0
  290. package/templates/vue-app/files/src/store/modules/permission.js +79 -0
  291. package/templates/vue-app/files/src/store/modules/register.js +17 -0
  292. package/templates/vue-app/files/src/store/modules/settings.js +46 -0
  293. package/templates/vue-app/files/src/store/modules/tagsView.js +168 -0
  294. package/templates/vue-app/files/src/store/modules/user.js +119 -0
  295. package/templates/vue-app/files/src/utils/auth.js +18 -0
  296. package/templates/vue-app/files/src/utils/base64ToFile.js +27 -0
  297. package/templates/vue-app/files/src/utils/clipboard.js +36 -0
  298. package/templates/vue-app/files/src/utils/datetime.js +289 -0
  299. package/templates/vue-app/files/src/utils/getBlobFile.js +10 -0
  300. package/templates/vue-app/files/src/utils/getTime.js +29 -0
  301. package/templates/vue-app/files/src/utils/index.js +520 -0
  302. package/templates/vue-app/files/src/utils/permission.js +29 -0
  303. package/templates/vue-app/files/src/utils/pinyin.js +450 -0
  304. package/templates/vue-app/files/src/utils/request.js +139 -0
  305. package/templates/vue-app/files/src/utils/rsaEncrypt.js +37 -0
  306. package/templates/vue-app/files/src/utils/shortcuts.js +210 -0
  307. package/templates/vue-app/files/src/utils/upload.js +12 -0
  308. package/templates/vue-app/files/src/utils/validate.js +262 -0
  309. package/templates/vue-app/files/src/views/components/Echarts.vue +124 -0
  310. package/templates/vue-app/files/src/views/components/Editor.vue +75 -0
  311. package/templates/vue-app/files/src/views/components/MarkDown.vue +44 -0
  312. package/templates/vue-app/files/src/views/components/UVideo.vue +37 -0
  313. package/templates/vue-app/files/src/views/components/YamlEdit.vue +206 -0
  314. package/templates/vue-app/files/src/views/components/camera/camera.vue +115 -0
  315. package/templates/vue-app/files/src/views/components/camera/cameraTest.vue +158 -0
  316. package/templates/vue-app/files/src/views/components/excel/upload-excel.vue +41 -0
  317. package/templates/vue-app/files/src/views/components/icons/element-icons.js +74 -0
  318. package/templates/vue-app/files/src/views/components/icons/index.vue +106 -0
  319. package/templates/vue-app/files/src/views/components/icons/svg-icons.js +10 -0
  320. package/templates/vue-app/files/src/views/components/scroll/index.vue +107 -0
  321. package/templates/vue-app/files/src/views/components/scrollFull/index.vue +99 -0
  322. package/templates/vue-app/files/src/views/dashboard/LineChart.vue +138 -0
  323. package/templates/vue-app/files/src/views/dashboard/PanelGroup.vue +173 -0
  324. package/templates/vue-app/files/src/views/dashboard/mixins/resize.js +57 -0
  325. package/templates/vue-app/files/src/views/dataArchive/delTable.vue +354 -0
  326. package/templates/vue-app/files/src/views/dataArchive/exportDetail.vue +121 -0
  327. package/templates/vue-app/files/src/views/dataArchive/exportList.vue +160 -0
  328. package/templates/vue-app/files/src/views/dataArchive/index.vue +2104 -0
  329. package/templates/vue-app/files/src/views/features/401.vue +83 -0
  330. package/templates/vue-app/files/src/views/features/404.vue +226 -0
  331. package/templates/vue-app/files/src/views/features/redirect.vue +12 -0
  332. package/templates/vue-app/files/src/views/generator/config.vue +348 -0
  333. package/templates/vue-app/files/src/views/generator/index.vue +143 -0
  334. package/templates/vue-app/files/src/views/generator/preview.vue +39 -0
  335. package/templates/vue-app/files/src/views/home.vue +80 -0
  336. package/templates/vue-app/files/src/views/indexManagement/index.vue +422 -0
  337. package/templates/vue-app/files/src/views/indexManagement/other.vue +286 -0
  338. package/templates/vue-app/files/src/views/institutionMonitor/components/LineChart.vue +191 -0
  339. package/templates/vue-app/files/src/views/institutionMonitor/index.scss +339 -0
  340. package/templates/vue-app/files/src/views/institutionMonitor/index.vue +1385 -0
  341. package/templates/vue-app/files/src/views/institutionMonitor/mixins/resize.js +57 -0
  342. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/checkProjectCode.vue +267 -0
  343. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/imageAbnormalMonitor.vue +361 -0
  344. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/index.vue +686 -0
  345. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/leakageAnomaly.vue +270 -0
  346. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/moveMonitore.vue +114 -0
  347. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/qualityMonitore.vue +338 -0
  348. package/templates/vue-app/files/src/views/institutionSet/cloudSet.vue +534 -0
  349. package/templates/vue-app/files/src/views/institutionSet/index.vue +2550 -0
  350. package/templates/vue-app/files/src/views/login.vue +243 -0
  351. package/templates/vue-app/files/src/views/qualityLogin.vue +280 -0
  352. package/templates/vue-app/files/src/views/selfStatistics/components/LineChart.vue +296 -0
  353. package/templates/vue-app/files/src/views/selfStatistics/hospitalDetail/index.vue +533 -0
  354. package/templates/vue-app/files/src/views/selfStatistics/index.scss +447 -0
  355. package/templates/vue-app/files/src/views/selfStatistics/index.vue +903 -0
  356. package/templates/vue-app/files/src/views/selfStatistics/mixins/resize.js +57 -0
  357. package/templates/vue-app/files/src/views/selfStatistics/monitorDetail/index.vue +285 -0
  358. package/templates/vue-app/files/src/views/selfStatistics/offlineDetail/index.vue +104 -0
  359. package/templates/vue-app/files/src/views/selfStatistics/selfActiveDetail/index.vue +104 -0
  360. package/templates/vue-app/files/src/views/selfStatistics/selfMonitorDetail/index.vue +420 -0
  361. package/templates/vue-app/files/src/views/selfStatistics/setWaterMark/setWaterMark.js +68 -0
  362. package/templates/vue-app/files/src/views/selfStatistics/setWaterMark/waterMark.vue +69 -0
  363. package/templates/vue-app/files/src/views/system/dept/index.vue +144 -0
  364. package/templates/vue-app/files/src/views/system/dict/dictDetail.vue +146 -0
  365. package/templates/vue-app/files/src/views/system/dict/index.vue +159 -0
  366. package/templates/vue-app/files/src/views/system/examModality/index.vue +174 -0
  367. package/templates/vue-app/files/src/views/system/examPart/index.vue +184 -0
  368. package/templates/vue-app/files/src/views/system/examProject/index.vue +321 -0
  369. package/templates/vue-app/files/src/views/system/examine/index.vue +66 -0
  370. package/templates/vue-app/files/src/views/system/job/index.vue +119 -0
  371. package/templates/vue-app/files/src/views/system/job/module/form.vue +72 -0
  372. package/templates/vue-app/files/src/views/system/job/module/header.vue +48 -0
  373. package/templates/vue-app/files/src/views/system/menu/index.vue +327 -0
  374. package/templates/vue-app/files/src/views/system/model/index.vue +285 -0
  375. package/templates/vue-app/files/src/views/system/role/index.vue +434 -0
  376. package/templates/vue-app/files/src/views/system/sysSet/index.vue +84 -0
  377. package/templates/vue-app/files/src/views/system/timing/index.vue +289 -0
  378. package/templates/vue-app/files/src/views/system/timing/log.vue +143 -0
  379. package/templates/vue-app/files/src/views/system/user/admin.vue +414 -0
  380. package/templates/vue-app/files/src/views/system/user/center/updateEmail.vue +146 -0
  381. package/templates/vue-app/files/src/views/system/user/center/updatePass.vue +168 -0
  382. package/templates/vue-app/files/src/views/system/user/center.vue +140 -0
  383. package/templates/vue-app/files/src/views/system/user/index.vue +972 -0
  384. package/templates/vue-app/files/src/views/systemSet/role/index.vue +314 -0
  385. package/templates/vue-app/files/src/views/systemSet/user/admin.vue +414 -0
  386. package/templates/vue-app/files/src/views/systemSet/user/center/updateEmail.vue +146 -0
  387. package/templates/vue-app/files/src/views/systemSet/user/center/updatePass.vue +115 -0
  388. package/templates/vue-app/files/src/views/systemSet/user/center.vue +351 -0
  389. package/templates/vue-app/files/src/views/systemSet/user/index.vue +928 -0
  390. package/templates/vue-app/files/src/views/tools/aliPay/config.vue +102 -0
  391. package/templates/vue-app/files/src/views/tools/aliPay/index.vue +48 -0
  392. package/templates/vue-app/files/src/views/tools/aliPay/toPay.vue +91 -0
  393. package/templates/vue-app/files/src/views/tools/email/config.vue +91 -0
  394. package/templates/vue-app/files/src/views/tools/email/index.vue +42 -0
  395. package/templates/vue-app/files/src/views/tools/email/send.vue +159 -0
  396. package/templates/vue-app/files/src/views/tools/storage/index.vue +35 -0
  397. package/templates/vue-app/files/src/views/tools/storage/local/index.vue +207 -0
  398. package/templates/vue-app/files/src/views/tools/storage/qiniu/form.vue +108 -0
  399. package/templates/vue-app/files/src/views/tools/storage/qiniu/index.vue +241 -0
  400. package/templates/vue-app/files/src/views/tools/swagger/index.vue +14 -0
  401. package/templates/vue-app/files/vue.config.js +173 -0
  402. package/templates/vue-app/template.json +30 -0
@@ -0,0 +1,2342 @@
1
+ /*!
2
+ * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */
5
+ /* FONT PATH
6
+ * -------------------------- */
7
+ @font-face {
8
+ font-family: 'FontAwesome';
9
+ src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
10
+ src:
11
+ url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),
12
+ url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),
13
+ url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),
14
+ url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),
15
+ url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
16
+ font-weight: normal;
17
+ font-style: normal;
18
+ }
19
+ .fa {
20
+ display: inline-block;
21
+ font: normal normal normal 14px/1 FontAwesome;
22
+ font-size: inherit;
23
+ text-rendering: auto;
24
+ -webkit-font-smoothing: antialiased;
25
+ -moz-osx-font-smoothing: grayscale;
26
+ }
27
+ /* makes the font 33% larger relative to the icon container */
28
+ .fa-lg {
29
+ font-size: 1.33333333em;
30
+ line-height: 0.75em;
31
+ vertical-align: -15%;
32
+ }
33
+ .fa-2x {
34
+ font-size: 2em;
35
+ }
36
+ .fa-3x {
37
+ font-size: 3em;
38
+ }
39
+ .fa-4x {
40
+ font-size: 4em;
41
+ }
42
+ .fa-5x {
43
+ font-size: 5em;
44
+ }
45
+ .fa-fw {
46
+ width: 1.28571429em;
47
+ text-align: center;
48
+ }
49
+ .fa-ul {
50
+ padding-left: 0;
51
+ margin-left: 2.14285714em;
52
+ list-style-type: none;
53
+ }
54
+ .fa-ul > li {
55
+ position: relative;
56
+ }
57
+ .fa-li {
58
+ position: absolute;
59
+ left: -2.14285714em;
60
+ width: 2.14285714em;
61
+ top: 0.14285714em;
62
+ text-align: center;
63
+ }
64
+ .fa-li.fa-lg {
65
+ left: -1.85714286em;
66
+ }
67
+ .fa-border {
68
+ padding: 0.2em 0.25em 0.15em;
69
+ border: solid 0.08em #eeeeee;
70
+ border-radius: 0.1em;
71
+ }
72
+ .fa-pull-left {
73
+ float: left;
74
+ }
75
+ .fa-pull-right {
76
+ float: right;
77
+ }
78
+ .fa.fa-pull-left {
79
+ margin-right: 0.3em;
80
+ }
81
+ .fa.fa-pull-right {
82
+ margin-left: 0.3em;
83
+ }
84
+ /* Deprecated as of 4.4.0 */
85
+ .pull-right {
86
+ float: right;
87
+ }
88
+ .pull-left {
89
+ float: left;
90
+ }
91
+ .fa.pull-left {
92
+ margin-right: 0.3em;
93
+ }
94
+ .fa.pull-right {
95
+ margin-left: 0.3em;
96
+ }
97
+ .fa-spin {
98
+ -webkit-animation: fa-spin 2s infinite linear;
99
+ animation: fa-spin 2s infinite linear;
100
+ }
101
+ .fa-pulse {
102
+ -webkit-animation: fa-spin 1s infinite steps(8);
103
+ animation: fa-spin 1s infinite steps(8);
104
+ }
105
+ @-webkit-keyframes fa-spin {
106
+ 0% {
107
+ -webkit-transform: rotate(0deg);
108
+ transform: rotate(0deg);
109
+ }
110
+ 100% {
111
+ -webkit-transform: rotate(359deg);
112
+ transform: rotate(359deg);
113
+ }
114
+ }
115
+ @keyframes fa-spin {
116
+ 0% {
117
+ -webkit-transform: rotate(0deg);
118
+ transform: rotate(0deg);
119
+ }
120
+ 100% {
121
+ -webkit-transform: rotate(359deg);
122
+ transform: rotate(359deg);
123
+ }
124
+ }
125
+ .fa-rotate-90 {
126
+ -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';
127
+ -webkit-transform: rotate(90deg);
128
+ -ms-transform: rotate(90deg);
129
+ transform: rotate(90deg);
130
+ }
131
+ .fa-rotate-180 {
132
+ -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';
133
+ -webkit-transform: rotate(180deg);
134
+ -ms-transform: rotate(180deg);
135
+ transform: rotate(180deg);
136
+ }
137
+ .fa-rotate-270 {
138
+ -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';
139
+ -webkit-transform: rotate(270deg);
140
+ -ms-transform: rotate(270deg);
141
+ transform: rotate(270deg);
142
+ }
143
+ .fa-flip-horizontal {
144
+ -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';
145
+ -webkit-transform: scale(-1, 1);
146
+ -ms-transform: scale(-1, 1);
147
+ transform: scale(-1, 1);
148
+ }
149
+ .fa-flip-vertical {
150
+ -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';
151
+ -webkit-transform: scale(1, -1);
152
+ -ms-transform: scale(1, -1);
153
+ transform: scale(1, -1);
154
+ }
155
+ :root .fa-rotate-90,
156
+ :root .fa-rotate-180,
157
+ :root .fa-rotate-270,
158
+ :root .fa-flip-horizontal,
159
+ :root .fa-flip-vertical {
160
+ filter: none;
161
+ }
162
+ .fa-stack {
163
+ position: relative;
164
+ display: inline-block;
165
+ width: 2em;
166
+ height: 2em;
167
+ line-height: 2em;
168
+ vertical-align: middle;
169
+ }
170
+ .fa-stack-1x,
171
+ .fa-stack-2x {
172
+ position: absolute;
173
+ left: 0;
174
+ width: 100%;
175
+ text-align: center;
176
+ }
177
+ .fa-stack-1x {
178
+ line-height: inherit;
179
+ }
180
+ .fa-stack-2x {
181
+ font-size: 2em;
182
+ }
183
+ .fa-inverse {
184
+ color: #ffffff;
185
+ }
186
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
187
+ readers do not read off random characters that represent icons */
188
+ .fa-glass:before {
189
+ content: '\f000';
190
+ }
191
+ .fa-music:before {
192
+ content: '\f001';
193
+ }
194
+ .fa-search:before {
195
+ content: '\f002';
196
+ }
197
+ .fa-envelope-o:before {
198
+ content: '\f003';
199
+ }
200
+ .fa-heart:before {
201
+ content: '\f004';
202
+ }
203
+ .fa-star:before {
204
+ content: '\f005';
205
+ }
206
+ .fa-star-o:before {
207
+ content: '\f006';
208
+ }
209
+ .fa-user:before {
210
+ content: '\f007';
211
+ }
212
+ .fa-film:before {
213
+ content: '\f008';
214
+ }
215
+ .fa-th-large:before {
216
+ content: '\f009';
217
+ }
218
+ .fa-th:before {
219
+ content: '\f00a';
220
+ }
221
+ .fa-th-list:before {
222
+ content: '\f00b';
223
+ }
224
+ .fa-check:before {
225
+ content: '\f00c';
226
+ }
227
+ .fa-remove:before,
228
+ .fa-close:before,
229
+ .fa-times:before {
230
+ content: '\f00d';
231
+ }
232
+ .fa-search-plus:before {
233
+ content: '\f00e';
234
+ }
235
+ .fa-search-minus:before {
236
+ content: '\f010';
237
+ }
238
+ .fa-power-off:before {
239
+ content: '\f011';
240
+ }
241
+ .fa-signal:before {
242
+ content: '\f012';
243
+ }
244
+ .fa-gear:before,
245
+ .fa-cog:before {
246
+ content: '\f013';
247
+ }
248
+ .fa-trash-o:before {
249
+ content: '\f014';
250
+ }
251
+ .fa-home:before {
252
+ content: '\f015';
253
+ }
254
+ .fa-file-o:before {
255
+ content: '\f016';
256
+ }
257
+ .fa-clock-o:before {
258
+ content: '\f017';
259
+ }
260
+ .fa-road:before {
261
+ content: '\f018';
262
+ }
263
+ .fa-download:before {
264
+ content: '\f019';
265
+ }
266
+ .fa-arrow-circle-o-down:before {
267
+ content: '\f01a';
268
+ }
269
+ .fa-arrow-circle-o-up:before {
270
+ content: '\f01b';
271
+ }
272
+ .fa-inbox:before {
273
+ content: '\f01c';
274
+ }
275
+ .fa-play-circle-o:before {
276
+ content: '\f01d';
277
+ }
278
+ .fa-rotate-right:before,
279
+ .fa-repeat:before {
280
+ content: '\f01e';
281
+ }
282
+ .fa-refresh:before {
283
+ content: '\f021';
284
+ }
285
+ .fa-list-alt:before {
286
+ content: '\f022';
287
+ }
288
+ .fa-lock:before {
289
+ content: '\f023';
290
+ }
291
+ .fa-flag:before {
292
+ content: '\f024';
293
+ }
294
+ .fa-headphones:before {
295
+ content: '\f025';
296
+ }
297
+ .fa-volume-off:before {
298
+ content: '\f026';
299
+ }
300
+ .fa-volume-down:before {
301
+ content: '\f027';
302
+ }
303
+ .fa-volume-up:before {
304
+ content: '\f028';
305
+ }
306
+ .fa-qrcode:before {
307
+ content: '\f029';
308
+ }
309
+ .fa-barcode:before {
310
+ content: '\f02a';
311
+ }
312
+ .fa-tag:before {
313
+ content: '\f02b';
314
+ }
315
+ .fa-tags:before {
316
+ content: '\f02c';
317
+ }
318
+ .fa-book:before {
319
+ content: '\f02d';
320
+ }
321
+ .fa-bookmark:before {
322
+ content: '\f02e';
323
+ }
324
+ .fa-print:before {
325
+ content: '\f02f';
326
+ }
327
+ .fa-camera:before {
328
+ content: '\f030';
329
+ }
330
+ .fa-font:before {
331
+ content: '\f031';
332
+ }
333
+ .fa-bold:before {
334
+ content: '\f032';
335
+ }
336
+ .fa-italic:before {
337
+ content: '\f033';
338
+ }
339
+ .fa-text-height:before {
340
+ content: '\f034';
341
+ }
342
+ .fa-text-width:before {
343
+ content: '\f035';
344
+ }
345
+ .fa-align-left:before {
346
+ content: '\f036';
347
+ }
348
+ .fa-align-center:before {
349
+ content: '\f037';
350
+ }
351
+ .fa-align-right:before {
352
+ content: '\f038';
353
+ }
354
+ .fa-align-justify:before {
355
+ content: '\f039';
356
+ }
357
+ .fa-list:before {
358
+ content: '\f03a';
359
+ }
360
+ .fa-dedent:before,
361
+ .fa-outdent:before {
362
+ content: '\f03b';
363
+ }
364
+ .fa-indent:before {
365
+ content: '\f03c';
366
+ }
367
+ .fa-video-camera:before {
368
+ content: '\f03d';
369
+ }
370
+ .fa-photo:before,
371
+ .fa-image:before,
372
+ .fa-picture-o:before {
373
+ content: '\f03e';
374
+ }
375
+ .fa-pencil:before {
376
+ content: '\f040';
377
+ }
378
+ .fa-map-marker:before {
379
+ content: '\f041';
380
+ }
381
+ .fa-adjust:before {
382
+ content: '\f042';
383
+ }
384
+ .fa-tint:before {
385
+ content: '\f043';
386
+ }
387
+ .fa-edit:before,
388
+ .fa-pencil-square-o:before {
389
+ content: '\f044';
390
+ }
391
+ .fa-share-square-o:before {
392
+ content: '\f045';
393
+ }
394
+ .fa-check-square-o:before {
395
+ content: '\f046';
396
+ }
397
+ .fa-arrows:before {
398
+ content: '\f047';
399
+ }
400
+ .fa-step-backward:before {
401
+ content: '\f048';
402
+ }
403
+ .fa-fast-backward:before {
404
+ content: '\f049';
405
+ }
406
+ .fa-backward:before {
407
+ content: '\f04a';
408
+ }
409
+ .fa-play:before {
410
+ content: '\f04b';
411
+ }
412
+ .fa-pause:before {
413
+ content: '\f04c';
414
+ }
415
+ .fa-stop:before {
416
+ content: '\f04d';
417
+ }
418
+ .fa-forward:before {
419
+ content: '\f04e';
420
+ }
421
+ .fa-fast-forward:before {
422
+ content: '\f050';
423
+ }
424
+ .fa-step-forward:before {
425
+ content: '\f051';
426
+ }
427
+ .fa-eject:before {
428
+ content: '\f052';
429
+ }
430
+ .fa-chevron-left:before {
431
+ content: '\f053';
432
+ }
433
+ .fa-chevron-right:before {
434
+ content: '\f054';
435
+ }
436
+ .fa-plus-circle:before {
437
+ content: '\f055';
438
+ }
439
+ .fa-minus-circle:before {
440
+ content: '\f056';
441
+ }
442
+ .fa-times-circle:before {
443
+ content: '\f057';
444
+ }
445
+ .fa-check-circle:before {
446
+ content: '\f058';
447
+ }
448
+ .fa-question-circle:before {
449
+ content: '\f059';
450
+ }
451
+ .fa-info-circle:before {
452
+ content: '\f05a';
453
+ }
454
+ .fa-crosshairs:before {
455
+ content: '\f05b';
456
+ }
457
+ .fa-times-circle-o:before {
458
+ content: '\f05c';
459
+ }
460
+ .fa-check-circle-o:before {
461
+ content: '\f05d';
462
+ }
463
+ .fa-ban:before {
464
+ content: '\f05e';
465
+ }
466
+ .fa-arrow-left:before {
467
+ content: '\f060';
468
+ }
469
+ .fa-arrow-right:before {
470
+ content: '\f061';
471
+ }
472
+ .fa-arrow-up:before {
473
+ content: '\f062';
474
+ }
475
+ .fa-arrow-down:before {
476
+ content: '\f063';
477
+ }
478
+ .fa-mail-forward:before,
479
+ .fa-share:before {
480
+ content: '\f064';
481
+ }
482
+ .fa-expand:before {
483
+ content: '\f065';
484
+ }
485
+ .fa-compress:before {
486
+ content: '\f066';
487
+ }
488
+ .fa-plus:before {
489
+ content: '\f067';
490
+ }
491
+ .fa-minus:before {
492
+ content: '\f068';
493
+ }
494
+ .fa-asterisk:before {
495
+ content: '\f069';
496
+ }
497
+ .fa-exclamation-circle:before {
498
+ content: '\f06a';
499
+ }
500
+ .fa-gift:before {
501
+ content: '\f06b';
502
+ }
503
+ .fa-leaf:before {
504
+ content: '\f06c';
505
+ }
506
+ .fa-fire:before {
507
+ content: '\f06d';
508
+ }
509
+ .fa-eye:before {
510
+ content: '\f06e';
511
+ }
512
+ .fa-eye-slash:before {
513
+ content: '\f070';
514
+ }
515
+ .fa-warning:before,
516
+ .fa-exclamation-triangle:before {
517
+ content: '\f071';
518
+ }
519
+ .fa-plane:before {
520
+ content: '\f072';
521
+ }
522
+ .fa-calendar:before {
523
+ content: '\f073';
524
+ }
525
+ .fa-random:before {
526
+ content: '\f074';
527
+ }
528
+ .fa-comment:before {
529
+ content: '\f075';
530
+ }
531
+ .fa-magnet:before {
532
+ content: '\f076';
533
+ }
534
+ .fa-chevron-up:before {
535
+ content: '\f077';
536
+ }
537
+ .fa-chevron-down:before {
538
+ content: '\f078';
539
+ }
540
+ .fa-retweet:before {
541
+ content: '\f079';
542
+ }
543
+ .fa-shopping-cart:before {
544
+ content: '\f07a';
545
+ }
546
+ .fa-folder:before {
547
+ content: '\f07b';
548
+ }
549
+ .fa-folder-open:before {
550
+ content: '\f07c';
551
+ }
552
+ .fa-arrows-v:before {
553
+ content: '\f07d';
554
+ }
555
+ .fa-arrows-h:before {
556
+ content: '\f07e';
557
+ }
558
+ .fa-bar-chart-o:before,
559
+ .fa-bar-chart:before {
560
+ content: '\f080';
561
+ }
562
+ .fa-twitter-square:before {
563
+ content: '\f081';
564
+ }
565
+ .fa-facebook-square:before {
566
+ content: '\f082';
567
+ }
568
+ .fa-camera-retro:before {
569
+ content: '\f083';
570
+ }
571
+ .fa-key:before {
572
+ content: '\f084';
573
+ }
574
+ .fa-gears:before,
575
+ .fa-cogs:before {
576
+ content: '\f085';
577
+ }
578
+ .fa-comments:before {
579
+ content: '\f086';
580
+ }
581
+ .fa-thumbs-o-up:before {
582
+ content: '\f087';
583
+ }
584
+ .fa-thumbs-o-down:before {
585
+ content: '\f088';
586
+ }
587
+ .fa-star-half:before {
588
+ content: '\f089';
589
+ }
590
+ .fa-heart-o:before {
591
+ content: '\f08a';
592
+ }
593
+ .fa-sign-out:before {
594
+ content: '\f08b';
595
+ }
596
+ .fa-linkedin-square:before {
597
+ content: '\f08c';
598
+ }
599
+ .fa-thumb-tack:before {
600
+ content: '\f08d';
601
+ }
602
+ .fa-external-link:before {
603
+ content: '\f08e';
604
+ }
605
+ .fa-sign-in:before {
606
+ content: '\f090';
607
+ }
608
+ .fa-trophy:before {
609
+ content: '\f091';
610
+ }
611
+ .fa-github-square:before {
612
+ content: '\f092';
613
+ }
614
+ .fa-upload:before {
615
+ content: '\f093';
616
+ }
617
+ .fa-lemon-o:before {
618
+ content: '\f094';
619
+ }
620
+ .fa-phone:before {
621
+ content: '\f095';
622
+ }
623
+ .fa-square-o:before {
624
+ content: '\f096';
625
+ }
626
+ .fa-bookmark-o:before {
627
+ content: '\f097';
628
+ }
629
+ .fa-phone-square:before {
630
+ content: '\f098';
631
+ }
632
+ .fa-twitter:before {
633
+ content: '\f099';
634
+ }
635
+ .fa-facebook-f:before,
636
+ .fa-facebook:before {
637
+ content: '\f09a';
638
+ }
639
+ .fa-github:before {
640
+ content: '\f09b';
641
+ }
642
+ .fa-unlock:before {
643
+ content: '\f09c';
644
+ }
645
+ .fa-credit-card:before {
646
+ content: '\f09d';
647
+ }
648
+ .fa-feed:before,
649
+ .fa-rss:before {
650
+ content: '\f09e';
651
+ }
652
+ .fa-hdd-o:before {
653
+ content: '\f0a0';
654
+ }
655
+ .fa-bullhorn:before {
656
+ content: '\f0a1';
657
+ }
658
+ .fa-bell:before {
659
+ content: '\f0f3';
660
+ }
661
+ .fa-certificate:before {
662
+ content: '\f0a3';
663
+ }
664
+ .fa-hand-o-right:before {
665
+ content: '\f0a4';
666
+ }
667
+ .fa-hand-o-left:before {
668
+ content: '\f0a5';
669
+ }
670
+ .fa-hand-o-up:before {
671
+ content: '\f0a6';
672
+ }
673
+ .fa-hand-o-down:before {
674
+ content: '\f0a7';
675
+ }
676
+ .fa-arrow-circle-left:before {
677
+ content: '\f0a8';
678
+ }
679
+ .fa-arrow-circle-right:before {
680
+ content: '\f0a9';
681
+ }
682
+ .fa-arrow-circle-up:before {
683
+ content: '\f0aa';
684
+ }
685
+ .fa-arrow-circle-down:before {
686
+ content: '\f0ab';
687
+ }
688
+ .fa-globe:before {
689
+ content: '\f0ac';
690
+ }
691
+ .fa-wrench:before {
692
+ content: '\f0ad';
693
+ }
694
+ .fa-tasks:before {
695
+ content: '\f0ae';
696
+ }
697
+ .fa-filter:before {
698
+ content: '\f0b0';
699
+ }
700
+ .fa-briefcase:before {
701
+ content: '\f0b1';
702
+ }
703
+ .fa-arrows-alt:before {
704
+ content: '\f0b2';
705
+ }
706
+ .fa-group:before,
707
+ .fa-users:before {
708
+ content: '\f0c0';
709
+ }
710
+ .fa-chain:before,
711
+ .fa-link:before {
712
+ content: '\f0c1';
713
+ }
714
+ .fa-cloud:before {
715
+ content: '\f0c2';
716
+ }
717
+ .fa-flask:before {
718
+ content: '\f0c3';
719
+ }
720
+ .fa-cut:before,
721
+ .fa-scissors:before {
722
+ content: '\f0c4';
723
+ }
724
+ .fa-copy:before,
725
+ .fa-files-o:before {
726
+ content: '\f0c5';
727
+ }
728
+ .fa-paperclip:before {
729
+ content: '\f0c6';
730
+ }
731
+ .fa-save:before,
732
+ .fa-floppy-o:before {
733
+ content: '\f0c7';
734
+ }
735
+ .fa-square:before {
736
+ content: '\f0c8';
737
+ }
738
+ .fa-navicon:before,
739
+ .fa-reorder:before,
740
+ .fa-bars:before {
741
+ content: '\f0c9';
742
+ }
743
+ .fa-list-ul:before {
744
+ content: '\f0ca';
745
+ }
746
+ .fa-list-ol:before {
747
+ content: '\f0cb';
748
+ }
749
+ .fa-strikethrough:before {
750
+ content: '\f0cc';
751
+ }
752
+ .fa-underline:before {
753
+ content: '\f0cd';
754
+ }
755
+ .fa-table:before {
756
+ content: '\f0ce';
757
+ }
758
+ .fa-magic:before {
759
+ content: '\f0d0';
760
+ }
761
+ .fa-truck:before {
762
+ content: '\f0d1';
763
+ }
764
+ .fa-pinterest:before {
765
+ content: '\f0d2';
766
+ }
767
+ .fa-pinterest-square:before {
768
+ content: '\f0d3';
769
+ }
770
+ .fa-google-plus-square:before {
771
+ content: '\f0d4';
772
+ }
773
+ .fa-google-plus:before {
774
+ content: '\f0d5';
775
+ }
776
+ .fa-money:before {
777
+ content: '\f0d6';
778
+ }
779
+ .fa-caret-down:before {
780
+ content: '\f0d7';
781
+ }
782
+ .fa-caret-up:before {
783
+ content: '\f0d8';
784
+ }
785
+ .fa-caret-left:before {
786
+ content: '\f0d9';
787
+ }
788
+ .fa-caret-right:before {
789
+ content: '\f0da';
790
+ }
791
+ .fa-columns:before {
792
+ content: '\f0db';
793
+ }
794
+ .fa-unsorted:before,
795
+ .fa-sort:before {
796
+ content: '\f0dc';
797
+ }
798
+ .fa-sort-down:before,
799
+ .fa-sort-desc:before {
800
+ content: '\f0dd';
801
+ }
802
+ .fa-sort-up:before,
803
+ .fa-sort-asc:before {
804
+ content: '\f0de';
805
+ }
806
+ .fa-envelope:before {
807
+ content: '\f0e0';
808
+ }
809
+ .fa-linkedin:before {
810
+ content: '\f0e1';
811
+ }
812
+ .fa-rotate-left:before,
813
+ .fa-undo:before {
814
+ content: '\f0e2';
815
+ }
816
+ .fa-legal:before,
817
+ .fa-gavel:before {
818
+ content: '\f0e3';
819
+ }
820
+ .fa-dashboard:before,
821
+ .fa-tachometer:before {
822
+ content: '\f0e4';
823
+ }
824
+ .fa-comment-o:before {
825
+ content: '\f0e5';
826
+ }
827
+ .fa-comments-o:before {
828
+ content: '\f0e6';
829
+ }
830
+ .fa-flash:before,
831
+ .fa-bolt:before {
832
+ content: '\f0e7';
833
+ }
834
+ .fa-sitemap:before {
835
+ content: '\f0e8';
836
+ }
837
+ .fa-umbrella:before {
838
+ content: '\f0e9';
839
+ }
840
+ .fa-paste:before,
841
+ .fa-clipboard:before {
842
+ content: '\f0ea';
843
+ }
844
+ .fa-lightbulb-o:before {
845
+ content: '\f0eb';
846
+ }
847
+ .fa-exchange:before {
848
+ content: '\f0ec';
849
+ }
850
+ .fa-cloud-download:before {
851
+ content: '\f0ed';
852
+ }
853
+ .fa-cloud-upload:before {
854
+ content: '\f0ee';
855
+ }
856
+ .fa-user-md:before {
857
+ content: '\f0f0';
858
+ }
859
+ .fa-stethoscope:before {
860
+ content: '\f0f1';
861
+ }
862
+ .fa-suitcase:before {
863
+ content: '\f0f2';
864
+ }
865
+ .fa-bell-o:before {
866
+ content: '\f0a2';
867
+ }
868
+ .fa-coffee:before {
869
+ content: '\f0f4';
870
+ }
871
+ .fa-cutlery:before {
872
+ content: '\f0f5';
873
+ }
874
+ .fa-file-text-o:before {
875
+ content: '\f0f6';
876
+ }
877
+ .fa-building-o:before {
878
+ content: '\f0f7';
879
+ }
880
+ .fa-hospital-o:before {
881
+ content: '\f0f8';
882
+ }
883
+ .fa-ambulance:before {
884
+ content: '\f0f9';
885
+ }
886
+ .fa-medkit:before {
887
+ content: '\f0fa';
888
+ }
889
+ .fa-fighter-jet:before {
890
+ content: '\f0fb';
891
+ }
892
+ .fa-beer:before {
893
+ content: '\f0fc';
894
+ }
895
+ .fa-h-square:before {
896
+ content: '\f0fd';
897
+ }
898
+ .fa-plus-square:before {
899
+ content: '\f0fe';
900
+ }
901
+ .fa-angle-double-left:before {
902
+ content: '\f100';
903
+ }
904
+ .fa-angle-double-right:before {
905
+ content: '\f101';
906
+ }
907
+ .fa-angle-double-up:before {
908
+ content: '\f102';
909
+ }
910
+ .fa-angle-double-down:before {
911
+ content: '\f103';
912
+ }
913
+ .fa-angle-left:before {
914
+ content: '\f104';
915
+ }
916
+ .fa-angle-right:before {
917
+ content: '\f105';
918
+ }
919
+ .fa-angle-up:before {
920
+ content: '\f106';
921
+ }
922
+ .fa-angle-down:before {
923
+ content: '\f107';
924
+ }
925
+ .fa-desktop:before {
926
+ content: '\f108';
927
+ }
928
+ .fa-laptop:before {
929
+ content: '\f109';
930
+ }
931
+ .fa-tablet:before {
932
+ content: '\f10a';
933
+ }
934
+ .fa-mobile-phone:before,
935
+ .fa-mobile:before {
936
+ content: '\f10b';
937
+ }
938
+ .fa-circle-o:before {
939
+ content: '\f10c';
940
+ }
941
+ .fa-quote-left:before {
942
+ content: '\f10d';
943
+ }
944
+ .fa-quote-right:before {
945
+ content: '\f10e';
946
+ }
947
+ .fa-spinner:before {
948
+ content: '\f110';
949
+ }
950
+ .fa-circle:before {
951
+ content: '\f111';
952
+ }
953
+ .fa-mail-reply:before,
954
+ .fa-reply:before {
955
+ content: '\f112';
956
+ }
957
+ .fa-github-alt:before {
958
+ content: '\f113';
959
+ }
960
+ .fa-folder-o:before {
961
+ content: '\f114';
962
+ }
963
+ .fa-folder-open-o:before {
964
+ content: '\f115';
965
+ }
966
+ .fa-smile-o:before {
967
+ content: '\f118';
968
+ }
969
+ .fa-frown-o:before {
970
+ content: '\f119';
971
+ }
972
+ .fa-meh-o:before {
973
+ content: '\f11a';
974
+ }
975
+ .fa-gamepad:before {
976
+ content: '\f11b';
977
+ }
978
+ .fa-keyboard-o:before {
979
+ content: '\f11c';
980
+ }
981
+ .fa-flag-o:before {
982
+ content: '\f11d';
983
+ }
984
+ .fa-flag-checkered:before {
985
+ content: '\f11e';
986
+ }
987
+ .fa-terminal:before {
988
+ content: '\f120';
989
+ }
990
+ .fa-code:before {
991
+ content: '\f121';
992
+ }
993
+ .fa-mail-reply-all:before,
994
+ .fa-reply-all:before {
995
+ content: '\f122';
996
+ }
997
+ .fa-star-half-empty:before,
998
+ .fa-star-half-full:before,
999
+ .fa-star-half-o:before {
1000
+ content: '\f123';
1001
+ }
1002
+ .fa-location-arrow:before {
1003
+ content: '\f124';
1004
+ }
1005
+ .fa-crop:before {
1006
+ content: '\f125';
1007
+ }
1008
+ .fa-code-fork:before {
1009
+ content: '\f126';
1010
+ }
1011
+ .fa-unlink:before,
1012
+ .fa-chain-broken:before {
1013
+ content: '\f127';
1014
+ }
1015
+ .fa-question:before {
1016
+ content: '\f128';
1017
+ }
1018
+ .fa-info:before {
1019
+ content: '\f129';
1020
+ }
1021
+ .fa-exclamation:before {
1022
+ content: '\f12a';
1023
+ }
1024
+ .fa-superscript:before {
1025
+ content: '\f12b';
1026
+ }
1027
+ .fa-subscript:before {
1028
+ content: '\f12c';
1029
+ }
1030
+ .fa-eraser:before {
1031
+ content: '\f12d';
1032
+ }
1033
+ .fa-puzzle-piece:before {
1034
+ content: '\f12e';
1035
+ }
1036
+ .fa-microphone:before {
1037
+ content: '\f130';
1038
+ }
1039
+ .fa-microphone-slash:before {
1040
+ content: '\f131';
1041
+ }
1042
+ .fa-shield:before {
1043
+ content: '\f132';
1044
+ }
1045
+ .fa-calendar-o:before {
1046
+ content: '\f133';
1047
+ }
1048
+ .fa-fire-extinguisher:before {
1049
+ content: '\f134';
1050
+ }
1051
+ .fa-rocket:before {
1052
+ content: '\f135';
1053
+ }
1054
+ .fa-maxcdn:before {
1055
+ content: '\f136';
1056
+ }
1057
+ .fa-chevron-circle-left:before {
1058
+ content: '\f137';
1059
+ }
1060
+ .fa-chevron-circle-right:before {
1061
+ content: '\f138';
1062
+ }
1063
+ .fa-chevron-circle-up:before {
1064
+ content: '\f139';
1065
+ }
1066
+ .fa-chevron-circle-down:before {
1067
+ content: '\f13a';
1068
+ }
1069
+ .fa-html5:before {
1070
+ content: '\f13b';
1071
+ }
1072
+ .fa-css3:before {
1073
+ content: '\f13c';
1074
+ }
1075
+ .fa-anchor:before {
1076
+ content: '\f13d';
1077
+ }
1078
+ .fa-unlock-alt:before {
1079
+ content: '\f13e';
1080
+ }
1081
+ .fa-bullseye:before {
1082
+ content: '\f140';
1083
+ }
1084
+ .fa-ellipsis-h:before {
1085
+ content: '\f141';
1086
+ }
1087
+ .fa-ellipsis-v:before {
1088
+ content: '\f142';
1089
+ }
1090
+ .fa-rss-square:before {
1091
+ content: '\f143';
1092
+ }
1093
+ .fa-play-circle:before {
1094
+ content: '\f144';
1095
+ }
1096
+ .fa-ticket:before {
1097
+ content: '\f145';
1098
+ }
1099
+ .fa-minus-square:before {
1100
+ content: '\f146';
1101
+ }
1102
+ .fa-minus-square-o:before {
1103
+ content: '\f147';
1104
+ }
1105
+ .fa-level-up:before {
1106
+ content: '\f148';
1107
+ }
1108
+ .fa-level-down:before {
1109
+ content: '\f149';
1110
+ }
1111
+ .fa-check-square:before {
1112
+ content: '\f14a';
1113
+ }
1114
+ .fa-pencil-square:before {
1115
+ content: '\f14b';
1116
+ }
1117
+ .fa-external-link-square:before {
1118
+ content: '\f14c';
1119
+ }
1120
+ .fa-share-square:before {
1121
+ content: '\f14d';
1122
+ }
1123
+ .fa-compass:before {
1124
+ content: '\f14e';
1125
+ }
1126
+ .fa-toggle-down:before,
1127
+ .fa-caret-square-o-down:before {
1128
+ content: '\f150';
1129
+ }
1130
+ .fa-toggle-up:before,
1131
+ .fa-caret-square-o-up:before {
1132
+ content: '\f151';
1133
+ }
1134
+ .fa-toggle-right:before,
1135
+ .fa-caret-square-o-right:before {
1136
+ content: '\f152';
1137
+ }
1138
+ .fa-euro:before,
1139
+ .fa-eur:before {
1140
+ content: '\f153';
1141
+ }
1142
+ .fa-gbp:before {
1143
+ content: '\f154';
1144
+ }
1145
+ .fa-dollar:before,
1146
+ .fa-usd:before {
1147
+ content: '\f155';
1148
+ }
1149
+ .fa-rupee:before,
1150
+ .fa-inr:before {
1151
+ content: '\f156';
1152
+ }
1153
+ .fa-cny:before,
1154
+ .fa-rmb:before,
1155
+ .fa-yen:before,
1156
+ .fa-jpy:before {
1157
+ content: '\f157';
1158
+ }
1159
+ .fa-ruble:before,
1160
+ .fa-rouble:before,
1161
+ .fa-rub:before {
1162
+ content: '\f158';
1163
+ }
1164
+ .fa-won:before,
1165
+ .fa-krw:before {
1166
+ content: '\f159';
1167
+ }
1168
+ .fa-bitcoin:before,
1169
+ .fa-btc:before {
1170
+ content: '\f15a';
1171
+ }
1172
+ .fa-file:before {
1173
+ content: '\f15b';
1174
+ }
1175
+ .fa-file-text:before {
1176
+ content: '\f15c';
1177
+ }
1178
+ .fa-sort-alpha-asc:before {
1179
+ content: '\f15d';
1180
+ }
1181
+ .fa-sort-alpha-desc:before {
1182
+ content: '\f15e';
1183
+ }
1184
+ .fa-sort-amount-asc:before {
1185
+ content: '\f160';
1186
+ }
1187
+ .fa-sort-amount-desc:before {
1188
+ content: '\f161';
1189
+ }
1190
+ .fa-sort-numeric-asc:before {
1191
+ content: '\f162';
1192
+ }
1193
+ .fa-sort-numeric-desc:before {
1194
+ content: '\f163';
1195
+ }
1196
+ .fa-thumbs-up:before {
1197
+ content: '\f164';
1198
+ }
1199
+ .fa-thumbs-down:before {
1200
+ content: '\f165';
1201
+ }
1202
+ .fa-youtube-square:before {
1203
+ content: '\f166';
1204
+ }
1205
+ .fa-youtube:before {
1206
+ content: '\f167';
1207
+ }
1208
+ .fa-xing:before {
1209
+ content: '\f168';
1210
+ }
1211
+ .fa-xing-square:before {
1212
+ content: '\f169';
1213
+ }
1214
+ .fa-youtube-play:before {
1215
+ content: '\f16a';
1216
+ }
1217
+ .fa-dropbox:before {
1218
+ content: '\f16b';
1219
+ }
1220
+ .fa-stack-overflow:before {
1221
+ content: '\f16c';
1222
+ }
1223
+ .fa-instagram:before {
1224
+ content: '\f16d';
1225
+ }
1226
+ .fa-flickr:before {
1227
+ content: '\f16e';
1228
+ }
1229
+ .fa-adn:before {
1230
+ content: '\f170';
1231
+ }
1232
+ .fa-bitbucket:before {
1233
+ content: '\f171';
1234
+ }
1235
+ .fa-bitbucket-square:before {
1236
+ content: '\f172';
1237
+ }
1238
+ .fa-tumblr:before {
1239
+ content: '\f173';
1240
+ }
1241
+ .fa-tumblr-square:before {
1242
+ content: '\f174';
1243
+ }
1244
+ .fa-long-arrow-down:before {
1245
+ content: '\f175';
1246
+ }
1247
+ .fa-long-arrow-up:before {
1248
+ content: '\f176';
1249
+ }
1250
+ .fa-long-arrow-left:before {
1251
+ content: '\f177';
1252
+ }
1253
+ .fa-long-arrow-right:before {
1254
+ content: '\f178';
1255
+ }
1256
+ .fa-apple:before {
1257
+ content: '\f179';
1258
+ }
1259
+ .fa-windows:before {
1260
+ content: '\f17a';
1261
+ }
1262
+ .fa-android:before {
1263
+ content: '\f17b';
1264
+ }
1265
+ .fa-linux:before {
1266
+ content: '\f17c';
1267
+ }
1268
+ .fa-dribbble:before {
1269
+ content: '\f17d';
1270
+ }
1271
+ .fa-skype:before {
1272
+ content: '\f17e';
1273
+ }
1274
+ .fa-foursquare:before {
1275
+ content: '\f180';
1276
+ }
1277
+ .fa-trello:before {
1278
+ content: '\f181';
1279
+ }
1280
+ .fa-female:before {
1281
+ content: '\f182';
1282
+ }
1283
+ .fa-male:before {
1284
+ content: '\f183';
1285
+ }
1286
+ .fa-gittip:before,
1287
+ .fa-gratipay:before {
1288
+ content: '\f184';
1289
+ }
1290
+ .fa-sun-o:before {
1291
+ content: '\f185';
1292
+ }
1293
+ .fa-moon-o:before {
1294
+ content: '\f186';
1295
+ }
1296
+ .fa-archive:before {
1297
+ content: '\f187';
1298
+ }
1299
+ .fa-bug:before {
1300
+ content: '\f188';
1301
+ }
1302
+ .fa-vk:before {
1303
+ content: '\f189';
1304
+ }
1305
+ .fa-weibo:before {
1306
+ content: '\f18a';
1307
+ }
1308
+ .fa-renren:before {
1309
+ content: '\f18b';
1310
+ }
1311
+ .fa-pagelines:before {
1312
+ content: '\f18c';
1313
+ }
1314
+ .fa-stack-exchange:before {
1315
+ content: '\f18d';
1316
+ }
1317
+ .fa-arrow-circle-o-right:before {
1318
+ content: '\f18e';
1319
+ }
1320
+ .fa-arrow-circle-o-left:before {
1321
+ content: '\f190';
1322
+ }
1323
+ .fa-toggle-left:before,
1324
+ .fa-caret-square-o-left:before {
1325
+ content: '\f191';
1326
+ }
1327
+ .fa-dot-circle-o:before {
1328
+ content: '\f192';
1329
+ }
1330
+ .fa-wheelchair:before {
1331
+ content: '\f193';
1332
+ }
1333
+ .fa-vimeo-square:before {
1334
+ content: '\f194';
1335
+ }
1336
+ .fa-turkish-lira:before,
1337
+ .fa-try:before {
1338
+ content: '\f195';
1339
+ }
1340
+ .fa-plus-square-o:before {
1341
+ content: '\f196';
1342
+ }
1343
+ .fa-space-shuttle:before {
1344
+ content: '\f197';
1345
+ }
1346
+ .fa-slack:before {
1347
+ content: '\f198';
1348
+ }
1349
+ .fa-envelope-square:before {
1350
+ content: '\f199';
1351
+ }
1352
+ .fa-wordpress:before {
1353
+ content: '\f19a';
1354
+ }
1355
+ .fa-openid:before {
1356
+ content: '\f19b';
1357
+ }
1358
+ .fa-institution:before,
1359
+ .fa-bank:before,
1360
+ .fa-university:before {
1361
+ content: '\f19c';
1362
+ }
1363
+ .fa-mortar-board:before,
1364
+ .fa-graduation-cap:before {
1365
+ content: '\f19d';
1366
+ }
1367
+ .fa-yahoo:before {
1368
+ content: '\f19e';
1369
+ }
1370
+ .fa-google:before {
1371
+ content: '\f1a0';
1372
+ }
1373
+ .fa-reddit:before {
1374
+ content: '\f1a1';
1375
+ }
1376
+ .fa-reddit-square:before {
1377
+ content: '\f1a2';
1378
+ }
1379
+ .fa-stumbleupon-circle:before {
1380
+ content: '\f1a3';
1381
+ }
1382
+ .fa-stumbleupon:before {
1383
+ content: '\f1a4';
1384
+ }
1385
+ .fa-delicious:before {
1386
+ content: '\f1a5';
1387
+ }
1388
+ .fa-digg:before {
1389
+ content: '\f1a6';
1390
+ }
1391
+ .fa-pied-piper-pp:before {
1392
+ content: '\f1a7';
1393
+ }
1394
+ .fa-pied-piper-alt:before {
1395
+ content: '\f1a8';
1396
+ }
1397
+ .fa-drupal:before {
1398
+ content: '\f1a9';
1399
+ }
1400
+ .fa-joomla:before {
1401
+ content: '\f1aa';
1402
+ }
1403
+ .fa-language:before {
1404
+ content: '\f1ab';
1405
+ }
1406
+ .fa-fax:before {
1407
+ content: '\f1ac';
1408
+ }
1409
+ .fa-building:before {
1410
+ content: '\f1ad';
1411
+ }
1412
+ .fa-child:before {
1413
+ content: '\f1ae';
1414
+ }
1415
+ .fa-paw:before {
1416
+ content: '\f1b0';
1417
+ }
1418
+ .fa-spoon:before {
1419
+ content: '\f1b1';
1420
+ }
1421
+ .fa-cube:before {
1422
+ content: '\f1b2';
1423
+ }
1424
+ .fa-cubes:before {
1425
+ content: '\f1b3';
1426
+ }
1427
+ .fa-behance:before {
1428
+ content: '\f1b4';
1429
+ }
1430
+ .fa-behance-square:before {
1431
+ content: '\f1b5';
1432
+ }
1433
+ .fa-steam:before {
1434
+ content: '\f1b6';
1435
+ }
1436
+ .fa-steam-square:before {
1437
+ content: '\f1b7';
1438
+ }
1439
+ .fa-recycle:before {
1440
+ content: '\f1b8';
1441
+ }
1442
+ .fa-automobile:before,
1443
+ .fa-car:before {
1444
+ content: '\f1b9';
1445
+ }
1446
+ .fa-cab:before,
1447
+ .fa-taxi:before {
1448
+ content: '\f1ba';
1449
+ }
1450
+ .fa-tree:before {
1451
+ content: '\f1bb';
1452
+ }
1453
+ .fa-spotify:before {
1454
+ content: '\f1bc';
1455
+ }
1456
+ .fa-deviantart:before {
1457
+ content: '\f1bd';
1458
+ }
1459
+ .fa-soundcloud:before {
1460
+ content: '\f1be';
1461
+ }
1462
+ .fa-database:before {
1463
+ content: '\f1c0';
1464
+ }
1465
+ .fa-file-pdf-o:before {
1466
+ content: '\f1c1';
1467
+ }
1468
+ .fa-file-word-o:before {
1469
+ content: '\f1c2';
1470
+ }
1471
+ .fa-file-excel-o:before {
1472
+ content: '\f1c3';
1473
+ }
1474
+ .fa-file-powerpoint-o:before {
1475
+ content: '\f1c4';
1476
+ }
1477
+ .fa-file-photo-o:before,
1478
+ .fa-file-picture-o:before,
1479
+ .fa-file-image-o:before {
1480
+ content: '\f1c5';
1481
+ }
1482
+ .fa-file-zip-o:before,
1483
+ .fa-file-archive-o:before {
1484
+ content: '\f1c6';
1485
+ }
1486
+ .fa-file-sound-o:before,
1487
+ .fa-file-audio-o:before {
1488
+ content: '\f1c7';
1489
+ }
1490
+ .fa-file-movie-o:before,
1491
+ .fa-file-video-o:before {
1492
+ content: '\f1c8';
1493
+ }
1494
+ .fa-file-code-o:before {
1495
+ content: '\f1c9';
1496
+ }
1497
+ .fa-vine:before {
1498
+ content: '\f1ca';
1499
+ }
1500
+ .fa-codepen:before {
1501
+ content: '\f1cb';
1502
+ }
1503
+ .fa-jsfiddle:before {
1504
+ content: '\f1cc';
1505
+ }
1506
+ .fa-life-bouy:before,
1507
+ .fa-life-buoy:before,
1508
+ .fa-life-saver:before,
1509
+ .fa-support:before,
1510
+ .fa-life-ring:before {
1511
+ content: '\f1cd';
1512
+ }
1513
+ .fa-circle-o-notch:before {
1514
+ content: '\f1ce';
1515
+ }
1516
+ .fa-ra:before,
1517
+ .fa-resistance:before,
1518
+ .fa-rebel:before {
1519
+ content: '\f1d0';
1520
+ }
1521
+ .fa-ge:before,
1522
+ .fa-empire:before {
1523
+ content: '\f1d1';
1524
+ }
1525
+ .fa-git-square:before {
1526
+ content: '\f1d2';
1527
+ }
1528
+ .fa-git:before {
1529
+ content: '\f1d3';
1530
+ }
1531
+ .fa-y-combinator-square:before,
1532
+ .fa-yc-square:before,
1533
+ .fa-hacker-news:before {
1534
+ content: '\f1d4';
1535
+ }
1536
+ .fa-tencent-weibo:before {
1537
+ content: '\f1d5';
1538
+ }
1539
+ .fa-qq:before {
1540
+ content: '\f1d6';
1541
+ }
1542
+ .fa-wechat:before,
1543
+ .fa-weixin:before {
1544
+ content: '\f1d7';
1545
+ }
1546
+ .fa-send:before,
1547
+ .fa-paper-plane:before {
1548
+ content: '\f1d8';
1549
+ }
1550
+ .fa-send-o:before,
1551
+ .fa-paper-plane-o:before {
1552
+ content: '\f1d9';
1553
+ }
1554
+ .fa-history:before {
1555
+ content: '\f1da';
1556
+ }
1557
+ .fa-circle-thin:before {
1558
+ content: '\f1db';
1559
+ }
1560
+ .fa-header:before {
1561
+ content: '\f1dc';
1562
+ }
1563
+ .fa-paragraph:before {
1564
+ content: '\f1dd';
1565
+ }
1566
+ .fa-sliders:before {
1567
+ content: '\f1de';
1568
+ }
1569
+ .fa-share-alt:before {
1570
+ content: '\f1e0';
1571
+ }
1572
+ .fa-share-alt-square:before {
1573
+ content: '\f1e1';
1574
+ }
1575
+ .fa-bomb:before {
1576
+ content: '\f1e2';
1577
+ }
1578
+ .fa-soccer-ball-o:before,
1579
+ .fa-futbol-o:before {
1580
+ content: '\f1e3';
1581
+ }
1582
+ .fa-tty:before {
1583
+ content: '\f1e4';
1584
+ }
1585
+ .fa-binoculars:before {
1586
+ content: '\f1e5';
1587
+ }
1588
+ .fa-plug:before {
1589
+ content: '\f1e6';
1590
+ }
1591
+ .fa-slideshare:before {
1592
+ content: '\f1e7';
1593
+ }
1594
+ .fa-twitch:before {
1595
+ content: '\f1e8';
1596
+ }
1597
+ .fa-yelp:before {
1598
+ content: '\f1e9';
1599
+ }
1600
+ .fa-newspaper-o:before {
1601
+ content: '\f1ea';
1602
+ }
1603
+ .fa-wifi:before {
1604
+ content: '\f1eb';
1605
+ }
1606
+ .fa-calculator:before {
1607
+ content: '\f1ec';
1608
+ }
1609
+ .fa-paypal:before {
1610
+ content: '\f1ed';
1611
+ }
1612
+ .fa-google-wallet:before {
1613
+ content: '\f1ee';
1614
+ }
1615
+ .fa-cc-visa:before {
1616
+ content: '\f1f0';
1617
+ }
1618
+ .fa-cc-mastercard:before {
1619
+ content: '\f1f1';
1620
+ }
1621
+ .fa-cc-discover:before {
1622
+ content: '\f1f2';
1623
+ }
1624
+ .fa-cc-amex:before {
1625
+ content: '\f1f3';
1626
+ }
1627
+ .fa-cc-paypal:before {
1628
+ content: '\f1f4';
1629
+ }
1630
+ .fa-cc-stripe:before {
1631
+ content: '\f1f5';
1632
+ }
1633
+ .fa-bell-slash:before {
1634
+ content: '\f1f6';
1635
+ }
1636
+ .fa-bell-slash-o:before {
1637
+ content: '\f1f7';
1638
+ }
1639
+ .fa-trash:before {
1640
+ content: '\f1f8';
1641
+ }
1642
+ .fa-copyright:before {
1643
+ content: '\f1f9';
1644
+ }
1645
+ .fa-at:before {
1646
+ content: '\f1fa';
1647
+ }
1648
+ .fa-eyedropper:before {
1649
+ content: '\f1fb';
1650
+ }
1651
+ .fa-paint-brush:before {
1652
+ content: '\f1fc';
1653
+ }
1654
+ .fa-birthday-cake:before {
1655
+ content: '\f1fd';
1656
+ }
1657
+ .fa-area-chart:before {
1658
+ content: '\f1fe';
1659
+ }
1660
+ .fa-pie-chart:before {
1661
+ content: '\f200';
1662
+ }
1663
+ .fa-line-chart:before {
1664
+ content: '\f201';
1665
+ }
1666
+ .fa-lastfm:before {
1667
+ content: '\f202';
1668
+ }
1669
+ .fa-lastfm-square:before {
1670
+ content: '\f203';
1671
+ }
1672
+ .fa-toggle-off:before {
1673
+ content: '\f204';
1674
+ }
1675
+ .fa-toggle-on:before {
1676
+ content: '\f205';
1677
+ }
1678
+ .fa-bicycle:before {
1679
+ content: '\f206';
1680
+ }
1681
+ .fa-bus:before {
1682
+ content: '\f207';
1683
+ }
1684
+ .fa-ioxhost:before {
1685
+ content: '\f208';
1686
+ }
1687
+ .fa-angellist:before {
1688
+ content: '\f209';
1689
+ }
1690
+ .fa-cc:before {
1691
+ content: '\f20a';
1692
+ }
1693
+ .fa-shekel:before,
1694
+ .fa-sheqel:before,
1695
+ .fa-ils:before {
1696
+ content: '\f20b';
1697
+ }
1698
+ .fa-meanpath:before {
1699
+ content: '\f20c';
1700
+ }
1701
+ .fa-buysellads:before {
1702
+ content: '\f20d';
1703
+ }
1704
+ .fa-connectdevelop:before {
1705
+ content: '\f20e';
1706
+ }
1707
+ .fa-dashcube:before {
1708
+ content: '\f210';
1709
+ }
1710
+ .fa-forumbee:before {
1711
+ content: '\f211';
1712
+ }
1713
+ .fa-leanpub:before {
1714
+ content: '\f212';
1715
+ }
1716
+ .fa-sellsy:before {
1717
+ content: '\f213';
1718
+ }
1719
+ .fa-shirtsinbulk:before {
1720
+ content: '\f214';
1721
+ }
1722
+ .fa-simplybuilt:before {
1723
+ content: '\f215';
1724
+ }
1725
+ .fa-skyatlas:before {
1726
+ content: '\f216';
1727
+ }
1728
+ .fa-cart-plus:before {
1729
+ content: '\f217';
1730
+ }
1731
+ .fa-cart-arrow-down:before {
1732
+ content: '\f218';
1733
+ }
1734
+ .fa-diamond:before {
1735
+ content: '\f219';
1736
+ }
1737
+ .fa-ship:before {
1738
+ content: '\f21a';
1739
+ }
1740
+ .fa-user-secret:before {
1741
+ content: '\f21b';
1742
+ }
1743
+ .fa-motorcycle:before {
1744
+ content: '\f21c';
1745
+ }
1746
+ .fa-street-view:before {
1747
+ content: '\f21d';
1748
+ }
1749
+ .fa-heartbeat:before {
1750
+ content: '\f21e';
1751
+ }
1752
+ .fa-venus:before {
1753
+ content: '\f221';
1754
+ }
1755
+ .fa-mars:before {
1756
+ content: '\f222';
1757
+ }
1758
+ .fa-mercury:before {
1759
+ content: '\f223';
1760
+ }
1761
+ .fa-intersex:before,
1762
+ .fa-transgender:before {
1763
+ content: '\f224';
1764
+ }
1765
+ .fa-transgender-alt:before {
1766
+ content: '\f225';
1767
+ }
1768
+ .fa-venus-double:before {
1769
+ content: '\f226';
1770
+ }
1771
+ .fa-mars-double:before {
1772
+ content: '\f227';
1773
+ }
1774
+ .fa-venus-mars:before {
1775
+ content: '\f228';
1776
+ }
1777
+ .fa-mars-stroke:before {
1778
+ content: '\f229';
1779
+ }
1780
+ .fa-mars-stroke-v:before {
1781
+ content: '\f22a';
1782
+ }
1783
+ .fa-mars-stroke-h:before {
1784
+ content: '\f22b';
1785
+ }
1786
+ .fa-neuter:before {
1787
+ content: '\f22c';
1788
+ }
1789
+ .fa-genderless:before {
1790
+ content: '\f22d';
1791
+ }
1792
+ .fa-facebook-official:before {
1793
+ content: '\f230';
1794
+ }
1795
+ .fa-pinterest-p:before {
1796
+ content: '\f231';
1797
+ }
1798
+ .fa-whatsapp:before {
1799
+ content: '\f232';
1800
+ }
1801
+ .fa-server:before {
1802
+ content: '\f233';
1803
+ }
1804
+ .fa-user-plus:before {
1805
+ content: '\f234';
1806
+ }
1807
+ .fa-user-times:before {
1808
+ content: '\f235';
1809
+ }
1810
+ .fa-hotel:before,
1811
+ .fa-bed:before {
1812
+ content: '\f236';
1813
+ }
1814
+ .fa-viacoin:before {
1815
+ content: '\f237';
1816
+ }
1817
+ .fa-train:before {
1818
+ content: '\f238';
1819
+ }
1820
+ .fa-subway:before {
1821
+ content: '\f239';
1822
+ }
1823
+ .fa-medium:before {
1824
+ content: '\f23a';
1825
+ }
1826
+ .fa-yc:before,
1827
+ .fa-y-combinator:before {
1828
+ content: '\f23b';
1829
+ }
1830
+ .fa-optin-monster:before {
1831
+ content: '\f23c';
1832
+ }
1833
+ .fa-opencart:before {
1834
+ content: '\f23d';
1835
+ }
1836
+ .fa-expeditedssl:before {
1837
+ content: '\f23e';
1838
+ }
1839
+ .fa-battery-4:before,
1840
+ .fa-battery:before,
1841
+ .fa-battery-full:before {
1842
+ content: '\f240';
1843
+ }
1844
+ .fa-battery-3:before,
1845
+ .fa-battery-three-quarters:before {
1846
+ content: '\f241';
1847
+ }
1848
+ .fa-battery-2:before,
1849
+ .fa-battery-half:before {
1850
+ content: '\f242';
1851
+ }
1852
+ .fa-battery-1:before,
1853
+ .fa-battery-quarter:before {
1854
+ content: '\f243';
1855
+ }
1856
+ .fa-battery-0:before,
1857
+ .fa-battery-empty:before {
1858
+ content: '\f244';
1859
+ }
1860
+ .fa-mouse-pointer:before {
1861
+ content: '\f245';
1862
+ }
1863
+ .fa-i-cursor:before {
1864
+ content: '\f246';
1865
+ }
1866
+ .fa-object-group:before {
1867
+ content: '\f247';
1868
+ }
1869
+ .fa-object-ungroup:before {
1870
+ content: '\f248';
1871
+ }
1872
+ .fa-sticky-note:before {
1873
+ content: '\f249';
1874
+ }
1875
+ .fa-sticky-note-o:before {
1876
+ content: '\f24a';
1877
+ }
1878
+ .fa-cc-jcb:before {
1879
+ content: '\f24b';
1880
+ }
1881
+ .fa-cc-diners-club:before {
1882
+ content: '\f24c';
1883
+ }
1884
+ .fa-clone:before {
1885
+ content: '\f24d';
1886
+ }
1887
+ .fa-balance-scale:before {
1888
+ content: '\f24e';
1889
+ }
1890
+ .fa-hourglass-o:before {
1891
+ content: '\f250';
1892
+ }
1893
+ .fa-hourglass-1:before,
1894
+ .fa-hourglass-start:before {
1895
+ content: '\f251';
1896
+ }
1897
+ .fa-hourglass-2:before,
1898
+ .fa-hourglass-half:before {
1899
+ content: '\f252';
1900
+ }
1901
+ .fa-hourglass-3:before,
1902
+ .fa-hourglass-end:before {
1903
+ content: '\f253';
1904
+ }
1905
+ .fa-hourglass:before {
1906
+ content: '\f254';
1907
+ }
1908
+ .fa-hand-grab-o:before,
1909
+ .fa-hand-rock-o:before {
1910
+ content: '\f255';
1911
+ }
1912
+ .fa-hand-stop-o:before,
1913
+ .fa-hand-paper-o:before {
1914
+ content: '\f256';
1915
+ }
1916
+ .fa-hand-scissors-o:before {
1917
+ content: '\f257';
1918
+ }
1919
+ .fa-hand-lizard-o:before {
1920
+ content: '\f258';
1921
+ }
1922
+ .fa-hand-spock-o:before {
1923
+ content: '\f259';
1924
+ }
1925
+ .fa-hand-pointer-o:before {
1926
+ content: '\f25a';
1927
+ }
1928
+ .fa-hand-peace-o:before {
1929
+ content: '\f25b';
1930
+ }
1931
+ .fa-trademark:before {
1932
+ content: '\f25c';
1933
+ }
1934
+ .fa-registered:before {
1935
+ content: '\f25d';
1936
+ }
1937
+ .fa-creative-commons:before {
1938
+ content: '\f25e';
1939
+ }
1940
+ .fa-gg:before {
1941
+ content: '\f260';
1942
+ }
1943
+ .fa-gg-circle:before {
1944
+ content: '\f261';
1945
+ }
1946
+ .fa-tripadvisor:before {
1947
+ content: '\f262';
1948
+ }
1949
+ .fa-odnoklassniki:before {
1950
+ content: '\f263';
1951
+ }
1952
+ .fa-odnoklassniki-square:before {
1953
+ content: '\f264';
1954
+ }
1955
+ .fa-get-pocket:before {
1956
+ content: '\f265';
1957
+ }
1958
+ .fa-wikipedia-w:before {
1959
+ content: '\f266';
1960
+ }
1961
+ .fa-safari:before {
1962
+ content: '\f267';
1963
+ }
1964
+ .fa-chrome:before {
1965
+ content: '\f268';
1966
+ }
1967
+ .fa-firefox:before {
1968
+ content: '\f269';
1969
+ }
1970
+ .fa-opera:before {
1971
+ content: '\f26a';
1972
+ }
1973
+ .fa-internet-explorer:before {
1974
+ content: '\f26b';
1975
+ }
1976
+ .fa-tv:before,
1977
+ .fa-television:before {
1978
+ content: '\f26c';
1979
+ }
1980
+ .fa-contao:before {
1981
+ content: '\f26d';
1982
+ }
1983
+ .fa-500px:before {
1984
+ content: '\f26e';
1985
+ }
1986
+ .fa-amazon:before {
1987
+ content: '\f270';
1988
+ }
1989
+ .fa-calendar-plus-o:before {
1990
+ content: '\f271';
1991
+ }
1992
+ .fa-calendar-minus-o:before {
1993
+ content: '\f272';
1994
+ }
1995
+ .fa-calendar-times-o:before {
1996
+ content: '\f273';
1997
+ }
1998
+ .fa-calendar-check-o:before {
1999
+ content: '\f274';
2000
+ }
2001
+ .fa-industry:before {
2002
+ content: '\f275';
2003
+ }
2004
+ .fa-map-pin:before {
2005
+ content: '\f276';
2006
+ }
2007
+ .fa-map-signs:before {
2008
+ content: '\f277';
2009
+ }
2010
+ .fa-map-o:before {
2011
+ content: '\f278';
2012
+ }
2013
+ .fa-map:before {
2014
+ content: '\f279';
2015
+ }
2016
+ .fa-commenting:before {
2017
+ content: '\f27a';
2018
+ }
2019
+ .fa-commenting-o:before {
2020
+ content: '\f27b';
2021
+ }
2022
+ .fa-houzz:before {
2023
+ content: '\f27c';
2024
+ }
2025
+ .fa-vimeo:before {
2026
+ content: '\f27d';
2027
+ }
2028
+ .fa-black-tie:before {
2029
+ content: '\f27e';
2030
+ }
2031
+ .fa-fonticons:before {
2032
+ content: '\f280';
2033
+ }
2034
+ .fa-reddit-alien:before {
2035
+ content: '\f281';
2036
+ }
2037
+ .fa-edge:before {
2038
+ content: '\f282';
2039
+ }
2040
+ .fa-credit-card-alt:before {
2041
+ content: '\f283';
2042
+ }
2043
+ .fa-codiepie:before {
2044
+ content: '\f284';
2045
+ }
2046
+ .fa-modx:before {
2047
+ content: '\f285';
2048
+ }
2049
+ .fa-fort-awesome:before {
2050
+ content: '\f286';
2051
+ }
2052
+ .fa-usb:before {
2053
+ content: '\f287';
2054
+ }
2055
+ .fa-product-hunt:before {
2056
+ content: '\f288';
2057
+ }
2058
+ .fa-mixcloud:before {
2059
+ content: '\f289';
2060
+ }
2061
+ .fa-scribd:before {
2062
+ content: '\f28a';
2063
+ }
2064
+ .fa-pause-circle:before {
2065
+ content: '\f28b';
2066
+ }
2067
+ .fa-pause-circle-o:before {
2068
+ content: '\f28c';
2069
+ }
2070
+ .fa-stop-circle:before {
2071
+ content: '\f28d';
2072
+ }
2073
+ .fa-stop-circle-o:before {
2074
+ content: '\f28e';
2075
+ }
2076
+ .fa-shopping-bag:before {
2077
+ content: '\f290';
2078
+ }
2079
+ .fa-shopping-basket:before {
2080
+ content: '\f291';
2081
+ }
2082
+ .fa-hashtag:before {
2083
+ content: '\f292';
2084
+ }
2085
+ .fa-bluetooth:before {
2086
+ content: '\f293';
2087
+ }
2088
+ .fa-bluetooth-b:before {
2089
+ content: '\f294';
2090
+ }
2091
+ .fa-percent:before {
2092
+ content: '\f295';
2093
+ }
2094
+ .fa-gitlab:before {
2095
+ content: '\f296';
2096
+ }
2097
+ .fa-wpbeginner:before {
2098
+ content: '\f297';
2099
+ }
2100
+ .fa-wpforms:before {
2101
+ content: '\f298';
2102
+ }
2103
+ .fa-envira:before {
2104
+ content: '\f299';
2105
+ }
2106
+ .fa-universal-access:before {
2107
+ content: '\f29a';
2108
+ }
2109
+ .fa-wheelchair-alt:before {
2110
+ content: '\f29b';
2111
+ }
2112
+ .fa-question-circle-o:before {
2113
+ content: '\f29c';
2114
+ }
2115
+ .fa-blind:before {
2116
+ content: '\f29d';
2117
+ }
2118
+ .fa-audio-description:before {
2119
+ content: '\f29e';
2120
+ }
2121
+ .fa-volume-control-phone:before {
2122
+ content: '\f2a0';
2123
+ }
2124
+ .fa-braille:before {
2125
+ content: '\f2a1';
2126
+ }
2127
+ .fa-assistive-listening-systems:before {
2128
+ content: '\f2a2';
2129
+ }
2130
+ .fa-asl-interpreting:before,
2131
+ .fa-american-sign-language-interpreting:before {
2132
+ content: '\f2a3';
2133
+ }
2134
+ .fa-deafness:before,
2135
+ .fa-hard-of-hearing:before,
2136
+ .fa-deaf:before {
2137
+ content: '\f2a4';
2138
+ }
2139
+ .fa-glide:before {
2140
+ content: '\f2a5';
2141
+ }
2142
+ .fa-glide-g:before {
2143
+ content: '\f2a6';
2144
+ }
2145
+ .fa-signing:before,
2146
+ .fa-sign-language:before {
2147
+ content: '\f2a7';
2148
+ }
2149
+ .fa-low-vision:before {
2150
+ content: '\f2a8';
2151
+ }
2152
+ .fa-viadeo:before {
2153
+ content: '\f2a9';
2154
+ }
2155
+ .fa-viadeo-square:before {
2156
+ content: '\f2aa';
2157
+ }
2158
+ .fa-snapchat:before {
2159
+ content: '\f2ab';
2160
+ }
2161
+ .fa-snapchat-ghost:before {
2162
+ content: '\f2ac';
2163
+ }
2164
+ .fa-snapchat-square:before {
2165
+ content: '\f2ad';
2166
+ }
2167
+ .fa-pied-piper:before {
2168
+ content: '\f2ae';
2169
+ }
2170
+ .fa-first-order:before {
2171
+ content: '\f2b0';
2172
+ }
2173
+ .fa-yoast:before {
2174
+ content: '\f2b1';
2175
+ }
2176
+ .fa-themeisle:before {
2177
+ content: '\f2b2';
2178
+ }
2179
+ .fa-google-plus-circle:before,
2180
+ .fa-google-plus-official:before {
2181
+ content: '\f2b3';
2182
+ }
2183
+ .fa-fa:before,
2184
+ .fa-font-awesome:before {
2185
+ content: '\f2b4';
2186
+ }
2187
+ .fa-handshake-o:before {
2188
+ content: '\f2b5';
2189
+ }
2190
+ .fa-envelope-open:before {
2191
+ content: '\f2b6';
2192
+ }
2193
+ .fa-envelope-open-o:before {
2194
+ content: '\f2b7';
2195
+ }
2196
+ .fa-linode:before {
2197
+ content: '\f2b8';
2198
+ }
2199
+ .fa-address-book:before {
2200
+ content: '\f2b9';
2201
+ }
2202
+ .fa-address-book-o:before {
2203
+ content: '\f2ba';
2204
+ }
2205
+ .fa-vcard:before,
2206
+ .fa-address-card:before {
2207
+ content: '\f2bb';
2208
+ }
2209
+ .fa-vcard-o:before,
2210
+ .fa-address-card-o:before {
2211
+ content: '\f2bc';
2212
+ }
2213
+ .fa-user-circle:before {
2214
+ content: '\f2bd';
2215
+ }
2216
+ .fa-user-circle-o:before {
2217
+ content: '\f2be';
2218
+ }
2219
+ .fa-user-o:before {
2220
+ content: '\f2c0';
2221
+ }
2222
+ .fa-id-badge:before {
2223
+ content: '\f2c1';
2224
+ }
2225
+ .fa-drivers-license:before,
2226
+ .fa-id-card:before {
2227
+ content: '\f2c2';
2228
+ }
2229
+ .fa-drivers-license-o:before,
2230
+ .fa-id-card-o:before {
2231
+ content: '\f2c3';
2232
+ }
2233
+ .fa-quora:before {
2234
+ content: '\f2c4';
2235
+ }
2236
+ .fa-free-code-camp:before {
2237
+ content: '\f2c5';
2238
+ }
2239
+ .fa-telegram:before {
2240
+ content: '\f2c6';
2241
+ }
2242
+ .fa-thermometer-4:before,
2243
+ .fa-thermometer:before,
2244
+ .fa-thermometer-full:before {
2245
+ content: '\f2c7';
2246
+ }
2247
+ .fa-thermometer-3:before,
2248
+ .fa-thermometer-three-quarters:before {
2249
+ content: '\f2c8';
2250
+ }
2251
+ .fa-thermometer-2:before,
2252
+ .fa-thermometer-half:before {
2253
+ content: '\f2c9';
2254
+ }
2255
+ .fa-thermometer-1:before,
2256
+ .fa-thermometer-quarter:before {
2257
+ content: '\f2ca';
2258
+ }
2259
+ .fa-thermometer-0:before,
2260
+ .fa-thermometer-empty:before {
2261
+ content: '\f2cb';
2262
+ }
2263
+ .fa-shower:before {
2264
+ content: '\f2cc';
2265
+ }
2266
+ .fa-bathtub:before,
2267
+ .fa-s15:before,
2268
+ .fa-bath:before {
2269
+ content: '\f2cd';
2270
+ }
2271
+ .fa-podcast:before {
2272
+ content: '\f2ce';
2273
+ }
2274
+ .fa-window-maximize:before {
2275
+ content: '\f2d0';
2276
+ }
2277
+ .fa-window-minimize:before {
2278
+ content: '\f2d1';
2279
+ }
2280
+ .fa-window-restore:before {
2281
+ content: '\f2d2';
2282
+ }
2283
+ .fa-times-rectangle:before,
2284
+ .fa-window-close:before {
2285
+ content: '\f2d3';
2286
+ }
2287
+ .fa-times-rectangle-o:before,
2288
+ .fa-window-close-o:before {
2289
+ content: '\f2d4';
2290
+ }
2291
+ .fa-bandcamp:before {
2292
+ content: '\f2d5';
2293
+ }
2294
+ .fa-grav:before {
2295
+ content: '\f2d6';
2296
+ }
2297
+ .fa-etsy:before {
2298
+ content: '\f2d7';
2299
+ }
2300
+ .fa-imdb:before {
2301
+ content: '\f2d8';
2302
+ }
2303
+ .fa-ravelry:before {
2304
+ content: '\f2d9';
2305
+ }
2306
+ .fa-eercast:before {
2307
+ content: '\f2da';
2308
+ }
2309
+ .fa-microchip:before {
2310
+ content: '\f2db';
2311
+ }
2312
+ .fa-snowflake-o:before {
2313
+ content: '\f2dc';
2314
+ }
2315
+ .fa-superpowers:before {
2316
+ content: '\f2dd';
2317
+ }
2318
+ .fa-wpexplorer:before {
2319
+ content: '\f2de';
2320
+ }
2321
+ .fa-meetup:before {
2322
+ content: '\f2e0';
2323
+ }
2324
+ .sr-only {
2325
+ position: absolute;
2326
+ width: 1px;
2327
+ height: 1px;
2328
+ padding: 0;
2329
+ margin: -1px;
2330
+ overflow: hidden;
2331
+ clip: rect(0, 0, 0, 0);
2332
+ border: 0;
2333
+ }
2334
+ .sr-only-focusable:active,
2335
+ .sr-only-focusable:focus {
2336
+ position: static;
2337
+ width: auto;
2338
+ height: auto;
2339
+ margin: 0;
2340
+ overflow: visible;
2341
+ clip: auto;
2342
+ }