styles.css 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1440px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u3710 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u3711_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:666px;
  33. height:429px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(0, 0, 0, 1);
  40. border-radius:5px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. }
  45. #u3711 {
  46. border-width:0px;
  47. position:absolute;
  48. left:538px;
  49. top:279px;
  50. width:666px;
  51. height:429px;
  52. display:flex;
  53. }
  54. #u3711 .text {
  55. position:absolute;
  56. align-self:center;
  57. padding:2px 2px 2px 2px;
  58. box-sizing:border-box;
  59. width:100%;
  60. }
  61. #u3711_text {
  62. border-width:0px;
  63. word-wrap:break-word;
  64. text-transform:none;
  65. visibility:hidden;
  66. }
  67. #u3712_div {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:84px;
  73. height:16px;
  74. background:inherit;
  75. background-color:rgba(255, 255, 255, 0);
  76. border:none;
  77. border-radius:0px;
  78. -moz-box-shadow:none;
  79. -webkit-box-shadow:none;
  80. box-shadow:none;
  81. }
  82. #u3712 {
  83. border-width:0px;
  84. position:absolute;
  85. left:558px;
  86. top:297px;
  87. width:84px;
  88. height:16px;
  89. display:flex;
  90. }
  91. #u3712 .text {
  92. position:absolute;
  93. align-self:flex-start;
  94. padding:0px 0px 0px 0px;
  95. box-sizing:border-box;
  96. width:100%;
  97. }
  98. #u3712_text {
  99. border-width:0px;
  100. white-space:nowrap;
  101. text-transform:none;
  102. }
  103. #u3713_img {
  104. border-width:0px;
  105. position:absolute;
  106. left:0px;
  107. top:0px;
  108. width:669px;
  109. height:2px;
  110. }
  111. #u3713 {
  112. border-width:0px;
  113. position:absolute;
  114. left:537px;
  115. top:329px;
  116. width:668px;
  117. height:1px;
  118. display:flex;
  119. }
  120. #u3713 .text {
  121. position:absolute;
  122. align-self:center;
  123. padding:2px 2px 2px 2px;
  124. box-sizing:border-box;
  125. width:100%;
  126. }
  127. #u3713_text {
  128. border-width:0px;
  129. word-wrap:break-word;
  130. text-transform:none;
  131. visibility:hidden;
  132. }
  133. #u3714_img {
  134. border-width:0px;
  135. position:absolute;
  136. left:0px;
  137. top:0px;
  138. width:21px;
  139. height:21px;
  140. }
  141. #u3714 {
  142. border-width:0px;
  143. position:absolute;
  144. left:1159px;
  145. top:297px;
  146. width:21px;
  147. height:21px;
  148. display:flex;
  149. }
  150. #u3714 .text {
  151. position:absolute;
  152. align-self:center;
  153. padding:2px 2px 2px 2px;
  154. box-sizing:border-box;
  155. width:100%;
  156. }
  157. #u3714_text {
  158. border-width:0px;
  159. word-wrap:break-word;
  160. text-transform:none;
  161. visibility:hidden;
  162. }
  163. #u3715 {
  164. border-width:0px;
  165. position:absolute;
  166. left:0px;
  167. top:0px;
  168. width:0px;
  169. height:0px;
  170. }
  171. #u3716 {
  172. border-width:0px;
  173. position:absolute;
  174. left:0px;
  175. top:0px;
  176. width:0px;
  177. height:0px;
  178. }
  179. #u3717_div {
  180. border-width:0px;
  181. position:absolute;
  182. left:0px;
  183. top:0px;
  184. width:617px;
  185. height:54px;
  186. background:inherit;
  187. background-color:rgba(250, 250, 250, 1);
  188. box-sizing:border-box;
  189. border-width:1px;
  190. border-style:solid;
  191. border-color:rgba(232, 232, 232, 1);
  192. border-radius:4px;
  193. border-bottom-right-radius:0px;
  194. border-bottom-left-radius:0px;
  195. -moz-box-shadow:none;
  196. -webkit-box-shadow:none;
  197. box-shadow:none;
  198. font-family:"Microsoft YaHei", sans-serif;
  199. font-weight:400;
  200. font-style:normal;
  201. font-size:12px;
  202. color:#666666;
  203. line-height:18px;
  204. }
  205. #u3717 {
  206. border-width:0px;
  207. position:absolute;
  208. left:563px;
  209. top:387px;
  210. width:617px;
  211. height:54px;
  212. display:flex;
  213. font-family:"Microsoft YaHei", sans-serif;
  214. font-weight:400;
  215. font-style:normal;
  216. font-size:12px;
  217. color:#666666;
  218. line-height:18px;
  219. }
  220. #u3717 .text {
  221. position:absolute;
  222. align-self:center;
  223. padding:2px 16px 2px 16px;
  224. box-sizing:border-box;
  225. width:100%;
  226. }
  227. #u3717_text {
  228. border-width:0px;
  229. word-wrap:break-word;
  230. text-transform:none;
  231. visibility:hidden;
  232. }
  233. #u3718_div {
  234. border-width:0px;
  235. position:absolute;
  236. left:0px;
  237. top:0px;
  238. width:617px;
  239. height:54px;
  240. background:inherit;
  241. background-color:rgba(255, 255, 255, 1);
  242. box-sizing:border-box;
  243. border-width:1px;
  244. border-style:solid;
  245. border-color:rgba(232, 232, 232, 1);
  246. border-left:0px;
  247. border-right:0px;
  248. border-radius:4px;
  249. border-top-left-radius:0px;
  250. border-top-right-radius:0px;
  251. border-bottom-right-radius:0px;
  252. border-bottom-left-radius:0px;
  253. -moz-box-shadow:none;
  254. -webkit-box-shadow:none;
  255. box-shadow:none;
  256. font-family:"Microsoft YaHei", sans-serif;
  257. font-weight:400;
  258. font-style:normal;
  259. font-size:12px;
  260. color:#666666;
  261. line-height:18px;
  262. }
  263. #u3718 {
  264. border-width:0px;
  265. position:absolute;
  266. left:563px;
  267. top:440px;
  268. width:617px;
  269. height:54px;
  270. display:flex;
  271. font-family:"Microsoft YaHei", sans-serif;
  272. font-weight:400;
  273. font-style:normal;
  274. font-size:12px;
  275. color:#666666;
  276. line-height:18px;
  277. }
  278. #u3718 .text {
  279. position:absolute;
  280. align-self:center;
  281. padding:2px 16px 2px 16px;
  282. box-sizing:border-box;
  283. width:100%;
  284. }
  285. #u3718_text {
  286. border-width:0px;
  287. word-wrap:break-word;
  288. text-transform:none;
  289. visibility:hidden;
  290. }
  291. #u3719_div {
  292. border-width:0px;
  293. position:absolute;
  294. left:0px;
  295. top:0px;
  296. width:617px;
  297. height:54px;
  298. background:inherit;
  299. background-color:rgba(255, 255, 255, 1);
  300. box-sizing:border-box;
  301. border-width:1px;
  302. border-style:solid;
  303. border-color:rgba(232, 232, 232, 1);
  304. border-left:0px;
  305. border-right:0px;
  306. border-radius:4px;
  307. border-top-left-radius:0px;
  308. border-top-right-radius:0px;
  309. border-bottom-right-radius:0px;
  310. border-bottom-left-radius:0px;
  311. -moz-box-shadow:none;
  312. -webkit-box-shadow:none;
  313. box-shadow:none;
  314. font-family:"Microsoft YaHei", sans-serif;
  315. font-weight:400;
  316. font-style:normal;
  317. font-size:12px;
  318. color:#666666;
  319. line-height:18px;
  320. }
  321. #u3719 {
  322. border-width:0px;
  323. position:absolute;
  324. left:563px;
  325. top:493px;
  326. width:617px;
  327. height:54px;
  328. display:flex;
  329. font-family:"Microsoft YaHei", sans-serif;
  330. font-weight:400;
  331. font-style:normal;
  332. font-size:12px;
  333. color:#666666;
  334. line-height:18px;
  335. }
  336. #u3719 .text {
  337. position:absolute;
  338. align-self:center;
  339. padding:2px 16px 2px 16px;
  340. box-sizing:border-box;
  341. width:100%;
  342. }
  343. #u3719_text {
  344. border-width:0px;
  345. word-wrap:break-word;
  346. text-transform:none;
  347. visibility:hidden;
  348. }
  349. #u3720_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:616px;
  355. height:54px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 1);
  358. box-sizing:border-box;
  359. border-width:1px;
  360. border-style:solid;
  361. border-color:rgba(232, 232, 232, 1);
  362. border-left:0px;
  363. border-right:0px;
  364. border-radius:4px;
  365. border-top-left-radius:0px;
  366. border-top-right-radius:0px;
  367. border-bottom-right-radius:0px;
  368. border-bottom-left-radius:0px;
  369. -moz-box-shadow:none;
  370. -webkit-box-shadow:none;
  371. box-shadow:none;
  372. font-family:"Microsoft YaHei", sans-serif;
  373. font-weight:400;
  374. font-style:normal;
  375. font-size:12px;
  376. color:#666666;
  377. line-height:18px;
  378. }
  379. #u3720 {
  380. border-width:0px;
  381. position:absolute;
  382. left:563px;
  383. top:546px;
  384. width:616px;
  385. height:54px;
  386. display:flex;
  387. font-family:"Microsoft YaHei", sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:12px;
  391. color:#666666;
  392. line-height:18px;
  393. }
  394. #u3720 .text {
  395. position:absolute;
  396. align-self:center;
  397. padding:2px 16px 2px 16px;
  398. box-sizing:border-box;
  399. width:100%;
  400. }
  401. #u3720_text {
  402. border-width:0px;
  403. word-wrap:break-word;
  404. text-transform:none;
  405. visibility:hidden;
  406. }
  407. #u3721 {
  408. border-width:0px;
  409. position:absolute;
  410. left:0px;
  411. top:0px;
  412. width:0px;
  413. height:0px;
  414. }
  415. #u3722_div {
  416. border-width:0px;
  417. position:absolute;
  418. left:0px;
  419. top:0px;
  420. width:88px;
  421. height:54px;
  422. background:inherit;
  423. background-color:rgba(255, 255, 255, 0);
  424. border:none;
  425. border-left:0px;
  426. border-top:0px;
  427. border-right:0px;
  428. border-radius:4px;
  429. border-bottom-right-radius:0px;
  430. border-bottom-left-radius:0px;
  431. -moz-box-shadow:none;
  432. -webkit-box-shadow:none;
  433. box-shadow:none;
  434. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  435. font-weight:700;
  436. font-style:normal;
  437. font-size:14px;
  438. color:rgba(0, 0, 0, 0.8470588235294118);
  439. text-align:left;
  440. line-height:53px;
  441. }
  442. #u3722 {
  443. border-width:0px;
  444. position:absolute;
  445. left:623px;
  446. top:387px;
  447. width:88px;
  448. height:54px;
  449. display:flex;
  450. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  451. font-weight:700;
  452. font-style:normal;
  453. font-size:14px;
  454. color:rgba(0, 0, 0, 0.8470588235294118);
  455. text-align:left;
  456. line-height:53px;
  457. }
  458. #u3722 .text {
  459. position:absolute;
  460. align-self:center;
  461. padding:0px 16px 0px 16px;
  462. box-sizing:border-box;
  463. width:100%;
  464. }
  465. #u3722_text {
  466. border-width:0px;
  467. white-space:nowrap;
  468. text-transform:none;
  469. }
  470. #u3723_div {
  471. border-width:0px;
  472. position:absolute;
  473. left:0px;
  474. top:0px;
  475. width:111px;
  476. height:159px;
  477. background:inherit;
  478. background-color:rgba(255, 255, 255, 0);
  479. border:none;
  480. border-left:0px;
  481. border-top:0px;
  482. border-right:0px;
  483. border-radius:4px;
  484. border-bottom-right-radius:0px;
  485. border-bottom-left-radius:0px;
  486. -moz-box-shadow:none;
  487. -webkit-box-shadow:none;
  488. box-shadow:none;
  489. font-family:"SF UI Text", sans-serif;
  490. font-weight:400;
  491. font-style:normal;
  492. font-size:14px;
  493. color:rgba(0, 0, 0, 0.6470588235294118);
  494. text-align:left;
  495. line-height:53px;
  496. }
  497. #u3723 {
  498. border-width:0px;
  499. position:absolute;
  500. left:623px;
  501. top:441px;
  502. width:111px;
  503. height:159px;
  504. display:flex;
  505. font-family:"SF UI Text", sans-serif;
  506. font-weight:400;
  507. font-style:normal;
  508. font-size:14px;
  509. color:rgba(0, 0, 0, 0.6470588235294118);
  510. text-align:left;
  511. line-height:53px;
  512. }
  513. #u3723 .text {
  514. position:absolute;
  515. align-self:flex-start;
  516. padding:0px 16px 0px 16px;
  517. box-sizing:border-box;
  518. width:100%;
  519. }
  520. #u3723_text {
  521. border-width:0px;
  522. white-space:nowrap;
  523. text-transform:none;
  524. }
  525. #u3724 {
  526. border-width:0px;
  527. position:absolute;
  528. left:0px;
  529. top:0px;
  530. width:0px;
  531. height:0px;
  532. }
  533. #u3725_div {
  534. border-width:0px;
  535. position:absolute;
  536. left:0px;
  537. top:0px;
  538. width:60px;
  539. height:54px;
  540. background:inherit;
  541. background-color:rgba(255, 255, 255, 0);
  542. border:none;
  543. border-left:0px;
  544. border-top:0px;
  545. border-right:0px;
  546. border-radius:4px;
  547. border-bottom-right-radius:0px;
  548. border-bottom-left-radius:0px;
  549. -moz-box-shadow:none;
  550. -webkit-box-shadow:none;
  551. box-shadow:none;
  552. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  553. font-weight:700;
  554. font-style:normal;
  555. font-size:14px;
  556. color:rgba(0, 0, 0, 0.8470588235294118);
  557. text-align:left;
  558. line-height:53px;
  559. }
  560. #u3725 {
  561. border-width:0px;
  562. position:absolute;
  563. left:563px;
  564. top:387px;
  565. width:60px;
  566. height:54px;
  567. display:flex;
  568. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  569. font-weight:700;
  570. font-style:normal;
  571. font-size:14px;
  572. color:rgba(0, 0, 0, 0.8470588235294118);
  573. text-align:left;
  574. line-height:53px;
  575. }
  576. #u3725 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:0px 16px 0px 16px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u3725_text {
  584. border-width:0px;
  585. white-space:nowrap;
  586. text-transform:none;
  587. }
  588. #u3726_div {
  589. border-width:0px;
  590. position:absolute;
  591. left:0px;
  592. top:0px;
  593. width:32px;
  594. height:53px;
  595. background:inherit;
  596. background-color:rgba(255, 255, 255, 0);
  597. border:none;
  598. border-left:0px;
  599. border-top:0px;
  600. border-right:0px;
  601. border-radius:4px;
  602. border-bottom-right-radius:0px;
  603. border-bottom-left-radius:0px;
  604. -moz-box-shadow:none;
  605. -webkit-box-shadow:none;
  606. box-shadow:none;
  607. font-family:"SF UI Text", sans-serif;
  608. font-weight:400;
  609. font-style:normal;
  610. font-size:14px;
  611. color:rgba(0, 0, 0, 0.6470588235294118);
  612. text-align:left;
  613. line-height:53px;
  614. }
  615. #u3726 {
  616. border-width:0px;
  617. position:absolute;
  618. left:563px;
  619. top:441px;
  620. width:32px;
  621. height:53px;
  622. display:flex;
  623. font-family:"SF UI Text", sans-serif;
  624. font-weight:400;
  625. font-style:normal;
  626. font-size:14px;
  627. color:rgba(0, 0, 0, 0.6470588235294118);
  628. text-align:left;
  629. line-height:53px;
  630. }
  631. #u3726 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 16px 0px 16px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u3726_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. visibility:hidden;
  643. }
  644. #u3727 {
  645. border-width:0px;
  646. position:absolute;
  647. left:0px;
  648. top:0px;
  649. width:0px;
  650. height:0px;
  651. }
  652. #u3728_img {
  653. border-width:0px;
  654. position:absolute;
  655. left:0px;
  656. top:0px;
  657. width:19px;
  658. height:19px;
  659. }
  660. #u3728 {
  661. border-width:0px;
  662. position:absolute;
  663. left:579px;
  664. top:455px;
  665. width:19px;
  666. height:19px;
  667. display:flex;
  668. }
  669. #u3728 .text {
  670. position:absolute;
  671. align-self:center;
  672. padding:2px 2px 2px 2px;
  673. box-sizing:border-box;
  674. width:100%;
  675. }
  676. #u3728_img.mouseOver {
  677. }
  678. #u3728.mouseOver {
  679. }
  680. #u3728_img.selected {
  681. }
  682. #u3728.selected {
  683. }
  684. #u3728_img.disabled {
  685. }
  686. #u3728.disabled {
  687. }
  688. #u3728_img.mouseOver.selected {
  689. }
  690. #u3728.mouseOver.selected {
  691. }
  692. #u3728_img.selected.disabled {
  693. }
  694. #u3728.selected.disabled {
  695. }
  696. #u3728_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u3729 {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:0px;
  708. height:0px;
  709. }
  710. #u3730_img {
  711. border-width:0px;
  712. position:absolute;
  713. left:0px;
  714. top:0px;
  715. width:19px;
  716. height:19px;
  717. }
  718. #u3730 {
  719. border-width:0px;
  720. position:absolute;
  721. left:579px;
  722. top:509px;
  723. width:19px;
  724. height:19px;
  725. display:flex;
  726. }
  727. #u3730 .text {
  728. position:absolute;
  729. align-self:center;
  730. padding:2px 2px 2px 2px;
  731. box-sizing:border-box;
  732. width:100%;
  733. }
  734. #u3730_img.mouseOver {
  735. }
  736. #u3730.mouseOver {
  737. }
  738. #u3730_img.selected {
  739. }
  740. #u3730.selected {
  741. }
  742. #u3730_img.disabled {
  743. }
  744. #u3730.disabled {
  745. }
  746. #u3730_img.mouseOver.selected {
  747. }
  748. #u3730.mouseOver.selected {
  749. }
  750. #u3730_img.selected.disabled {
  751. }
  752. #u3730.selected.disabled {
  753. }
  754. #u3730_text {
  755. border-width:0px;
  756. word-wrap:break-word;
  757. text-transform:none;
  758. visibility:hidden;
  759. }
  760. #u3731 {
  761. border-width:0px;
  762. position:absolute;
  763. left:0px;
  764. top:0px;
  765. width:0px;
  766. height:0px;
  767. }
  768. #u3732_img {
  769. border-width:0px;
  770. position:absolute;
  771. left:0px;
  772. top:0px;
  773. width:19px;
  774. height:19px;
  775. }
  776. #u3732 {
  777. border-width:0px;
  778. position:absolute;
  779. left:579px;
  780. top:565px;
  781. width:19px;
  782. height:19px;
  783. display:flex;
  784. }
  785. #u3732 .text {
  786. position:absolute;
  787. align-self:center;
  788. padding:2px 2px 2px 2px;
  789. box-sizing:border-box;
  790. width:100%;
  791. }
  792. #u3732_img.mouseOver {
  793. }
  794. #u3732.mouseOver {
  795. }
  796. #u3732_img.selected {
  797. }
  798. #u3732.selected {
  799. }
  800. #u3732_img.disabled {
  801. }
  802. #u3732.disabled {
  803. }
  804. #u3732_img.mouseOver.selected {
  805. }
  806. #u3732.mouseOver.selected {
  807. }
  808. #u3732_img.selected.disabled {
  809. }
  810. #u3732.selected.disabled {
  811. }
  812. #u3732_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u3733 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u3734_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:328px;
  832. height:54px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-left:0px;
  837. border-top:0px;
  838. border-right:0px;
  839. border-radius:4px;
  840. border-bottom-right-radius:0px;
  841. border-bottom-left-radius:0px;
  842. -moz-box-shadow:none;
  843. -webkit-box-shadow:none;
  844. box-shadow:none;
  845. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  846. font-weight:700;
  847. font-style:normal;
  848. font-size:14px;
  849. color:rgba(0, 0, 0, 0.8470588235294118);
  850. text-align:left;
  851. line-height:53px;
  852. }
  853. #u3734 {
  854. border-width:0px;
  855. position:absolute;
  856. left:734px;
  857. top:387px;
  858. width:328px;
  859. height:54px;
  860. display:flex;
  861. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  862. font-weight:700;
  863. font-style:normal;
  864. font-size:14px;
  865. color:rgba(0, 0, 0, 0.8470588235294118);
  866. text-align:left;
  867. line-height:53px;
  868. }
  869. #u3734 .text {
  870. position:absolute;
  871. align-self:center;
  872. padding:0px 16px 0px 16px;
  873. box-sizing:border-box;
  874. width:100%;
  875. }
  876. #u3734_text {
  877. border-width:0px;
  878. word-wrap:break-word;
  879. text-transform:none;
  880. }
  881. #u3735_div {
  882. border-width:0px;
  883. position:absolute;
  884. left:0px;
  885. top:0px;
  886. width:328px;
  887. height:159px;
  888. background:inherit;
  889. background-color:rgba(255, 255, 255, 0);
  890. border:none;
  891. border-left:0px;
  892. border-top:0px;
  893. border-right:0px;
  894. border-radius:4px;
  895. border-bottom-right-radius:0px;
  896. border-bottom-left-radius:0px;
  897. -moz-box-shadow:none;
  898. -webkit-box-shadow:none;
  899. box-shadow:none;
  900. font-family:"Microsoft Tai Le", sans-serif;
  901. font-weight:400;
  902. font-style:normal;
  903. font-size:14px;
  904. color:rgba(0, 0, 0, 0.6470588235294118);
  905. text-align:left;
  906. line-height:53px;
  907. }
  908. #u3735 {
  909. border-width:0px;
  910. position:absolute;
  911. left:734px;
  912. top:441px;
  913. width:328px;
  914. height:159px;
  915. display:flex;
  916. font-family:"Microsoft Tai Le", sans-serif;
  917. font-weight:400;
  918. font-style:normal;
  919. font-size:14px;
  920. color:rgba(0, 0, 0, 0.6470588235294118);
  921. text-align:left;
  922. line-height:53px;
  923. }
  924. #u3735 .text {
  925. position:absolute;
  926. align-self:flex-start;
  927. padding:0px 16px 0px 16px;
  928. box-sizing:border-box;
  929. width:100%;
  930. }
  931. #u3735_text {
  932. border-width:0px;
  933. word-wrap:break-word;
  934. text-transform:none;
  935. }
  936. #u3736 {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:0px;
  942. height:0px;
  943. }
  944. #u3737_div {
  945. border-width:0px;
  946. position:absolute;
  947. left:0px;
  948. top:0px;
  949. width:93px;
  950. height:54px;
  951. background:inherit;
  952. background-color:rgba(255, 255, 255, 0);
  953. border:none;
  954. border-left:0px;
  955. border-top:0px;
  956. border-right:0px;
  957. border-radius:4px;
  958. border-bottom-right-radius:0px;
  959. border-bottom-left-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  964. font-weight:700;
  965. font-style:normal;
  966. font-size:14px;
  967. color:rgba(0, 0, 0, 0.8470588235294118);
  968. text-align:left;
  969. line-height:53px;
  970. }
  971. #u3737 {
  972. border-width:0px;
  973. position:absolute;
  974. left:1062px;
  975. top:387px;
  976. width:93px;
  977. height:54px;
  978. display:flex;
  979. font-family:"Microsoft Tai Le Bold", "Microsoft Tai Le", sans-serif;
  980. font-weight:700;
  981. font-style:normal;
  982. font-size:14px;
  983. color:rgba(0, 0, 0, 0.8470588235294118);
  984. text-align:left;
  985. line-height:53px;
  986. }
  987. #u3737 .text {
  988. position:absolute;
  989. align-self:center;
  990. padding:0px 16px 0px 16px;
  991. box-sizing:border-box;
  992. width:100%;
  993. }
  994. #u3737_text {
  995. border-width:0px;
  996. word-wrap:break-word;
  997. text-transform:none;
  998. }
  999. #u3738_div {
  1000. border-width:0px;
  1001. position:absolute;
  1002. left:0px;
  1003. top:0px;
  1004. width:119px;
  1005. height:159px;
  1006. background:inherit;
  1007. background-color:rgba(255, 255, 255, 0);
  1008. border:none;
  1009. border-left:0px;
  1010. border-top:0px;
  1011. border-right:0px;
  1012. border-radius:4px;
  1013. border-bottom-right-radius:0px;
  1014. border-bottom-left-radius:0px;
  1015. -moz-box-shadow:none;
  1016. -webkit-box-shadow:none;
  1017. box-shadow:none;
  1018. font-family:"Microsoft Tai Le", sans-serif;
  1019. font-weight:400;
  1020. font-style:normal;
  1021. font-size:14px;
  1022. color:rgba(0, 0, 0, 0.6470588235294118);
  1023. text-align:left;
  1024. line-height:53px;
  1025. }
  1026. #u3738 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:1062px;
  1030. top:441px;
  1031. width:119px;
  1032. height:159px;
  1033. display:flex;
  1034. font-family:"Microsoft Tai Le", sans-serif;
  1035. font-weight:400;
  1036. font-style:normal;
  1037. font-size:14px;
  1038. color:rgba(0, 0, 0, 0.6470588235294118);
  1039. text-align:left;
  1040. line-height:53px;
  1041. }
  1042. #u3738 .text {
  1043. position:absolute;
  1044. align-self:flex-start;
  1045. padding:0px 16px 0px 16px;
  1046. box-sizing:border-box;
  1047. width:100%;
  1048. }
  1049. #u3738_text {
  1050. border-width:0px;
  1051. word-wrap:break-word;
  1052. text-transform:none;
  1053. }
  1054. #u3739 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:0px;
  1058. top:0px;
  1059. width:0px;
  1060. height:0px;
  1061. }
  1062. #u3740_div {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:0px;
  1066. top:0px;
  1067. width:51px;
  1068. height:22px;
  1069. background:inherit;
  1070. background-color:rgba(255, 255, 255, 0);
  1071. border:none;
  1072. border-radius:0px;
  1073. -moz-box-shadow:none;
  1074. -webkit-box-shadow:none;
  1075. box-shadow:none;
  1076. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1077. font-weight:400;
  1078. font-style:normal;
  1079. color:rgba(0, 0, 0, 0.42745098039215684);
  1080. line-height:22px;
  1081. }
  1082. #u3740 {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:563px;
  1086. top:624px;
  1087. width:51px;
  1088. height:22px;
  1089. display:flex;
  1090. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. color:rgba(0, 0, 0, 0.42745098039215684);
  1094. line-height:22px;
  1095. }
  1096. #u3740 .text {
  1097. position:absolute;
  1098. align-self:flex-start;
  1099. padding:0px 0px 0px 0px;
  1100. box-sizing:border-box;
  1101. width:100%;
  1102. }
  1103. #u3740_text {
  1104. border-width:0px;
  1105. white-space:nowrap;
  1106. text-transform:none;
  1107. }
  1108. #u3741_div {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:32px;
  1114. height:32px;
  1115. background:inherit;
  1116. background-color:rgba(24, 144, 255, 1);
  1117. border:none;
  1118. border-radius:6px;
  1119. -moz-box-shadow:none;
  1120. -webkit-box-shadow:none;
  1121. box-shadow:none;
  1122. font-size:14px;
  1123. color:#FFFFFF;
  1124. line-height:22px;
  1125. }
  1126. #u3741 {
  1127. border-width:0px;
  1128. position:absolute;
  1129. left:675px;
  1130. top:619px;
  1131. width:32px;
  1132. height:32px;
  1133. display:flex;
  1134. font-size:14px;
  1135. color:#FFFFFF;
  1136. line-height:22px;
  1137. }
  1138. #u3741 .text {
  1139. position:absolute;
  1140. align-self:center;
  1141. padding:2px 2px 2px 2px;
  1142. box-sizing:border-box;
  1143. width:100%;
  1144. }
  1145. #u3741_text {
  1146. border-width:0px;
  1147. word-wrap:break-word;
  1148. text-transform:none;
  1149. }
  1150. #u3742_div {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:32px;
  1156. height:32px;
  1157. background:inherit;
  1158. background-color:rgba(255, 255, 255, 1);
  1159. box-sizing:border-box;
  1160. border-width:1px;
  1161. border-style:solid;
  1162. border-color:rgba(217, 217, 217, 1);
  1163. border-radius:6px;
  1164. -moz-box-shadow:none;
  1165. -webkit-box-shadow:none;
  1166. box-shadow:none;
  1167. font-size:14px;
  1168. color:rgba(0, 0, 0, 0.6470588235294118);
  1169. line-height:22px;
  1170. }
  1171. #u3742 {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:715px;
  1175. top:619px;
  1176. width:32px;
  1177. height:32px;
  1178. display:flex;
  1179. font-size:14px;
  1180. color:rgba(0, 0, 0, 0.6470588235294118);
  1181. line-height:22px;
  1182. }
  1183. #u3742 .text {
  1184. position:absolute;
  1185. align-self:center;
  1186. padding:2px 2px 2px 2px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u3742_text {
  1191. border-width:0px;
  1192. word-wrap:break-word;
  1193. text-transform:none;
  1194. }
  1195. #u3743_div {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:0px;
  1199. top:0px;
  1200. width:32px;
  1201. height:32px;
  1202. background:inherit;
  1203. background-color:rgba(255, 255, 255, 1);
  1204. box-sizing:border-box;
  1205. border-width:1px;
  1206. border-style:solid;
  1207. border-color:rgba(217, 217, 217, 1);
  1208. border-radius:6px;
  1209. -moz-box-shadow:none;
  1210. -webkit-box-shadow:none;
  1211. box-shadow:none;
  1212. font-size:14px;
  1213. color:rgba(0, 0, 0, 0.6470588235294118);
  1214. line-height:22px;
  1215. }
  1216. #u3743 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:755px;
  1220. top:619px;
  1221. width:32px;
  1222. height:32px;
  1223. display:flex;
  1224. font-size:14px;
  1225. color:rgba(0, 0, 0, 0.6470588235294118);
  1226. line-height:22px;
  1227. }
  1228. #u3743 .text {
  1229. position:absolute;
  1230. align-self:center;
  1231. padding:2px 2px 2px 2px;
  1232. box-sizing:border-box;
  1233. width:100%;
  1234. }
  1235. #u3743_text {
  1236. border-width:0px;
  1237. word-wrap:break-word;
  1238. text-transform:none;
  1239. }
  1240. #u3744_div {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:0px;
  1244. top:0px;
  1245. width:32px;
  1246. height:32px;
  1247. background:inherit;
  1248. background-color:rgba(255, 255, 255, 1);
  1249. box-sizing:border-box;
  1250. border-width:1px;
  1251. border-style:solid;
  1252. border-color:rgba(217, 217, 217, 1);
  1253. border-radius:6px;
  1254. -moz-box-shadow:none;
  1255. -webkit-box-shadow:none;
  1256. box-shadow:none;
  1257. font-size:14px;
  1258. color:rgba(0, 0, 0, 0.6470588235294118);
  1259. line-height:22px;
  1260. }
  1261. #u3744 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:795px;
  1265. top:619px;
  1266. width:32px;
  1267. height:32px;
  1268. display:flex;
  1269. font-size:14px;
  1270. color:rgba(0, 0, 0, 0.6470588235294118);
  1271. line-height:22px;
  1272. }
  1273. #u3744 .text {
  1274. position:absolute;
  1275. align-self:center;
  1276. padding:2px 2px 2px 2px;
  1277. box-sizing:border-box;
  1278. width:100%;
  1279. }
  1280. #u3744_text {
  1281. border-width:0px;
  1282. word-wrap:break-word;
  1283. text-transform:none;
  1284. }
  1285. #u3745_div {
  1286. border-width:0px;
  1287. position:absolute;
  1288. left:0px;
  1289. top:0px;
  1290. width:32px;
  1291. height:32px;
  1292. background:inherit;
  1293. background-color:rgba(255, 255, 255, 1);
  1294. box-sizing:border-box;
  1295. border-width:1px;
  1296. border-style:solid;
  1297. border-color:rgba(217, 217, 217, 1);
  1298. border-radius:6px;
  1299. -moz-box-shadow:none;
  1300. -webkit-box-shadow:none;
  1301. box-shadow:none;
  1302. font-size:14px;
  1303. color:rgba(0, 0, 0, 0.6470588235294118);
  1304. line-height:22px;
  1305. }
  1306. #u3745 {
  1307. border-width:0px;
  1308. position:absolute;
  1309. left:835px;
  1310. top:619px;
  1311. width:32px;
  1312. height:32px;
  1313. display:flex;
  1314. font-size:14px;
  1315. color:rgba(0, 0, 0, 0.6470588235294118);
  1316. line-height:22px;
  1317. }
  1318. #u3745 .text {
  1319. position:absolute;
  1320. align-self:center;
  1321. padding:2px 2px 2px 2px;
  1322. box-sizing:border-box;
  1323. width:100%;
  1324. }
  1325. #u3745_text {
  1326. border-width:0px;
  1327. word-wrap:break-word;
  1328. text-transform:none;
  1329. }
  1330. #u3746_div {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:0px;
  1334. top:0px;
  1335. width:28px;
  1336. height:22px;
  1337. background:inherit;
  1338. background-color:rgba(255, 255, 255, 0);
  1339. border:none;
  1340. border-radius:0px;
  1341. -moz-box-shadow:none;
  1342. -webkit-box-shadow:none;
  1343. box-shadow:none;
  1344. font-family:"Microsoft YaHei", sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. color:rgba(0, 0, 0, 0.6470588235294118);
  1349. line-height:22px;
  1350. }
  1351. #u3746 {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:1030px;
  1355. top:624px;
  1356. width:28px;
  1357. height:22px;
  1358. display:flex;
  1359. font-family:"Microsoft YaHei", sans-serif;
  1360. font-weight:400;
  1361. font-style:normal;
  1362. font-size:14px;
  1363. color:rgba(0, 0, 0, 0.6470588235294118);
  1364. line-height:22px;
  1365. }
  1366. #u3746 .text {
  1367. position:absolute;
  1368. align-self:flex-start;
  1369. padding:0px 0px 0px 0px;
  1370. box-sizing:border-box;
  1371. width:100%;
  1372. }
  1373. #u3746_text {
  1374. border-width:0px;
  1375. white-space:nowrap;
  1376. text-transform:none;
  1377. }
  1378. #u3747_div {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:48px;
  1384. height:32px;
  1385. background:inherit;
  1386. background-color:rgba(255, 255, 255, 1);
  1387. box-sizing:border-box;
  1388. border-width:1px;
  1389. border-style:solid;
  1390. border-color:rgba(217, 217, 217, 1);
  1391. border-radius:6px;
  1392. -moz-box-shadow:none;
  1393. -webkit-box-shadow:none;
  1394. box-shadow:none;
  1395. font-size:14px;
  1396. color:rgba(0, 0, 0, 0.6470588235294118);
  1397. text-align:left;
  1398. line-height:22px;
  1399. }
  1400. #u3747 {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:1067px;
  1404. top:619px;
  1405. width:48px;
  1406. height:32px;
  1407. display:flex;
  1408. font-size:14px;
  1409. color:rgba(0, 0, 0, 0.6470588235294118);
  1410. text-align:left;
  1411. line-height:22px;
  1412. }
  1413. #u3747 .text {
  1414. position:absolute;
  1415. align-self:center;
  1416. padding:2px 2px 2px 16px;
  1417. box-sizing:border-box;
  1418. width:100%;
  1419. }
  1420. #u3747_text {
  1421. border-width:0px;
  1422. word-wrap:break-word;
  1423. text-transform:none;
  1424. }
  1425. #u3748_div {
  1426. border-width:0px;
  1427. position:absolute;
  1428. left:0px;
  1429. top:0px;
  1430. width:14px;
  1431. height:22px;
  1432. background:inherit;
  1433. background-color:rgba(255, 255, 255, 0);
  1434. border:none;
  1435. border-radius:0px;
  1436. -moz-box-shadow:none;
  1437. -webkit-box-shadow:none;
  1438. box-shadow:none;
  1439. font-family:"Microsoft YaHei", sans-serif;
  1440. font-weight:400;
  1441. font-style:normal;
  1442. font-size:14px;
  1443. color:rgba(0, 0, 0, 0.6470588235294118);
  1444. line-height:22px;
  1445. }
  1446. #u3748 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:1123px;
  1450. top:624px;
  1451. width:14px;
  1452. height:22px;
  1453. display:flex;
  1454. font-family:"Microsoft YaHei", sans-serif;
  1455. font-weight:400;
  1456. font-style:normal;
  1457. font-size:14px;
  1458. color:rgba(0, 0, 0, 0.6470588235294118);
  1459. line-height:22px;
  1460. }
  1461. #u3748 .text {
  1462. position:absolute;
  1463. align-self:flex-start;
  1464. padding:0px 0px 2px 0px;
  1465. box-sizing:border-box;
  1466. width:100%;
  1467. }
  1468. #u3748_text {
  1469. border-width:0px;
  1470. white-space:nowrap;
  1471. text-transform:none;
  1472. }
  1473. #u3749 {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:0px;
  1479. height:0px;
  1480. }
  1481. #u3750_div {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:0px;
  1485. top:0px;
  1486. width:88px;
  1487. height:32px;
  1488. background:inherit;
  1489. background-color:rgba(255, 255, 255, 1);
  1490. box-sizing:border-box;
  1491. border-width:1px;
  1492. border-style:solid;
  1493. border-color:rgba(217, 217, 217, 1);
  1494. border-radius:6px;
  1495. -moz-box-shadow:none;
  1496. -webkit-box-shadow:none;
  1497. box-shadow:none;
  1498. font-size:14px;
  1499. color:rgba(0, 0, 0, 0.6470588235294118);
  1500. text-align:left;
  1501. line-height:22px;
  1502. }
  1503. #u3750 {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:923px;
  1507. top:619px;
  1508. width:88px;
  1509. height:32px;
  1510. display:flex;
  1511. font-size:14px;
  1512. color:rgba(0, 0, 0, 0.6470588235294118);
  1513. text-align:left;
  1514. line-height:22px;
  1515. }
  1516. #u3750 .text {
  1517. position:absolute;
  1518. align-self:center;
  1519. padding:2px 30px 2px 8px;
  1520. box-sizing:border-box;
  1521. width:100%;
  1522. }
  1523. #u3750_text {
  1524. border-width:0px;
  1525. white-space:nowrap;
  1526. text-transform:none;
  1527. }
  1528. #u3751_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:14px;
  1534. height:14px;
  1535. }
  1536. #u3751 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:988px;
  1540. top:628px;
  1541. width:14px;
  1542. height:14px;
  1543. display:flex;
  1544. -webkit-transform:rotate(90deg);
  1545. -moz-transform:rotate(90deg);
  1546. -ms-transform:rotate(90deg);
  1547. transform:rotate(90deg);
  1548. opacity:0.4000000059604645;
  1549. }
  1550. #u3751 .text {
  1551. position:absolute;
  1552. align-self:center;
  1553. padding:2px 2px 2px 2px;
  1554. box-sizing:border-box;
  1555. width:100%;
  1556. }
  1557. #u3751_text {
  1558. border-width:0px;
  1559. word-wrap:break-word;
  1560. text-transform:none;
  1561. visibility:hidden;
  1562. }
  1563. #u3752 {
  1564. border-width:0px;
  1565. position:absolute;
  1566. left:0px;
  1567. top:0px;
  1568. width:0px;
  1569. height:0px;
  1570. }
  1571. #u3753_div {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:0px;
  1575. top:0px;
  1576. width:32px;
  1577. height:32px;
  1578. background:inherit;
  1579. background-color:rgba(255, 255, 255, 1);
  1580. box-sizing:border-box;
  1581. border-width:1px;
  1582. border-style:solid;
  1583. border-color:rgba(217, 217, 217, 1);
  1584. border-radius:6px;
  1585. -moz-box-shadow:none;
  1586. -webkit-box-shadow:none;
  1587. box-shadow:none;
  1588. font-size:12px;
  1589. color:#666666;
  1590. }
  1591. #u3753 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:635px;
  1595. top:619px;
  1596. width:32px;
  1597. height:32px;
  1598. display:flex;
  1599. font-size:12px;
  1600. color:#666666;
  1601. }
  1602. #u3753 .text {
  1603. position:absolute;
  1604. align-self:center;
  1605. padding:2px 2px 2px 2px;
  1606. box-sizing:border-box;
  1607. width:100%;
  1608. }
  1609. #u3753_text {
  1610. border-width:0px;
  1611. word-wrap:break-word;
  1612. text-transform:none;
  1613. visibility:hidden;
  1614. }
  1615. #u3754_img {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:14px;
  1621. height:14px;
  1622. }
  1623. #u3754 {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:644px;
  1627. top:628px;
  1628. width:14px;
  1629. height:14px;
  1630. display:flex;
  1631. -webkit-transform:rotate(180deg);
  1632. -moz-transform:rotate(180deg);
  1633. -ms-transform:rotate(180deg);
  1634. transform:rotate(180deg);
  1635. opacity:0.4000000059604645;
  1636. }
  1637. #u3754 .text {
  1638. position:absolute;
  1639. align-self:center;
  1640. padding:2px 2px 2px 2px;
  1641. box-sizing:border-box;
  1642. width:100%;
  1643. }
  1644. #u3754_text {
  1645. border-width:0px;
  1646. word-wrap:break-word;
  1647. text-transform:none;
  1648. visibility:hidden;
  1649. }
  1650. #u3755 {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:0px;
  1656. height:0px;
  1657. }
  1658. #u3756_div {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:32px;
  1664. height:32px;
  1665. background:inherit;
  1666. background-color:rgba(255, 255, 255, 1);
  1667. box-sizing:border-box;
  1668. border-width:1px;
  1669. border-style:solid;
  1670. border-color:rgba(217, 217, 217, 1);
  1671. border-radius:6px;
  1672. -moz-box-shadow:none;
  1673. -webkit-box-shadow:none;
  1674. box-shadow:none;
  1675. font-size:12px;
  1676. color:#666666;
  1677. }
  1678. #u3756 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:875px;
  1682. top:619px;
  1683. width:32px;
  1684. height:32px;
  1685. display:flex;
  1686. font-size:12px;
  1687. color:#666666;
  1688. }
  1689. #u3756 .text {
  1690. position:absolute;
  1691. align-self:center;
  1692. padding:2px 2px 2px 2px;
  1693. box-sizing:border-box;
  1694. width:100%;
  1695. }
  1696. #u3756_text {
  1697. border-width:0px;
  1698. word-wrap:break-word;
  1699. text-transform:none;
  1700. visibility:hidden;
  1701. }
  1702. #u3757_img {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:0px;
  1706. top:0px;
  1707. width:14px;
  1708. height:14px;
  1709. }
  1710. #u3757 {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:884px;
  1714. top:628px;
  1715. width:14px;
  1716. height:14px;
  1717. display:flex;
  1718. opacity:0.4000000059604645;
  1719. }
  1720. #u3757 .text {
  1721. position:absolute;
  1722. align-self:center;
  1723. padding:2px 2px 2px 2px;
  1724. box-sizing:border-box;
  1725. width:100%;
  1726. }
  1727. #u3757_text {
  1728. border-width:0px;
  1729. word-wrap:break-word;
  1730. text-transform:none;
  1731. visibility:hidden;
  1732. }
  1733. #u3758_div {
  1734. border-width:0px;
  1735. position:absolute;
  1736. left:0px;
  1737. top:0px;
  1738. width:65px;
  1739. height:32px;
  1740. background:inherit;
  1741. background-color:rgba(24, 144, 255, 1);
  1742. border:none;
  1743. border-radius:4px;
  1744. -moz-box-shadow:none;
  1745. -webkit-box-shadow:none;
  1746. box-shadow:none;
  1747. font-family:"Microsoft YaHei", sans-serif;
  1748. font-weight:400;
  1749. font-style:normal;
  1750. font-size:14px;
  1751. color:#FFFFFF;
  1752. text-align:left;
  1753. line-height:22px;
  1754. }
  1755. #u3758 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:849px;
  1759. top:343px;
  1760. width:65px;
  1761. height:32px;
  1762. display:flex;
  1763. font-family:"Microsoft YaHei", sans-serif;
  1764. font-weight:400;
  1765. font-style:normal;
  1766. font-size:14px;
  1767. color:#FFFFFF;
  1768. text-align:left;
  1769. line-height:22px;
  1770. }
  1771. #u3758 .text {
  1772. position:absolute;
  1773. align-self:center;
  1774. padding:0px 16px 0px 16px;
  1775. box-sizing:border-box;
  1776. width:100%;
  1777. }
  1778. #u3758_text {
  1779. border-width:0px;
  1780. white-space:nowrap;
  1781. text-transform:none;
  1782. }
  1783. #u3759 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:0px;
  1787. top:0px;
  1788. width:0px;
  1789. height:0px;
  1790. }
  1791. #u3760 {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:0px;
  1797. height:0px;
  1798. }
  1799. #u3761_div {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:70px;
  1805. height:47px;
  1806. background:inherit;
  1807. background-color:rgba(255, 255, 255, 0);
  1808. border:none;
  1809. border-radius:0px;
  1810. -moz-box-shadow:none;
  1811. -webkit-box-shadow:none;
  1812. box-shadow:none;
  1813. font-family:"Microsoft Tai Le", sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:14px;
  1817. color:rgba(0, 0, 0, 0.8470588235294118);
  1818. text-align:right;
  1819. line-height:22px;
  1820. }
  1821. #u3761 {
  1822. border-width:0px;
  1823. position:absolute;
  1824. left:577px;
  1825. top:343px;
  1826. width:70px;
  1827. height:47px;
  1828. display:flex;
  1829. font-family:"Microsoft Tai Le", sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:14px;
  1833. color:rgba(0, 0, 0, 0.8470588235294118);
  1834. text-align:right;
  1835. line-height:22px;
  1836. }
  1837. #u3761 .text {
  1838. position:absolute;
  1839. align-self:flex-start;
  1840. padding:5px 0px 29px 0px;
  1841. box-sizing:border-box;
  1842. width:100%;
  1843. }
  1844. #u3761_text {
  1845. border-width:0px;
  1846. white-space:nowrap;
  1847. text-transform:none;
  1848. }
  1849. #u3762_div {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:180px;
  1855. height:32px;
  1856. background:inherit;
  1857. background-color:rgba(255, 255, 255, 1);
  1858. box-sizing:border-box;
  1859. border-width:1px;
  1860. border-style:solid;
  1861. border-color:rgba(217, 217, 217, 1);
  1862. border-radius:4px;
  1863. -moz-box-shadow:none;
  1864. -webkit-box-shadow:none;
  1865. box-shadow:none;
  1866. font-family:"Microsoft Tai Le", sans-serif;
  1867. font-weight:400;
  1868. font-style:normal;
  1869. font-size:14px;
  1870. color:rgba(0, 0, 0, 0.24705882352941178);
  1871. text-align:left;
  1872. line-height:22px;
  1873. }
  1874. #u3762 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:647px;
  1878. top:343px;
  1879. width:180px;
  1880. height:32px;
  1881. display:flex;
  1882. font-family:"Microsoft Tai Le", sans-serif;
  1883. font-weight:400;
  1884. font-style:normal;
  1885. font-size:14px;
  1886. color:rgba(0, 0, 0, 0.24705882352941178);
  1887. text-align:left;
  1888. line-height:22px;
  1889. }
  1890. #u3762 .text {
  1891. position:absolute;
  1892. align-self:flex-start;
  1893. padding:5px 0px 5px 12px;
  1894. box-sizing:border-box;
  1895. width:100%;
  1896. }
  1897. #u3762_text {
  1898. border-width:0px;
  1899. word-wrap:break-word;
  1900. text-transform:none;
  1901. }
  1902. #u3763_div {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:180px;
  1908. height:14px;
  1909. background:inherit;
  1910. background-color:rgba(255, 51, 153, 1);
  1911. border:none;
  1912. border-radius:0px;
  1913. -moz-box-shadow:none;
  1914. -webkit-box-shadow:none;
  1915. box-shadow:none;
  1916. color:#FFFFFF;
  1917. }
  1918. #u3763 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:647px;
  1922. top:375px;
  1923. width:180px;
  1924. height:14px;
  1925. display:flex;
  1926. opacity:0;
  1927. color:#FFFFFF;
  1928. }
  1929. #u3763 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:2px 2px 2px 2px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u3763_text {
  1937. border-width:0px;
  1938. word-wrap:break-word;
  1939. text-transform:none;
  1940. }
  1941. #u3764_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:190px;
  1947. height:90px;
  1948. background:inherit;
  1949. background-color:rgba(255, 223, 37, 1);
  1950. border:none;
  1951. border-radius:0px;
  1952. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  1953. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  1954. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  1955. }
  1956. #u3764 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:849px;
  1960. top:216px;
  1961. width:190px;
  1962. height:90px;
  1963. display:flex;
  1964. }
  1965. #u3764 .text {
  1966. position:absolute;
  1967. align-self:flex-start;
  1968. padding:10px 10px 10px 10px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u3764_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. }
  1977. #u3765_div {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:140px;
  1983. height:40px;
  1984. background:inherit;
  1985. background-color:rgba(255, 255, 255, 1);
  1986. box-sizing:border-box;
  1987. border-width:1px;
  1988. border-style:solid;
  1989. border-color:rgba(121, 121, 121, 1);
  1990. border-radius:5px;
  1991. -moz-box-shadow:none;
  1992. -webkit-box-shadow:none;
  1993. box-shadow:none;
  1994. color:#8C8C8C;
  1995. }
  1996. #u3765 {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:891px;
  2000. top:659px;
  2001. width:140px;
  2002. height:40px;
  2003. display:flex;
  2004. color:#8C8C8C;
  2005. }
  2006. #u3765 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 2px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u3765_div.mouseOver {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:140px;
  2019. height:40px;
  2020. background:inherit;
  2021. background-color:rgba(251, 251, 251, 1);
  2022. box-sizing:border-box;
  2023. border-width:1px;
  2024. border-style:solid;
  2025. border-color:rgba(121, 121, 121, 1);
  2026. border-radius:5px;
  2027. -moz-box-shadow:none;
  2028. -webkit-box-shadow:none;
  2029. box-shadow:none;
  2030. color:#8C8C8C;
  2031. }
  2032. #u3765.mouseOver {
  2033. }
  2034. #u3765_text {
  2035. border-width:0px;
  2036. word-wrap:break-word;
  2037. text-transform:none;
  2038. }
  2039. #u3766_div {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:140px;
  2045. height:40px;
  2046. background:inherit;
  2047. background-color:rgba(22, 155, 213, 1);
  2048. border:none;
  2049. border-radius:5px;
  2050. -moz-box-shadow:none;
  2051. -webkit-box-shadow:none;
  2052. box-shadow:none;
  2053. }
  2054. #u3766 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:1051px;
  2058. top:659px;
  2059. width:140px;
  2060. height:40px;
  2061. display:flex;
  2062. }
  2063. #u3766 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u3766_div.mouseOver {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:140px;
  2076. height:40px;
  2077. background:inherit;
  2078. background-color:rgba(22, 155, 213, 0.803921568627451);
  2079. border:none;
  2080. border-radius:5px;
  2081. -moz-box-shadow:none;
  2082. -webkit-box-shadow:none;
  2083. box-shadow:none;
  2084. }
  2085. #u3766.mouseOver {
  2086. }
  2087. #u3766_text {
  2088. border-width:0px;
  2089. word-wrap:break-word;
  2090. text-transform:none;
  2091. }
  2092. #u3767_div {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:0px;
  2096. top:0px;
  2097. width:1440px;
  2098. height:999px;
  2099. background:inherit;
  2100. background-color:rgba(240, 242, 245, 1);
  2101. border:none;
  2102. border-radius:0px;
  2103. -moz-box-shadow:none;
  2104. -webkit-box-shadow:none;
  2105. box-shadow:none;
  2106. }
  2107. #u3767 {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:1440px;
  2113. height:999px;
  2114. display:flex;
  2115. }
  2116. #u3767 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 2px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u3767_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. }
  2128. #u3768 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:0px;
  2134. height:0px;
  2135. }
  2136. #u3769_div {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:1184px;
  2142. height:64px;
  2143. background:inherit;
  2144. background-color:rgba(255, 255, 255, 1);
  2145. border:none;
  2146. border-radius:0px;
  2147. -moz-box-shadow:none;
  2148. -webkit-box-shadow:none;
  2149. box-shadow:none;
  2150. }
  2151. #u3769 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:256px;
  2155. top:0px;
  2156. width:1184px;
  2157. height:64px;
  2158. display:flex;
  2159. }
  2160. #u3769 .text {
  2161. position:absolute;
  2162. align-self:center;
  2163. padding:2px 2px 2px 2px;
  2164. box-sizing:border-box;
  2165. width:100%;
  2166. }
  2167. #u3769_text {
  2168. border-width:0px;
  2169. word-wrap:break-word;
  2170. text-transform:none;
  2171. visibility:hidden;
  2172. }
  2173. #u3770_img {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:20px;
  2179. height:15px;
  2180. }
  2181. #u3770 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:284px;
  2185. top:25px;
  2186. width:20px;
  2187. height:15px;
  2188. display:flex;
  2189. }
  2190. #u3770 .text {
  2191. position:absolute;
  2192. align-self:center;
  2193. padding:2px 2px 2px 2px;
  2194. box-sizing:border-box;
  2195. width:100%;
  2196. }
  2197. #u3770_text {
  2198. border-width:0px;
  2199. word-wrap:break-word;
  2200. text-transform:none;
  2201. visibility:hidden;
  2202. }
  2203. #u3771 {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:0px;
  2209. height:0px;
  2210. }
  2211. #u3772_img {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:24px;
  2217. height:24px;
  2218. }
  2219. #u3772 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:1317px;
  2223. top:21px;
  2224. width:24px;
  2225. height:24px;
  2226. display:flex;
  2227. }
  2228. #u3772 .text {
  2229. position:absolute;
  2230. align-self:center;
  2231. padding:2px 2px 2px 2px;
  2232. box-sizing:border-box;
  2233. width:100%;
  2234. }
  2235. #u3772_text {
  2236. border-width:0px;
  2237. word-wrap:break-word;
  2238. text-transform:none;
  2239. visibility:hidden;
  2240. }
  2241. #u3773_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:42px;
  2247. height:22px;
  2248. background:inherit;
  2249. background-color:rgba(255, 255, 255, 0);
  2250. border:none;
  2251. border-radius:0px;
  2252. -moz-box-shadow:none;
  2253. -webkit-box-shadow:none;
  2254. box-shadow:none;
  2255. color:rgba(0, 0, 0, 0.6470588235294118);
  2256. line-height:22px;
  2257. }
  2258. #u3773 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:1349px;
  2262. top:22px;
  2263. width:42px;
  2264. height:22px;
  2265. display:flex;
  2266. color:rgba(0, 0, 0, 0.6470588235294118);
  2267. line-height:22px;
  2268. }
  2269. #u3773 .text {
  2270. position:absolute;
  2271. align-self:flex-start;
  2272. padding:0px 0px 0px 0px;
  2273. box-sizing:border-box;
  2274. width:100%;
  2275. }
  2276. #u3773_text {
  2277. border-width:0px;
  2278. white-space:nowrap;
  2279. text-transform:none;
  2280. }
  2281. #u3774_div {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:1149px;
  2287. height:842px;
  2288. background:inherit;
  2289. background-color:rgba(255, 255, 255, 1);
  2290. border:none;
  2291. border-radius:4px;
  2292. -moz-box-shadow:none;
  2293. -webkit-box-shadow:none;
  2294. box-shadow:none;
  2295. font-family:"Microsoft Tai Le", sans-serif;
  2296. font-weight:400;
  2297. font-style:normal;
  2298. font-size:14px;
  2299. color:#666666;
  2300. text-align:left;
  2301. line-height:18px;
  2302. }
  2303. #u3774 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:277px;
  2307. top:137px;
  2308. width:1149px;
  2309. height:842px;
  2310. display:flex;
  2311. font-family:"Microsoft Tai Le", sans-serif;
  2312. font-weight:400;
  2313. font-style:normal;
  2314. font-size:14px;
  2315. color:#666666;
  2316. text-align:left;
  2317. line-height:18px;
  2318. }
  2319. #u3774 .text {
  2320. position:absolute;
  2321. align-self:flex-start;
  2322. padding:16px 16px 2px 16px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u3774_text {
  2327. border-width:0px;
  2328. word-wrap:break-word;
  2329. text-transform:none;
  2330. visibility:hidden;
  2331. }
  2332. #u3775 {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:277px;
  2336. top:138px;
  2337. width:32px;
  2338. height:32px;
  2339. }
  2340. #u3775_state0 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:0px;
  2344. top:0px;
  2345. width:32px;
  2346. height:32px;
  2347. -ms-overflow-x:hidden;
  2348. overflow-x:hidden;
  2349. -ms-overflow-y:hidden;
  2350. overflow-y:hidden;
  2351. background-image:none;
  2352. border:none;
  2353. border-radius:0px;
  2354. -moz-box-shadow:none;
  2355. -webkit-box-shadow:none;
  2356. box-shadow:none;
  2357. }
  2358. #u3775_state0_content {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:1px;
  2364. height:1px;
  2365. }
  2366. #u3776 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:277px;
  2370. top:947px;
  2371. width:32px;
  2372. height:32px;
  2373. }
  2374. #u3776_state0 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:0px;
  2378. top:0px;
  2379. width:32px;
  2380. height:32px;
  2381. -ms-overflow-x:hidden;
  2382. overflow-x:hidden;
  2383. -ms-overflow-y:hidden;
  2384. overflow-y:hidden;
  2385. background-image:none;
  2386. border:none;
  2387. border-radius:0px;
  2388. -moz-box-shadow:none;
  2389. -webkit-box-shadow:none;
  2390. box-shadow:none;
  2391. }
  2392. #u3776_state0_content {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:1px;
  2398. height:1px;
  2399. }
  2400. #u3777 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:1394px;
  2404. top:947px;
  2405. width:32px;
  2406. height:32px;
  2407. }
  2408. #u3777_state0 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:32px;
  2414. height:32px;
  2415. -ms-overflow-x:hidden;
  2416. overflow-x:hidden;
  2417. -ms-overflow-y:hidden;
  2418. overflow-y:hidden;
  2419. background-image:none;
  2420. border:none;
  2421. border-radius:0px;
  2422. -moz-box-shadow:none;
  2423. -webkit-box-shadow:none;
  2424. box-shadow:none;
  2425. }
  2426. #u3777_state0_content {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:1px;
  2432. height:1px;
  2433. }
  2434. #u3778 {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:1394px;
  2438. top:138px;
  2439. width:32px;
  2440. height:32px;
  2441. }
  2442. #u3778_state0 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:0px;
  2446. top:0px;
  2447. width:32px;
  2448. height:32px;
  2449. -ms-overflow-x:hidden;
  2450. overflow-x:hidden;
  2451. -ms-overflow-y:hidden;
  2452. overflow-y:hidden;
  2453. background-image:none;
  2454. border:none;
  2455. border-radius:0px;
  2456. -moz-box-shadow:none;
  2457. -webkit-box-shadow:none;
  2458. box-shadow:none;
  2459. }
  2460. #u3778_state0_content {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:1px;
  2466. height:1px;
  2467. }
  2468. #u3779_div {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:256px;
  2474. height:999px;
  2475. background:inherit;
  2476. background-color:rgba(255, 255, 255, 1);
  2477. border:none;
  2478. border-radius:0px;
  2479. -moz-box-shadow:2px 0px 4px rgba(0, 0, 0, 0.0784313725490196);
  2480. -webkit-box-shadow:2px 0px 4px rgba(0, 0, 0, 0.0784313725490196);
  2481. box-shadow:2px 0px 4px rgba(0, 0, 0, 0.0784313725490196);
  2482. }
  2483. #u3779 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:256px;
  2489. height:999px;
  2490. display:flex;
  2491. }
  2492. #u3779 .text {
  2493. position:absolute;
  2494. align-self:center;
  2495. padding:2px 2px 2px 2px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u3779_text {
  2500. border-width:0px;
  2501. word-wrap:break-word;
  2502. text-transform:none;
  2503. visibility:hidden;
  2504. }
  2505. #u3780_img {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:0px;
  2510. width:256px;
  2511. height:65px;
  2512. }
  2513. #u3780 {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:0px;
  2518. width:256px;
  2519. height:65px;
  2520. display:flex;
  2521. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  2522. font-weight:650;
  2523. font-style:normal;
  2524. font-size:18px;
  2525. color:#2836FE;
  2526. text-align:left;
  2527. line-height:26px;
  2528. }
  2529. #u3780 .text {
  2530. position:absolute;
  2531. align-self:center;
  2532. padding:0px 0px 0px 68px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u3780_text {
  2537. border-width:0px;
  2538. word-wrap:break-word;
  2539. text-transform:none;
  2540. }
  2541. #u3781 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:0px;
  2547. height:0px;
  2548. }
  2549. #u3782 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:0px;
  2555. height:0px;
  2556. }
  2557. #u3783_div {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:1149px;
  2563. height:51px;
  2564. background:inherit;
  2565. background-color:rgba(255, 255, 255, 1);
  2566. box-sizing:border-box;
  2567. border-width:1px;
  2568. border-style:solid;
  2569. border-color:rgba(233, 233, 233, 1);
  2570. border-left:0px;
  2571. border-right:0px;
  2572. border-radius:0px;
  2573. border-top-left-radius:0px;
  2574. border-top-right-radius:0px;
  2575. border-bottom-right-radius:0px;
  2576. border-bottom-left-radius:0px;
  2577. -moz-box-shadow:none;
  2578. -webkit-box-shadow:none;
  2579. box-shadow:none;
  2580. font-family:"Malayalam MN", sans-serif;
  2581. font-weight:400;
  2582. font-style:normal;
  2583. text-align:left;
  2584. }
  2585. #u3783 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:277px;
  2589. top:74px;
  2590. width:1149px;
  2591. height:51px;
  2592. display:flex;
  2593. font-family:"Malayalam MN", sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. text-align:left;
  2597. }
  2598. #u3783 .text {
  2599. position:absolute;
  2600. align-self:flex-start;
  2601. padding:18px 2px 2px 36px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u3783_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u3784_div {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:7px;
  2617. height:25px;
  2618. background:inherit;
  2619. background-color:rgba(40, 54, 254, 1);
  2620. border:none;
  2621. border-radius:0px;
  2622. -moz-box-shadow:none;
  2623. -webkit-box-shadow:none;
  2624. box-shadow:none;
  2625. }
  2626. #u3784 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:293px;
  2630. top:87px;
  2631. width:7px;
  2632. height:25px;
  2633. display:flex;
  2634. }
  2635. #u3784 .text {
  2636. position:absolute;
  2637. align-self:center;
  2638. padding:2px 2px 2px 2px;
  2639. box-sizing:border-box;
  2640. width:100%;
  2641. }
  2642. #u3784_text {
  2643. border-width:0px;
  2644. word-wrap:break-word;
  2645. text-transform:none;
  2646. visibility:hidden;
  2647. }
  2648. #u3785_div {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:56px;
  2654. height:16px;
  2655. background:inherit;
  2656. background-color:rgba(255, 255, 255, 0);
  2657. border:none;
  2658. border-radius:0px;
  2659. -moz-box-shadow:none;
  2660. -webkit-box-shadow:none;
  2661. box-shadow:none;
  2662. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  2663. font-weight:700;
  2664. font-style:normal;
  2665. font-size:14px;
  2666. color:#2836FE;
  2667. }
  2668. #u3785 {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:308px;
  2672. top:92px;
  2673. width:56px;
  2674. height:16px;
  2675. display:flex;
  2676. font-family:"Arial Negreta", "Arial Normal", "Arial", sans-serif;
  2677. font-weight:700;
  2678. font-style:normal;
  2679. font-size:14px;
  2680. color:#2836FE;
  2681. }
  2682. #u3785 .text {
  2683. position:absolute;
  2684. align-self:flex-start;
  2685. padding:0px 0px 0px 0px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u3785_text {
  2690. border-width:0px;
  2691. white-space:nowrap;
  2692. text-transform:none;
  2693. }
  2694. #u3786 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:0px;
  2700. height:0px;
  2701. }
  2702. #u3787_div {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:280px;
  2708. height:32px;
  2709. background:inherit;
  2710. background-color:rgba(255, 255, 255, 1);
  2711. box-sizing:border-box;
  2712. border-width:1px;
  2713. border-style:solid;
  2714. border-color:rgba(220, 223, 230, 1);
  2715. border-radius:4px;
  2716. -moz-box-shadow:none;
  2717. -webkit-box-shadow:none;
  2718. box-shadow:none;
  2719. }
  2720. #u3787 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:377px;
  2724. top:170px;
  2725. width:280px;
  2726. height:32px;
  2727. display:flex;
  2728. }
  2729. #u3787 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 2px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u3787_div.mouseOver {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:0px;
  2740. top:0px;
  2741. width:280px;
  2742. height:32px;
  2743. background:inherit;
  2744. background-color:rgba(255, 255, 255, 1);
  2745. box-sizing:border-box;
  2746. border-width:1px;
  2747. border-style:solid;
  2748. border-color:rgba(192, 196, 204, 1);
  2749. border-radius:4px;
  2750. -moz-box-shadow:none;
  2751. -webkit-box-shadow:none;
  2752. box-shadow:none;
  2753. }
  2754. #u3787.mouseOver {
  2755. }
  2756. #u3787_div.selected {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:0px;
  2760. top:0px;
  2761. width:280px;
  2762. height:32px;
  2763. background:inherit;
  2764. background-color:rgba(255, 255, 255, 1);
  2765. box-sizing:border-box;
  2766. border-width:1px;
  2767. border-style:solid;
  2768. border-color:rgba(64, 158, 255, 1);
  2769. border-radius:4px;
  2770. -moz-box-shadow:none;
  2771. -webkit-box-shadow:none;
  2772. box-shadow:none;
  2773. }
  2774. #u3787.selected {
  2775. }
  2776. #u3787_div.mouseOver.selected {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:280px;
  2782. height:32px;
  2783. background:inherit;
  2784. background-color:rgba(255, 255, 255, 1);
  2785. box-sizing:border-box;
  2786. border-width:1px;
  2787. border-style:solid;
  2788. border-color:rgba(64, 158, 255, 1);
  2789. border-radius:4px;
  2790. -moz-box-shadow:none;
  2791. -webkit-box-shadow:none;
  2792. box-shadow:none;
  2793. }
  2794. #u3787.mouseOver.selected {
  2795. }
  2796. #u3787_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. visibility:hidden;
  2801. }
  2802. #u3788_input {
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:266px;
  2807. height:30px;
  2808. padding:2px 2px 2px 2px;
  2809. font-family:"Arial Normal", "Arial", sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:12px;
  2813. letter-spacing:normal;
  2814. color:#606266;
  2815. vertical-align:none;
  2816. text-align:left;
  2817. text-transform:none;
  2818. background-color:transparent;
  2819. border-color:transparent;
  2820. }
  2821. #u3788_input.hint {
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:266px;
  2826. height:30px;
  2827. padding:2px 2px 2px 2px;
  2828. font-family:"Arial Normal", "Arial", sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:12px;
  2832. letter-spacing:normal;
  2833. color:#C0C4CC;
  2834. vertical-align:none;
  2835. text-align:left;
  2836. text-transform:none;
  2837. background-color:transparent;
  2838. border-color:transparent;
  2839. }
  2840. #u3788_input.disabled {
  2841. position:absolute;
  2842. left:0px;
  2843. top:0px;
  2844. width:266px;
  2845. height:30px;
  2846. padding:2px 2px 2px 2px;
  2847. font-family:"Arial Normal", "Arial", sans-serif;
  2848. font-weight:400;
  2849. font-style:normal;
  2850. font-size:12px;
  2851. letter-spacing:normal;
  2852. color:#606266;
  2853. vertical-align:none;
  2854. text-align:left;
  2855. text-transform:none;
  2856. background-color:transparent;
  2857. border-color:transparent;
  2858. }
  2859. #u3788_input.hint.disabled {
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:266px;
  2864. height:30px;
  2865. padding:2px 2px 2px 2px;
  2866. font-family:"Arial Normal", "Arial", sans-serif;
  2867. font-weight:400;
  2868. font-style:normal;
  2869. font-size:12px;
  2870. letter-spacing:normal;
  2871. color:#C0C4CC;
  2872. vertical-align:none;
  2873. text-align:left;
  2874. text-transform:none;
  2875. background-color:transparent;
  2876. border-color:transparent;
  2877. }
  2878. #u3788_div {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:266px;
  2884. height:30px;
  2885. background:inherit;
  2886. background-color:rgba(255, 255, 255, 1);
  2887. border:none;
  2888. border-radius:0px;
  2889. -moz-box-shadow:none;
  2890. -webkit-box-shadow:none;
  2891. box-shadow:none;
  2892. font-size:12px;
  2893. color:#606266;
  2894. }
  2895. #u3788 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:384px;
  2899. top:171px;
  2900. width:266px;
  2901. height:30px;
  2902. display:flex;
  2903. font-size:12px;
  2904. color:#606266;
  2905. }
  2906. #u3788 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 2px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u3788_div.hint {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:266px;
  2919. height:30px;
  2920. background:inherit;
  2921. background-color:rgba(255, 255, 255, 1);
  2922. border:none;
  2923. border-radius:0px;
  2924. -moz-box-shadow:none;
  2925. -webkit-box-shadow:none;
  2926. box-shadow:none;
  2927. font-size:12px;
  2928. color:#606266;
  2929. }
  2930. #u3788.hint {
  2931. }
  2932. #u3788_div.disabled {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:0px;
  2936. top:0px;
  2937. width:266px;
  2938. height:30px;
  2939. background:inherit;
  2940. background-color:rgba(240, 240, 240, 1);
  2941. border:none;
  2942. border-radius:0px;
  2943. -moz-box-shadow:none;
  2944. -webkit-box-shadow:none;
  2945. box-shadow:none;
  2946. font-size:12px;
  2947. color:#606266;
  2948. }
  2949. #u3788.disabled {
  2950. }
  2951. #u3788_div.hint.disabled {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:0px;
  2956. width:266px;
  2957. height:30px;
  2958. background:inherit;
  2959. background-color:rgba(240, 240, 240, 1);
  2960. border:none;
  2961. border-radius:0px;
  2962. -moz-box-shadow:none;
  2963. -webkit-box-shadow:none;
  2964. box-shadow:none;
  2965. font-size:12px;
  2966. color:#606266;
  2967. }
  2968. #u3788.hint.disabled {
  2969. }
  2970. #u3789_div {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:0px;
  2974. top:0px;
  2975. width:70px;
  2976. height:16px;
  2977. background:inherit;
  2978. background-color:rgba(255, 255, 255, 0);
  2979. border:none;
  2980. border-radius:0px;
  2981. -moz-box-shadow:none;
  2982. -webkit-box-shadow:none;
  2983. box-shadow:none;
  2984. }
  2985. #u3789 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:293px;
  2989. top:178px;
  2990. width:70px;
  2991. height:16px;
  2992. display:flex;
  2993. }
  2994. #u3789 .text {
  2995. position:absolute;
  2996. align-self:flex-start;
  2997. padding:0px 0px 0px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u3789_text {
  3002. border-width:0px;
  3003. white-space:nowrap;
  3004. text-transform:none;
  3005. }
  3006. #u3790_div {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:66px;
  3012. height:16px;
  3013. background:inherit;
  3014. background-color:rgba(255, 255, 255, 0);
  3015. border:none;
  3016. border-radius:0px;
  3017. -moz-box-shadow:none;
  3018. -webkit-box-shadow:none;
  3019. box-shadow:none;
  3020. }
  3021. #u3790 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:293px;
  3025. top:349px;
  3026. width:66px;
  3027. height:16px;
  3028. display:flex;
  3029. }
  3030. #u3790 .text {
  3031. position:absolute;
  3032. align-self:flex-start;
  3033. padding:0px 0px 0px 0px;
  3034. box-sizing:border-box;
  3035. width:100%;
  3036. }
  3037. #u3790_text {
  3038. border-width:0px;
  3039. white-space:nowrap;
  3040. text-transform:none;
  3041. }
  3042. #u3791_div {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:66px;
  3048. height:16px;
  3049. background:inherit;
  3050. background-color:rgba(255, 255, 255, 0);
  3051. border:none;
  3052. border-radius:0px;
  3053. -moz-box-shadow:none;
  3054. -webkit-box-shadow:none;
  3055. box-shadow:none;
  3056. }
  3057. #u3791 {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:293px;
  3061. top:224px;
  3062. width:66px;
  3063. height:16px;
  3064. display:flex;
  3065. }
  3066. #u3791 .text {
  3067. position:absolute;
  3068. align-self:flex-start;
  3069. padding:0px 0px 0px 0px;
  3070. box-sizing:border-box;
  3071. width:100%;
  3072. }
  3073. #u3791_text {
  3074. border-width:0px;
  3075. white-space:nowrap;
  3076. text-transform:none;
  3077. }
  3078. #u3792_div {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:0px;
  3082. top:0px;
  3083. width:95px;
  3084. height:75px;
  3085. background:inherit;
  3086. background-color:rgba(230, 230, 230, 1);
  3087. border:none;
  3088. border-radius:0px;
  3089. -moz-box-shadow:none;
  3090. -webkit-box-shadow:none;
  3091. box-shadow:none;
  3092. font-size:22px;
  3093. }
  3094. #u3792 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:377px;
  3098. top:216px;
  3099. width:95px;
  3100. height:75px;
  3101. display:flex;
  3102. font-size:22px;
  3103. }
  3104. #u3792 .text {
  3105. position:absolute;
  3106. align-self:center;
  3107. padding:2px 2px 2px 2px;
  3108. box-sizing:border-box;
  3109. width:100%;
  3110. }
  3111. #u3792_text {
  3112. border-width:0px;
  3113. word-wrap:break-word;
  3114. text-transform:none;
  3115. }
  3116. #u3793_div {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:88px;
  3122. height:32px;
  3123. background:inherit;
  3124. background-color:rgba(40, 54, 254, 1);
  3125. border:none;
  3126. border-radius:4px;
  3127. -moz-box-shadow:none;
  3128. -webkit-box-shadow:none;
  3129. box-shadow:none;
  3130. font-family:"Microsoft Tai Le", sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:14px;
  3134. color:#FFFFFF;
  3135. line-height:22px;
  3136. }
  3137. #u3793 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:472px;
  3141. top:653px;
  3142. width:88px;
  3143. height:32px;
  3144. display:flex;
  3145. font-family:"Microsoft Tai Le", sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:14px;
  3149. color:#FFFFFF;
  3150. line-height:22px;
  3151. }
  3152. #u3793 .text {
  3153. position:absolute;
  3154. align-self:center;
  3155. padding:0px 16px 0px 16px;
  3156. box-sizing:border-box;
  3157. width:100%;
  3158. }
  3159. #u3793_text {
  3160. border-width:0px;
  3161. word-wrap:break-word;
  3162. text-transform:none;
  3163. }
  3164. #u3794_div {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:80px;
  3170. height:32px;
  3171. background:inherit;
  3172. background-color:rgba(255, 255, 255, 1);
  3173. box-sizing:border-box;
  3174. border-width:1px;
  3175. border-style:solid;
  3176. border-color:rgba(220, 223, 230, 1);
  3177. border-radius:4px;
  3178. -moz-box-shadow:none;
  3179. -webkit-box-shadow:none;
  3180. box-shadow:none;
  3181. font-size:12px;
  3182. color:#606266;
  3183. }
  3184. #u3794 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:380px;
  3188. top:653px;
  3189. width:80px;
  3190. height:32px;
  3191. display:flex;
  3192. font-size:12px;
  3193. color:#606266;
  3194. }
  3195. #u3794 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 2px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u3794_div.mouseOver {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:80px;
  3208. height:32px;
  3209. background:inherit;
  3210. background-color:rgba(236, 245, 255, 1);
  3211. box-sizing:border-box;
  3212. border-width:1px;
  3213. border-style:solid;
  3214. border-color:rgba(198, 226, 255, 1);
  3215. border-radius:4px;
  3216. -moz-box-shadow:none;
  3217. -webkit-box-shadow:none;
  3218. box-shadow:none;
  3219. font-size:12px;
  3220. color:#606266;
  3221. }
  3222. #u3794.mouseOver {
  3223. }
  3224. #u3794_div.mouseDown {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:80px;
  3230. height:32px;
  3231. background:inherit;
  3232. background-color:rgba(236, 245, 255, 1);
  3233. box-sizing:border-box;
  3234. border-width:1px;
  3235. border-style:solid;
  3236. border-color:rgba(58, 142, 230, 1);
  3237. border-radius:4px;
  3238. -moz-box-shadow:none;
  3239. -webkit-box-shadow:none;
  3240. box-shadow:none;
  3241. font-size:12px;
  3242. color:#606266;
  3243. }
  3244. #u3794.mouseDown {
  3245. }
  3246. #u3794_div.disabled {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:80px;
  3252. height:32px;
  3253. background:inherit;
  3254. background-color:rgba(255, 255, 255, 1);
  3255. box-sizing:border-box;
  3256. border-width:1px;
  3257. border-style:solid;
  3258. border-color:rgba(235, 238, 245, 1);
  3259. border-radius:4px;
  3260. -moz-box-shadow:none;
  3261. -webkit-box-shadow:none;
  3262. box-shadow:none;
  3263. font-size:12px;
  3264. color:#606266;
  3265. }
  3266. #u3794.disabled {
  3267. }
  3268. #u3794_div.mouseOver.mouseDown {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:80px;
  3274. height:32px;
  3275. background:inherit;
  3276. background-color:rgba(236, 245, 255, 1);
  3277. box-sizing:border-box;
  3278. border-width:1px;
  3279. border-style:solid;
  3280. border-color:rgba(58, 142, 230, 1);
  3281. border-radius:4px;
  3282. -moz-box-shadow:none;
  3283. -webkit-box-shadow:none;
  3284. box-shadow:none;
  3285. font-size:12px;
  3286. color:#606266;
  3287. }
  3288. #u3794.mouseOver.mouseDown {
  3289. }
  3290. #u3794_text {
  3291. border-width:0px;
  3292. word-wrap:break-word;
  3293. text-transform:none;
  3294. }
  3295. #u3795_div {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:468px;
  3301. height:16px;
  3302. background:inherit;
  3303. background-color:rgba(255, 255, 255, 0);
  3304. border:none;
  3305. border-radius:0px;
  3306. -moz-box-shadow:none;
  3307. -webkit-box-shadow:none;
  3308. box-shadow:none;
  3309. }
  3310. #u3795 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:377px;
  3314. top:308px;
  3315. width:468px;
  3316. height:16px;
  3317. display:flex;
  3318. }
  3319. #u3795 .text {
  3320. position:absolute;
  3321. align-self:flex-start;
  3322. padding:0px 0px 0px 0px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u3795_text {
  3327. border-width:0px;
  3328. white-space:nowrap;
  3329. text-transform:none;
  3330. }
  3331. #u3796_div {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:190px;
  3337. height:51px;
  3338. background:inherit;
  3339. background-color:rgba(255, 223, 37, 1);
  3340. border:none;
  3341. border-radius:0px;
  3342. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3343. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3344. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3345. }
  3346. #u3796 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:624px;
  3350. top:92px;
  3351. width:190px;
  3352. height:51px;
  3353. display:flex;
  3354. }
  3355. #u3796 .text {
  3356. position:absolute;
  3357. align-self:flex-start;
  3358. padding:10px 10px 10px 10px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u3796_text {
  3363. border-width:0px;
  3364. word-wrap:break-word;
  3365. text-transform:none;
  3366. }
  3367. #u3797_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:-3px;
  3371. top:-13px;
  3372. width:104px;
  3373. height:31px;
  3374. }
  3375. #u3797 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:532px;
  3379. top:133px;
  3380. width:88px;
  3381. height:5px;
  3382. display:flex;
  3383. -webkit-transform:rotate(-32.310685159379524deg);
  3384. -moz-transform:rotate(-32.310685159379524deg);
  3385. -ms-transform:rotate(-32.310685159379524deg);
  3386. transform:rotate(-32.310685159379524deg);
  3387. }
  3388. #u3797 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 2px 2px 2px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u3797_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u3798 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:0px;
  3407. height:0px;
  3408. }
  3409. #u3799_div {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:424px;
  3415. height:102px;
  3416. background:inherit;
  3417. background-color:rgba(255, 255, 255, 1);
  3418. box-sizing:border-box;
  3419. border-width:1px;
  3420. border-style:solid;
  3421. border-color:rgba(220, 223, 230, 1);
  3422. border-radius:4px;
  3423. -moz-box-shadow:none;
  3424. -webkit-box-shadow:none;
  3425. box-shadow:none;
  3426. }
  3427. #u3799 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:377px;
  3431. top:349px;
  3432. width:424px;
  3433. height:102px;
  3434. display:flex;
  3435. }
  3436. #u3799 .text {
  3437. position:absolute;
  3438. align-self:center;
  3439. padding:2px 2px 2px 2px;
  3440. box-sizing:border-box;
  3441. width:100%;
  3442. }
  3443. #u3799_div.mouseOver {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:424px;
  3449. height:102px;
  3450. background:inherit;
  3451. background-color:rgba(255, 255, 255, 1);
  3452. box-sizing:border-box;
  3453. border-width:1px;
  3454. border-style:solid;
  3455. border-color:rgba(192, 196, 204, 1);
  3456. border-radius:4px;
  3457. -moz-box-shadow:none;
  3458. -webkit-box-shadow:none;
  3459. box-shadow:none;
  3460. }
  3461. #u3799.mouseOver {
  3462. }
  3463. #u3799_div.selected {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:0px;
  3467. top:0px;
  3468. width:424px;
  3469. height:102px;
  3470. background:inherit;
  3471. background-color:rgba(255, 255, 255, 1);
  3472. box-sizing:border-box;
  3473. border-width:1px;
  3474. border-style:solid;
  3475. border-color:rgba(64, 158, 255, 1);
  3476. border-radius:4px;
  3477. -moz-box-shadow:none;
  3478. -webkit-box-shadow:none;
  3479. box-shadow:none;
  3480. }
  3481. #u3799.selected {
  3482. }
  3483. #u3799_div.mouseOver.selected {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:424px;
  3489. height:102px;
  3490. background:inherit;
  3491. background-color:rgba(255, 255, 255, 1);
  3492. box-sizing:border-box;
  3493. border-width:1px;
  3494. border-style:solid;
  3495. border-color:rgba(64, 158, 255, 1);
  3496. border-radius:4px;
  3497. -moz-box-shadow:none;
  3498. -webkit-box-shadow:none;
  3499. box-shadow:none;
  3500. }
  3501. #u3799.mouseOver.selected {
  3502. }
  3503. #u3799_text {
  3504. border-width:0px;
  3505. word-wrap:break-word;
  3506. text-transform:none;
  3507. visibility:hidden;
  3508. }
  3509. #u3800_input {
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:404px;
  3514. height:87px;
  3515. padding:2px 2px 2px 2px;
  3516. font-family:"Arial Normal", "Arial", sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:12px;
  3520. letter-spacing:normal;
  3521. color:#606266;
  3522. vertical-align:none;
  3523. text-align:left;
  3524. text-transform:none;
  3525. background-color:transparent;
  3526. border-color:transparent;
  3527. resize:none;
  3528. }
  3529. #u3800_input.hint {
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:404px;
  3534. height:87px;
  3535. padding:2px 2px 2px 2px;
  3536. font-family:"Arial Normal", "Arial", sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. font-size:12px;
  3540. letter-spacing:normal;
  3541. color:#C0C4CC;
  3542. vertical-align:none;
  3543. text-align:left;
  3544. text-transform:none;
  3545. background-color:transparent;
  3546. border-color:transparent;
  3547. resize:none;
  3548. }
  3549. #u3800_input.disabled {
  3550. position:absolute;
  3551. left:0px;
  3552. top:0px;
  3553. width:404px;
  3554. height:87px;
  3555. padding:2px 2px 2px 2px;
  3556. font-family:"Arial Normal", "Arial", sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:12px;
  3560. letter-spacing:normal;
  3561. color:#606266;
  3562. vertical-align:none;
  3563. text-align:left;
  3564. text-transform:none;
  3565. background-color:transparent;
  3566. border-color:transparent;
  3567. resize:none;
  3568. }
  3569. #u3800_input.hint.disabled {
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:404px;
  3574. height:87px;
  3575. padding:2px 2px 2px 2px;
  3576. font-family:"Arial Normal", "Arial", sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:12px;
  3580. letter-spacing:normal;
  3581. color:#C0C4CC;
  3582. vertical-align:none;
  3583. text-align:left;
  3584. text-transform:none;
  3585. background-color:transparent;
  3586. border-color:transparent;
  3587. resize:none;
  3588. }
  3589. #u3800_div {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:404px;
  3595. height:87px;
  3596. background:inherit;
  3597. background-color:rgba(255, 255, 255, 1);
  3598. border:none;
  3599. border-radius:0px;
  3600. -moz-box-shadow:none;
  3601. -webkit-box-shadow:none;
  3602. box-shadow:none;
  3603. font-size:12px;
  3604. color:#606266;
  3605. }
  3606. #u3800 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:387px;
  3610. top:356px;
  3611. width:404px;
  3612. height:87px;
  3613. display:flex;
  3614. font-size:12px;
  3615. color:#606266;
  3616. }
  3617. #u3800 .text {
  3618. position:absolute;
  3619. align-self:flex-start;
  3620. padding:2px 2px 2px 2px;
  3621. box-sizing:border-box;
  3622. width:100%;
  3623. }
  3624. #u3800_div.hint {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:404px;
  3630. height:87px;
  3631. background:inherit;
  3632. background-color:rgba(255, 255, 255, 1);
  3633. border:none;
  3634. border-radius:0px;
  3635. -moz-box-shadow:none;
  3636. -webkit-box-shadow:none;
  3637. box-shadow:none;
  3638. font-size:12px;
  3639. color:#606266;
  3640. }
  3641. #u3800.hint {
  3642. }
  3643. #u3800_div.disabled {
  3644. border-width:0px;
  3645. position:absolute;
  3646. left:0px;
  3647. top:0px;
  3648. width:404px;
  3649. height:87px;
  3650. background:inherit;
  3651. background-color:rgba(240, 240, 240, 1);
  3652. border:none;
  3653. border-radius:0px;
  3654. -moz-box-shadow:none;
  3655. -webkit-box-shadow:none;
  3656. box-shadow:none;
  3657. font-size:12px;
  3658. color:#606266;
  3659. }
  3660. #u3800.disabled {
  3661. }
  3662. #u3800_div.hint.disabled {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:404px;
  3668. height:87px;
  3669. background:inherit;
  3670. background-color:rgba(240, 240, 240, 1);
  3671. border:none;
  3672. border-radius:0px;
  3673. -moz-box-shadow:none;
  3674. -webkit-box-shadow:none;
  3675. box-shadow:none;
  3676. font-size:12px;
  3677. color:#606266;
  3678. }
  3679. #u3800.hint.disabled {
  3680. }
  3681. #u3801_div {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:25px;
  3687. height:15px;
  3688. background:inherit;
  3689. background-color:rgba(255, 255, 255, 0);
  3690. border:none;
  3691. border-radius:0px;
  3692. -moz-box-shadow:none;
  3693. -webkit-box-shadow:none;
  3694. box-shadow:none;
  3695. font-family:"Microsoft YaHei UI", sans-serif;
  3696. font-weight:400;
  3697. font-style:normal;
  3698. font-size:11px;
  3699. color:#909399;
  3700. }
  3701. #u3801 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:749px;
  3705. top:428px;
  3706. width:25px;
  3707. height:15px;
  3708. display:flex;
  3709. font-family:"Microsoft YaHei UI", sans-serif;
  3710. font-weight:400;
  3711. font-style:normal;
  3712. font-size:11px;
  3713. color:#909399;
  3714. }
  3715. #u3801 .text {
  3716. position:absolute;
  3717. align-self:flex-start;
  3718. padding:0px 0px 0px 0px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u3801_text {
  3723. border-width:0px;
  3724. white-space:nowrap;
  3725. text-transform:none;
  3726. }
  3727. #u3802_div {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:7px;
  3733. height:15px;
  3734. background:inherit;
  3735. background-color:rgba(255, 255, 255, 0);
  3736. border:none;
  3737. border-radius:0px;
  3738. -moz-box-shadow:none;
  3739. -webkit-box-shadow:none;
  3740. box-shadow:none;
  3741. font-family:"Microsoft YaHei UI", sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:11px;
  3745. color:#909399;
  3746. text-align:right;
  3747. }
  3748. #u3802 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:737px;
  3752. top:428px;
  3753. width:7px;
  3754. height:15px;
  3755. display:flex;
  3756. font-family:"Microsoft YaHei UI", sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:11px;
  3760. color:#909399;
  3761. text-align:right;
  3762. }
  3763. #u3802 .text {
  3764. position:absolute;
  3765. align-self:flex-start;
  3766. padding:0px 0px 0px 0px;
  3767. box-sizing:border-box;
  3768. width:100%;
  3769. }
  3770. #u3802_text {
  3771. border-width:0px;
  3772. white-space:nowrap;
  3773. text-transform:none;
  3774. }
  3775. #u3803_div {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:190px;
  3781. height:51px;
  3782. background:inherit;
  3783. background-color:rgba(255, 223, 37, 1);
  3784. border:none;
  3785. border-radius:0px;
  3786. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3787. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3788. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  3789. }
  3790. #u3803 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:864px;
  3794. top:356px;
  3795. width:190px;
  3796. height:51px;
  3797. display:flex;
  3798. }
  3799. #u3803 .text {
  3800. position:absolute;
  3801. align-self:flex-start;
  3802. padding:10px 10px 10px 10px;
  3803. box-sizing:border-box;
  3804. width:100%;
  3805. }
  3806. #u3803_text {
  3807. border-width:0px;
  3808. word-wrap:break-word;
  3809. text-transform:none;
  3810. }
  3811. #u3804_img {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:-3px;
  3815. top:-13px;
  3816. width:78px;
  3817. height:31px;
  3818. }
  3819. #u3804 {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:801px;
  3823. top:389px;
  3824. width:62px;
  3825. height:5px;
  3826. display:flex;
  3827. -webkit-transform:rotate(-15.675572211678439deg);
  3828. -moz-transform:rotate(-15.675572211678439deg);
  3829. -ms-transform:rotate(-15.675572211678439deg);
  3830. transform:rotate(-15.675572211678439deg);
  3831. }
  3832. #u3804 .text {
  3833. position:absolute;
  3834. align-self:center;
  3835. padding:2px 2px 2px 2px;
  3836. box-sizing:border-box;
  3837. width:100%;
  3838. }
  3839. #u3804_text {
  3840. border-width:0px;
  3841. word-wrap:break-word;
  3842. text-transform:none;
  3843. visibility:hidden;
  3844. }
  3845. #u3805_div {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:0px;
  3849. top:0px;
  3850. width:66px;
  3851. height:16px;
  3852. background:inherit;
  3853. background-color:rgba(255, 255, 255, 0);
  3854. border:none;
  3855. border-radius:0px;
  3856. -moz-box-shadow:none;
  3857. -webkit-box-shadow:none;
  3858. box-shadow:none;
  3859. }
  3860. #u3805 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:293px;
  3864. top:484px;
  3865. width:66px;
  3866. height:16px;
  3867. display:flex;
  3868. }
  3869. #u3805 .text {
  3870. position:absolute;
  3871. align-self:flex-start;
  3872. padding:0px 0px 0px 0px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u3805_text {
  3877. border-width:0px;
  3878. white-space:nowrap;
  3879. text-transform:none;
  3880. }
  3881. #u3806 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:0px;
  3885. top:0px;
  3886. width:0px;
  3887. height:0px;
  3888. }
  3889. #u3807_div {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:0px;
  3893. top:0px;
  3894. width:56px;
  3895. height:18px;
  3896. background:inherit;
  3897. background-color:rgba(255, 255, 255, 0);
  3898. border:none;
  3899. border-radius:0px;
  3900. -moz-box-shadow:none;
  3901. -webkit-box-shadow:none;
  3902. box-shadow:none;
  3903. font-family:"Microsoft YaHei UI", sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. color:#606266;
  3907. }
  3908. #u3807 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:615px;
  3912. top:482px;
  3913. width:56px;
  3914. height:18px;
  3915. display:flex;
  3916. font-family:"Microsoft YaHei UI", sans-serif;
  3917. font-weight:400;
  3918. font-style:normal;
  3919. color:#606266;
  3920. }
  3921. #u3807 .text {
  3922. position:absolute;
  3923. align-self:flex-start;
  3924. padding:0px 0px 0px 0px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u3807_div.selected {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:0px;
  3932. top:0px;
  3933. width:56px;
  3934. height:18px;
  3935. background:inherit;
  3936. background-color:rgba(255, 255, 255, 0);
  3937. border:none;
  3938. border-radius:0px;
  3939. -moz-box-shadow:none;
  3940. -webkit-box-shadow:none;
  3941. box-shadow:none;
  3942. font-family:"Microsoft YaHei UI", sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. color:#606266;
  3946. }
  3947. #u3807.selected {
  3948. }
  3949. #u3807_div.disabled {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:0px;
  3953. top:0px;
  3954. width:56px;
  3955. height:18px;
  3956. background:inherit;
  3957. background-color:rgba(255, 255, 255, 0);
  3958. border:none;
  3959. border-radius:0px;
  3960. -moz-box-shadow:none;
  3961. -webkit-box-shadow:none;
  3962. box-shadow:none;
  3963. font-family:"Microsoft YaHei UI", sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. color:#606266;
  3967. }
  3968. #u3807.disabled {
  3969. }
  3970. #u3807_div.selected.disabled {
  3971. border-width:0px;
  3972. position:absolute;
  3973. left:0px;
  3974. top:0px;
  3975. width:56px;
  3976. height:18px;
  3977. background:inherit;
  3978. background-color:rgba(255, 255, 255, 0);
  3979. border:none;
  3980. border-radius:0px;
  3981. -moz-box-shadow:none;
  3982. -webkit-box-shadow:none;
  3983. box-shadow:none;
  3984. font-family:"Microsoft YaHei UI", sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. color:#606266;
  3988. }
  3989. #u3807.selected.disabled {
  3990. }
  3991. #u3807_text {
  3992. border-width:0px;
  3993. white-space:nowrap;
  3994. text-transform:none;
  3995. }
  3996. #u3808_img {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:13px;
  4002. height:13px;
  4003. }
  4004. #u3808 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:596px;
  4008. top:485px;
  4009. width:13px;
  4010. height:13px;
  4011. display:flex;
  4012. }
  4013. #u3808 .text {
  4014. position:absolute;
  4015. align-self:center;
  4016. padding:2px 2px 2px 2px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u3808_text {
  4021. border-width:0px;
  4022. word-wrap:break-word;
  4023. text-transform:none;
  4024. visibility:hidden;
  4025. }
  4026. #u3809_div {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:291px;
  4032. height:100px;
  4033. background:inherit;
  4034. background-color:rgba(255, 223, 37, 1);
  4035. border:none;
  4036. border-radius:0px;
  4037. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4038. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4039. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4040. }
  4041. #u3809 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:405px;
  4045. top:784px;
  4046. width:291px;
  4047. height:100px;
  4048. display:flex;
  4049. }
  4050. #u3809 .text {
  4051. position:absolute;
  4052. align-self:flex-start;
  4053. padding:10px 10px 10px 10px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u3809_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. }
  4062. #u3810_img {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:-3px;
  4066. top:-13px;
  4067. width:103px;
  4068. height:31px;
  4069. }
  4070. #u3810 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:477px;
  4074. top:733px;
  4075. width:87px;
  4076. height:5px;
  4077. display:flex;
  4078. -webkit-transform:rotate(91.31378579571347deg);
  4079. -moz-transform:rotate(91.31378579571347deg);
  4080. -ms-transform:rotate(91.31378579571347deg);
  4081. transform:rotate(91.31378579571347deg);
  4082. }
  4083. #u3810 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 2px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u3810_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. visibility:hidden;
  4095. }
  4096. #u3811_div {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:94px;
  4102. height:16px;
  4103. background:inherit;
  4104. background-color:rgba(255, 255, 255, 0);
  4105. border:none;
  4106. border-radius:0px;
  4107. -moz-box-shadow:none;
  4108. -webkit-box-shadow:none;
  4109. box-shadow:none;
  4110. }
  4111. #u3811 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:293px;
  4115. top:537px;
  4116. width:94px;
  4117. height:16px;
  4118. display:flex;
  4119. }
  4120. #u3811 .text {
  4121. position:absolute;
  4122. align-self:flex-start;
  4123. padding:0px 0px 0px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u3811_text {
  4128. border-width:0px;
  4129. white-space:nowrap;
  4130. text-transform:none;
  4131. }
  4132. #u3812_div {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:80px;
  4138. height:32px;
  4139. background:inherit;
  4140. background-color:rgba(255, 255, 255, 1);
  4141. box-sizing:border-box;
  4142. border-width:1px;
  4143. border-style:solid;
  4144. border-color:rgba(220, 223, 230, 1);
  4145. border-radius:4px;
  4146. -moz-box-shadow:none;
  4147. -webkit-box-shadow:none;
  4148. box-shadow:none;
  4149. font-size:12px;
  4150. color:#606266;
  4151. }
  4152. #u3812 {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:396px;
  4156. top:529px;
  4157. width:80px;
  4158. height:32px;
  4159. display:flex;
  4160. font-size:12px;
  4161. color:#606266;
  4162. }
  4163. #u3812 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:2px 2px 2px 2px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u3812_div.mouseOver {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:80px;
  4176. height:32px;
  4177. background:inherit;
  4178. background-color:rgba(236, 245, 255, 1);
  4179. box-sizing:border-box;
  4180. border-width:1px;
  4181. border-style:solid;
  4182. border-color:rgba(198, 226, 255, 1);
  4183. border-radius:4px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. font-size:12px;
  4188. color:#606266;
  4189. }
  4190. #u3812.mouseOver {
  4191. }
  4192. #u3812_div.mouseDown {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:80px;
  4198. height:32px;
  4199. background:inherit;
  4200. background-color:rgba(236, 245, 255, 1);
  4201. box-sizing:border-box;
  4202. border-width:1px;
  4203. border-style:solid;
  4204. border-color:rgba(58, 142, 230, 1);
  4205. border-radius:4px;
  4206. -moz-box-shadow:none;
  4207. -webkit-box-shadow:none;
  4208. box-shadow:none;
  4209. font-size:12px;
  4210. color:#606266;
  4211. }
  4212. #u3812.mouseDown {
  4213. }
  4214. #u3812_div.disabled {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:80px;
  4220. height:32px;
  4221. background:inherit;
  4222. background-color:rgba(255, 255, 255, 1);
  4223. box-sizing:border-box;
  4224. border-width:1px;
  4225. border-style:solid;
  4226. border-color:rgba(235, 238, 245, 1);
  4227. border-radius:4px;
  4228. -moz-box-shadow:none;
  4229. -webkit-box-shadow:none;
  4230. box-shadow:none;
  4231. font-size:12px;
  4232. color:#606266;
  4233. }
  4234. #u3812.disabled {
  4235. }
  4236. #u3812_div.mouseOver.mouseDown {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:80px;
  4242. height:32px;
  4243. background:inherit;
  4244. background-color:rgba(236, 245, 255, 1);
  4245. box-sizing:border-box;
  4246. border-width:1px;
  4247. border-style:solid;
  4248. border-color:rgba(58, 142, 230, 1);
  4249. border-radius:4px;
  4250. -moz-box-shadow:none;
  4251. -webkit-box-shadow:none;
  4252. box-shadow:none;
  4253. font-size:12px;
  4254. color:#606266;
  4255. }
  4256. #u3812.mouseOver.mouseDown {
  4257. }
  4258. #u3812_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. }
  4263. #u3813_div {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:190px;
  4269. height:51px;
  4270. background:inherit;
  4271. background-color:rgba(255, 223, 37, 1);
  4272. border:none;
  4273. border-radius:0px;
  4274. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4275. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4276. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4277. }
  4278. #u3813 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:802px;
  4282. top:496px;
  4283. width:190px;
  4284. height:51px;
  4285. display:flex;
  4286. }
  4287. #u3813 .text {
  4288. position:absolute;
  4289. align-self:flex-start;
  4290. padding:10px 10px 10px 10px;
  4291. box-sizing:border-box;
  4292. width:100%;
  4293. }
  4294. #u3813_text {
  4295. border-width:0px;
  4296. word-wrap:break-word;
  4297. text-transform:none;
  4298. }
  4299. #u3814_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:-3px;
  4303. top:-13px;
  4304. width:89px;
  4305. height:31px;
  4306. }
  4307. #u3814 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:720px;
  4311. top:503px;
  4312. width:73px;
  4313. height:5px;
  4314. display:flex;
  4315. -webkit-transform:rotate(10.754327371052565deg);
  4316. -moz-transform:rotate(10.754327371052565deg);
  4317. -ms-transform:rotate(10.754327371052565deg);
  4318. transform:rotate(10.754327371052565deg);
  4319. }
  4320. #u3814 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 2px 2px 2px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u3814_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u3815_div {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:190px;
  4339. height:191px;
  4340. background:inherit;
  4341. background-color:rgba(255, 223, 37, 1);
  4342. border:none;
  4343. border-radius:0px;
  4344. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4345. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4346. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  4347. }
  4348. #u3815 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:802px;
  4352. top:561px;
  4353. width:190px;
  4354. height:191px;
  4355. display:flex;
  4356. }
  4357. #u3815 .text {
  4358. position:absolute;
  4359. align-self:flex-start;
  4360. padding:10px 10px 10px 10px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u3815_text {
  4365. border-width:0px;
  4366. word-wrap:break-word;
  4367. text-transform:none;
  4368. }
  4369. #u3816_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:-3px;
  4373. top:-13px;
  4374. width:284px;
  4375. height:31px;
  4376. }
  4377. #u3816 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:540px;
  4381. top:578px;
  4382. width:268px;
  4383. height:5px;
  4384. display:flex;
  4385. -webkit-transform:rotate(11.59057321427394deg);
  4386. -moz-transform:rotate(11.59057321427394deg);
  4387. -ms-transform:rotate(11.59057321427394deg);
  4388. transform:rotate(11.59057321427394deg);
  4389. }
  4390. #u3816 .text {
  4391. position:absolute;
  4392. align-self:center;
  4393. padding:2px 2px 2px 2px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u3816_text {
  4398. border-width:0px;
  4399. word-wrap:break-word;
  4400. text-transform:none;
  4401. visibility:hidden;
  4402. }
  4403. #u3817 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:0px;
  4409. height:0px;
  4410. }
  4411. #u3818_div {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:56px;
  4417. height:18px;
  4418. background:inherit;
  4419. background-color:rgba(255, 255, 255, 0);
  4420. border:none;
  4421. border-radius:0px;
  4422. -moz-box-shadow:none;
  4423. -webkit-box-shadow:none;
  4424. box-shadow:none;
  4425. font-family:"Microsoft YaHei UI", sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. color:#606266;
  4429. }
  4430. #u3818 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:513px;
  4434. top:484px;
  4435. width:56px;
  4436. height:18px;
  4437. display:flex;
  4438. font-family:"Microsoft YaHei UI", sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. color:#606266;
  4442. }
  4443. #u3818 .text {
  4444. position:absolute;
  4445. align-self:flex-start;
  4446. padding:0px 0px 0px 0px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u3818_div.selected {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:56px;
  4456. height:18px;
  4457. background:inherit;
  4458. background-color:rgba(255, 255, 255, 0);
  4459. border:none;
  4460. border-radius:0px;
  4461. -moz-box-shadow:none;
  4462. -webkit-box-shadow:none;
  4463. box-shadow:none;
  4464. font-family:"Microsoft YaHei UI", sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. color:#606266;
  4468. }
  4469. #u3818.selected {
  4470. }
  4471. #u3818_div.disabled {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:56px;
  4477. height:18px;
  4478. background:inherit;
  4479. background-color:rgba(255, 255, 255, 0);
  4480. border:none;
  4481. border-radius:0px;
  4482. -moz-box-shadow:none;
  4483. -webkit-box-shadow:none;
  4484. box-shadow:none;
  4485. font-family:"Microsoft YaHei UI", sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. color:#606266;
  4489. }
  4490. #u3818.disabled {
  4491. }
  4492. #u3818_div.selected.disabled {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:56px;
  4498. height:18px;
  4499. background:inherit;
  4500. background-color:rgba(255, 255, 255, 0);
  4501. border:none;
  4502. border-radius:0px;
  4503. -moz-box-shadow:none;
  4504. -webkit-box-shadow:none;
  4505. box-shadow:none;
  4506. font-family:"Microsoft YaHei UI", sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. color:#606266;
  4510. }
  4511. #u3818.selected.disabled {
  4512. }
  4513. #u3818_text {
  4514. border-width:0px;
  4515. white-space:nowrap;
  4516. text-transform:none;
  4517. }
  4518. #u3819_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:13px;
  4524. height:13px;
  4525. }
  4526. #u3819 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:494px;
  4530. top:487px;
  4531. width:13px;
  4532. height:13px;
  4533. display:flex;
  4534. }
  4535. #u3819 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 2px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u3819_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u3820 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:0px;
  4554. height:0px;
  4555. }
  4556. #u3821_div {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:256px;
  4562. height:54px;
  4563. background:inherit;
  4564. background-color:rgba(45, 183, 245, 0);
  4565. border:none;
  4566. border-radius:0px;
  4567. -moz-box-shadow:none;
  4568. -webkit-box-shadow:none;
  4569. box-shadow:none;
  4570. font-family:"Microsoft Tai Le", sans-serif;
  4571. font-weight:400;
  4572. font-style:normal;
  4573. font-size:14px;
  4574. color:rgba(0, 0, 0, 0.6470588235294118);
  4575. text-align:left;
  4576. line-height:22px;
  4577. }
  4578. #u3821 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:65px;
  4583. width:256px;
  4584. height:54px;
  4585. display:flex;
  4586. font-family:"Microsoft Tai Le", sans-serif;
  4587. font-weight:400;
  4588. font-style:normal;
  4589. font-size:14px;
  4590. color:rgba(0, 0, 0, 0.6470588235294118);
  4591. text-align:left;
  4592. line-height:22px;
  4593. }
  4594. #u3821 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:16px 2px 16px 50px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u3821_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. }
  4606. #u3822_img {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:14px;
  4612. height:14px;
  4613. }
  4614. #u3822 {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:24px;
  4618. top:85px;
  4619. width:14px;
  4620. height:14px;
  4621. display:flex;
  4622. }
  4623. #u3822 .text {
  4624. position:absolute;
  4625. align-self:center;
  4626. padding:2px 2px 2px 2px;
  4627. box-sizing:border-box;
  4628. width:100%;
  4629. }
  4630. #u3822_text {
  4631. border-width:0px;
  4632. word-wrap:break-word;
  4633. text-transform:none;
  4634. visibility:hidden;
  4635. }
  4636. #u3823_img {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:7px;
  4642. height:14px;
  4643. }
  4644. #u3823 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:231px;
  4648. top:85px;
  4649. width:7px;
  4650. height:14px;
  4651. display:flex;
  4652. font-family:"Anticon", sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:10px;
  4656. color:rgba(0, 0, 0, 0.6470588235294118);
  4657. }
  4658. #u3823 .text {
  4659. position:absolute;
  4660. align-self:center;
  4661. padding:0px 0px 0px 0px;
  4662. box-sizing:border-box;
  4663. width:100%;
  4664. }
  4665. #u3823_text {
  4666. border-width:0px;
  4667. white-space:nowrap;
  4668. text-transform:none;
  4669. }
  4670. #u3824 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:0px;
  4674. top:0px;
  4675. width:0px;
  4676. height:0px;
  4677. }
  4678. #u3825_div {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:0px;
  4682. top:0px;
  4683. width:256px;
  4684. height:54px;
  4685. background:inherit;
  4686. background-color:rgba(45, 183, 245, 0);
  4687. border:none;
  4688. border-radius:0px;
  4689. -moz-box-shadow:none;
  4690. -webkit-box-shadow:none;
  4691. box-shadow:none;
  4692. font-family:"Microsoft Tai Le", sans-serif;
  4693. font-weight:400;
  4694. font-style:normal;
  4695. font-size:14px;
  4696. color:rgba(0, 0, 0, 0.6470588235294118);
  4697. text-align:left;
  4698. line-height:22px;
  4699. }
  4700. #u3825 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:814px;
  4705. width:256px;
  4706. height:54px;
  4707. display:flex;
  4708. font-family:"Microsoft Tai Le", sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:14px;
  4712. color:rgba(0, 0, 0, 0.6470588235294118);
  4713. text-align:left;
  4714. line-height:22px;
  4715. }
  4716. #u3825 .text {
  4717. position:absolute;
  4718. align-self:center;
  4719. padding:16px 2px 16px 50px;
  4720. box-sizing:border-box;
  4721. width:100%;
  4722. }
  4723. #u3825_text {
  4724. border-width:0px;
  4725. word-wrap:break-word;
  4726. text-transform:none;
  4727. }
  4728. #u3826_img {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:0px;
  4732. top:0px;
  4733. width:14px;
  4734. height:14px;
  4735. }
  4736. #u3826 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:24px;
  4740. top:834px;
  4741. width:14px;
  4742. height:14px;
  4743. display:flex;
  4744. }
  4745. #u3826 .text {
  4746. position:absolute;
  4747. align-self:center;
  4748. padding:2px 2px 2px 2px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u3826_text {
  4753. border-width:0px;
  4754. word-wrap:break-word;
  4755. text-transform:none;
  4756. visibility:hidden;
  4757. }
  4758. #u3827_img {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:0px;
  4762. top:0px;
  4763. width:7px;
  4764. height:14px;
  4765. }
  4766. #u3827 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:231px;
  4770. top:834px;
  4771. width:7px;
  4772. height:14px;
  4773. display:flex;
  4774. font-family:"Anticon", sans-serif;
  4775. font-weight:400;
  4776. font-style:normal;
  4777. font-size:10px;
  4778. color:rgba(0, 0, 0, 0.6470588235294118);
  4779. }
  4780. #u3827 .text {
  4781. position:absolute;
  4782. align-self:center;
  4783. padding:0px 0px 0px 0px;
  4784. box-sizing:border-box;
  4785. width:100%;
  4786. }
  4787. #u3827_text {
  4788. border-width:0px;
  4789. white-space:nowrap;
  4790. text-transform:none;
  4791. }
  4792. #u3828 {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:0px;
  4798. height:0px;
  4799. }
  4800. #u3829_div {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:256px;
  4806. height:54px;
  4807. background:inherit;
  4808. background-color:rgba(45, 183, 245, 0);
  4809. border:none;
  4810. border-radius:0px;
  4811. -moz-box-shadow:none;
  4812. -webkit-box-shadow:none;
  4813. box-shadow:none;
  4814. font-family:"Microsoft Tai Le", sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:14px;
  4818. color:rgba(0, 0, 0, 0.6470588235294118);
  4819. text-align:left;
  4820. line-height:22px;
  4821. }
  4822. #u3829 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:868px;
  4827. width:256px;
  4828. height:54px;
  4829. display:flex;
  4830. font-family:"Microsoft Tai Le", sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:14px;
  4834. color:rgba(0, 0, 0, 0.6470588235294118);
  4835. text-align:left;
  4836. line-height:22px;
  4837. }
  4838. #u3829 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:16px 2px 16px 50px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u3829_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. }
  4850. #u3830_img {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:14px;
  4856. height:14px;
  4857. }
  4858. #u3830 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:24px;
  4862. top:888px;
  4863. width:14px;
  4864. height:14px;
  4865. display:flex;
  4866. }
  4867. #u3830 .text {
  4868. position:absolute;
  4869. align-self:center;
  4870. padding:2px 2px 2px 2px;
  4871. box-sizing:border-box;
  4872. width:100%;
  4873. }
  4874. #u3830_text {
  4875. border-width:0px;
  4876. word-wrap:break-word;
  4877. text-transform:none;
  4878. visibility:hidden;
  4879. }
  4880. #u3831_img {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:7px;
  4886. height:14px;
  4887. }
  4888. #u3831 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:231px;
  4892. top:888px;
  4893. width:7px;
  4894. height:14px;
  4895. display:flex;
  4896. font-family:"Anticon", sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:10px;
  4900. color:rgba(0, 0, 0, 0.6470588235294118);
  4901. }
  4902. #u3831 .text {
  4903. position:absolute;
  4904. align-self:center;
  4905. padding:0px 0px 0px 0px;
  4906. box-sizing:border-box;
  4907. width:100%;
  4908. }
  4909. #u3831_text {
  4910. border-width:0px;
  4911. white-space:nowrap;
  4912. text-transform:none;
  4913. }
  4914. #u3832_div {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:256px;
  4920. height:46px;
  4921. background:inherit;
  4922. background-color:rgba(230, 247, 255, 1);
  4923. box-sizing:border-box;
  4924. border-width:4px;
  4925. border-style:solid;
  4926. border-color:rgba(40, 54, 254, 1);
  4927. border-left:0px;
  4928. border-top:0px;
  4929. border-bottom:0px;
  4930. border-radius:0px;
  4931. border-top-right-radius:0px;
  4932. border-bottom-right-radius:0px;
  4933. -moz-box-shadow:none;
  4934. -webkit-box-shadow:none;
  4935. box-shadow:none;
  4936. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:14px;
  4940. color:#2836FE;
  4941. text-align:left;
  4942. line-height:22px;
  4943. }
  4944. #u3832 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:400px;
  4949. width:256px;
  4950. height:46px;
  4951. display:flex;
  4952. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:14px;
  4956. color:#2836FE;
  4957. text-align:left;
  4958. line-height:22px;
  4959. }
  4960. #u3832 .text {
  4961. position:absolute;
  4962. align-self:center;
  4963. padding:12px 0px 12px 74px;
  4964. box-sizing:border-box;
  4965. width:100%;
  4966. }
  4967. #u3832_text {
  4968. border-width:0px;
  4969. word-wrap:break-word;
  4970. text-transform:none;
  4971. }
  4972. #u3833 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:0px;
  4978. height:0px;
  4979. }
  4980. #u3834_div {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:256px;
  4986. height:46px;
  4987. background:inherit;
  4988. background-color:rgba(255, 255, 255, 0);
  4989. border:none;
  4990. border-radius:0px;
  4991. -moz-box-shadow:none;
  4992. -webkit-box-shadow:none;
  4993. box-shadow:none;
  4994. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4995. font-weight:400;
  4996. font-style:normal;
  4997. font-size:14px;
  4998. color:#2836FE;
  4999. text-align:left;
  5000. line-height:22px;
  5001. }
  5002. #u3834 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:354px;
  5007. width:256px;
  5008. height:46px;
  5009. display:flex;
  5010. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:14px;
  5014. color:#2836FE;
  5015. text-align:left;
  5016. line-height:22px;
  5017. }
  5018. #u3834 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:12px 0px 12px 50px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u3834_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. }
  5030. #u3835_img {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:0px;
  5034. top:0px;
  5035. width:7px;
  5036. height:14px;
  5037. }
  5038. #u3835 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:231px;
  5042. top:369px;
  5043. width:7px;
  5044. height:14px;
  5045. display:flex;
  5046. font-family:"Anticon", sans-serif;
  5047. font-weight:400;
  5048. font-style:normal;
  5049. font-size:10px;
  5050. color:rgba(0, 0, 0, 0.6470588235294118);
  5051. }
  5052. #u3835 .text {
  5053. position:absolute;
  5054. align-self:center;
  5055. padding:0px 0px 0px 0px;
  5056. box-sizing:border-box;
  5057. width:100%;
  5058. }
  5059. #u3835_text {
  5060. border-width:0px;
  5061. white-space:nowrap;
  5062. text-transform:none;
  5063. }
  5064. #u3836 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:0px;
  5070. height:0px;
  5071. }
  5072. #u3837_div {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:256px;
  5078. height:54px;
  5079. background:inherit;
  5080. background-color:rgba(45, 183, 245, 0);
  5081. border:none;
  5082. border-radius:0px;
  5083. -moz-box-shadow:none;
  5084. -webkit-box-shadow:none;
  5085. box-shadow:none;
  5086. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5087. font-weight:400;
  5088. font-style:normal;
  5089. font-size:14px;
  5090. color:rgba(0, 0, 0, 0.6470588235294118);
  5091. text-align:left;
  5092. line-height:22px;
  5093. }
  5094. #u3837 {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:116px;
  5099. width:256px;
  5100. height:54px;
  5101. display:flex;
  5102. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:14px;
  5106. color:rgba(0, 0, 0, 0.6470588235294118);
  5107. text-align:left;
  5108. line-height:22px;
  5109. }
  5110. #u3837 .text {
  5111. position:absolute;
  5112. align-self:center;
  5113. padding:16px 2px 16px 50px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u3837_text {
  5118. border-width:0px;
  5119. word-wrap:break-word;
  5120. text-transform:none;
  5121. }
  5122. #u3838_img {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:15px;
  5128. height:14px;
  5129. }
  5130. #u3838 {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:24px;
  5134. top:136px;
  5135. width:15px;
  5136. height:14px;
  5137. display:flex;
  5138. }
  5139. #u3838 .text {
  5140. position:absolute;
  5141. align-self:center;
  5142. padding:2px 2px 2px 2px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u3838_text {
  5147. border-width:0px;
  5148. word-wrap:break-word;
  5149. text-transform:none;
  5150. visibility:hidden;
  5151. }
  5152. #u3839_img {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:7px;
  5158. height:14px;
  5159. }
  5160. #u3839 {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:231px;
  5164. top:135px;
  5165. width:7px;
  5166. height:14px;
  5167. display:flex;
  5168. font-family:"Anticon", sans-serif;
  5169. font-weight:400;
  5170. font-style:normal;
  5171. font-size:10px;
  5172. color:rgba(0, 0, 0, 0.6470588235294118);
  5173. }
  5174. #u3839 .text {
  5175. position:absolute;
  5176. align-self:center;
  5177. padding:0px 0px 0px 0px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u3839_text {
  5182. border-width:0px;
  5183. white-space:nowrap;
  5184. text-transform:none;
  5185. }
  5186. #u3840 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:0px;
  5192. height:0px;
  5193. }
  5194. #u3841 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:0px;
  5199. width:0px;
  5200. height:0px;
  5201. }
  5202. #u3842_div {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:0px;
  5206. top:0px;
  5207. width:256px;
  5208. height:46px;
  5209. background:inherit;
  5210. background-color:rgba(255, 255, 255, 0);
  5211. border:none;
  5212. border-radius:0px;
  5213. -moz-box-shadow:none;
  5214. -webkit-box-shadow:none;
  5215. box-shadow:none;
  5216. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:14px;
  5220. color:rgba(0, 0, 0, 0.6470588235294118);
  5221. text-align:left;
  5222. line-height:22px;
  5223. }
  5224. #u3842 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:0px;
  5228. top:170px;
  5229. width:256px;
  5230. height:46px;
  5231. display:flex;
  5232. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:14px;
  5236. color:rgba(0, 0, 0, 0.6470588235294118);
  5237. text-align:left;
  5238. line-height:22px;
  5239. }
  5240. #u3842 .text {
  5241. position:absolute;
  5242. align-self:center;
  5243. padding:12px 0px 12px 50px;
  5244. box-sizing:border-box;
  5245. width:100%;
  5246. }
  5247. #u3842_text {
  5248. border-width:0px;
  5249. word-wrap:break-word;
  5250. text-transform:none;
  5251. }
  5252. #u3843_div {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:0px;
  5256. top:0px;
  5257. width:256px;
  5258. height:46px;
  5259. background:inherit;
  5260. background-color:rgba(255, 255, 255, 0);
  5261. border:none;
  5262. border-radius:0px;
  5263. -moz-box-shadow:none;
  5264. -webkit-box-shadow:none;
  5265. box-shadow:none;
  5266. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5267. font-weight:400;
  5268. font-style:normal;
  5269. font-size:14px;
  5270. color:rgba(0, 0, 0, 0.6470588235294118);
  5271. text-align:left;
  5272. line-height:22px;
  5273. }
  5274. #u3843 {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:446px;
  5279. width:256px;
  5280. height:46px;
  5281. display:flex;
  5282. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5283. font-weight:400;
  5284. font-style:normal;
  5285. font-size:14px;
  5286. color:rgba(0, 0, 0, 0.6470588235294118);
  5287. text-align:left;
  5288. line-height:22px;
  5289. }
  5290. #u3843 .text {
  5291. position:absolute;
  5292. align-self:center;
  5293. padding:12px 0px 12px 74px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u3843_text {
  5298. border-width:0px;
  5299. word-wrap:break-word;
  5300. text-transform:none;
  5301. }
  5302. #u3844 {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:0px;
  5308. height:0px;
  5309. }
  5310. #u3845_div {
  5311. border-width:0px;
  5312. position:absolute;
  5313. left:0px;
  5314. top:0px;
  5315. width:256px;
  5316. height:54px;
  5317. background:inherit;
  5318. background-color:rgba(45, 183, 245, 0);
  5319. border:none;
  5320. border-radius:0px;
  5321. -moz-box-shadow:none;
  5322. -webkit-box-shadow:none;
  5323. box-shadow:none;
  5324. font-family:"Microsoft Tai Le", sans-serif;
  5325. font-weight:400;
  5326. font-style:normal;
  5327. font-size:14px;
  5328. color:rgba(0, 0, 0, 0.6470588235294118);
  5329. text-align:left;
  5330. line-height:22px;
  5331. }
  5332. #u3845 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:922px;
  5337. width:256px;
  5338. height:54px;
  5339. display:flex;
  5340. font-family:"Microsoft Tai Le", sans-serif;
  5341. font-weight:400;
  5342. font-style:normal;
  5343. font-size:14px;
  5344. color:rgba(0, 0, 0, 0.6470588235294118);
  5345. text-align:left;
  5346. line-height:22px;
  5347. }
  5348. #u3845 .text {
  5349. position:absolute;
  5350. align-self:center;
  5351. padding:16px 2px 16px 50px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u3845_text {
  5356. border-width:0px;
  5357. word-wrap:break-word;
  5358. text-transform:none;
  5359. }
  5360. #u3846_img {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:14px;
  5366. height:14px;
  5367. }
  5368. #u3846 {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:24px;
  5372. top:942px;
  5373. width:14px;
  5374. height:14px;
  5375. display:flex;
  5376. }
  5377. #u3846 .text {
  5378. position:absolute;
  5379. align-self:center;
  5380. padding:2px 2px 2px 2px;
  5381. box-sizing:border-box;
  5382. width:100%;
  5383. }
  5384. #u3846_text {
  5385. border-width:0px;
  5386. word-wrap:break-word;
  5387. text-transform:none;
  5388. visibility:hidden;
  5389. }
  5390. #u3847_img {
  5391. border-width:0px;
  5392. position:absolute;
  5393. left:0px;
  5394. top:0px;
  5395. width:7px;
  5396. height:14px;
  5397. }
  5398. #u3847 {
  5399. border-width:0px;
  5400. position:absolute;
  5401. left:231px;
  5402. top:942px;
  5403. width:7px;
  5404. height:14px;
  5405. display:flex;
  5406. font-family:"Anticon", sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:10px;
  5410. color:rgba(0, 0, 0, 0.6470588235294118);
  5411. }
  5412. #u3847 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:0px 0px 0px 0px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u3847_text {
  5420. border-width:0px;
  5421. white-space:nowrap;
  5422. text-transform:none;
  5423. }
  5424. #u3848 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:0px;
  5430. height:0px;
  5431. }
  5432. #u3849_div {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:256px;
  5438. height:54px;
  5439. background:inherit;
  5440. background-color:rgba(45, 183, 245, 0);
  5441. border:none;
  5442. border-radius:0px;
  5443. -moz-box-shadow:none;
  5444. -webkit-box-shadow:none;
  5445. box-shadow:none;
  5446. font-family:"Microsoft Tai Le", sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:14px;
  5450. color:rgba(0, 0, 0, 0.6470588235294118);
  5451. text-align:left;
  5452. line-height:22px;
  5453. }
  5454. #u3849 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:976px;
  5459. width:256px;
  5460. height:54px;
  5461. display:flex;
  5462. font-family:"Microsoft Tai Le", sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:14px;
  5466. color:rgba(0, 0, 0, 0.6470588235294118);
  5467. text-align:left;
  5468. line-height:22px;
  5469. }
  5470. #u3849 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:16px 2px 16px 50px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u3849_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. }
  5482. #u3850_img {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:14px;
  5488. height:14px;
  5489. }
  5490. #u3850 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:24px;
  5494. top:996px;
  5495. width:14px;
  5496. height:14px;
  5497. display:flex;
  5498. }
  5499. #u3850 .text {
  5500. position:absolute;
  5501. align-self:center;
  5502. padding:2px 2px 2px 2px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u3850_text {
  5507. border-width:0px;
  5508. word-wrap:break-word;
  5509. text-transform:none;
  5510. visibility:hidden;
  5511. }
  5512. #u3851_img {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:7px;
  5518. height:14px;
  5519. }
  5520. #u3851 {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:231px;
  5524. top:996px;
  5525. width:7px;
  5526. height:14px;
  5527. display:flex;
  5528. font-family:"Anticon", sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. font-size:10px;
  5532. color:rgba(0, 0, 0, 0.6470588235294118);
  5533. }
  5534. #u3851 .text {
  5535. position:absolute;
  5536. align-self:center;
  5537. padding:0px 0px 0px 0px;
  5538. box-sizing:border-box;
  5539. width:100%;
  5540. }
  5541. #u3851_text {
  5542. border-width:0px;
  5543. white-space:nowrap;
  5544. text-transform:none;
  5545. }
  5546. #u3852 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:0px;
  5552. height:0px;
  5553. }
  5554. #u3853_div {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:256px;
  5560. height:46px;
  5561. background:inherit;
  5562. background-color:rgba(255, 255, 255, 0);
  5563. border:none;
  5564. border-radius:0px;
  5565. -moz-box-shadow:none;
  5566. -webkit-box-shadow:none;
  5567. box-shadow:none;
  5568. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:14px;
  5572. color:rgba(0, 0, 0, 0.6470588235294118);
  5573. text-align:left;
  5574. line-height:22px;
  5575. }
  5576. #u3853 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:216px;
  5581. width:256px;
  5582. height:46px;
  5583. display:flex;
  5584. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:14px;
  5588. color:rgba(0, 0, 0, 0.6470588235294118);
  5589. text-align:left;
  5590. line-height:22px;
  5591. }
  5592. #u3853 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:12px 0px 12px 50px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u3853_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. }
  5604. #u3854 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:0px;
  5608. top:0px;
  5609. width:0px;
  5610. height:0px;
  5611. }
  5612. #u3855_div {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:256px;
  5618. height:46px;
  5619. background:inherit;
  5620. background-color:rgba(255, 255, 255, 0);
  5621. border:none;
  5622. border-radius:0px;
  5623. -moz-box-shadow:none;
  5624. -webkit-box-shadow:none;
  5625. box-shadow:none;
  5626. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. font-size:14px;
  5630. color:rgba(0, 0, 0, 0.6470588235294118);
  5631. text-align:left;
  5632. line-height:22px;
  5633. }
  5634. #u3855 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:262px;
  5639. width:256px;
  5640. height:46px;
  5641. display:flex;
  5642. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:14px;
  5646. color:rgba(0, 0, 0, 0.6470588235294118);
  5647. text-align:left;
  5648. line-height:22px;
  5649. }
  5650. #u3855 .text {
  5651. position:absolute;
  5652. align-self:center;
  5653. padding:12px 0px 12px 50px;
  5654. box-sizing:border-box;
  5655. width:100%;
  5656. }
  5657. #u3855_text {
  5658. border-width:0px;
  5659. word-wrap:break-word;
  5660. text-transform:none;
  5661. }
  5662. #u3856_div {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:256px;
  5668. height:46px;
  5669. background:inherit;
  5670. background-color:rgba(255, 255, 255, 0);
  5671. border:none;
  5672. border-radius:0px;
  5673. -moz-box-shadow:none;
  5674. -webkit-box-shadow:none;
  5675. box-shadow:none;
  5676. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5677. font-weight:400;
  5678. font-style:normal;
  5679. font-size:14px;
  5680. color:rgba(0, 0, 0, 0.6470588235294118);
  5681. text-align:left;
  5682. line-height:22px;
  5683. }
  5684. #u3856 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:0px;
  5688. top:308px;
  5689. width:256px;
  5690. height:46px;
  5691. display:flex;
  5692. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:14px;
  5696. color:rgba(0, 0, 0, 0.6470588235294118);
  5697. text-align:left;
  5698. line-height:22px;
  5699. }
  5700. #u3856 .text {
  5701. position:absolute;
  5702. align-self:center;
  5703. padding:12px 0px 12px 50px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u3856_text {
  5708. border-width:0px;
  5709. word-wrap:break-word;
  5710. text-transform:none;
  5711. }
  5712. #u3857_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:256px;
  5718. height:46px;
  5719. background:inherit;
  5720. background-color:rgba(255, 255, 255, 0);
  5721. border:none;
  5722. border-radius:0px;
  5723. -moz-box-shadow:none;
  5724. -webkit-box-shadow:none;
  5725. box-shadow:none;
  5726. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:14px;
  5730. color:rgba(0, 0, 0, 0.6470588235294118);
  5731. text-align:left;
  5732. line-height:22px;
  5733. }
  5734. #u3857 {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:538px;
  5739. width:256px;
  5740. height:46px;
  5741. display:flex;
  5742. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5743. font-weight:400;
  5744. font-style:normal;
  5745. font-size:14px;
  5746. color:rgba(0, 0, 0, 0.6470588235294118);
  5747. text-align:left;
  5748. line-height:22px;
  5749. }
  5750. #u3857 .text {
  5751. position:absolute;
  5752. align-self:center;
  5753. padding:12px 0px 12px 50px;
  5754. box-sizing:border-box;
  5755. width:100%;
  5756. }
  5757. #u3857_text {
  5758. border-width:0px;
  5759. word-wrap:break-word;
  5760. text-transform:none;
  5761. }
  5762. #u3858_div {
  5763. border-width:0px;
  5764. position:absolute;
  5765. left:0px;
  5766. top:0px;
  5767. width:256px;
  5768. height:46px;
  5769. background:inherit;
  5770. background-color:rgba(255, 255, 255, 0);
  5771. border:none;
  5772. border-radius:0px;
  5773. -moz-box-shadow:none;
  5774. -webkit-box-shadow:none;
  5775. box-shadow:none;
  5776. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:14px;
  5780. color:rgba(0, 0, 0, 0.6470588235294118);
  5781. text-align:left;
  5782. line-height:22px;
  5783. }
  5784. #u3858 {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:0px;
  5788. top:584px;
  5789. width:256px;
  5790. height:46px;
  5791. display:flex;
  5792. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:14px;
  5796. color:rgba(0, 0, 0, 0.6470588235294118);
  5797. text-align:left;
  5798. line-height:22px;
  5799. }
  5800. #u3858 .text {
  5801. position:absolute;
  5802. align-self:center;
  5803. padding:12px 0px 12px 50px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u3858_text {
  5808. border-width:0px;
  5809. word-wrap:break-word;
  5810. text-transform:none;
  5811. }
  5812. #u3859_div {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:256px;
  5818. height:46px;
  5819. background:inherit;
  5820. background-color:rgba(255, 255, 255, 0);
  5821. border:none;
  5822. border-radius:0px;
  5823. -moz-box-shadow:none;
  5824. -webkit-box-shadow:none;
  5825. box-shadow:none;
  5826. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5827. font-weight:400;
  5828. font-style:normal;
  5829. font-size:14px;
  5830. color:rgba(0, 0, 0, 0.6470588235294118);
  5831. text-align:left;
  5832. line-height:22px;
  5833. }
  5834. #u3859 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:630px;
  5839. width:256px;
  5840. height:46px;
  5841. display:flex;
  5842. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:14px;
  5846. color:rgba(0, 0, 0, 0.6470588235294118);
  5847. text-align:left;
  5848. line-height:22px;
  5849. }
  5850. #u3859 .text {
  5851. position:absolute;
  5852. align-self:center;
  5853. padding:12px 0px 12px 50px;
  5854. box-sizing:border-box;
  5855. width:100%;
  5856. }
  5857. #u3859_text {
  5858. border-width:0px;
  5859. word-wrap:break-word;
  5860. text-transform:none;
  5861. }
  5862. #u3860_div {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:256px;
  5868. height:46px;
  5869. background:inherit;
  5870. background-color:rgba(255, 255, 255, 0);
  5871. border:none;
  5872. border-radius:0px;
  5873. -moz-box-shadow:none;
  5874. -webkit-box-shadow:none;
  5875. box-shadow:none;
  5876. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:14px;
  5880. color:rgba(0, 0, 0, 0.6470588235294118);
  5881. text-align:left;
  5882. line-height:22px;
  5883. }
  5884. #u3860 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:0px;
  5888. top:676px;
  5889. width:256px;
  5890. height:46px;
  5891. display:flex;
  5892. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:14px;
  5896. color:rgba(0, 0, 0, 0.6470588235294118);
  5897. text-align:left;
  5898. line-height:22px;
  5899. }
  5900. #u3860 .text {
  5901. position:absolute;
  5902. align-self:center;
  5903. padding:12px 0px 12px 50px;
  5904. box-sizing:border-box;
  5905. width:100%;
  5906. }
  5907. #u3860_text {
  5908. border-width:0px;
  5909. word-wrap:break-word;
  5910. text-transform:none;
  5911. }
  5912. #u3861_div {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:0px;
  5916. top:0px;
  5917. width:256px;
  5918. height:46px;
  5919. background:inherit;
  5920. background-color:rgba(255, 255, 255, 0);
  5921. border:none;
  5922. border-radius:0px;
  5923. -moz-box-shadow:none;
  5924. -webkit-box-shadow:none;
  5925. box-shadow:none;
  5926. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5927. font-weight:400;
  5928. font-style:normal;
  5929. font-size:14px;
  5930. color:rgba(0, 0, 0, 0.6470588235294118);
  5931. text-align:left;
  5932. line-height:22px;
  5933. }
  5934. #u3861 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:768px;
  5939. width:256px;
  5940. height:46px;
  5941. display:flex;
  5942. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. color:rgba(0, 0, 0, 0.6470588235294118);
  5947. text-align:left;
  5948. line-height:22px;
  5949. }
  5950. #u3861 .text {
  5951. position:absolute;
  5952. align-self:center;
  5953. padding:12px 0px 12px 50px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u3861_text {
  5958. border-width:0px;
  5959. word-wrap:break-word;
  5960. text-transform:none;
  5961. }
  5962. #u3862_div {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:256px;
  5968. height:46px;
  5969. background:inherit;
  5970. background-color:rgba(255, 255, 255, 0);
  5971. border:none;
  5972. border-radius:0px;
  5973. -moz-box-shadow:none;
  5974. -webkit-box-shadow:none;
  5975. box-shadow:none;
  5976. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:14px;
  5980. color:rgba(0, 0, 0, 0.6470588235294118);
  5981. text-align:left;
  5982. line-height:22px;
  5983. }
  5984. #u3862 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:492px;
  5989. width:256px;
  5990. height:46px;
  5991. display:flex;
  5992. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5993. font-weight:400;
  5994. font-style:normal;
  5995. font-size:14px;
  5996. color:rgba(0, 0, 0, 0.6470588235294118);
  5997. text-align:left;
  5998. line-height:22px;
  5999. }
  6000. #u3862 .text {
  6001. position:absolute;
  6002. align-self:center;
  6003. padding:12px 0px 12px 74px;
  6004. box-sizing:border-box;
  6005. width:100%;
  6006. }
  6007. #u3862_text {
  6008. border-width:0px;
  6009. word-wrap:break-word;
  6010. text-transform:none;
  6011. }
  6012. #u3863_div {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:0px;
  6017. width:256px;
  6018. height:46px;
  6019. background:inherit;
  6020. background-color:rgba(255, 255, 255, 0);
  6021. border:none;
  6022. border-radius:0px;
  6023. -moz-box-shadow:none;
  6024. -webkit-box-shadow:none;
  6025. box-shadow:none;
  6026. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6027. font-weight:400;
  6028. font-style:normal;
  6029. font-size:14px;
  6030. color:rgba(0, 0, 0, 0.6470588235294118);
  6031. text-align:left;
  6032. line-height:22px;
  6033. }
  6034. #u3863 {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:0px;
  6038. top:722px;
  6039. width:256px;
  6040. height:46px;
  6041. display:flex;
  6042. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6043. font-weight:400;
  6044. font-style:normal;
  6045. font-size:14px;
  6046. color:rgba(0, 0, 0, 0.6470588235294118);
  6047. text-align:left;
  6048. line-height:22px;
  6049. }
  6050. #u3863 .text {
  6051. position:absolute;
  6052. align-self:center;
  6053. padding:12px 0px 12px 50px;
  6054. box-sizing:border-box;
  6055. width:100%;
  6056. }
  6057. #u3863_text {
  6058. border-width:0px;
  6059. word-wrap:break-word;
  6060. text-transform:none;
  6061. }
  6062. #u3864 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:0px;
  6068. height:0px;
  6069. }
  6070. #u3865_div {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:0px;
  6074. top:0px;
  6075. width:28px;
  6076. height:18px;
  6077. background:inherit;
  6078. background-color:rgba(255, 255, 255, 0);
  6079. border:none;
  6080. border-radius:0px;
  6081. -moz-box-shadow:none;
  6082. -webkit-box-shadow:none;
  6083. box-shadow:none;
  6084. font-family:"Microsoft YaHei UI", sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. color:#606266;
  6088. }
  6089. #u3865 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:708px;
  6093. top:482px;
  6094. width:28px;
  6095. height:18px;
  6096. display:flex;
  6097. font-family:"Microsoft YaHei UI", sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. color:#606266;
  6101. }
  6102. #u3865 .text {
  6103. position:absolute;
  6104. align-self:flex-start;
  6105. padding:0px 0px 0px 0px;
  6106. box-sizing:border-box;
  6107. width:100%;
  6108. }
  6109. #u3865_div.selected {
  6110. border-width:0px;
  6111. position:absolute;
  6112. left:0px;
  6113. top:0px;
  6114. width:28px;
  6115. height:18px;
  6116. background:inherit;
  6117. background-color:rgba(255, 255, 255, 0);
  6118. border:none;
  6119. border-radius:0px;
  6120. -moz-box-shadow:none;
  6121. -webkit-box-shadow:none;
  6122. box-shadow:none;
  6123. font-family:"Microsoft YaHei UI", sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. color:#606266;
  6127. }
  6128. #u3865.selected {
  6129. }
  6130. #u3865_div.disabled {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:28px;
  6136. height:18px;
  6137. background:inherit;
  6138. background-color:rgba(255, 255, 255, 0);
  6139. border:none;
  6140. border-radius:0px;
  6141. -moz-box-shadow:none;
  6142. -webkit-box-shadow:none;
  6143. box-shadow:none;
  6144. font-family:"Microsoft YaHei UI", sans-serif;
  6145. font-weight:400;
  6146. font-style:normal;
  6147. color:#606266;
  6148. }
  6149. #u3865.disabled {
  6150. }
  6151. #u3865_div.selected.disabled {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:28px;
  6157. height:18px;
  6158. background:inherit;
  6159. background-color:rgba(255, 255, 255, 0);
  6160. border:none;
  6161. border-radius:0px;
  6162. -moz-box-shadow:none;
  6163. -webkit-box-shadow:none;
  6164. box-shadow:none;
  6165. font-family:"Microsoft YaHei UI", sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. color:#606266;
  6169. }
  6170. #u3865.selected.disabled {
  6171. }
  6172. #u3865_text {
  6173. border-width:0px;
  6174. white-space:nowrap;
  6175. text-transform:none;
  6176. }
  6177. #u3866_img {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:13px;
  6183. height:13px;
  6184. }
  6185. #u3866 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:689px;
  6189. top:485px;
  6190. width:13px;
  6191. height:13px;
  6192. display:flex;
  6193. }
  6194. #u3866 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 2px 2px 2px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u3866_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. visibility:hidden;
  6206. }
  6207. #u3867 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:0px;
  6213. height:0px;
  6214. }
  6215. #u3868_div {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:70px;
  6221. height:18px;
  6222. background:inherit;
  6223. background-color:rgba(255, 255, 255, 0);
  6224. border:none;
  6225. border-radius:0px;
  6226. -moz-box-shadow:none;
  6227. -webkit-box-shadow:none;
  6228. box-shadow:none;
  6229. font-family:"Microsoft YaHei UI", sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. color:#606266;
  6233. }
  6234. #u3868 {
  6235. border-width:0px;
  6236. position:absolute;
  6237. left:396px;
  6238. top:484px;
  6239. width:70px;
  6240. height:18px;
  6241. display:flex;
  6242. font-family:"Microsoft YaHei UI", sans-serif;
  6243. font-weight:400;
  6244. font-style:normal;
  6245. color:#606266;
  6246. }
  6247. #u3868 .text {
  6248. position:absolute;
  6249. align-self:flex-start;
  6250. padding:0px 0px 0px 0px;
  6251. box-sizing:border-box;
  6252. width:100%;
  6253. }
  6254. #u3868_div.selected {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:0px;
  6258. top:0px;
  6259. width:70px;
  6260. height:18px;
  6261. background:inherit;
  6262. background-color:rgba(255, 255, 255, 0);
  6263. border:none;
  6264. border-radius:0px;
  6265. -moz-box-shadow:none;
  6266. -webkit-box-shadow:none;
  6267. box-shadow:none;
  6268. font-family:"Microsoft YaHei UI", sans-serif;
  6269. font-weight:400;
  6270. font-style:normal;
  6271. color:#606266;
  6272. }
  6273. #u3868.selected {
  6274. }
  6275. #u3868_div.disabled {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:70px;
  6281. height:18px;
  6282. background:inherit;
  6283. background-color:rgba(255, 255, 255, 0);
  6284. border:none;
  6285. border-radius:0px;
  6286. -moz-box-shadow:none;
  6287. -webkit-box-shadow:none;
  6288. box-shadow:none;
  6289. font-family:"Microsoft YaHei UI", sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. color:#606266;
  6293. }
  6294. #u3868.disabled {
  6295. }
  6296. #u3868_div.selected.disabled {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:0px;
  6300. top:0px;
  6301. width:70px;
  6302. height:18px;
  6303. background:inherit;
  6304. background-color:rgba(255, 255, 255, 0);
  6305. border:none;
  6306. border-radius:0px;
  6307. -moz-box-shadow:none;
  6308. -webkit-box-shadow:none;
  6309. box-shadow:none;
  6310. font-family:"Microsoft YaHei UI", sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. color:#606266;
  6314. }
  6315. #u3868.selected.disabled {
  6316. }
  6317. #u3868_text {
  6318. border-width:0px;
  6319. white-space:nowrap;
  6320. text-transform:none;
  6321. }
  6322. #u3869_img {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:0px;
  6326. top:0px;
  6327. width:13px;
  6328. height:13px;
  6329. }
  6330. #u3869 {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:377px;
  6334. top:487px;
  6335. width:13px;
  6336. height:13px;
  6337. display:flex;
  6338. }
  6339. #u3869 .text {
  6340. position:absolute;
  6341. align-self:center;
  6342. padding:2px 2px 2px 2px;
  6343. box-sizing:border-box;
  6344. width:100%;
  6345. }
  6346. #u3869_text {
  6347. border-width:0px;
  6348. word-wrap:break-word;
  6349. text-transform:none;
  6350. visibility:hidden;
  6351. }
  6352. #u3870_div {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:0px;
  6356. top:0px;
  6357. width:66px;
  6358. height:16px;
  6359. background:inherit;
  6360. background-color:rgba(255, 255, 255, 0);
  6361. border:none;
  6362. border-radius:0px;
  6363. -moz-box-shadow:none;
  6364. -webkit-box-shadow:none;
  6365. box-shadow:none;
  6366. }
  6367. #u3870 {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:293px;
  6371. top:583px;
  6372. width:66px;
  6373. height:16px;
  6374. display:flex;
  6375. }
  6376. #u3870 .text {
  6377. position:absolute;
  6378. align-self:flex-start;
  6379. padding:0px 0px 0px 0px;
  6380. box-sizing:border-box;
  6381. width:100%;
  6382. }
  6383. #u3870_text {
  6384. border-width:0px;
  6385. white-space:nowrap;
  6386. text-transform:none;
  6387. }
  6388. #u3871 {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:0px;
  6392. top:0px;
  6393. width:0px;
  6394. height:0px;
  6395. }
  6396. #u3872_div {
  6397. border-width:0px;
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:110px;
  6402. height:32px;
  6403. background:inherit;
  6404. background-color:rgba(255, 255, 255, 1);
  6405. box-sizing:border-box;
  6406. border-width:1px;
  6407. border-style:solid;
  6408. border-color:rgba(220, 223, 230, 1);
  6409. border-radius:4px;
  6410. -moz-box-shadow:none;
  6411. -webkit-box-shadow:none;
  6412. box-shadow:none;
  6413. }
  6414. #u3872 {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:377px;
  6418. top:575px;
  6419. width:110px;
  6420. height:32px;
  6421. display:flex;
  6422. }
  6423. #u3872 .text {
  6424. position:absolute;
  6425. align-self:center;
  6426. padding:2px 2px 2px 2px;
  6427. box-sizing:border-box;
  6428. width:100%;
  6429. }
  6430. #u3872_div.mouseOver {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:110px;
  6436. height:32px;
  6437. background:inherit;
  6438. background-color:rgba(255, 255, 255, 1);
  6439. box-sizing:border-box;
  6440. border-width:1px;
  6441. border-style:solid;
  6442. border-color:rgba(192, 196, 204, 1);
  6443. border-radius:4px;
  6444. -moz-box-shadow:none;
  6445. -webkit-box-shadow:none;
  6446. box-shadow:none;
  6447. }
  6448. #u3872.mouseOver {
  6449. }
  6450. #u3872_div.selected {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:0px;
  6454. top:0px;
  6455. width:110px;
  6456. height:32px;
  6457. background:inherit;
  6458. background-color:rgba(255, 255, 255, 1);
  6459. box-sizing:border-box;
  6460. border-width:1px;
  6461. border-style:solid;
  6462. border-color:rgba(64, 158, 255, 1);
  6463. border-radius:4px;
  6464. -moz-box-shadow:none;
  6465. -webkit-box-shadow:none;
  6466. box-shadow:none;
  6467. }
  6468. #u3872.selected {
  6469. }
  6470. #u3872_div.mouseOver.selected {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:110px;
  6476. height:32px;
  6477. background:inherit;
  6478. background-color:rgba(255, 255, 255, 1);
  6479. box-sizing:border-box;
  6480. border-width:1px;
  6481. border-style:solid;
  6482. border-color:rgba(64, 158, 255, 1);
  6483. border-radius:4px;
  6484. -moz-box-shadow:none;
  6485. -webkit-box-shadow:none;
  6486. box-shadow:none;
  6487. }
  6488. #u3872.mouseOver.selected {
  6489. }
  6490. #u3872_text {
  6491. border-width:0px;
  6492. word-wrap:break-word;
  6493. text-transform:none;
  6494. visibility:hidden;
  6495. }
  6496. #u3873_input {
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:105px;
  6501. height:30px;
  6502. padding:2px 2px 2px 2px;
  6503. font-family:"Arial Normal", "Arial", sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:12px;
  6507. letter-spacing:normal;
  6508. color:#606266;
  6509. vertical-align:none;
  6510. text-align:left;
  6511. text-transform:none;
  6512. background-color:transparent;
  6513. border-color:transparent;
  6514. }
  6515. #u3873_input.hint {
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:105px;
  6520. height:30px;
  6521. padding:2px 2px 2px 2px;
  6522. font-family:"Arial Normal", "Arial", sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:12px;
  6526. letter-spacing:normal;
  6527. color:#C0C4CC;
  6528. vertical-align:none;
  6529. text-align:left;
  6530. text-transform:none;
  6531. background-color:transparent;
  6532. border-color:transparent;
  6533. }
  6534. #u3873_input.disabled {
  6535. position:absolute;
  6536. left:0px;
  6537. top:0px;
  6538. width:105px;
  6539. height:30px;
  6540. padding:2px 2px 2px 2px;
  6541. font-family:"Arial Normal", "Arial", sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:12px;
  6545. letter-spacing:normal;
  6546. color:#606266;
  6547. vertical-align:none;
  6548. text-align:left;
  6549. text-transform:none;
  6550. background-color:transparent;
  6551. border-color:transparent;
  6552. }
  6553. #u3873_input.hint.disabled {
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:105px;
  6558. height:30px;
  6559. padding:2px 2px 2px 2px;
  6560. font-family:"Arial Normal", "Arial", sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:12px;
  6564. letter-spacing:normal;
  6565. color:#C0C4CC;
  6566. vertical-align:none;
  6567. text-align:left;
  6568. text-transform:none;
  6569. background-color:transparent;
  6570. border-color:transparent;
  6571. }
  6572. #u3873_div {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:105px;
  6578. height:30px;
  6579. background:inherit;
  6580. background-color:rgba(255, 255, 255, 1);
  6581. border:none;
  6582. border-radius:0px;
  6583. -moz-box-shadow:none;
  6584. -webkit-box-shadow:none;
  6585. box-shadow:none;
  6586. font-size:12px;
  6587. color:#606266;
  6588. }
  6589. #u3873 {
  6590. border-width:0px;
  6591. position:absolute;
  6592. left:380px;
  6593. top:576px;
  6594. width:105px;
  6595. height:30px;
  6596. display:flex;
  6597. font-size:12px;
  6598. color:#606266;
  6599. }
  6600. #u3873 .text {
  6601. position:absolute;
  6602. align-self:center;
  6603. padding:2px 2px 2px 2px;
  6604. box-sizing:border-box;
  6605. width:100%;
  6606. }
  6607. #u3873_div.hint {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:0px;
  6611. top:0px;
  6612. width:105px;
  6613. height:30px;
  6614. background:inherit;
  6615. background-color:rgba(255, 255, 255, 1);
  6616. border:none;
  6617. border-radius:0px;
  6618. -moz-box-shadow:none;
  6619. -webkit-box-shadow:none;
  6620. box-shadow:none;
  6621. font-size:12px;
  6622. color:#606266;
  6623. }
  6624. #u3873.hint {
  6625. }
  6626. #u3873_div.disabled {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:105px;
  6632. height:30px;
  6633. background:inherit;
  6634. background-color:rgba(240, 240, 240, 1);
  6635. border:none;
  6636. border-radius:0px;
  6637. -moz-box-shadow:none;
  6638. -webkit-box-shadow:none;
  6639. box-shadow:none;
  6640. font-size:12px;
  6641. color:#606266;
  6642. }
  6643. #u3873.disabled {
  6644. }
  6645. #u3873_div.hint.disabled {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:105px;
  6651. height:30px;
  6652. background:inherit;
  6653. background-color:rgba(240, 240, 240, 1);
  6654. border:none;
  6655. border-radius:0px;
  6656. -moz-box-shadow:none;
  6657. -webkit-box-shadow:none;
  6658. box-shadow:none;
  6659. font-size:12px;
  6660. color:#606266;
  6661. }
  6662. #u3873.hint.disabled {
  6663. }
  6664. #u3874_div {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:190px;
  6670. height:100px;
  6671. background:inherit;
  6672. background-color:rgba(255, 223, 37, 1);
  6673. border:none;
  6674. border-radius:0px;
  6675. -moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  6676. -webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  6677. box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
  6678. }
  6679. #u3874 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:586px;
  6683. top:628px;
  6684. width:190px;
  6685. height:100px;
  6686. display:flex;
  6687. }
  6688. #u3874 .text {
  6689. position:absolute;
  6690. align-self:flex-start;
  6691. padding:10px 10px 10px 10px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u3874_text {
  6696. border-width:0px;
  6697. word-wrap:break-word;
  6698. text-transform:none;
  6699. }
  6700. #u3875_img {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:-3px;
  6704. top:-13px;
  6705. width:170px;
  6706. height:31px;
  6707. }
  6708. #u3875 {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:433px;
  6712. top:624px;
  6713. width:154px;
  6714. height:5px;
  6715. display:flex;
  6716. -webkit-transform:rotate(17.419640155477087deg);
  6717. -moz-transform:rotate(17.419640155477087deg);
  6718. -ms-transform:rotate(17.419640155477087deg);
  6719. transform:rotate(17.419640155477087deg);
  6720. }
  6721. #u3875 .text {
  6722. position:absolute;
  6723. align-self:center;
  6724. padding:2px 2px 2px 2px;
  6725. box-sizing:border-box;
  6726. width:100%;
  6727. }
  6728. #u3875_text {
  6729. border-width:0px;
  6730. word-wrap:break-word;
  6731. text-transform:none;
  6732. visibility:hidden;
  6733. }
  6734. #u3876_div {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:0px;
  6738. top:0px;
  6739. width:51px;
  6740. height:32px;
  6741. background:inherit;
  6742. background-color:rgba(255, 255, 255, 1);
  6743. box-sizing:border-box;
  6744. border-width:1px;
  6745. border-style:solid;
  6746. border-color:rgba(220, 223, 230, 1);
  6747. border-radius:4px;
  6748. -moz-box-shadow:none;
  6749. -webkit-box-shadow:none;
  6750. box-shadow:none;
  6751. font-size:12px;
  6752. color:#606266;
  6753. }
  6754. #u3876 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:485px;
  6758. top:529px;
  6759. width:51px;
  6760. height:32px;
  6761. display:flex;
  6762. font-size:12px;
  6763. color:#606266;
  6764. }
  6765. #u3876 .text {
  6766. position:absolute;
  6767. align-self:center;
  6768. padding:2px 2px 2px 2px;
  6769. box-sizing:border-box;
  6770. width:100%;
  6771. }
  6772. #u3876_div.mouseOver {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:51px;
  6778. height:32px;
  6779. background:inherit;
  6780. background-color:rgba(236, 245, 255, 1);
  6781. box-sizing:border-box;
  6782. border-width:1px;
  6783. border-style:solid;
  6784. border-color:rgba(198, 226, 255, 1);
  6785. border-radius:4px;
  6786. -moz-box-shadow:none;
  6787. -webkit-box-shadow:none;
  6788. box-shadow:none;
  6789. font-size:12px;
  6790. color:#606266;
  6791. }
  6792. #u3876.mouseOver {
  6793. }
  6794. #u3876_div.mouseDown {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:0px;
  6798. top:0px;
  6799. width:51px;
  6800. height:32px;
  6801. background:inherit;
  6802. background-color:rgba(236, 245, 255, 1);
  6803. box-sizing:border-box;
  6804. border-width:1px;
  6805. border-style:solid;
  6806. border-color:rgba(58, 142, 230, 1);
  6807. border-radius:4px;
  6808. -moz-box-shadow:none;
  6809. -webkit-box-shadow:none;
  6810. box-shadow:none;
  6811. font-size:12px;
  6812. color:#606266;
  6813. }
  6814. #u3876.mouseDown {
  6815. }
  6816. #u3876_div.disabled {
  6817. border-width:0px;
  6818. position:absolute;
  6819. left:0px;
  6820. top:0px;
  6821. width:51px;
  6822. height:32px;
  6823. background:inherit;
  6824. background-color:rgba(255, 255, 255, 1);
  6825. box-sizing:border-box;
  6826. border-width:1px;
  6827. border-style:solid;
  6828. border-color:rgba(235, 238, 245, 1);
  6829. border-radius:4px;
  6830. -moz-box-shadow:none;
  6831. -webkit-box-shadow:none;
  6832. box-shadow:none;
  6833. font-size:12px;
  6834. color:#606266;
  6835. }
  6836. #u3876.disabled {
  6837. }
  6838. #u3876_div.mouseOver.mouseDown {
  6839. border-width:0px;
  6840. position:absolute;
  6841. left:0px;
  6842. top:0px;
  6843. width:51px;
  6844. height:32px;
  6845. background:inherit;
  6846. background-color:rgba(236, 245, 255, 1);
  6847. box-sizing:border-box;
  6848. border-width:1px;
  6849. border-style:solid;
  6850. border-color:rgba(58, 142, 230, 1);
  6851. border-radius:4px;
  6852. -moz-box-shadow:none;
  6853. -webkit-box-shadow:none;
  6854. box-shadow:none;
  6855. font-size:12px;
  6856. color:#606266;
  6857. }
  6858. #u3876.mouseOver.mouseDown {
  6859. }
  6860. #u3876_text {
  6861. border-width:0px;
  6862. word-wrap:break-word;
  6863. text-transform:none;
  6864. }