main.ftl 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847
  1. <html>
  2. <head>
  3. <meta charset="utf-8" />
  4. <title>后台主界面(开源版本)-副本</title>
  5. <meta http-equiv="content-type" content="text/html" />
  6. <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
  7. <meta name="viewport"
  8. content="initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no,width=device-width"/>
  9. <meta name="format-detection" content="telephone=no"/>
  10. <meta name="app-mobile-web-app-capable" content="yes"/>
  11. <meta name="app-mobile-web-app-status-bar-style" content="black-translucent"/>
  12. <script src="${base}/static/plugins/vue/2.6.9/vue.min.js"></script>
  13. <!--通用图标-->
  14. <link rel="stylesheet" href="${base}/static/ms-admin/5.0.0/iconfont/iconfont.css" />
  15. <script src="${base}/static/plugins/element-ui/2.12.0/index.js"></script>
  16. <link rel="stylesheet" href="${base}/static/plugins/element-ui/2.12.0/index.css" />
  17. <!--网络请求框架-->
  18. <script src="${base}/static/plugins/axios/0.18.0/axios.min.js"></script>
  19. <script src="${base}/static/plugins/qs/6.6.0/qs.min.js"></script>
  20. <!--铭飞-->
  21. <script src="${base}/static/plugins/ms/1.0.0/ms.js"></script>
  22. <script src="${base}/static/plugins/ms/1.0.0/ms.http.js"></script>
  23. <script src="${base}/static/plugins/ms/1.0.0/ms.util.js"></script>
  24. <link rel="stylesheet" href="${base}/static/plugins/minireset/0.0.2/minireset.min.css" />
  25. <script>
  26. ms.base = '${base}';
  27. ms.manager = '${managerPath}';
  28. </script>
  29. <style>
  30. [v-cloak]{
  31. display: none;
  32. }
  33. </style>
  34. </head>
  35. <body class="custom-body">
  36. <div id="app" v-cloak>
  37. <div class="class-1" >
  38. <div class="class-2" >
  39. <div class="class-3" >
  40. <div class="class-4" >
  41. </div>
  42. <div class="class-5" >
  43. </div>
  44. <div class="class-6" >
  45. </div>
  46. <div class="class-7" >
  47. <div class="class-8" >
  48. <div class="class-9">
  49. 常用功能
  50. </div>
  51. </div>
  52. <div class="class-10" >
  53. <div @click="jumpArtcleManager"
  54. class="class-11" >
  55. <div class="class-12" >
  56. <!--图片开始-->
  57. <img
  58. src="${base}/static/ms-admin/5.0.0/images/1578362848002.png"
  59. class="class-13" />
  60. <!--图片结束-->
  61. </div>
  62. <div class="class-14">
  63. 文章管理
  64. </div>
  65. </div>
  66. <div @click="jumpCategorymanager" class="class-15" >
  67. <div class="class-16" >
  68. <!--图片开始-->
  69. <img
  70. src="${base}/static/ms-admin/5.0.0/images/1578363219309.png"
  71. class="class-17" />
  72. <!--图片结束-->
  73. </div>
  74. <div class="class-18">
  75. 栏目管理
  76. </div>
  77. </div>
  78. <div @click="jumpStaticManager" class="class-19" >
  79. <div class="class-20" >
  80. <!--图片开始-->
  81. <img
  82. src="${base}/static/ms-admin/5.0.0/images/1578363549912.png"
  83. class="class-21" />
  84. <!--图片结束-->
  85. </div>
  86. <div class="class-22">
  87. 静态化
  88. </div>
  89. </div>
  90. <div @click="jumpAdmininstatorManager" class="class-23" >
  91. <div class="class-24" >
  92. <!--图片开始-->
  93. <img
  94. src="${base}/static/ms-admin/5.0.0/images/1578363754088.png"
  95. class="class-25" />
  96. <!--图片结束-->
  97. </div>
  98. <div class="class-26">
  99. 管理员管理
  100. </div>
  101. </div>
  102. <div @click="jumpUserManager" class="class-27" >
  103. <div class="class-28" >
  104. <!--图片开始-->
  105. <img
  106. src="${base}/static/ms-admin/5.0.0/images/1578364450652.png"
  107. class="class-29" />
  108. <!--图片结束-->
  109. </div>
  110. <div class="class-30">
  111. 角色管理
  112. </div>
  113. </div>
  114. <div @click="jumpMenuManager" class="class-31" >
  115. <div class="class-32" >
  116. <!--图片开始-->
  117. <img
  118. src="${base}/static/ms-admin/5.0.0/images/1578363880431.png"
  119. class="class-33" />
  120. <!--图片结束-->
  121. </div>
  122. <div class="class-34">
  123. 菜单管理
  124. </div>
  125. </div>
  126. <div @click="jumpTemplateManager" class="class-35" >
  127. <div class="class-36" >
  128. <!--图片开始-->
  129. <img
  130. src="${base}/static/ms-admin/5.0.0/images/1578363998984.png"
  131. class="class-37" />
  132. <!--图片结束-->
  133. </div>
  134. <div class="class-38">
  135. 模板管理
  136. </div>
  137. </div>
  138. <div @click="jumpApplicationManager" class="class-39" >
  139. <div class="class-40" >
  140. <!--图片开始-->
  141. <img
  142. src="${base}/static/ms-admin/5.0.0/images/1578364095317.png"
  143. class="class-41" />
  144. <!--图片结束-->
  145. </div>
  146. <div class="class-42">
  147. 应用设置
  148. </div>
  149. </div>
  150. </div>
  151. </div>
  152. <!--大容器开始-->
  153. <div class="class-43" >
  154. <!--大容器开始-->
  155. <div class="class-44" >
  156. <!--文本开始-->
  157. <div class="class-45">
  158. MMall
  159. </div>
  160. <!--文本结束-->
  161. <!--文本开始-->
  162. <div class="class-46">
  163. 单商户、多商户、社区商城
  164. </div>
  165. <!--文本结束-->
  166. </div>
  167. <!--大容器结束-->
  168. <!--大容器开始-->
  169. <div class="class-47" >
  170. <!--文本开始-->
  171. <div class="class-48">
  172. 微信
  173. </div>
  174. <!--文本结束-->
  175. <!--文本开始-->
  176. <div class="class-49">
  177. 可管理多个公众号
  178. </div>
  179. <!--文本结束-->
  180. </div>
  181. <!--大容器结束-->
  182. <!--大容器开始-->
  183. <div class="class-50" >
  184. <!--文本开始-->
  185. <div class="class-51">
  186. MApp
  187. </div>
  188. <!--文本结束-->
  189. <!--文本开始-->
  190. <div class="class-52">
  191. 安卓、IOS、小程序
  192. </div>
  193. <!--文本结束-->
  194. </div>
  195. <!--大容器结束-->
  196. <!--大容器开始-->
  197. <div class="class-53" >
  198. <!--文本开始-->
  199. <div class="class-54">
  200. 二次开发
  201. </div>
  202. <!--文本结束-->
  203. <!--文本开始-->
  204. <div class="class-55">
  205. 更优质的服务体验,高效率的开发团队
  206. </div>
  207. <!--文本结束-->
  208. </div>
  209. <!--大容器结束-->
  210. </div>
  211. <!--大容器结束-->
  212. </div>
  213. </div>
  214. <div class="class-56" >
  215. <div class="class-57" @click="openMCMSNews">
  216. <div class="class-58" >
  217. <div class="class-59" >
  218. </div>
  219. <div class="class-60">
  220. {{ msNewsLast }}
  221. </div>
  222. </div>
  223. </div>
  224. <div class="class-61" @click="jumpMCMSDocument">
  225. <div class="class-62" >
  226. </div>
  227. <div class="class-63">
  228. 铭飞MCms在线文档
  229. </div>
  230. </div>
  231. <!--小容器开始-->
  232. <div class="class-64" >
  233. <div class="class-65" @click="enterQQOneGroup">
  234. <div class="class-66" >
  235. <!--图片开始-->
  236. <img
  237. src="${base}/static/ms-admin/5.0.0/images/1577687056305.png"
  238. class="class-67" />
  239. <!--图片结束-->
  240. </div>
  241. <div class="class-68" >
  242. <div class="class-69">
  243. 铭飞MS平台(一)
  244. </div>
  245. <div class="class-70">
  246. 231212174
  247. </div>
  248. </div>
  249. </div>
  250. <div class="class-71" @click="enterQQTwoGroup">
  251. <div class="class-72" >
  252. <!--图片开始-->
  253. <img
  254. src="${base}/static/ms-admin/5.0.0/images/1577687056305.png"
  255. class="class-73" />
  256. <!--图片结束-->
  257. </div>
  258. <div class="class-74" >
  259. <div class="class-75">
  260. 铭飞MS平台(二)
  261. </div>
  262. <div class="class-76">
  263. 221335098
  264. </div>
  265. </div>
  266. </div>
  267. <div class="class-77" @click="enterQQThreeGroup">
  268. <div class="class-78" >
  269. <!--图片开始-->
  270. <img
  271. src="${base}/static/ms-admin/5.0.0/images/1577687056305.png"
  272. class="class-79" />
  273. <!--图片结束-->
  274. </div>
  275. <div class="class-80" >
  276. <div class="class-81">
  277. 铭飞MS平台(三)
  278. </div>
  279. <div class="class-82">
  280. 242805203
  281. </div>
  282. </div>
  283. </div>
  284. <div class="class-83" @click="enterQQFourGroup">
  285. <div class="class-84" >
  286. <!--图片开始-->
  287. <img
  288. src="${base}/static/ms-admin/5.0.0/images/1577687056305.png"
  289. class="class-85" />
  290. <!--图片结束-->
  291. </div>
  292. <div class="class-86" >
  293. <div class="class-87">
  294. 铭飞MS平台(四)
  295. </div>
  296. <div class="class-88">
  297. 881894877
  298. </div>
  299. </div>
  300. </div>
  301. </div>
  302. <!--小容器结束-->
  303. <div class="class-89" >
  304. <div class="class-90" >
  305. <div class="class-91">
  306. 商务技术支持
  307. </div>
  308. </div>
  309. <div class="class-92" >
  310. </div>
  311. <div class="class-93" >
  312. </div>
  313. <div class="class-94" >
  314. <div class="class-95" >
  315. <div class="class-96" >
  316. </div>
  317. <div class="class-97">
  318. 功能更丰富
  319. </div>
  320. </div>
  321. <div class="class-98" >
  322. <div class="class-99" >
  323. </div>
  324. <div class="class-100">
  325. 审批
  326. </div>
  327. </div>
  328. <div class="class-101" >
  329. <div class="class-102" >
  330. </div>
  331. <div class="class-103">
  332. 在线Office
  333. </div>
  334. </div>
  335. <div class="class-104" >
  336. <div class="class-105" >
  337. </div>
  338. <div class="class-106">
  339. 远程协助
  340. </div>
  341. </div>
  342. <div class="class-107" >
  343. <div class="class-108" >
  344. </div>
  345. <div class="class-109">
  346. 语音协助
  347. </div>
  348. </div>
  349. <div class="class-110" >
  350. <div class="class-111" >
  351. </div>
  352. <div class="class-112">
  353. 专属VIP群
  354. </div>
  355. </div>
  356. <div class="class-113" >
  357. <div class="class-114" >
  358. </div>
  359. <div class="class-115">
  360. 提供发票
  361. </div>
  362. </div>
  363. <div class="class-116" >
  364. <div class="class-117" >
  365. </div>
  366. <div class="class-118">
  367. 终身授权
  368. </div>
  369. </div>
  370. <div class="class-119" >
  371. <div class="class-120" >
  372. </div>
  373. <div class="class-121">
  374. 授权证明书
  375. </div>
  376. </div>
  377. </div>
  378. <div class="class-122" >
  379. <!--横分割线开始-->
  380. <div class="class-123"></div>
  381. <!--横分割线结束-->
  382. <!--小容器开始-->
  383. <div class="class-124" >
  384. <div class="class-125" >
  385. <div class="class-126" >
  386. <!--图片开始-->
  387. <img
  388. src="${base}/static/ms-admin/5.0.0/images/1577687023678.png"
  389. class="class-127" />
  390. <!--图片结束-->
  391. </div>
  392. <div class="class-128" >
  393. <div class="class-129">
  394. 商务电话
  395. </div>
  396. <div class="class-130">
  397. 19970180163
  398. </div>
  399. </div>
  400. </div>
  401. <div class="class-131" @click="addBusinessQQ">
  402. <div class="class-132" >
  403. <!--图片开始-->
  404. <img
  405. src="${base}/static/ms-admin/5.0.0/images/1577687056305.png"
  406. class="class-133" />
  407. <!--图片结束-->
  408. </div>
  409. <div class="class-134" >
  410. <div class="class-135">
  411. 商务QQ
  412. </div>
  413. <div class="class-136">
  414. 3336073455
  415. </div>
  416. </div>
  417. </div>
  418. </div>
  419. <!--小容器结束-->
  420. </div>
  421. </div>
  422. </div>
  423. </div>
  424. </div>
  425. </body>
  426. </html>
  427. <script>
  428. var app = new Vue({
  429. el: '#app',
  430. watch:{
  431. },
  432. data: {
  433. base:ms.base,
  434. msNewsLast: '',
  435. msNewsPath: ''
  436. },
  437. methods: {
  438. jumpArtcleManager(){
  439. window.parent.indexVue.openMenu({modelId:706,modelTitle:'文章管理',modelIcon: "icon-neirongguanli"});
  440. },
  441. //栏目管理
  442. jumpCategorymanager(){
  443. window.parent.indexVue.open({"modelId":708,"modelTitle":"栏目管理","modelModelId":706,"modelUrl":"cms/category/index.do"});
  444. },
  445. //静态化
  446. jumpStaticManager(){
  447. window.parent.indexVue.open({"modelId":406,"modelTitle":"静态化","modelModelId":23,"modelUrl":"cms/generate/index.do"});
  448. },
  449. //管理员管理
  450. jumpAdmininstatorManager(){
  451. window.parent.indexVue.open({"modelId":411,"modelTitle":"管理员管理","modelModelId":23,"modelUrl":"basic/manager/index.do"});
  452. },
  453. //角色管理
  454. jumpUserManager(){
  455. window.parent.indexVue.open({"modelId":406,"modelTitle":"角色管理","modelModelId":23,"modelUrl":"basic/role/index.do"});
  456. },
  457. //菜单管理
  458. jumpMenuManager(){
  459. window.parent.indexVue.open({"modelId":183,"modelTitle":"菜单管理","modelModelId":23,"modelUrl":"model/index.do"});
  460. },
  461. //模板管理
  462. jumpTemplateManager(){
  463. window.parent.indexVue.open({"modelId":87,"modelTitle":"模板管理","modelModelId":84,"modelUrl":"template/index.do"});
  464. },
  465. //应用管理
  466. jumpApplicationManager(){
  467. window.parent.indexVue.open({"modelId":86,"modelTitle":"应用管理","modelModelId":84,"modelUrl":"app/-1/edit.do"});
  468. },
  469. //铭飞开发文档
  470. jumpMCMSDocument(){
  471. window.open("http://doc.ms.mingsoft.net/plugs-cms/");
  472. },
  473. enterQQOneGroup(){
  474. window.open("https://shang.qq.com/wpa/qunwpa?idkey=ebf251dc9758de6b9c78c499956431cba73e28b3f0b72c0fc28242e98b20fca2");
  475. },
  476. enterQQTwoGroup(){
  477. window.open("http://shang.qq.com/wpa/qunwpa?idkey=cfb32b0f47d89d7ef1c3a9493984d4ffbdfe14049fdedd90c517a072e90d68b9");
  478. },
  479. enterQQThreeGroup(){
  480. window.open("http://shang.qq.com/wpa/qunwpa?idkey=5dd11fdb492c4ded090fa1f78a166583978e33c4a61301b136d31e9e3eb7df72");
  481. },
  482. enterQQFourGroup(){
  483. window.open("http://shang.qq.com/wpa/qunwpa?idkey=565f1e4c4fabeee42947f6c6b96ac7ca4853dece16559d3d78e944ca2931b7f5");
  484. },
  485. addBusinessQQ(){
  486. window.open("http://wpa.qq.com/msgrd?v=3&uin=3336073455&site=qq&menu=yes");
  487. },
  488. //打开铭飞消息页面
  489. openMCMSNews(){
  490. window.open(this.msNewsPath);
  491. },
  492. getNewsLast(){
  493. var that = this;
  494. axios.create({
  495. withCredentials: true
  496. }).get("https://ms.mingsoft.net/cms/content/list.do?contentCategoryId=202").then(function (res){
  497. that.msNewsLast = res.data.data.rows[0].contentTitle.toString();
  498. that.msNewsPath = 'https://ms.mingsoft.net/html/1/203/202/'+res.data.data.rows[0].id+'.html'
  499. })
  500. }
  501. },
  502. created(){
  503. this.getNewsLast()
  504. }
  505. })
  506. </script>
  507. <style>
  508. .custom-body {
  509. }
  510. .class-1
  511. {
  512. color:#333333;
  513. padding-right:10px;
  514. min-height:720px;
  515. outline:none;
  516. padding-bottom:10px;
  517. overflow:visible;
  518. outline-offset:-1px;
  519. flex:6;
  520. padding-top:10px;
  521. height:100%;
  522. background-color:rgba(238, 238, 238, 1);
  523. flex-direction:row;
  524. display:flex;
  525. animation-duration:1s;
  526. width:100%;
  527. padding-left:10px;
  528. background-repeat:no-repeat;
  529. }
  530. .class-2
  531. {
  532. color:#333333;
  533. outline:none;
  534. outline-offset:-1px;
  535. flex:7;
  536. height:100%;
  537. max-width:100%;
  538. flex-direction:column;
  539. display:flex;
  540. animation-duration:1s;
  541. background-repeat:no-repeat;
  542. }
  543. .class-3
  544. {
  545. color:#333333;
  546. outline:none;
  547. outline-offset:-1px;
  548. flex:4;
  549. max-width:100%;
  550. background-color:rgba(255, 255, 255, 1);
  551. flex-direction:column;
  552. display:flex;
  553. animation-duration:1s;
  554. background-repeat:no-repeat;
  555. }
  556. .class-4
  557. {
  558. color:#333333;
  559. outline:none;
  560. outline-offset:-1px;
  561. max-width:100%;
  562. flex-direction:column;
  563. display:flex;
  564. margin-left:20px;
  565. animation-duration:1s;
  566. background-repeat:no-repeat;
  567. }
  568. .class-5
  569. {
  570. color:#333333;
  571. margin-right:20px;
  572. outline:none;
  573. outline-offset:-1px;
  574. max-width:100%;
  575. flex-direction:column;
  576. display:flex;
  577. animation-duration:1s;
  578. background-repeat:no-repeat;
  579. }
  580. .class-6
  581. {
  582. color:#333333;
  583. margin-right:20px;
  584. outline:none;
  585. outline-offset:-1px;
  586. max-width:100%;
  587. flex-direction:column;
  588. display:flex;
  589. margin-left:20px;
  590. animation-duration:1s;
  591. background-repeat:no-repeat;
  592. }
  593. .class-7
  594. {
  595. color:#333333;
  596. padding-right:20px;
  597. outline:none;
  598. outline-offset:-1px;
  599. padding-top:20px;
  600. max-width:100%;
  601. background-color:rgba(255, 255, 255, 1);
  602. flex-direction:column;
  603. display:flex;
  604. animation-duration:1s;
  605. padding-left:20px;
  606. background-repeat:no-repeat;
  607. margin-top:10px;
  608. }
  609. .class-8
  610. {
  611. color:#333333;
  612. outline:none;
  613. outline-offset:-1px;
  614. max-width:100%;
  615. align-items:center;
  616. flex-direction:row;
  617. display:flex;
  618. justify-content:flex-start;
  619. animation-duration:1s;
  620. width:100%;
  621. margin-bottom:20px;
  622. background-repeat:no-repeat;
  623. }
  624. .class-9
  625. {
  626. color:#333333;
  627. word-wrap:break-word;
  628. font-weight:bold;
  629. display:inline-block;
  630. animation-duration:1s;
  631. font-size:16px;
  632. line-height:1.4;
  633. }
  634. .class-10
  635. {
  636. color:#333333;
  637. outline:none;
  638. outline-offset:-1px;
  639. flex-wrap:wrap;
  640. max-width:100%;
  641. flex-direction:row;
  642. display:flex;
  643. animation-duration:1s;
  644. width:100%;
  645. background-repeat:no-repeat;
  646. }
  647. .class-11
  648. {
  649. cursor:pointer;
  650. color:#333333;
  651. outline:none;
  652. outline-offset:-1px;
  653. max-width:100%;
  654. align-items:center;
  655. text-align:left;
  656. flex-direction:column;
  657. display:flex;
  658. justify-content:center;
  659. animation-duration:1s;
  660. width:25%;
  661. margin-bottom:20px;
  662. background-repeat:no-repeat;
  663. }
  664. .class-12
  665. {
  666. color:#333333;
  667. outline:none;
  668. outline-offset:-1px;
  669. height:40px;
  670. max-width:100%;
  671. background-color:rgba(17, 205, 110, 1);
  672. align-items:center;
  673. flex-direction:row;
  674. display:flex;
  675. justify-content:center;
  676. animation-duration:1s;
  677. border-radius:4px;
  678. width:40px;
  679. background-repeat:no-repeat;
  680. }
  681. .class-13
  682. {
  683. height:30px;
  684. animation-duration:1s;
  685. width:30px;
  686. }
  687. .class-14
  688. {
  689. color:#333333;
  690. word-wrap:break-word;
  691. display:inline-block;
  692. animation-duration:1s;
  693. font-size:14px;
  694. line-height:1.4;
  695. margin-top:10px;
  696. }
  697. .class-15
  698. {
  699. cursor:pointer;
  700. color:#333333;
  701. outline:none;
  702. outline-offset:-1px;
  703. max-width:100%;
  704. align-items:center;
  705. text-align:left;
  706. flex-direction:column;
  707. display:flex;
  708. justify-content:center;
  709. animation-duration:1s;
  710. width:25%;
  711. margin-bottom:20px;
  712. background-repeat:no-repeat;
  713. }
  714. .class-16
  715. {
  716. color:#333333;
  717. outline:none;
  718. outline-offset:-1px;
  719. height:40px;
  720. max-width:100%;
  721. background-color:rgba(0, 153, 255, 1);
  722. align-items:center;
  723. flex-direction:row;
  724. display:flex;
  725. justify-content:center;
  726. animation-duration:1s;
  727. border-radius:4px;
  728. width:40px;
  729. background-repeat:no-repeat;
  730. }
  731. .class-17
  732. {
  733. height:24px;
  734. animation-duration:1s;
  735. width:24px;
  736. }
  737. .class-18
  738. {
  739. color:#333333;
  740. word-wrap:break-word;
  741. display:inline-block;
  742. animation-duration:1s;
  743. font-size:14px;
  744. line-height:1.4;
  745. margin-top:10px;
  746. }
  747. .class-19
  748. {
  749. cursor:pointer;
  750. color:#333333;
  751. outline:none;
  752. outline-offset:-1px;
  753. max-width:100%;
  754. align-items:center;
  755. text-align:left;
  756. flex-direction:column;
  757. display:flex;
  758. justify-content:center;
  759. animation-duration:1s;
  760. width:25%;
  761. margin-bottom:20px;
  762. background-repeat:no-repeat;
  763. }
  764. .class-20
  765. {
  766. color:#333333;
  767. outline:none;
  768. outline-offset:-1px;
  769. height:40px;
  770. max-width:100%;
  771. background-color:rgba(255, 68, 68, 1);
  772. align-items:center;
  773. flex-direction:row;
  774. display:flex;
  775. justify-content:center;
  776. animation-duration:1s;
  777. border-radius:4px;
  778. width:40px;
  779. background-repeat:no-repeat;
  780. }
  781. .class-21
  782. {
  783. height:26px;
  784. animation-duration:1s;
  785. width:30px;
  786. }
  787. .class-22
  788. {
  789. color:#333333;
  790. word-wrap:break-word;
  791. display:inline-block;
  792. animation-duration:1s;
  793. font-size:14px;
  794. line-height:1.4;
  795. margin-top:10px;
  796. }
  797. .class-23
  798. {
  799. cursor:pointer;
  800. color:#333333;
  801. outline:none;
  802. outline-offset:-1px;
  803. max-width:100%;
  804. align-items:center;
  805. text-align:left;
  806. flex-direction:column;
  807. display:flex;
  808. justify-content:center;
  809. animation-duration:1s;
  810. width:25%;
  811. margin-bottom:20px;
  812. background-repeat:no-repeat;
  813. }
  814. .class-24
  815. {
  816. color:#333333;
  817. outline:none;
  818. outline-offset:-1px;
  819. background-size:contain;
  820. background-position:center;
  821. height:40px;
  822. max-width:100%;
  823. background-color:rgba(0, 153, 255, 1);
  824. align-items:center;
  825. flex-direction:row;
  826. display:flex;
  827. justify-content:center;
  828. animation-duration:1s;
  829. border-radius:4px;
  830. width:40px;
  831. background-repeat:no-repeat;
  832. }
  833. .class-25
  834. {
  835. height:28px;
  836. animation-duration:1s;
  837. width:28px;
  838. }
  839. .class-26
  840. {
  841. color:#333333;
  842. word-wrap:break-word;
  843. display:inline-block;
  844. animation-duration:1s;
  845. font-size:14px;
  846. line-height:1.4;
  847. margin-top:10px;
  848. }
  849. .class-27
  850. {
  851. cursor:pointer;
  852. color:#333333;
  853. outline:none;
  854. outline-offset:-1px;
  855. max-width:100%;
  856. align-items:center;
  857. text-align:left;
  858. flex-direction:column;
  859. display:flex;
  860. justify-content:center;
  861. animation-duration:1s;
  862. width:25%;
  863. margin-bottom:20px;
  864. background-repeat:no-repeat;
  865. }
  866. .class-28
  867. {
  868. color:#333333;
  869. outline:none;
  870. outline-offset:-1px;
  871. height:40px;
  872. max-width:100%;
  873. background-color:rgba(255, 68, 68, 1);
  874. align-items:center;
  875. flex-direction:row;
  876. display:flex;
  877. justify-content:center;
  878. animation-duration:1s;
  879. border-radius:4px;
  880. width:40px;
  881. background-repeat:no-repeat;
  882. }
  883. .class-29
  884. {
  885. height:32px;
  886. animation-duration:1s;
  887. width:32px;
  888. }
  889. .class-30
  890. {
  891. color:#333333;
  892. word-wrap:break-word;
  893. display:inline-block;
  894. animation-duration:1s;
  895. font-size:14px;
  896. line-height:1.4;
  897. margin-top:10px;
  898. }
  899. .class-31
  900. {
  901. cursor:pointer;
  902. color:#333333;
  903. outline:none;
  904. outline-offset:-1px;
  905. max-width:100%;
  906. align-items:center;
  907. text-align:left;
  908. flex-direction:column;
  909. display:flex;
  910. justify-content:center;
  911. animation-duration:1s;
  912. width:25%;
  913. margin-bottom:20px;
  914. background-repeat:no-repeat;
  915. }
  916. .class-32
  917. {
  918. color:#333333;
  919. outline:none;
  920. outline-offset:-1px;
  921. height:40px;
  922. max-width:100%;
  923. background-color:rgba(17, 205, 110, 1);
  924. align-items:center;
  925. flex-direction:row;
  926. display:flex;
  927. justify-content:center;
  928. animation-duration:1s;
  929. border-radius:4px;
  930. width:40px;
  931. background-repeat:no-repeat;
  932. }
  933. .class-33
  934. {
  935. height:32px;
  936. animation-duration:1s;
  937. width:32px;
  938. }
  939. .class-34
  940. {
  941. color:#333333;
  942. word-wrap:break-word;
  943. display:inline-block;
  944. animation-duration:1s;
  945. font-size:14px;
  946. line-height:1.4;
  947. margin-top:10px;
  948. }
  949. .class-35
  950. {
  951. cursor:pointer;
  952. color:#333333;
  953. outline:none;
  954. outline-offset:-1px;
  955. max-width:100%;
  956. align-items:center;
  957. text-align:left;
  958. flex-direction:column;
  959. display:flex;
  960. justify-content:center;
  961. animation-duration:1s;
  962. width:25%;
  963. margin-bottom:20px;
  964. background-repeat:no-repeat;
  965. }
  966. .class-36
  967. {
  968. color:#333333;
  969. outline:none;
  970. outline-offset:-1px;
  971. height:40px;
  972. max-width:100%;
  973. background-color:rgba(0, 153, 255, 1);
  974. align-items:center;
  975. flex-direction:row;
  976. display:flex;
  977. justify-content:center;
  978. animation-duration:1s;
  979. border-radius:4px;
  980. width:40px;
  981. background-repeat:no-repeat;
  982. }
  983. .class-37
  984. {
  985. height:28px;
  986. animation-duration:1s;
  987. width:28px;
  988. }
  989. .class-38
  990. {
  991. color:#333333;
  992. word-wrap:break-word;
  993. display:inline-block;
  994. animation-duration:1s;
  995. font-size:14px;
  996. line-height:1.4;
  997. margin-top:10px;
  998. }
  999. .class-39
  1000. {
  1001. cursor:pointer;
  1002. color:#333333;
  1003. outline:none;
  1004. outline-offset:-1px;
  1005. max-width:100%;
  1006. align-items:center;
  1007. text-align:left;
  1008. flex-direction:column;
  1009. display:flex;
  1010. justify-content:center;
  1011. animation-duration:1s;
  1012. width:25%;
  1013. margin-bottom:20px;
  1014. background-repeat:no-repeat;
  1015. }
  1016. .class-40
  1017. {
  1018. color:#333333;
  1019. outline:none;
  1020. outline-offset:-1px;
  1021. height:40px;
  1022. max-width:100%;
  1023. background-color:rgba(17, 205, 110, 1);
  1024. align-items:center;
  1025. flex-direction:row;
  1026. display:flex;
  1027. justify-content:center;
  1028. animation-duration:1s;
  1029. border-radius:4px;
  1030. width:40px;
  1031. background-repeat:no-repeat;
  1032. }
  1033. .class-41
  1034. {
  1035. height:28px;
  1036. animation-duration:1s;
  1037. width:28px;
  1038. }
  1039. .class-42
  1040. {
  1041. color:#333333;
  1042. word-wrap:break-word;
  1043. display:inline-block;
  1044. animation-duration:1s;
  1045. font-size:14px;
  1046. line-height:1.4;
  1047. margin-top:10px;
  1048. }
  1049. .class-43
  1050. {
  1051. color:#333333;
  1052. padding-right:20px;
  1053. outline:none;
  1054. outline-offset:-1px;
  1055. flex:1;
  1056. height:300px;
  1057. max-width:100%;
  1058. flex-direction:row;
  1059. display:flex;
  1060. justify-content:space-between;
  1061. animation-duration:1s;
  1062. width:100%;
  1063. margin-bottom:20px;
  1064. padding-left:20px;
  1065. background-repeat:no-repeat;
  1066. margin-top:20px;
  1067. }
  1068. .class-44
  1069. {
  1070. color:#333333;
  1071. background-image:url(${base}/static/ms-admin/5.0.0/images/1578104008987.png);
  1072. outline:none;
  1073. outline-offset:-1px;
  1074. background-size:cover;
  1075. background-position:center;
  1076. height:200px;
  1077. max-width:100%;
  1078. background-color:rgba(119, 54, 242, 1);
  1079. align-items:center;
  1080. flex-direction:column;
  1081. display:flex;
  1082. justify-content:center;
  1083. animation-duration:1s;
  1084. width:24%;
  1085. background-repeat:no-repeat;
  1086. }
  1087. .class-45
  1088. {
  1089. color:#FFFFFF;
  1090. word-wrap:break-word;
  1091. text-shadow:#666 3px 4px 5px;
  1092. font-weight:bold;
  1093. z-index:1;
  1094. display:inline-block;
  1095. animation-duration:1s;
  1096. font-size:32px;
  1097. line-height:1.4;
  1098. }
  1099. .class-46
  1100. {
  1101. color:#FFFFFF;
  1102. word-wrap:break-word;
  1103. text-shadow:#666 3px 4px 5px;
  1104. z-index:1;
  1105. display:inline-block;
  1106. animation-duration:1s;
  1107. font-size:24px;
  1108. line-height:1.4;
  1109. }
  1110. .class-47
  1111. {
  1112. color:#333333;
  1113. background-image:url(${base}/static/ms-admin/5.0.0/images/1578367666376.png);
  1114. outline:none;
  1115. outline-offset:-1px;
  1116. background-size:cover;
  1117. background-position:center;
  1118. height:200px;
  1119. max-width:100%;
  1120. background-color:rgba(119, 54, 242, 1);
  1121. align-items:center;
  1122. flex-direction:column;
  1123. display:flex;
  1124. justify-content:center;
  1125. animation-duration:1s;
  1126. width:24%;
  1127. background-repeat:no-repeat;
  1128. }
  1129. .class-48
  1130. {
  1131. color:#FFFFFF;
  1132. word-wrap:break-word;
  1133. text-shadow:#666 3px 4px 5px;
  1134. font-weight:bold;
  1135. z-index:1;
  1136. display:inline-block;
  1137. animation-duration:1s;
  1138. font-size:32px;
  1139. line-height:1.4;
  1140. }
  1141. .class-49
  1142. {
  1143. color:#FFFFFF;
  1144. word-wrap:break-word;
  1145. text-shadow:#666 3px 4px 5px;
  1146. z-index:1;
  1147. display:inline-block;
  1148. animation-duration:1s;
  1149. font-size:24px;
  1150. line-height:1.4;
  1151. }
  1152. .class-50
  1153. {
  1154. color:#333333;
  1155. background-image:url(${base}/static/ms-admin/5.0.0/images/1578366770290.png);
  1156. outline:none;
  1157. outline-offset:-1px;
  1158. background-size:cover;
  1159. background-position:center;
  1160. height:200px;
  1161. max-width:100%;
  1162. background-color:rgba(119, 54, 242, 1);
  1163. align-items:center;
  1164. flex-direction:column;
  1165. display:flex;
  1166. justify-content:center;
  1167. animation-duration:1s;
  1168. width:24%;
  1169. background-repeat:no-repeat;
  1170. }
  1171. .class-51
  1172. {
  1173. color:#FFFFFF;
  1174. word-wrap:break-word;
  1175. text-shadow:#666 3px 4px 5px;
  1176. font-weight:bold;
  1177. z-index:1;
  1178. display:inline-block;
  1179. animation-duration:1s;
  1180. font-size:32px;
  1181. line-height:1.4;
  1182. }
  1183. .class-52
  1184. {
  1185. color:#FFFFFF;
  1186. word-wrap:break-word;
  1187. text-shadow:#666 3px 4px 5px;
  1188. z-index:1;
  1189. display:inline-block;
  1190. animation-duration:1s;
  1191. font-size:24px;
  1192. line-height:1.4;
  1193. }
  1194. .class-53
  1195. {
  1196. color:#333333;
  1197. background-image:url(${base}/static/ms-admin/5.0.0/images/1578368816112.png);
  1198. outline:none;
  1199. outline-offset:-1px;
  1200. background-size:cover;
  1201. background-position:center;
  1202. height:200px;
  1203. max-width:100%;
  1204. background-color:rgba(119, 54, 242, 1);
  1205. align-items:center;
  1206. flex-direction:column;
  1207. display:flex;
  1208. justify-content:center;
  1209. animation-duration:1s;
  1210. width:24%;
  1211. background-repeat:no-repeat;
  1212. }
  1213. .class-54
  1214. {
  1215. color:#FFFFFF;
  1216. word-wrap:break-word;
  1217. text-shadow:#666 3px 4px 5px;
  1218. font-weight:bold;
  1219. z-index:1;
  1220. display:inline-block;
  1221. animation-duration:1s;
  1222. font-size:32px;
  1223. line-height:1.4;
  1224. }
  1225. .class-55
  1226. {
  1227. color:#FFFFFF;
  1228. word-wrap:break-word;
  1229. text-shadow:#666 3px 4px 5px;
  1230. z-index:1;
  1231. display:inline-block;
  1232. animation-duration:1s;
  1233. font-size:24px;
  1234. line-height:1.4;
  1235. }
  1236. .class-56
  1237. {
  1238. color:#333333;
  1239. outline:none;
  1240. outline-offset:-1px;
  1241. flex:1;
  1242. height:100%;
  1243. flex-direction:column;
  1244. display:flex;
  1245. min-width:390px;
  1246. margin-left:10px;
  1247. animation-duration:1s;
  1248. background-repeat:no-repeat;
  1249. }
  1250. .class-57
  1251. {
  1252. cursor: pointer;
  1253. color:#333333;
  1254. outline:none;
  1255. outline-offset:-1px;
  1256. height:40px;
  1257. background-color:rgba(253, 246, 236, 1);
  1258. align-items:flex-start;
  1259. flex-direction:column;
  1260. display:flex;
  1261. justify-content:center;
  1262. animation-duration:1s;
  1263. width:100%;
  1264. padding-left:20px;
  1265. background-repeat:no-repeat;
  1266. }
  1267. .class-58
  1268. {
  1269. color:#333333;
  1270. outline:none;
  1271. outline-offset:-1px;
  1272. max-width:100%;
  1273. align-items:center;
  1274. flex-direction:row;
  1275. display:flex;
  1276. justify-content:center;
  1277. animation-duration:1s;
  1278. background-repeat:no-repeat;
  1279. }
  1280. .class-59
  1281. {
  1282. color:#333333;
  1283. background-image:url(${base}/static/ms-admin/5.0.0/images/1577257489392.png);
  1284. outline:none;
  1285. outline-offset:-1px;
  1286. background-size:contain;
  1287. background-position:center;
  1288. height:20px;
  1289. max-width:100%;
  1290. flex-direction:row;
  1291. display:flex;
  1292. animation-duration:1s;
  1293. width:20px;
  1294. background-repeat:no-repeat;
  1295. }
  1296. .class-60
  1297. {
  1298. color:#E6A23C;
  1299. word-wrap:break-word;
  1300. display:inline-block;
  1301. margin-left:10px;
  1302. animation-duration:1s;
  1303. font-size:14px;
  1304. line-height:1.4;
  1305. }
  1306. .class-61
  1307. {
  1308. cursor:pointer;
  1309. color:#333333;
  1310. padding-right:20px;
  1311. outline:none;
  1312. padding-bottom:20px;
  1313. outline-offset:-1px;
  1314. padding-top:20px;
  1315. height:80px;
  1316. max-width:100%;
  1317. background-color:rgba(255, 255, 255, 1);
  1318. align-items:center;
  1319. flex-direction:row;
  1320. display:flex;
  1321. animation-duration:1s;
  1322. padding-left:20px;
  1323. background-repeat:no-repeat;
  1324. margin-top:10px;
  1325. }
  1326. .class-62
  1327. {
  1328. color:#333333;
  1329. background-image:url(${base}/static/ms-admin/5.0.0/images/1577151868190.png);
  1330. outline:none;
  1331. outline-offset:-1px;
  1332. height:40px;
  1333. max-width:100%;
  1334. flex-direction:row;
  1335. display:flex;
  1336. animation-duration:1s;
  1337. width:40px;
  1338. background-repeat:no-repeat;
  1339. }
  1340. .class-63
  1341. {
  1342. color:#333333;
  1343. word-wrap:break-word;
  1344. font-weight:bold;
  1345. display:inline-block;
  1346. margin-left:20px;
  1347. animation-duration:1s;
  1348. font-size:16px;
  1349. line-height:1.4;
  1350. }
  1351. .class-64
  1352. {
  1353. color:#333333;
  1354. outline:none;
  1355. outline-offset:-1px;
  1356. flex-wrap:wrap;
  1357. max-width:100%;
  1358. flex-direction:row;
  1359. display:flex;
  1360. animation-duration:1s;
  1361. background-repeat:no-repeat;
  1362. margin-top:10px;
  1363. }
  1364. .class-65
  1365. {
  1366. cursor:pointer;
  1367. color:#333333;
  1368. padding-right:15px;
  1369. outline:none;
  1370. padding-bottom:20px;
  1371. outline-offset:-1px;
  1372. padding-top:20px;
  1373. max-width:100%;
  1374. background-color:rgba(255, 255, 255, 1);
  1375. align-items:center;
  1376. flex-direction:row;
  1377. display:flex;
  1378. animation-duration:1s;
  1379. width:50%;
  1380. padding-left:15px;
  1381. background-repeat:no-repeat;
  1382. }
  1383. .class-66
  1384. {
  1385. color:#333333;
  1386. outline:none;
  1387. outline-offset:-1px;
  1388. height:40px;
  1389. align-items:center;
  1390. flex-direction:row;
  1391. display:flex;
  1392. min-width:40px;
  1393. justify-content:center;
  1394. animation-duration:1s;
  1395. width:40px;
  1396. background-repeat:no-repeat;
  1397. }
  1398. .class-67
  1399. {
  1400. animation-duration:1s;
  1401. }
  1402. .class-68
  1403. {
  1404. color:#333333;
  1405. outline:none;
  1406. outline-offset:-1px;
  1407. max-width:100%;
  1408. flex-direction:column;
  1409. display:flex;
  1410. margin-left:20px;
  1411. animation-duration:1s;
  1412. background-repeat:no-repeat;
  1413. }
  1414. .class-69
  1415. {
  1416. color:#999999;
  1417. word-wrap:break-word;
  1418. display:inline-block;
  1419. animation-duration:1s;
  1420. font-size:12px;
  1421. line-height:1.4;
  1422. }
  1423. .class-70
  1424. {
  1425. color:#333333;
  1426. word-wrap:break-word;
  1427. font-weight:bold;
  1428. display:inline-block;
  1429. animation-duration:1s;
  1430. font-size:16px;
  1431. line-height:1.4;
  1432. margin-top:5px;
  1433. }
  1434. .class-71
  1435. {
  1436. cursor:pointer;
  1437. color:#333333;
  1438. padding-right:15px;
  1439. outline:none;
  1440. padding-bottom:20px;
  1441. outline-offset:-1px;
  1442. padding-top:20px;
  1443. max-width:100%;
  1444. background-color:rgba(255, 255, 255, 1);
  1445. align-items:center;
  1446. flex-direction:row;
  1447. display:flex;
  1448. animation-duration:1s;
  1449. width:50%;
  1450. padding-left:15px;
  1451. background-repeat:no-repeat;
  1452. }
  1453. .class-72
  1454. {
  1455. color:#333333;
  1456. outline:none;
  1457. outline-offset:-1px;
  1458. height:40px;
  1459. align-items:center;
  1460. flex-direction:row;
  1461. display:flex;
  1462. min-width:40px;
  1463. justify-content:center;
  1464. animation-duration:1s;
  1465. width:40px;
  1466. background-repeat:no-repeat;
  1467. }
  1468. .class-73
  1469. {
  1470. animation-duration:1s;
  1471. }
  1472. .class-74
  1473. {
  1474. color:#333333;
  1475. outline:none;
  1476. outline-offset:-1px;
  1477. max-width:100%;
  1478. flex-direction:column;
  1479. display:flex;
  1480. margin-left:20px;
  1481. animation-duration:1s;
  1482. background-repeat:no-repeat;
  1483. }
  1484. .class-75
  1485. {
  1486. color:#999999;
  1487. word-wrap:break-word;
  1488. display:inline-block;
  1489. animation-duration:1s;
  1490. font-size:12px;
  1491. line-height:1.4;
  1492. }
  1493. .class-76
  1494. {
  1495. color:#333333;
  1496. word-wrap:break-word;
  1497. font-weight:bold;
  1498. display:inline-block;
  1499. animation-duration:1s;
  1500. font-size:16px;
  1501. line-height:1.4;
  1502. margin-top:5px;
  1503. }
  1504. .class-77
  1505. {
  1506. cursor:pointer;
  1507. color:#333333;
  1508. padding-right:15px;
  1509. outline:none;
  1510. padding-bottom:20px;
  1511. outline-offset:-1px;
  1512. padding-top:20px;
  1513. max-width:100%;
  1514. background-color:rgba(255, 255, 255, 1);
  1515. align-items:center;
  1516. flex-direction:row;
  1517. display:flex;
  1518. animation-duration:1s;
  1519. width:50%;
  1520. padding-left:15px;
  1521. background-repeat:no-repeat;
  1522. }
  1523. .class-78
  1524. {
  1525. color:#333333;
  1526. outline:none;
  1527. outline-offset:-1px;
  1528. height:40px;
  1529. align-items:center;
  1530. flex-direction:row;
  1531. display:flex;
  1532. min-width:40px;
  1533. justify-content:center;
  1534. animation-duration:1s;
  1535. width:40px;
  1536. background-repeat:no-repeat;
  1537. }
  1538. .class-79
  1539. {
  1540. animation-duration:1s;
  1541. }
  1542. .class-80
  1543. {
  1544. color:#333333;
  1545. outline:none;
  1546. outline-offset:-1px;
  1547. max-width:100%;
  1548. flex-direction:column;
  1549. display:flex;
  1550. margin-left:20px;
  1551. animation-duration:1s;
  1552. background-repeat:no-repeat;
  1553. }
  1554. .class-81
  1555. {
  1556. color:#999999;
  1557. word-wrap:break-word;
  1558. display:inline-block;
  1559. animation-duration:1s;
  1560. font-size:12px;
  1561. line-height:1.4;
  1562. }
  1563. .class-82
  1564. {
  1565. color:#333333;
  1566. word-wrap:break-word;
  1567. font-weight:bold;
  1568. display:inline-block;
  1569. animation-duration:1s;
  1570. font-size:16px;
  1571. line-height:1.4;
  1572. margin-top:5px;
  1573. }
  1574. .class-83
  1575. {
  1576. cursor:pointer;
  1577. color:#333333;
  1578. padding-right:15px;
  1579. outline:none;
  1580. padding-bottom:20px;
  1581. outline-offset:-1px;
  1582. padding-top:20px;
  1583. max-width:100%;
  1584. background-color:rgba(255, 255, 255, 1);
  1585. align-items:center;
  1586. flex-direction:row;
  1587. display:flex;
  1588. animation-duration:1s;
  1589. width:50%;
  1590. padding-left:15px;
  1591. background-repeat:no-repeat;
  1592. }
  1593. .class-84
  1594. {
  1595. color:#333333;
  1596. outline:none;
  1597. outline-offset:-1px;
  1598. height:40px;
  1599. align-items:center;
  1600. flex-direction:row;
  1601. display:flex;
  1602. min-width:40px;
  1603. justify-content:center;
  1604. animation-duration:1s;
  1605. width:40px;
  1606. background-repeat:no-repeat;
  1607. }
  1608. .class-85
  1609. {
  1610. animation-duration:1s;
  1611. }
  1612. .class-86
  1613. {
  1614. color:#333333;
  1615. outline:none;
  1616. outline-offset:-1px;
  1617. max-width:100%;
  1618. flex-direction:column;
  1619. display:flex;
  1620. margin-left:20px;
  1621. animation-duration:1s;
  1622. background-repeat:no-repeat;
  1623. }
  1624. .class-87
  1625. {
  1626. color:#999999;
  1627. word-wrap:break-word;
  1628. display:inline-block;
  1629. animation-duration:1s;
  1630. font-size:12px;
  1631. line-height:1.4;
  1632. }
  1633. .class-88
  1634. {
  1635. color:#333333;
  1636. word-wrap:break-word;
  1637. font-weight:bold;
  1638. display:inline-block;
  1639. animation-duration:1s;
  1640. font-size:16px;
  1641. line-height:1.4;
  1642. margin-top:5px;
  1643. }
  1644. .class-89
  1645. {
  1646. color:#333333;
  1647. outline:none;
  1648. outline-offset:-1px;
  1649. flex:1;
  1650. padding-top:20px;
  1651. height:980px;
  1652. max-width:100%;
  1653. background-color:rgba(255, 255, 255, 1);
  1654. flex-direction:column;
  1655. display:flex;
  1656. animation-duration:1s;
  1657. background-repeat:no-repeat;
  1658. margin-top:10px;
  1659. }
  1660. .class-90
  1661. {
  1662. color:#333333;
  1663. margin-right:20px;
  1664. outline:none;
  1665. outline-offset:-1px;
  1666. max-width:100%;
  1667. align-items:center;
  1668. flex-direction:row;
  1669. display:flex;
  1670. justify-content:flex-start;
  1671. margin-left:20px;
  1672. animation-duration:1s;
  1673. background-repeat:no-repeat;
  1674. }
  1675. .class-91
  1676. {
  1677. color:#333333;
  1678. word-wrap:break-word;
  1679. font-weight:bold;
  1680. display:inline-block;
  1681. animation-duration:1s;
  1682. font-size:16px;
  1683. line-height:1.4;
  1684. }
  1685. .class-92
  1686. {
  1687. color:#333333;
  1688. outline:none;
  1689. outline-offset:-1px;
  1690. flex-wrap:wrap;
  1691. max-width:100%;
  1692. flex-direction:row;
  1693. display:flex;
  1694. animation-duration:1s;
  1695. width:100%;
  1696. background-repeat:no-repeat;
  1697. }
  1698. .class-93
  1699. {
  1700. color:#333333;
  1701. margin-right:20px;
  1702. outline:none;
  1703. outline-offset:-1px;
  1704. max-width:100%;
  1705. flex-direction:column;
  1706. display:flex;
  1707. margin-left:20px;
  1708. animation-duration:1s;
  1709. width:100%;
  1710. margin-bottom:20px;
  1711. background-repeat:no-repeat;
  1712. }
  1713. .class-94
  1714. {
  1715. color:#333333;
  1716. outline:none;
  1717. overflow:visible;
  1718. outline-offset:-1px;
  1719. flex-wrap:wrap;
  1720. max-width:100%;
  1721. flex-direction:row;
  1722. display:flex;
  1723. animation-duration:1s;
  1724. width:100%;
  1725. background-repeat:no-repeat;
  1726. }
  1727. .class-95
  1728. {
  1729. color:#333333;
  1730. outline:none;
  1731. outline-offset:-1px;
  1732. max-width:100%;
  1733. align-items:center;
  1734. flex-direction:column;
  1735. display:flex;
  1736. justify-content:center;
  1737. animation-duration:1s;
  1738. width:33%;
  1739. margin-bottom:20px;
  1740. background-repeat:no-repeat;
  1741. }
  1742. .class-96
  1743. {
  1744. color:#333333;
  1745. background-image:url(${base}/static/ms-admin/5.0.0/images/1578031206821.png);
  1746. outline:none;
  1747. outline-offset:-1px;
  1748. background-size:contain;
  1749. background-position:center;
  1750. height:30px;
  1751. max-width:100%;
  1752. align-items:center;
  1753. flex-direction:row;
  1754. display:flex;
  1755. justify-content:center;
  1756. animation-duration:1s;
  1757. border-radius:4px;
  1758. width:30px;
  1759. background-repeat:no-repeat;
  1760. }
  1761. .class-97
  1762. {
  1763. color:#333333;
  1764. word-wrap:break-word;
  1765. display:inline-block;
  1766. animation-duration:1s;
  1767. font-size:14px;
  1768. line-height:1.4;
  1769. margin-top:10px;
  1770. }
  1771. .class-98
  1772. {
  1773. color:#333333;
  1774. outline:none;
  1775. outline-offset:-1px;
  1776. max-width:100%;
  1777. align-items:center;
  1778. flex-direction:column;
  1779. display:flex;
  1780. justify-content:center;
  1781. animation-duration:1s;
  1782. width:33%;
  1783. margin-bottom:20px;
  1784. background-repeat:no-repeat;
  1785. }
  1786. .class-99
  1787. {
  1788. color:#333333;
  1789. background-image:url(${base}/static/ms-admin/5.0.0/images/1578031321635.png);
  1790. outline:none;
  1791. outline-offset:-1px;
  1792. background-size:contain;
  1793. background-position:center;
  1794. height:30px;
  1795. max-width:100%;
  1796. align-items:center;
  1797. flex-direction:row;
  1798. display:flex;
  1799. justify-content:center;
  1800. animation-duration:1s;
  1801. border-radius:4px;
  1802. width:30px;
  1803. background-repeat:no-repeat;
  1804. }
  1805. .class-100
  1806. {
  1807. color:#333333;
  1808. word-wrap:break-word;
  1809. display:inline-block;
  1810. animation-duration:1s;
  1811. font-size:14px;
  1812. line-height:1.4;
  1813. margin-top:10px;
  1814. }
  1815. .class-101
  1816. {
  1817. color:#333333;
  1818. outline:none;
  1819. outline-offset:-1px;
  1820. max-width:100%;
  1821. align-items:center;
  1822. flex-direction:column;
  1823. display:flex;
  1824. justify-content:center;
  1825. animation-duration:1s;
  1826. width:33%;
  1827. margin-bottom:20px;
  1828. background-repeat:no-repeat;
  1829. }
  1830. .class-102
  1831. {
  1832. color:#333333;
  1833. background-image:url(${base}/static/ms-admin/5.0.0/images/1578031484700.png);
  1834. outline:none;
  1835. outline-offset:-1px;
  1836. background-size:contain;
  1837. background-position:center;
  1838. height:30px;
  1839. max-width:100%;
  1840. align-items:center;
  1841. flex-direction:row;
  1842. display:flex;
  1843. justify-content:center;
  1844. animation-duration:1s;
  1845. border-radius:4px;
  1846. width:30px;
  1847. background-repeat:no-repeat;
  1848. }
  1849. .class-103
  1850. {
  1851. color:#333333;
  1852. word-wrap:break-word;
  1853. display:inline-block;
  1854. animation-duration:1s;
  1855. font-size:14px;
  1856. line-height:1.4;
  1857. margin-top:10px;
  1858. }
  1859. .class-104
  1860. {
  1861. color:#333333;
  1862. outline:none;
  1863. outline-offset:-1px;
  1864. max-width:100%;
  1865. align-items:center;
  1866. flex-direction:column;
  1867. display:flex;
  1868. justify-content:center;
  1869. animation-duration:1s;
  1870. width:33%;
  1871. margin-bottom:20px;
  1872. background-repeat:no-repeat;
  1873. }
  1874. .class-105
  1875. {
  1876. color:#333333;
  1877. background-image:url(${base}/static/ms-admin/5.0.0/images/1578031264207.png);
  1878. outline:none;
  1879. outline-offset:-1px;
  1880. background-size:contain;
  1881. background-position:center;
  1882. height:30px;
  1883. max-width:100%;
  1884. align-items:center;
  1885. flex-direction:row;
  1886. display:flex;
  1887. justify-content:center;
  1888. animation-duration:1s;
  1889. border-radius:4px;
  1890. width:30px;
  1891. background-repeat:no-repeat;
  1892. }
  1893. .class-106
  1894. {
  1895. color:#333333;
  1896. word-wrap:break-word;
  1897. display:inline-block;
  1898. animation-duration:1s;
  1899. font-size:14px;
  1900. line-height:1.4;
  1901. margin-top:10px;
  1902. }
  1903. .class-107
  1904. {
  1905. color:#333333;
  1906. outline:none;
  1907. outline-offset:-1px;
  1908. max-width:100%;
  1909. align-items:center;
  1910. flex-direction:column;
  1911. display:flex;
  1912. justify-content:center;
  1913. animation-duration:1s;
  1914. width:33%;
  1915. margin-bottom:20px;
  1916. background-repeat:no-repeat;
  1917. }
  1918. .class-108
  1919. {
  1920. color:#333333;
  1921. background-image:url(${base}/static/ms-admin/5.0.0/images/1578031682848.png);
  1922. outline:none;
  1923. outline-offset:-1px;
  1924. background-size:contain;
  1925. background-position:center;
  1926. height:30px;
  1927. max-width:100%;
  1928. align-items:center;
  1929. flex-direction:row;
  1930. display:flex;
  1931. justify-content:center;
  1932. animation-duration:1s;
  1933. border-radius:4px;
  1934. width:30px;
  1935. background-repeat:no-repeat;
  1936. }
  1937. .class-109
  1938. {
  1939. color:#333333;
  1940. word-wrap:break-word;
  1941. display:inline-block;
  1942. animation-duration:1s;
  1943. font-size:14px;
  1944. line-height:1.4;
  1945. margin-top:10px;
  1946. }
  1947. .class-110
  1948. {
  1949. color:#333333;
  1950. outline:none;
  1951. outline-offset:-1px;
  1952. max-width:100%;
  1953. align-items:center;
  1954. flex-direction:column;
  1955. display:flex;
  1956. justify-content:center;
  1957. animation-duration:1s;
  1958. width:33%;
  1959. margin-bottom:20px;
  1960. background-repeat:no-repeat;
  1961. }
  1962. .class-111
  1963. {
  1964. color:#333333;
  1965. background-image:url(${base}/static/ms-admin/5.0.0/images/1578031639173.png);
  1966. outline:none;
  1967. outline-offset:-1px;
  1968. background-size:contain;
  1969. background-position:center;
  1970. height:30px;
  1971. max-width:100%;
  1972. align-items:center;
  1973. flex-direction:row;
  1974. display:flex;
  1975. justify-content:center;
  1976. animation-duration:1s;
  1977. border-radius:4px;
  1978. width:30px;
  1979. background-repeat:no-repeat;
  1980. }
  1981. .class-112
  1982. {
  1983. color:#333333;
  1984. word-wrap:break-word;
  1985. display:inline-block;
  1986. animation-duration:1s;
  1987. font-size:14px;
  1988. line-height:1.4;
  1989. margin-top:10px;
  1990. }
  1991. .class-113
  1992. {
  1993. color:#333333;
  1994. outline:none;
  1995. outline-offset:-1px;
  1996. max-width:100%;
  1997. align-items:center;
  1998. flex-direction:column;
  1999. display:flex;
  2000. justify-content:center;
  2001. animation-duration:1s;
  2002. width:33%;
  2003. margin-bottom:20px;
  2004. background-repeat:no-repeat;
  2005. }
  2006. .class-114
  2007. {
  2008. color:#333333;
  2009. background-image:url(${base}/static/ms-admin/5.0.0/images/1578031215338.png);
  2010. outline:none;
  2011. outline-offset:-1px;
  2012. background-size:contain;
  2013. background-position:center;
  2014. height:30px;
  2015. max-width:100%;
  2016. align-items:center;
  2017. flex-direction:row;
  2018. display:flex;
  2019. justify-content:center;
  2020. animation-duration:1s;
  2021. border-radius:4px;
  2022. width:30px;
  2023. background-repeat:no-repeat;
  2024. }
  2025. .class-115
  2026. {
  2027. color:#333333;
  2028. word-wrap:break-word;
  2029. display:inline-block;
  2030. animation-duration:1s;
  2031. font-size:14px;
  2032. line-height:1.4;
  2033. margin-top:10px;
  2034. }
  2035. .class-116
  2036. {
  2037. color:#333333;
  2038. outline:none;
  2039. outline-offset:-1px;
  2040. max-width:100%;
  2041. align-items:center;
  2042. flex-direction:column;
  2043. display:flex;
  2044. justify-content:center;
  2045. animation-duration:1s;
  2046. width:33%;
  2047. margin-bottom:20px;
  2048. background-repeat:no-repeat;
  2049. }
  2050. .class-117
  2051. {
  2052. color:#333333;
  2053. background-image:url(${base}/static/ms-admin/5.0.0/images/1578031228196.png);
  2054. outline:none;
  2055. outline-offset:-1px;
  2056. background-size:contain;
  2057. background-position:center;
  2058. height:30px;
  2059. max-width:100%;
  2060. align-items:center;
  2061. flex-direction:row;
  2062. display:flex;
  2063. justify-content:center;
  2064. animation-duration:1s;
  2065. border-radius:4px;
  2066. width:30px;
  2067. background-repeat:no-repeat;
  2068. }
  2069. .class-118
  2070. {
  2071. color:#333333;
  2072. word-wrap:break-word;
  2073. display:inline-block;
  2074. animation-duration:1s;
  2075. font-size:14px;
  2076. line-height:1.4;
  2077. margin-top:10px;
  2078. }
  2079. .class-119
  2080. {
  2081. color:#333333;
  2082. outline:none;
  2083. outline-offset:-1px;
  2084. max-width:100%;
  2085. align-items:center;
  2086. flex-direction:column;
  2087. display:flex;
  2088. justify-content:center;
  2089. animation-duration:1s;
  2090. width:33%;
  2091. margin-bottom:20px;
  2092. background-repeat:no-repeat;
  2093. }
  2094. .class-120
  2095. {
  2096. color:#333333;
  2097. background-image:url(${base}/static/ms-admin/5.0.0/images/1578031234719.png);
  2098. outline:none;
  2099. outline-offset:-1px;
  2100. background-size:contain;
  2101. background-position:center;
  2102. height:30px;
  2103. max-width:100%;
  2104. align-items:center;
  2105. flex-direction:row;
  2106. display:flex;
  2107. justify-content:center;
  2108. animation-duration:1s;
  2109. border-radius:4px;
  2110. width:30px;
  2111. background-repeat:no-repeat;
  2112. }
  2113. .class-121
  2114. {
  2115. color:#333333;
  2116. word-wrap:break-word;
  2117. display:inline-block;
  2118. animation-duration:1s;
  2119. font-size:14px;
  2120. line-height:1.4;
  2121. margin-top:10px;
  2122. }
  2123. .class-122
  2124. {
  2125. color:#333333;
  2126. box-sizing:center-box;
  2127. outline:none;
  2128. overflow:visible;
  2129. outline-offset:-1px;
  2130. max-width:100%;
  2131. background-color:rgba(255, 255, 255, 1);
  2132. flex-direction:column;
  2133. display:flex;
  2134. animation-duration:1s;
  2135. width:100%;
  2136. background-repeat:no-repeat;
  2137. margin-top:10px;
  2138. }
  2139. .class-123
  2140. {
  2141. margin-right:auto;
  2142. animation-duration:1s;
  2143. background-color:rgba(250, 250, 250, 1);
  2144. border-radius:1px;
  2145. width:100%;
  2146. height:1px;
  2147. margin-left:auto;
  2148. }
  2149. .class-124
  2150. {
  2151. color:#333333;
  2152. outline:none;
  2153. outline-offset:-1px;
  2154. flex-wrap:wrap;
  2155. max-width:100%;
  2156. flex-direction:row;
  2157. display:flex;
  2158. animation-duration:1s;
  2159. background-repeat:no-repeat;
  2160. }
  2161. .class-125
  2162. {
  2163. color:#333333;
  2164. padding-right:20px;
  2165. outline:none;
  2166. padding-bottom:20px;
  2167. outline-offset:-1px;
  2168. flex-wrap:nowrap;
  2169. padding-top:20px;
  2170. max-width:100%;
  2171. background-color:rgba(255, 255, 255, 1);
  2172. align-items:center;
  2173. flex-direction:row;
  2174. display:flex;
  2175. animation-duration:1s;
  2176. width:50%;
  2177. padding-left:20px;
  2178. background-repeat:no-repeat;
  2179. }
  2180. .class-126
  2181. {
  2182. color:#333333;
  2183. outline:none;
  2184. outline-offset:-1px;
  2185. height:40px;
  2186. max-width:100%;
  2187. align-items:center;
  2188. flex-direction:row;
  2189. display:flex;
  2190. min-width:40px;
  2191. justify-content:center;
  2192. animation-duration:1s;
  2193. width:40px;
  2194. background-repeat:no-repeat;
  2195. }
  2196. .class-127
  2197. {
  2198. animation-duration:1s;
  2199. }
  2200. .class-128
  2201. {
  2202. color:#333333;
  2203. outline:none;
  2204. outline-offset:-1px;
  2205. max-width:100%;
  2206. flex-direction:column;
  2207. display:flex;
  2208. margin-left:20px;
  2209. animation-duration:1s;
  2210. background-repeat:no-repeat;
  2211. }
  2212. .class-129
  2213. {
  2214. color:#999999;
  2215. word-wrap:break-word;
  2216. display:inline-block;
  2217. animation-duration:1s;
  2218. font-size:14px;
  2219. line-height:1.4;
  2220. }
  2221. .class-130
  2222. {
  2223. color:#333333;
  2224. word-wrap:break-word;
  2225. font-weight:bold;
  2226. display:inline-block;
  2227. animation-duration:1s;
  2228. font-size:16px;
  2229. line-height:1.4;
  2230. margin-top:5px;
  2231. }
  2232. .class-131
  2233. {
  2234. cursor:pointer;
  2235. color:#333333;
  2236. padding-right:20px;
  2237. outline:none;
  2238. padding-bottom:20px;
  2239. outline-offset:-1px;
  2240. padding-top:20px;
  2241. max-width:100%;
  2242. background-color:rgba(255, 255, 255, 1);
  2243. align-items:center;
  2244. flex-direction:row;
  2245. display:flex;
  2246. animation-duration:1s;
  2247. width:50%;
  2248. padding-left:20px;
  2249. background-repeat:no-repeat;
  2250. }
  2251. .class-132
  2252. {
  2253. color:#333333;
  2254. outline:none;
  2255. outline-offset:-1px;
  2256. height:40px;
  2257. align-items:center;
  2258. flex-direction:row;
  2259. display:flex;
  2260. min-width:40px;
  2261. justify-content:center;
  2262. animation-duration:1s;
  2263. width:40px;
  2264. background-repeat:no-repeat;
  2265. }
  2266. .class-133
  2267. {
  2268. animation-duration:1s;
  2269. }
  2270. .class-134
  2271. {
  2272. color:#333333;
  2273. outline:none;
  2274. outline-offset:-1px;
  2275. max-width:100%;
  2276. flex-direction:column;
  2277. display:flex;
  2278. margin-left:20px;
  2279. animation-duration:1s;
  2280. background-repeat:no-repeat;
  2281. }
  2282. .class-135
  2283. {
  2284. color:#999999;
  2285. word-wrap:break-word;
  2286. display:inline-block;
  2287. animation-duration:1s;
  2288. font-size:14px;
  2289. line-height:1.4;
  2290. }
  2291. .class-136
  2292. {
  2293. color:#333333;
  2294. word-wrap:break-word;
  2295. font-weight:bold;
  2296. display:inline-block;
  2297. animation-duration:1s;
  2298. font-size:16px;
  2299. line-height:1.4;
  2300. margin-top:5px;
  2301. }
  2302. @media (max-width: 768px){
  2303. .class-1
  2304. {
  2305. padding-right:12px;
  2306. box-sizing:border-box;
  2307. margin-right:auto;
  2308. outline:1px dashed hsla(0, 0%, 66.7%, .7);
  2309. padding-bottom:12px;
  2310. flex-wrap:wrap;
  2311. padding-top:12px;
  2312. height:200px;
  2313. max-width:100%;
  2314. flex-direction:column;
  2315. margin-left:auto;
  2316. padding-left:12px;
  2317. }
  2318. .class-2
  2319. {
  2320. padding-right:12px;
  2321. box-sizing:border-box;
  2322. margin-right:auto;
  2323. outline:1px dashed hsla(0, 0%, 66.7%, .7);
  2324. padding-bottom:12px;
  2325. flex-wrap:wrap;
  2326. padding-top:12px;
  2327. height:200px;
  2328. margin-left:auto;
  2329. padding-left:12px;
  2330. }
  2331. .class-3
  2332. {
  2333. padding-right:8px;
  2334. box-sizing:border-box;
  2335. outline:1px dashed hsla(0, 0%, 66.7%, .7);
  2336. padding-bottom:8px;
  2337. padding-top:8px;
  2338. height:80px;
  2339. width:80px;
  2340. padding-left:8px;
  2341. }
  2342. .class-4
  2343. {
  2344. }
  2345. .class-5
  2346. {
  2347. }
  2348. .class-6
  2349. {
  2350. }
  2351. .class-7
  2352. {
  2353. }
  2354. .class-8
  2355. {
  2356. }
  2357. .class-9
  2358. {
  2359. }
  2360. .class-10
  2361. {
  2362. }
  2363. .class-11
  2364. {
  2365. }
  2366. .class-12
  2367. {
  2368. }
  2369. .class-13
  2370. {
  2371. }
  2372. .class-14
  2373. {
  2374. }
  2375. .class-15
  2376. {
  2377. }
  2378. .class-16
  2379. {
  2380. }
  2381. .class-17
  2382. {
  2383. }
  2384. .class-18
  2385. {
  2386. }
  2387. .class-19
  2388. {
  2389. }
  2390. .class-20
  2391. {
  2392. }
  2393. .class-21
  2394. {
  2395. }
  2396. .class-22
  2397. {
  2398. }
  2399. .class-23
  2400. {
  2401. }
  2402. .class-24
  2403. {
  2404. }
  2405. .class-25
  2406. {
  2407. }
  2408. .class-26
  2409. {
  2410. }
  2411. .class-27
  2412. {
  2413. }
  2414. .class-28
  2415. {
  2416. }
  2417. .class-29
  2418. {
  2419. }
  2420. .class-30
  2421. {
  2422. }
  2423. .class-31
  2424. {
  2425. }
  2426. .class-32
  2427. {
  2428. }
  2429. .class-33
  2430. {
  2431. }
  2432. .class-34
  2433. {
  2434. }
  2435. .class-35
  2436. {
  2437. }
  2438. .class-36
  2439. {
  2440. }
  2441. .class-37
  2442. {
  2443. }
  2444. .class-38
  2445. {
  2446. }
  2447. .class-39
  2448. {
  2449. }
  2450. .class-40
  2451. {
  2452. }
  2453. .class-41
  2454. {
  2455. }
  2456. .class-42
  2457. {
  2458. }
  2459. .class-43
  2460. {
  2461. }
  2462. .class-44
  2463. {
  2464. }
  2465. .class-45
  2466. {
  2467. text-shadow:#000 3px 4px 5px;
  2468. }
  2469. .class-46
  2470. {
  2471. text-shadow:#000 3px 4px 5px;
  2472. font-size:32px;
  2473. }
  2474. .class-47
  2475. {
  2476. }
  2477. .class-48
  2478. {
  2479. text-shadow:#000 3px 4px 5px;
  2480. }
  2481. .class-49
  2482. {
  2483. text-shadow:#000 3px 4px 5px;
  2484. font-size:32px;
  2485. }
  2486. .class-50
  2487. {
  2488. }
  2489. .class-51
  2490. {
  2491. text-shadow:#000 3px 4px 5px;
  2492. }
  2493. .class-52
  2494. {
  2495. text-shadow:#000 3px 4px 5px;
  2496. font-size:32px;
  2497. }
  2498. .class-53
  2499. {
  2500. }
  2501. .class-54
  2502. {
  2503. text-shadow:#000 3px 4px 5px;
  2504. }
  2505. .class-55
  2506. {
  2507. text-shadow:#000 3px 4px 5px;
  2508. font-size:32px;
  2509. }
  2510. .class-56
  2511. {
  2512. padding-right:8px;
  2513. box-sizing:border-box;
  2514. outline:1px dashed hsla(0, 0%, 66.7%, .7);
  2515. padding-bottom:8px;
  2516. padding-top:8px;
  2517. height:80px;
  2518. max-width:100%;
  2519. width:80px;
  2520. padding-left:8px;
  2521. }
  2522. .class-57
  2523. {
  2524. padding-right:8px;
  2525. box-sizing:border-box;
  2526. outline:1px dashed hsla(0, 0%, 66.7%, .7);
  2527. padding-bottom:8px;
  2528. padding-top:8px;
  2529. height:80px;
  2530. max-width:100%;
  2531. width:80px;
  2532. padding-left:8px;
  2533. }
  2534. .class-58
  2535. {
  2536. padding-right:8px;
  2537. box-sizing:border-box;
  2538. outline:1px dashed hsla(0, 0%, 66.7%, .7);
  2539. padding-bottom:8px;
  2540. padding-top:8px;
  2541. height:80px;
  2542. flex-direction:column;
  2543. width:80px;
  2544. padding-left:8px;
  2545. }
  2546. .class-59
  2547. {
  2548. padding-right:8px;
  2549. box-sizing:border-box;
  2550. outline:1px dashed hsla(0, 0%, 66.7%, .7);
  2551. padding-bottom:8px;
  2552. padding-top:8px;
  2553. height:80px;
  2554. flex-direction:column;
  2555. width:80px;
  2556. padding-left:8px;
  2557. }
  2558. .class-60
  2559. {
  2560. color:#333333;
  2561. font-size:16px;
  2562. line-height:1.5;
  2563. }
  2564. .class-61
  2565. {
  2566. }
  2567. .class-62
  2568. {
  2569. }
  2570. .class-63
  2571. {
  2572. }
  2573. .class-64
  2574. {
  2575. }
  2576. .class-65
  2577. {
  2578. padding-right:20px;
  2579. padding-left:20px;
  2580. }
  2581. .class-66
  2582. {
  2583. }
  2584. .class-67
  2585. {
  2586. }
  2587. .class-68
  2588. {
  2589. }
  2590. .class-69
  2591. {
  2592. font-size:14px;
  2593. }
  2594. .class-70
  2595. {
  2596. }
  2597. .class-71
  2598. {
  2599. padding-right:20px;
  2600. padding-left:20px;
  2601. }
  2602. .class-72
  2603. {
  2604. }
  2605. .class-73
  2606. {
  2607. }
  2608. .class-74
  2609. {
  2610. }
  2611. .class-75
  2612. {
  2613. font-size:14px;
  2614. }
  2615. .class-76
  2616. {
  2617. }
  2618. .class-77
  2619. {
  2620. padding-right:20px;
  2621. padding-left:20px;
  2622. }
  2623. .class-78
  2624. {
  2625. }
  2626. .class-79
  2627. {
  2628. }
  2629. .class-80
  2630. {
  2631. }
  2632. .class-81
  2633. {
  2634. font-size:14px;
  2635. }
  2636. .class-82
  2637. {
  2638. }
  2639. .class-83
  2640. {
  2641. padding-right:20px;
  2642. padding-left:20px;
  2643. }
  2644. .class-84
  2645. {
  2646. }
  2647. .class-85
  2648. {
  2649. }
  2650. .class-86
  2651. {
  2652. }
  2653. .class-87
  2654. {
  2655. font-size:14px;
  2656. }
  2657. .class-88
  2658. {
  2659. }
  2660. .class-89
  2661. {
  2662. padding-right:12px;
  2663. box-sizing:border-box;
  2664. margin-right:auto;
  2665. outline:1px dashed hsla(0, 0%, 66.7%, .7);
  2666. padding-bottom:12px;
  2667. flex-wrap:wrap;
  2668. padding-top:12px;
  2669. height:200px;
  2670. margin-left:auto;
  2671. padding-left:12px;
  2672. }
  2673. .class-90
  2674. {
  2675. padding-right:8px;
  2676. box-sizing:border-box;
  2677. outline:1px dashed hsla(0, 0%, 66.7%, .7);
  2678. padding-bottom:8px;
  2679. padding-top:8px;
  2680. height:80px;
  2681. flex-direction:column;
  2682. width:80px;
  2683. padding-left:8px;
  2684. }
  2685. .class-91
  2686. {
  2687. line-height:1.5;
  2688. }
  2689. .class-92
  2690. {
  2691. padding-right:8px;
  2692. box-sizing:border-box;
  2693. outline:1px dashed hsla(0, 0%, 66.7%, .7);
  2694. padding-bottom:8px;
  2695. padding-top:8px;
  2696. height:80px;
  2697. flex-direction:column;
  2698. width:80px;
  2699. padding-left:8px;
  2700. }
  2701. .class-93
  2702. {
  2703. }
  2704. .class-94
  2705. {
  2706. }
  2707. .class-95
  2708. {
  2709. }
  2710. .class-96
  2711. {
  2712. }
  2713. .class-97
  2714. {
  2715. }
  2716. .class-98
  2717. {
  2718. }
  2719. .class-99
  2720. {
  2721. }
  2722. .class-100
  2723. {
  2724. }
  2725. .class-101
  2726. {
  2727. }
  2728. .class-102
  2729. {
  2730. }
  2731. .class-103
  2732. {
  2733. }
  2734. .class-104
  2735. {
  2736. }
  2737. .class-105
  2738. {
  2739. }
  2740. .class-106
  2741. {
  2742. }
  2743. .class-107
  2744. {
  2745. }
  2746. .class-108
  2747. {
  2748. }
  2749. .class-109
  2750. {
  2751. }
  2752. .class-110
  2753. {
  2754. }
  2755. .class-111
  2756. {
  2757. }
  2758. .class-112
  2759. {
  2760. }
  2761. .class-113
  2762. {
  2763. }
  2764. .class-114
  2765. {
  2766. }
  2767. .class-115
  2768. {
  2769. }
  2770. .class-116
  2771. {
  2772. }
  2773. .class-117
  2774. {
  2775. }
  2776. .class-118
  2777. {
  2778. }
  2779. .class-119
  2780. {
  2781. }
  2782. .class-120
  2783. {
  2784. }
  2785. .class-121
  2786. {
  2787. }
  2788. .class-122
  2789. {
  2790. }
  2791. .class-123
  2792. {
  2793. }
  2794. .class-124
  2795. {
  2796. }
  2797. .class-125
  2798. {
  2799. }
  2800. .class-126
  2801. {
  2802. }
  2803. .class-127
  2804. {
  2805. }
  2806. .class-128
  2807. {
  2808. }
  2809. .class-129
  2810. {
  2811. }
  2812. .class-130
  2813. {
  2814. }
  2815. .class-131
  2816. {
  2817. }
  2818. .class-132
  2819. {
  2820. }
  2821. .class-133
  2822. {
  2823. }
  2824. .class-134
  2825. {
  2826. }
  2827. .class-135
  2828. {
  2829. }
  2830. .class-136
  2831. {
  2832. }
  2833. }
  2834. #app{
  2835. overflow-x: hidden;
  2836. }
  2837. </style>