| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847 |
- <html>
- <head>
- <meta charset="utf-8" />
- <title>后台主界面</title>
- <meta http-equiv="content-type" content="text/html" />
- <META HTTP-EQUIV="Pragma" CONTENT="no-cache" />
- <meta name="viewport"
- content="initial-scale=1.0,maximum-scale=1.0,minimum-scale=1.0,user-scalable=no,width=device-width"/>
- <meta name="format-detection" content="telephone=no"/>
- <meta name="app-mobile-web-app-capable" content="yes"/>
- <meta name="app-mobile-web-app-status-bar-style" content="black-translucent"/>
- <script src="${base}/static/plugins/vue/2.6.9/vue.min.js"></script>
- <!--通用图标-->
- <link rel="stylesheet" href="${base}/static/ms-admin/5.0.0/iconfont/iconfont.css" />
- <script src="${base}/static/plugins/element-ui/2.12.0/index.js"></script>
- <link rel="stylesheet" href="${base}/static/plugins/element-ui/2.12.0/index.css" />
- <!--网络请求框架-->
- <script src="${base}/static/plugins/axios/0.18.0/axios.min.js"></script>
- <script src="${base}/static/plugins/qs/6.6.0/qs.min.js"></script>
- <!--铭飞-->
- <script src="${base}/static/plugins/ms/1.0.0/ms.js"></script>
- <script src="${base}/static/plugins/ms/1.0.0/ms.http.js"></script>
- <script src="${base}/static/plugins/ms/1.0.0/ms.util.js"></script>
- <link rel="stylesheet" href="${base}/static/plugins/minireset/0.0.2/minireset.min.css" />
- <script>
- ms.base = '${base}';
- ms.manager = '${managerPath}';
- </script>
- <style>
- [v-cloak]{
- display: none;
- }
- </style>
- </head>
- <body class="custom-body">
- <div id="app" v-cloak>
- <div class="class-1" >
- <div class="class-2" >
- <div class="class-3" >
- <div class="class-4" >
- </div>
- <div class="class-5" >
- </div>
- <div class="class-6" >
- </div>
- <div class="class-7" >
- <div class="class-8" >
- <div class="class-9">
- 常用功能
- </div>
- </div>
- <div class="class-10" >
- <div @click="jumpArtcleManager"
- class="class-11" >
- <div class="class-12" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1578362848002.png"
- class="class-13" />
- <!--图片结束-->
- </div>
- <div class="class-14">
- 文章管理
- </div>
- </div>
- <div @click="jumpCategorymanager" class="class-15" >
- <div class="class-16" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1578363219309.png"
- class="class-17" />
- <!--图片结束-->
- </div>
- <div class="class-18">
- 栏目管理
- </div>
- </div>
- <div @click="jumpStaticManager" class="class-19" >
- <div class="class-20" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1578363549912.png"
- class="class-21" />
- <!--图片结束-->
- </div>
- <div class="class-22">
- 静态化
- </div>
- </div>
- <div @click="jumpAdmininstatorManager" class="class-23" >
- <div class="class-24" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1578363754088.png"
- class="class-25" />
- <!--图片结束-->
- </div>
- <div class="class-26">
- 管理员管理
- </div>
- </div>
- <div @click="jumpUserManager" class="class-27" >
- <div class="class-28" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1578364450652.png"
- class="class-29" />
- <!--图片结束-->
- </div>
- <div class="class-30">
- 角色管理
- </div>
- </div>
- <div @click="jumpMenuManager" class="class-31" >
- <div class="class-32" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1578363880431.png"
- class="class-33" />
- <!--图片结束-->
- </div>
- <div class="class-34">
- 菜单管理
- </div>
- </div>
- <div @click="jumpTemplateManager" class="class-35" >
- <div class="class-36" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1578363998984.png"
- class="class-37" />
- <!--图片结束-->
- </div>
- <div class="class-38">
- 模板管理
- </div>
- </div>
- <div @click="jumpApplicationManager" class="class-39" >
- <div class="class-40" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1578364095317.png"
- class="class-41" />
- <!--图片结束-->
- </div>
- <div class="class-42">
- 应用设置
- </div>
- </div>
- </div>
- </div>
- <!--大容器开始-->
- <div class="class-43" >
- <!--大容器开始-->
- <div class="class-44" >
- <!--文本开始-->
- <div class="class-45">
- MMall
- </div>
- <!--文本结束-->
- <!--文本开始-->
- <div class="class-46">
- 单商户、多商户、社区商城
- </div>
- <!--文本结束-->
- </div>
- <!--大容器结束-->
- <!--大容器开始-->
- <div class="class-47" >
- <!--文本开始-->
- <div class="class-48">
- 微信
- </div>
- <!--文本结束-->
- <!--文本开始-->
- <div class="class-49">
- 可管理多个公众号
- </div>
- <!--文本结束-->
- </div>
- <!--大容器结束-->
- <!--大容器开始-->
- <div class="class-50" >
- <!--文本开始-->
- <div class="class-51">
- MApp
- </div>
- <!--文本结束-->
- <!--文本开始-->
- <div class="class-52">
- 安卓、IOS、小程序
- </div>
- <!--文本结束-->
- </div>
- <!--大容器结束-->
- <!--大容器开始-->
- <div class="class-53" >
- <!--文本开始-->
- <div class="class-54">
- 二次开发
- </div>
- <!--文本结束-->
- <!--文本开始-->
- <div class="class-55">
- 更优质的服务体验,高效率的开发团队
- </div>
- <!--文本结束-->
- </div>
- <!--大容器结束-->
- </div>
- <!--大容器结束-->
- </div>
- </div>
- <div class="class-56" >
- <div class="class-57" @click="openMCMSNews">
- <div class="class-58" >
- <div class="class-59" >
- </div>
- <div class="class-60">
- {{ msNewsLast }}
- </div>
- </div>
- </div>
- <div class="class-61" @click="jumpMCMSDocument">
- <div class="class-62" >
- </div>
- <div class="class-63">
- 铭飞MCms在线文档
- </div>
- </div>
- <!--小容器开始-->
- <div class="class-64" >
- <div class="class-65" @click="enterQQOneGroup">
- <div class="class-66" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1577687056305.png"
- class="class-67" />
- <!--图片结束-->
- </div>
- <div class="class-68" >
- <div class="class-69">
- 铭飞MS平台(一)
- </div>
- <div class="class-70">
- 231212174
- </div>
- </div>
- </div>
- <div class="class-71" @click="enterQQTwoGroup">
- <div class="class-72" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1577687056305.png"
- class="class-73" />
- <!--图片结束-->
- </div>
- <div class="class-74" >
- <div class="class-75">
- 铭飞MS平台(二)
- </div>
- <div class="class-76">
- 221335098
- </div>
- </div>
- </div>
- <div class="class-77" @click="enterQQThreeGroup">
- <div class="class-78" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1577687056305.png"
- class="class-79" />
- <!--图片结束-->
- </div>
- <div class="class-80" >
- <div class="class-81">
- 铭飞MS平台(三)
- </div>
- <div class="class-82">
- 242805203
- </div>
- </div>
- </div>
- <div class="class-83" @click="enterQQFourGroup">
- <div class="class-84" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1577687056305.png"
- class="class-85" />
- <!--图片结束-->
- </div>
- <div class="class-86" >
- <div class="class-87">
- 铭飞MS平台(四)
- </div>
- <div class="class-88">
- 881894877
- </div>
- </div>
- </div>
- </div>
- <!--小容器结束-->
- <div class="class-89" >
- <div class="class-90" >
- <div class="class-91">
- 商务技术支持
- </div>
- </div>
- <div class="class-92" >
- </div>
- <div class="class-93" >
- </div>
- <div class="class-94" >
- <div class="class-95" >
- <div class="class-96" >
- </div>
- <div class="class-97">
- 功能更丰富
- </div>
- </div>
- <div class="class-98" >
- <div class="class-99" >
- </div>
- <div class="class-100">
- 审批
- </div>
- </div>
- <div class="class-101" >
- <div class="class-102" >
- </div>
- <div class="class-103">
- 在线Office
- </div>
- </div>
- <div class="class-104" >
- <div class="class-105" >
- </div>
- <div class="class-106">
- 远程协助
- </div>
- </div>
- <div class="class-107" >
- <div class="class-108" >
- </div>
- <div class="class-109">
- 语音协助
- </div>
- </div>
- <div class="class-110" >
- <div class="class-111" >
- </div>
- <div class="class-112">
- 专属VIP群
- </div>
- </div>
- <div class="class-113" >
- <div class="class-114" >
- </div>
- <div class="class-115">
- 提供发票
- </div>
- </div>
- <div class="class-116" >
- <div class="class-117" >
- </div>
- <div class="class-118">
- 终身授权
- </div>
- </div>
- <div class="class-119" >
- <div class="class-120" >
- </div>
- <div class="class-121">
- 授权证明书
- </div>
- </div>
- </div>
- <div class="class-122" >
- <!--横分割线开始-->
- <div class="class-123"></div>
- <!--横分割线结束-->
- <!--小容器开始-->
- <div class="class-124" >
- <div class="class-125" >
- <div class="class-126" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1577687023678.png"
- class="class-127" />
- <!--图片结束-->
- </div>
- <div class="class-128" >
- <div class="class-129">
- 商务电话
- </div>
- <div class="class-130">
- 19970180163
- </div>
- </div>
- </div>
- <div class="class-131" @click="addBusinessQQ">
- <div class="class-132" >
- <!--图片开始-->
- <img
- src="${base}/static/ms-admin/5.0.0/images/1577687056305.png"
- class="class-133" />
- <!--图片结束-->
- </div>
- <div class="class-134" >
- <div class="class-135">
- 商务QQ
- </div>
- <div class="class-136">
- 3336073455
- </div>
- </div>
- </div>
- </div>
- <!--小容器结束-->
- </div>
- </div>
- </div>
- </div>
- </div>
- </body>
- </html>
- <script>
- var app = new Vue({
- el: '#app',
- watch:{
- },
- data: {
- base:ms.base,
- msNewsLast: '',
- msNewsPath: ''
- },
- methods: {
- jumpArtcleManager(){
- window.parent.indexVue.openMenu({modelId:706,modelTitle:'文章管理',modelIcon: "icon-neirongguanli"});
- },
- //栏目管理
- jumpCategorymanager(){
- window.parent.indexVue.open({"modelId":708,"modelTitle":"栏目管理","modelModelId":706,"modelUrl":"cms/category/index.do"});
- },
- //静态化
- jumpStaticManager(){
- window.parent.indexVue.open({"modelId":406,"modelTitle":"静态化","modelModelId":23,"modelUrl":"cms/generate/index.do"});
- },
- //管理员管理
- jumpAdmininstatorManager(){
- window.parent.indexVue.open({"modelId":411,"modelTitle":"管理员管理","modelModelId":23,"modelUrl":"basic/manager/index.do"});
- },
- //角色管理
- jumpUserManager(){
- window.parent.indexVue.open({"modelId":406,"modelTitle":"角色管理","modelModelId":23,"modelUrl":"basic/role/index.do"});
- },
- //菜单管理
- jumpMenuManager(){
- window.parent.indexVue.open({"modelId":183,"modelTitle":"菜单管理","modelModelId":23,"modelUrl":"model/index.do"});
- },
- //模板管理
- jumpTemplateManager(){
- window.parent.indexVue.open({"modelId":87,"modelTitle":"模板管理","modelModelId":84,"modelUrl":"template/index.do"});
- },
- //应用管理
- jumpApplicationManager(){
- window.parent.indexVue.open({"modelId":86,"modelTitle":"应用管理","modelModelId":84,"modelUrl":"app/-1/edit.do"});
- },
- //铭飞开发文档
- jumpMCMSDocument(){
- window.open("http://doc.ms.mingsoft.net/plugs-cms/");
- },
- enterQQOneGroup(){
- window.open("https://shang.qq.com/wpa/qunwpa?idkey=ebf251dc9758de6b9c78c499956431cba73e28b3f0b72c0fc28242e98b20fca2");
- },
- enterQQTwoGroup(){
- window.open("http://shang.qq.com/wpa/qunwpa?idkey=cfb32b0f47d89d7ef1c3a9493984d4ffbdfe14049fdedd90c517a072e90d68b9");
- },
- enterQQThreeGroup(){
- window.open("http://shang.qq.com/wpa/qunwpa?idkey=5dd11fdb492c4ded090fa1f78a166583978e33c4a61301b136d31e9e3eb7df72");
- },
- enterQQFourGroup(){
- window.open("http://shang.qq.com/wpa/qunwpa?idkey=565f1e4c4fabeee42947f6c6b96ac7ca4853dece16559d3d78e944ca2931b7f5");
- },
- addBusinessQQ(){
- window.open("http://wpa.qq.com/msgrd?v=3&uin=3336073455&site=qq&menu=yes");
- },
- //打开铭飞消息页面
- openMCMSNews(){
- window.open(this.msNewsPath);
- },
- getNewsLast(){
- var that = this;
- axios.create({
- withCredentials: true
- }).get("https://ms.mingsoft.net/cms/content/list.do?contentCategoryId=202").then(function (res){
- that.msNewsLast = res.data.data.rows[0].contentTitle.toString();
- that.msNewsPath = 'https://ms.mingsoft.net/html/1/203/202/'+res.data.data.rows[0].id+'.html'
- })
- }
- },
- created(){
- this.getNewsLast()
- }
- })
- </script>
- <style>
- .custom-body {
- }
- .class-1
- {
- color:#333333;
- padding-right:10px;
- min-height:720px;
- outline:none;
- padding-bottom:10px;
- overflow:visible;
- outline-offset:-1px;
- flex:6;
- padding-top:10px;
- height:100%;
- background-color:rgba(238, 238, 238, 1);
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:100%;
- padding-left:10px;
- background-repeat:no-repeat;
- }
- .class-2
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- flex:7;
- height:100%;
- max-width:100%;
- flex-direction:column;
- display:flex;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-3
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- flex:4;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- flex-direction:column;
- display:flex;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-4
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- flex-direction:column;
- display:flex;
- margin-left:20px;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-5
- {
- color:#333333;
- margin-right:20px;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- flex-direction:column;
- display:flex;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-6
- {
- color:#333333;
- margin-right:20px;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- flex-direction:column;
- display:flex;
- margin-left:20px;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-7
- {
- color:#333333;
- padding-right:20px;
- outline:none;
- outline-offset:-1px;
- padding-top:20px;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- flex-direction:column;
- display:flex;
- animation-duration:1s;
- padding-left:20px;
- background-repeat:no-repeat;
- margin-top:10px;
- }
- .class-8
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:flex-start;
- animation-duration:1s;
- width:100%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-9
- {
- color:#333333;
- word-wrap:break-word;
- font-weight:bold;
- display:inline-block;
- animation-duration:1s;
- font-size:16px;
- line-height:1.4;
- }
- .class-10
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- flex-wrap:wrap;
- max-width:100%;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:100%;
- background-repeat:no-repeat;
- }
- .class-11
- {
- cursor:pointer;
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- text-align:left;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:25%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-12
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- max-width:100%;
- background-color:rgba(17, 205, 110, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-13
- {
- height:30px;
- animation-duration:1s;
- width:30px;
- }
- .class-14
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-15
- {
- cursor:pointer;
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- text-align:left;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:25%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-16
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- max-width:100%;
- background-color:rgba(0, 153, 255, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-17
- {
- height:24px;
- animation-duration:1s;
- width:24px;
- }
- .class-18
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-19
- {
- cursor:pointer;
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- text-align:left;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:25%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-20
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- max-width:100%;
- background-color:rgba(255, 68, 68, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-21
- {
- height:26px;
- animation-duration:1s;
- width:30px;
- }
- .class-22
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-23
- {
- cursor:pointer;
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- text-align:left;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:25%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-24
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:40px;
- max-width:100%;
- background-color:rgba(0, 153, 255, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-25
- {
- height:28px;
- animation-duration:1s;
- width:28px;
- }
- .class-26
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-27
- {
- cursor:pointer;
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- text-align:left;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:25%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-28
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- max-width:100%;
- background-color:rgba(255, 68, 68, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-29
- {
- height:32px;
- animation-duration:1s;
- width:32px;
- }
- .class-30
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-31
- {
- cursor:pointer;
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- text-align:left;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:25%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-32
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- max-width:100%;
- background-color:rgba(17, 205, 110, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-33
- {
- height:32px;
- animation-duration:1s;
- width:32px;
- }
- .class-34
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-35
- {
- cursor:pointer;
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- text-align:left;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:25%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-36
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- max-width:100%;
- background-color:rgba(0, 153, 255, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-37
- {
- height:28px;
- animation-duration:1s;
- width:28px;
- }
- .class-38
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-39
- {
- cursor:pointer;
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- text-align:left;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:25%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-40
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- max-width:100%;
- background-color:rgba(17, 205, 110, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-41
- {
- height:28px;
- animation-duration:1s;
- width:28px;
- }
- .class-42
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-43
- {
- color:#333333;
- padding-right:20px;
- outline:none;
- outline-offset:-1px;
- flex:1;
- height:300px;
- max-width:100%;
- flex-direction:row;
- display:flex;
- justify-content:space-between;
- animation-duration:1s;
- width:100%;
- margin-bottom:20px;
- padding-left:20px;
- background-repeat:no-repeat;
- margin-top:20px;
- }
- .class-44
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578104008987.png);
- outline:none;
- outline-offset:-1px;
- background-size:cover;
- background-position:center;
- height:200px;
- max-width:100%;
- background-color:rgba(119, 54, 242, 1);
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:24%;
- background-repeat:no-repeat;
- }
- .class-45
- {
- color:#FFFFFF;
- word-wrap:break-word;
- text-shadow:#666 3px 4px 5px;
- font-weight:bold;
- z-index:1;
- display:inline-block;
- animation-duration:1s;
- font-size:32px;
- line-height:1.4;
- }
- .class-46
- {
- color:#FFFFFF;
- word-wrap:break-word;
- text-shadow:#666 3px 4px 5px;
- z-index:1;
- display:inline-block;
- animation-duration:1s;
- font-size:24px;
- line-height:1.4;
- }
- .class-47
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578367666376.png);
- outline:none;
- outline-offset:-1px;
- background-size:cover;
- background-position:center;
- height:200px;
- max-width:100%;
- background-color:rgba(119, 54, 242, 1);
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:24%;
- background-repeat:no-repeat;
- }
- .class-48
- {
- color:#FFFFFF;
- word-wrap:break-word;
- text-shadow:#666 3px 4px 5px;
- font-weight:bold;
- z-index:1;
- display:inline-block;
- animation-duration:1s;
- font-size:32px;
- line-height:1.4;
- }
- .class-49
- {
- color:#FFFFFF;
- word-wrap:break-word;
- text-shadow:#666 3px 4px 5px;
- z-index:1;
- display:inline-block;
- animation-duration:1s;
- font-size:24px;
- line-height:1.4;
- }
- .class-50
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578366770290.png);
- outline:none;
- outline-offset:-1px;
- background-size:cover;
- background-position:center;
- height:200px;
- max-width:100%;
- background-color:rgba(119, 54, 242, 1);
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:24%;
- background-repeat:no-repeat;
- }
- .class-51
- {
- color:#FFFFFF;
- word-wrap:break-word;
- text-shadow:#666 3px 4px 5px;
- font-weight:bold;
- z-index:1;
- display:inline-block;
- animation-duration:1s;
- font-size:32px;
- line-height:1.4;
- }
- .class-52
- {
- color:#FFFFFF;
- word-wrap:break-word;
- text-shadow:#666 3px 4px 5px;
- z-index:1;
- display:inline-block;
- animation-duration:1s;
- font-size:24px;
- line-height:1.4;
- }
- .class-53
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578368816112.png);
- outline:none;
- outline-offset:-1px;
- background-size:cover;
- background-position:center;
- height:200px;
- max-width:100%;
- background-color:rgba(119, 54, 242, 1);
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:24%;
- background-repeat:no-repeat;
- }
- .class-54
- {
- color:#FFFFFF;
- word-wrap:break-word;
- text-shadow:#666 3px 4px 5px;
- font-weight:bold;
- z-index:1;
- display:inline-block;
- animation-duration:1s;
- font-size:32px;
- line-height:1.4;
- }
- .class-55
- {
- color:#FFFFFF;
- word-wrap:break-word;
- text-shadow:#666 3px 4px 5px;
- z-index:1;
- display:inline-block;
- animation-duration:1s;
- font-size:24px;
- line-height:1.4;
- }
- .class-56
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- flex:1;
- height:100%;
- flex-direction:column;
- display:flex;
- min-width:390px;
- margin-left:10px;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-57
- {
- cursor: pointer;
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- background-color:rgba(253, 246, 236, 1);
- align-items:flex-start;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:100%;
- padding-left:20px;
- background-repeat:no-repeat;
- }
- .class-58
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-59
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1577257489392.png);
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:20px;
- max-width:100%;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:20px;
- background-repeat:no-repeat;
- }
- .class-60
- {
- color:#E6A23C;
- word-wrap:break-word;
- display:inline-block;
- margin-left:10px;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- }
- .class-61
- {
- cursor:pointer;
- color:#333333;
- padding-right:20px;
- outline:none;
- padding-bottom:20px;
- outline-offset:-1px;
- padding-top:20px;
- height:80px;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- padding-left:20px;
- background-repeat:no-repeat;
- margin-top:10px;
- }
- .class-62
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1577151868190.png);
- outline:none;
- outline-offset:-1px;
- height:40px;
- max-width:100%;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-63
- {
- color:#333333;
- word-wrap:break-word;
- font-weight:bold;
- display:inline-block;
- margin-left:20px;
- animation-duration:1s;
- font-size:16px;
- line-height:1.4;
- }
- .class-64
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- flex-wrap:wrap;
- max-width:100%;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- background-repeat:no-repeat;
- margin-top:10px;
- }
- .class-65
- {
- cursor:pointer;
- color:#333333;
- padding-right:15px;
- outline:none;
- padding-bottom:20px;
- outline-offset:-1px;
- padding-top:20px;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:50%;
- padding-left:15px;
- background-repeat:no-repeat;
- }
- .class-66
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- align-items:center;
- flex-direction:row;
- display:flex;
- min-width:40px;
- justify-content:center;
- animation-duration:1s;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-67
- {
- animation-duration:1s;
- }
- .class-68
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- flex-direction:column;
- display:flex;
- margin-left:20px;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-69
- {
- color:#999999;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:12px;
- line-height:1.4;
- }
- .class-70
- {
- color:#333333;
- word-wrap:break-word;
- font-weight:bold;
- display:inline-block;
- animation-duration:1s;
- font-size:16px;
- line-height:1.4;
- margin-top:5px;
- }
- .class-71
- {
- cursor:pointer;
- color:#333333;
- padding-right:15px;
- outline:none;
- padding-bottom:20px;
- outline-offset:-1px;
- padding-top:20px;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:50%;
- padding-left:15px;
- background-repeat:no-repeat;
- }
- .class-72
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- align-items:center;
- flex-direction:row;
- display:flex;
- min-width:40px;
- justify-content:center;
- animation-duration:1s;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-73
- {
- animation-duration:1s;
- }
- .class-74
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- flex-direction:column;
- display:flex;
- margin-left:20px;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-75
- {
- color:#999999;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:12px;
- line-height:1.4;
- }
- .class-76
- {
- color:#333333;
- word-wrap:break-word;
- font-weight:bold;
- display:inline-block;
- animation-duration:1s;
- font-size:16px;
- line-height:1.4;
- margin-top:5px;
- }
- .class-77
- {
- cursor:pointer;
- color:#333333;
- padding-right:15px;
- outline:none;
- padding-bottom:20px;
- outline-offset:-1px;
- padding-top:20px;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:50%;
- padding-left:15px;
- background-repeat:no-repeat;
- }
- .class-78
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- align-items:center;
- flex-direction:row;
- display:flex;
- min-width:40px;
- justify-content:center;
- animation-duration:1s;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-79
- {
- animation-duration:1s;
- }
- .class-80
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- flex-direction:column;
- display:flex;
- margin-left:20px;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-81
- {
- color:#999999;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:12px;
- line-height:1.4;
- }
- .class-82
- {
- color:#333333;
- word-wrap:break-word;
- font-weight:bold;
- display:inline-block;
- animation-duration:1s;
- font-size:16px;
- line-height:1.4;
- margin-top:5px;
- }
- .class-83
- {
- cursor:pointer;
- color:#333333;
- padding-right:15px;
- outline:none;
- padding-bottom:20px;
- outline-offset:-1px;
- padding-top:20px;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:50%;
- padding-left:15px;
- background-repeat:no-repeat;
- }
- .class-84
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- align-items:center;
- flex-direction:row;
- display:flex;
- min-width:40px;
- justify-content:center;
- animation-duration:1s;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-85
- {
- animation-duration:1s;
- }
- .class-86
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- flex-direction:column;
- display:flex;
- margin-left:20px;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-87
- {
- color:#999999;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:12px;
- line-height:1.4;
- }
- .class-88
- {
- color:#333333;
- word-wrap:break-word;
- font-weight:bold;
- display:inline-block;
- animation-duration:1s;
- font-size:16px;
- line-height:1.4;
- margin-top:5px;
- }
- .class-89
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- flex:1;
- padding-top:20px;
- height:980px;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- flex-direction:column;
- display:flex;
- animation-duration:1s;
- background-repeat:no-repeat;
- margin-top:10px;
- }
- .class-90
- {
- color:#333333;
- margin-right:20px;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:flex-start;
- margin-left:20px;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-91
- {
- color:#333333;
- word-wrap:break-word;
- font-weight:bold;
- display:inline-block;
- animation-duration:1s;
- font-size:16px;
- line-height:1.4;
- }
- .class-92
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- flex-wrap:wrap;
- max-width:100%;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:100%;
- background-repeat:no-repeat;
- }
- .class-93
- {
- color:#333333;
- margin-right:20px;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- flex-direction:column;
- display:flex;
- margin-left:20px;
- animation-duration:1s;
- width:100%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-94
- {
- color:#333333;
- outline:none;
- overflow:visible;
- outline-offset:-1px;
- flex-wrap:wrap;
- max-width:100%;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:100%;
- background-repeat:no-repeat;
- }
- .class-95
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:33%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-96
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578031206821.png);
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:30px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:30px;
- background-repeat:no-repeat;
- }
- .class-97
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-98
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:33%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-99
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578031321635.png);
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:30px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:30px;
- background-repeat:no-repeat;
- }
- .class-100
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-101
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:33%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-102
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578031484700.png);
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:30px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:30px;
- background-repeat:no-repeat;
- }
- .class-103
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-104
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:33%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-105
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578031264207.png);
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:30px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:30px;
- background-repeat:no-repeat;
- }
- .class-106
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-107
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:33%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-108
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578031682848.png);
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:30px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:30px;
- background-repeat:no-repeat;
- }
- .class-109
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-110
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:33%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-111
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578031639173.png);
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:30px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:30px;
- background-repeat:no-repeat;
- }
- .class-112
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-113
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:33%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-114
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578031215338.png);
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:30px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:30px;
- background-repeat:no-repeat;
- }
- .class-115
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-116
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:33%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-117
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578031228196.png);
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:30px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:30px;
- background-repeat:no-repeat;
- }
- .class-118
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-119
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- align-items:center;
- flex-direction:column;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- width:33%;
- margin-bottom:20px;
- background-repeat:no-repeat;
- }
- .class-120
- {
- color:#333333;
- background-image:url(${base}/static/ms-admin/5.0.0/images/1578031234719.png);
- outline:none;
- outline-offset:-1px;
- background-size:contain;
- background-position:center;
- height:30px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- justify-content:center;
- animation-duration:1s;
- border-radius:4px;
- width:30px;
- background-repeat:no-repeat;
- }
- .class-121
- {
- color:#333333;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- margin-top:10px;
- }
- .class-122
- {
- color:#333333;
- box-sizing:center-box;
- outline:none;
- overflow:visible;
- outline-offset:-1px;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- flex-direction:column;
- display:flex;
- animation-duration:1s;
- width:100%;
- background-repeat:no-repeat;
- margin-top:10px;
- }
- .class-123
- {
- margin-right:auto;
- animation-duration:1s;
- background-color:rgba(250, 250, 250, 1);
- border-radius:1px;
- width:100%;
- height:1px;
- margin-left:auto;
- }
- .class-124
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- flex-wrap:wrap;
- max-width:100%;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-125
- {
- color:#333333;
- padding-right:20px;
- outline:none;
- padding-bottom:20px;
- outline-offset:-1px;
- flex-wrap:nowrap;
- padding-top:20px;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:50%;
- padding-left:20px;
- background-repeat:no-repeat;
- }
- .class-126
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- max-width:100%;
- align-items:center;
- flex-direction:row;
- display:flex;
- min-width:40px;
- justify-content:center;
- animation-duration:1s;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-127
- {
- animation-duration:1s;
- }
- .class-128
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- flex-direction:column;
- display:flex;
- margin-left:20px;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-129
- {
- color:#999999;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- }
- .class-130
- {
- color:#333333;
- word-wrap:break-word;
- font-weight:bold;
- display:inline-block;
- animation-duration:1s;
- font-size:16px;
- line-height:1.4;
- margin-top:5px;
- }
- .class-131
- {
- cursor:pointer;
- color:#333333;
- padding-right:20px;
- outline:none;
- padding-bottom:20px;
- outline-offset:-1px;
- padding-top:20px;
- max-width:100%;
- background-color:rgba(255, 255, 255, 1);
- align-items:center;
- flex-direction:row;
- display:flex;
- animation-duration:1s;
- width:50%;
- padding-left:20px;
- background-repeat:no-repeat;
- }
- .class-132
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- height:40px;
- align-items:center;
- flex-direction:row;
- display:flex;
- min-width:40px;
- justify-content:center;
- animation-duration:1s;
- width:40px;
- background-repeat:no-repeat;
- }
- .class-133
- {
- animation-duration:1s;
- }
- .class-134
- {
- color:#333333;
- outline:none;
- outline-offset:-1px;
- max-width:100%;
- flex-direction:column;
- display:flex;
- margin-left:20px;
- animation-duration:1s;
- background-repeat:no-repeat;
- }
- .class-135
- {
- color:#999999;
- word-wrap:break-word;
- display:inline-block;
- animation-duration:1s;
- font-size:14px;
- line-height:1.4;
- }
- .class-136
- {
- color:#333333;
- word-wrap:break-word;
- font-weight:bold;
- display:inline-block;
- animation-duration:1s;
- font-size:16px;
- line-height:1.4;
- margin-top:5px;
- }
- @media (max-width: 768px){
- .class-1
- {
- padding-right:12px;
- box-sizing:border-box;
- margin-right:auto;
- outline:1px dashed hsla(0, 0%, 66.7%, .7);
- padding-bottom:12px;
- flex-wrap:wrap;
- padding-top:12px;
- height:200px;
- max-width:100%;
- flex-direction:column;
- margin-left:auto;
- padding-left:12px;
- }
- .class-2
- {
- padding-right:12px;
- box-sizing:border-box;
- margin-right:auto;
- outline:1px dashed hsla(0, 0%, 66.7%, .7);
- padding-bottom:12px;
- flex-wrap:wrap;
- padding-top:12px;
- height:200px;
- margin-left:auto;
- padding-left:12px;
- }
- .class-3
- {
- padding-right:8px;
- box-sizing:border-box;
- outline:1px dashed hsla(0, 0%, 66.7%, .7);
- padding-bottom:8px;
- padding-top:8px;
- height:80px;
- width:80px;
- padding-left:8px;
- }
- .class-4
- {
- }
- .class-5
- {
- }
- .class-6
- {
- }
- .class-7
- {
- }
- .class-8
- {
- }
- .class-9
- {
- }
- .class-10
- {
- }
- .class-11
- {
- }
- .class-12
- {
- }
- .class-13
- {
- }
- .class-14
- {
- }
- .class-15
- {
- }
- .class-16
- {
- }
- .class-17
- {
- }
- .class-18
- {
- }
- .class-19
- {
- }
- .class-20
- {
- }
- .class-21
- {
- }
- .class-22
- {
- }
- .class-23
- {
- }
- .class-24
- {
- }
- .class-25
- {
- }
- .class-26
- {
- }
- .class-27
- {
- }
- .class-28
- {
- }
- .class-29
- {
- }
- .class-30
- {
- }
- .class-31
- {
- }
- .class-32
- {
- }
- .class-33
- {
- }
- .class-34
- {
- }
- .class-35
- {
- }
- .class-36
- {
- }
- .class-37
- {
- }
- .class-38
- {
- }
- .class-39
- {
- }
- .class-40
- {
- }
- .class-41
- {
- }
- .class-42
- {
- }
- .class-43
- {
- }
- .class-44
- {
- }
- .class-45
- {
- text-shadow:#000 3px 4px 5px;
- }
- .class-46
- {
- text-shadow:#000 3px 4px 5px;
- font-size:32px;
- }
- .class-47
- {
- }
- .class-48
- {
- text-shadow:#000 3px 4px 5px;
- }
- .class-49
- {
- text-shadow:#000 3px 4px 5px;
- font-size:32px;
- }
- .class-50
- {
- }
- .class-51
- {
- text-shadow:#000 3px 4px 5px;
- }
- .class-52
- {
- text-shadow:#000 3px 4px 5px;
- font-size:32px;
- }
- .class-53
- {
- }
- .class-54
- {
- text-shadow:#000 3px 4px 5px;
- }
- .class-55
- {
- text-shadow:#000 3px 4px 5px;
- font-size:32px;
- }
- .class-56
- {
- padding-right:8px;
- box-sizing:border-box;
- outline:1px dashed hsla(0, 0%, 66.7%, .7);
- padding-bottom:8px;
- padding-top:8px;
- height:80px;
- max-width:100%;
- width:80px;
- padding-left:8px;
- }
- .class-57
- {
- padding-right:8px;
- box-sizing:border-box;
- outline:1px dashed hsla(0, 0%, 66.7%, .7);
- padding-bottom:8px;
- padding-top:8px;
- height:80px;
- max-width:100%;
- width:80px;
- padding-left:8px;
- }
- .class-58
- {
- padding-right:8px;
- box-sizing:border-box;
- outline:1px dashed hsla(0, 0%, 66.7%, .7);
- padding-bottom:8px;
- padding-top:8px;
- height:80px;
- flex-direction:column;
- width:80px;
- padding-left:8px;
- }
- .class-59
- {
- padding-right:8px;
- box-sizing:border-box;
- outline:1px dashed hsla(0, 0%, 66.7%, .7);
- padding-bottom:8px;
- padding-top:8px;
- height:80px;
- flex-direction:column;
- width:80px;
- padding-left:8px;
- }
- .class-60
- {
- color:#333333;
- font-size:16px;
- line-height:1.5;
- }
- .class-61
- {
- }
- .class-62
- {
- }
- .class-63
- {
- }
- .class-64
- {
- }
- .class-65
- {
- padding-right:20px;
- padding-left:20px;
- }
- .class-66
- {
- }
- .class-67
- {
- }
- .class-68
- {
- }
- .class-69
- {
- font-size:14px;
- }
- .class-70
- {
- }
- .class-71
- {
- padding-right:20px;
- padding-left:20px;
- }
- .class-72
- {
- }
- .class-73
- {
- }
- .class-74
- {
- }
- .class-75
- {
- font-size:14px;
- }
- .class-76
- {
- }
- .class-77
- {
- padding-right:20px;
- padding-left:20px;
- }
- .class-78
- {
- }
- .class-79
- {
- }
- .class-80
- {
- }
- .class-81
- {
- font-size:14px;
- }
- .class-82
- {
- }
- .class-83
- {
- padding-right:20px;
- padding-left:20px;
- }
- .class-84
- {
- }
- .class-85
- {
- }
- .class-86
- {
- }
- .class-87
- {
- font-size:14px;
- }
- .class-88
- {
- }
- .class-89
- {
- padding-right:12px;
- box-sizing:border-box;
- margin-right:auto;
- outline:1px dashed hsla(0, 0%, 66.7%, .7);
- padding-bottom:12px;
- flex-wrap:wrap;
- padding-top:12px;
- height:200px;
- margin-left:auto;
- padding-left:12px;
- }
- .class-90
- {
- padding-right:8px;
- box-sizing:border-box;
- outline:1px dashed hsla(0, 0%, 66.7%, .7);
- padding-bottom:8px;
- padding-top:8px;
- height:80px;
- flex-direction:column;
- width:80px;
- padding-left:8px;
- }
- .class-91
- {
- line-height:1.5;
- }
- .class-92
- {
- padding-right:8px;
- box-sizing:border-box;
- outline:1px dashed hsla(0, 0%, 66.7%, .7);
- padding-bottom:8px;
- padding-top:8px;
- height:80px;
- flex-direction:column;
- width:80px;
- padding-left:8px;
- }
- .class-93
- {
- }
- .class-94
- {
- }
- .class-95
- {
- }
- .class-96
- {
- }
- .class-97
- {
- }
- .class-98
- {
- }
- .class-99
- {
- }
- .class-100
- {
- }
- .class-101
- {
- }
- .class-102
- {
- }
- .class-103
- {
- }
- .class-104
- {
- }
- .class-105
- {
- }
- .class-106
- {
- }
- .class-107
- {
- }
- .class-108
- {
- }
- .class-109
- {
- }
- .class-110
- {
- }
- .class-111
- {
- }
- .class-112
- {
- }
- .class-113
- {
- }
- .class-114
- {
- }
- .class-115
- {
- }
- .class-116
- {
- }
- .class-117
- {
- }
- .class-118
- {
- }
- .class-119
- {
- }
- .class-120
- {
- }
- .class-121
- {
- }
- .class-122
- {
- }
- .class-123
- {
- }
- .class-124
- {
- }
- .class-125
- {
- }
- .class-126
- {
- }
- .class-127
- {
- }
- .class-128
- {
- }
- .class-129
- {
- }
- .class-130
- {
- }
- .class-131
- {
- }
- .class-132
- {
- }
- .class-133
- {
- }
- .class-134
- {
- }
- .class-135
- {
- }
- .class-136
- {
- }
- }
- #app{
- overflow-x: hidden;
- }
- </style>
|