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