styles.css 141 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2720px;
  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. #u33427_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u33427 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u33427 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u33427_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u33428_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u33428 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u33428 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u33428_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u33429_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u33429 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u33429 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u33429_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u33430 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u33431_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u33431 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u33431 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u33431_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u33432_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u33432 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u33432 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u33432_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u33433_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u33433 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u33433 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u33433_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u33434 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u33435_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u33435 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u33435 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u33435_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u33436_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u33436 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u33436 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u33436_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u33437 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u33438_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u33438 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u33438 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u33438_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u33439_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u33439 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u33439 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u33439_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u33440 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u33441_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u33441 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u33441 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u33441_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u33442_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u33442 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u33442 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u33442_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u33443 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u33444_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u33444 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u33444 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u33444_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u33445_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u33445 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u33445 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u33445_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u33446 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u33447_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u33447 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u33447 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u33447_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u33448_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u33448 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u33448 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u33448_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u33449 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u33450_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u33450 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u33450 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u33450_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u33451_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u33451 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u33451 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u33451_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u33452 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u33453_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u33453 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u33453 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u33453_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u33454_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u33454 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u33454 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u33454_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u33455 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u33456_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u33456 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u33456 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u33456_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u33457_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u33457 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u33457 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u33457_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u33458 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u33459_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u33459 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u33459 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u33459_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u33460_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u33460 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u33460 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u33460_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u33461 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u33462_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u33462 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u33462 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u33462_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u33463_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u33463 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u33463 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u33463_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u33464 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u33465_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u33465 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u33465 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u33465_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u33466_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u33466 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u33466 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u33466_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u33467 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u33468_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u33468_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u33468_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u33468 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u33468 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u33468_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u33468.disabled {
  1276. }
  1277. .u33468_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u33469_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u33469 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u33469 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u33469_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u33470_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u33470 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u33470 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u33470_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u33471_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u33471 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u33471 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u33471_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u33472 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u33473_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u33473 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u33473 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u33473_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u33474_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u33474 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u33474 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u33474_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u33475_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u33475 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u33475 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u33475_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u33476_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u33476 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u33476 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u33476_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u33477_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u33477 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u33477 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u33477_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u33478 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u33479_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u33479 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u33479 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u33479_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u33480_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u33480 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u33480 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u33480_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u33481_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1258px;
  1648. height:1190px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(242, 242, 242, 1);
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. }
  1660. #u33481 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:330px;
  1664. top:50px;
  1665. width:1258px;
  1666. height:1190px;
  1667. display:flex;
  1668. }
  1669. #u33481 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u33481_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u33482 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:357px;
  1686. top:229px;
  1687. width:1210px;
  1688. height:220px;
  1689. }
  1690. #u33483_img {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:44px;
  1696. height:30px;
  1697. }
  1698. #u33483 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:44px;
  1704. height:30px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:14px;
  1710. color:#FFFFFF;
  1711. }
  1712. #u33483 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:2px 2px 2px 2px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u33483_text {
  1720. border-width:0px;
  1721. word-wrap:break-word;
  1722. text-transform:none;
  1723. }
  1724. #u33484_img {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:170px;
  1730. height:30px;
  1731. }
  1732. #u33484 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:44px;
  1736. top:0px;
  1737. width:170px;
  1738. height:30px;
  1739. display:flex;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. color:#FFFFFF;
  1745. }
  1746. #u33484 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u33484_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. }
  1758. #u33485_img {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:170px;
  1764. height:30px;
  1765. }
  1766. #u33485 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:214px;
  1770. top:0px;
  1771. width:170px;
  1772. height:30px;
  1773. display:flex;
  1774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:14px;
  1778. color:#FFFFFF;
  1779. }
  1780. #u33485 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 2px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u33485_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. }
  1792. #u33486_img {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:170px;
  1798. height:30px;
  1799. }
  1800. #u33486 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:384px;
  1804. top:0px;
  1805. width:170px;
  1806. height:30px;
  1807. display:flex;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u33486 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 2px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u33486_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. }
  1826. #u33487_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:170px;
  1832. height:30px;
  1833. }
  1834. #u33487 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:554px;
  1838. top:0px;
  1839. width:170px;
  1840. height:30px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:14px;
  1846. color:#FFFFFF;
  1847. }
  1848. #u33487 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:2px 2px 2px 2px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u33487_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. }
  1860. #u33488_img {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:170px;
  1866. height:30px;
  1867. }
  1868. #u33488 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:724px;
  1872. top:0px;
  1873. width:170px;
  1874. height:30px;
  1875. display:flex;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:14px;
  1880. color:#FFFFFF;
  1881. }
  1882. #u33488 .text {
  1883. position:absolute;
  1884. align-self:center;
  1885. padding:2px 2px 2px 2px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u33488_text {
  1890. border-width:0px;
  1891. word-wrap:break-word;
  1892. text-transform:none;
  1893. }
  1894. #u33489_img {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:151px;
  1900. height:30px;
  1901. }
  1902. #u33489 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:894px;
  1906. top:0px;
  1907. width:151px;
  1908. height:30px;
  1909. display:flex;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:14px;
  1914. color:#FFFFFF;
  1915. }
  1916. #u33489 .text {
  1917. position:absolute;
  1918. align-self:center;
  1919. padding:2px 2px 2px 2px;
  1920. box-sizing:border-box;
  1921. width:100%;
  1922. }
  1923. #u33489_text {
  1924. border-width:0px;
  1925. word-wrap:break-word;
  1926. text-transform:none;
  1927. }
  1928. #u33490_img {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:165px;
  1934. height:30px;
  1935. }
  1936. #u33490 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:1045px;
  1940. top:0px;
  1941. width:165px;
  1942. height:30px;
  1943. display:flex;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. font-size:14px;
  1948. color:#FFFFFF;
  1949. }
  1950. #u33490 .text {
  1951. position:absolute;
  1952. align-self:center;
  1953. padding:2px 2px 2px 2px;
  1954. box-sizing:border-box;
  1955. width:100%;
  1956. }
  1957. #u33490_text {
  1958. border-width:0px;
  1959. word-wrap:break-word;
  1960. text-transform:none;
  1961. }
  1962. #u33491_img {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:44px;
  1968. height:38px;
  1969. }
  1970. #u33491 {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:30px;
  1975. width:44px;
  1976. height:38px;
  1977. display:flex;
  1978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1979. font-weight:400;
  1980. font-style:normal;
  1981. font-size:14px;
  1982. }
  1983. #u33491 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:2px 2px 2px 2px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u33491_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. }
  1995. #u33492_img {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:170px;
  2001. height:38px;
  2002. }
  2003. #u33492 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:44px;
  2007. top:30px;
  2008. width:170px;
  2009. height:38px;
  2010. display:flex;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:14px;
  2015. }
  2016. #u33492 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:2px 2px 2px 2px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u33492_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. }
  2028. #u33493_img {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:0px;
  2032. top:0px;
  2033. width:170px;
  2034. height:38px;
  2035. }
  2036. #u33493 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:214px;
  2040. top:30px;
  2041. width:170px;
  2042. height:38px;
  2043. display:flex;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:14px;
  2048. }
  2049. #u33493 .text {
  2050. position:absolute;
  2051. align-self:center;
  2052. padding:2px 2px 2px 2px;
  2053. box-sizing:border-box;
  2054. width:100%;
  2055. }
  2056. #u33493_text {
  2057. border-width:0px;
  2058. word-wrap:break-word;
  2059. text-transform:none;
  2060. visibility:hidden;
  2061. }
  2062. #u33494_img {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:170px;
  2068. height:38px;
  2069. }
  2070. #u33494 {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:384px;
  2074. top:30px;
  2075. width:170px;
  2076. height:38px;
  2077. display:flex;
  2078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2079. font-weight:400;
  2080. font-style:normal;
  2081. font-size:14px;
  2082. }
  2083. #u33494 .text {
  2084. position:absolute;
  2085. align-self:center;
  2086. padding:2px 2px 2px 2px;
  2087. box-sizing:border-box;
  2088. width:100%;
  2089. }
  2090. #u33494_text {
  2091. border-width:0px;
  2092. word-wrap:break-word;
  2093. text-transform:none;
  2094. visibility:hidden;
  2095. }
  2096. #u33495_img {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:170px;
  2102. height:38px;
  2103. }
  2104. #u33495 {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:554px;
  2108. top:30px;
  2109. width:170px;
  2110. height:38px;
  2111. display:flex;
  2112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2113. font-weight:400;
  2114. font-style:normal;
  2115. font-size:14px;
  2116. }
  2117. #u33495 .text {
  2118. position:absolute;
  2119. align-self:center;
  2120. padding:2px 2px 2px 2px;
  2121. box-sizing:border-box;
  2122. width:100%;
  2123. }
  2124. #u33495_text {
  2125. border-width:0px;
  2126. word-wrap:break-word;
  2127. text-transform:none;
  2128. visibility:hidden;
  2129. }
  2130. #u33496_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:170px;
  2136. height:38px;
  2137. }
  2138. #u33496 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:724px;
  2142. top:30px;
  2143. width:170px;
  2144. height:38px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:14px;
  2150. color:#298FFF;
  2151. }
  2152. #u33496 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:2px 2px 2px 2px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u33496_text {
  2160. border-width:0px;
  2161. word-wrap:break-word;
  2162. text-transform:none;
  2163. }
  2164. #u33497_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:151px;
  2170. height:38px;
  2171. }
  2172. #u33497 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:894px;
  2176. top:30px;
  2177. width:151px;
  2178. height:38px;
  2179. display:flex;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:14px;
  2184. }
  2185. #u33497 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 2px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u33497_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. visibility:hidden;
  2197. }
  2198. #u33498_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:165px;
  2204. height:38px;
  2205. }
  2206. #u33498 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:1045px;
  2210. top:30px;
  2211. width:165px;
  2212. height:38px;
  2213. display:flex;
  2214. font-size:14px;
  2215. color:#1890FF;
  2216. }
  2217. #u33498 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 2px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u33498_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. }
  2229. #u33499_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:44px;
  2235. height:38px;
  2236. }
  2237. #u33499 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:68px;
  2242. width:44px;
  2243. height:38px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:14px;
  2249. }
  2250. #u33499 .text {
  2251. position:absolute;
  2252. align-self:center;
  2253. padding:2px 2px 2px 2px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u33499_text {
  2258. border-width:0px;
  2259. word-wrap:break-word;
  2260. text-transform:none;
  2261. visibility:hidden;
  2262. }
  2263. #u33500_img {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:170px;
  2269. height:38px;
  2270. }
  2271. #u33500 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:44px;
  2275. top:68px;
  2276. width:170px;
  2277. height:38px;
  2278. display:flex;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:14px;
  2283. }
  2284. #u33500 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:2px 2px 2px 2px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u33500_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. }
  2296. #u33501_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:170px;
  2302. height:38px;
  2303. }
  2304. #u33501 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:214px;
  2308. top:68px;
  2309. width:170px;
  2310. height:38px;
  2311. display:flex;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:14px;
  2316. }
  2317. #u33501 .text {
  2318. position:absolute;
  2319. align-self:center;
  2320. padding:2px 2px 2px 2px;
  2321. box-sizing:border-box;
  2322. width:100%;
  2323. }
  2324. #u33501_text {
  2325. border-width:0px;
  2326. word-wrap:break-word;
  2327. text-transform:none;
  2328. visibility:hidden;
  2329. }
  2330. #u33502_img {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:0px;
  2334. top:0px;
  2335. width:170px;
  2336. height:38px;
  2337. }
  2338. #u33502 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:384px;
  2342. top:68px;
  2343. width:170px;
  2344. height:38px;
  2345. display:flex;
  2346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2347. font-weight:400;
  2348. font-style:normal;
  2349. font-size:14px;
  2350. }
  2351. #u33502 .text {
  2352. position:absolute;
  2353. align-self:center;
  2354. padding:2px 2px 2px 2px;
  2355. box-sizing:border-box;
  2356. width:100%;
  2357. }
  2358. #u33502_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. visibility:hidden;
  2363. }
  2364. #u33503_img {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:170px;
  2370. height:38px;
  2371. }
  2372. #u33503 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:554px;
  2376. top:68px;
  2377. width:170px;
  2378. height:38px;
  2379. display:flex;
  2380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2381. font-weight:400;
  2382. font-style:normal;
  2383. font-size:14px;
  2384. }
  2385. #u33503 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:2px 2px 2px 2px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u33503_text {
  2393. border-width:0px;
  2394. word-wrap:break-word;
  2395. text-transform:none;
  2396. visibility:hidden;
  2397. }
  2398. #u33504_img {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:170px;
  2404. height:38px;
  2405. }
  2406. #u33504 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:724px;
  2410. top:68px;
  2411. width:170px;
  2412. height:38px;
  2413. display:flex;
  2414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2415. font-weight:400;
  2416. font-style:normal;
  2417. font-size:14px;
  2418. }
  2419. #u33504 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:2px 2px 2px 2px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u33504_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. visibility:hidden;
  2431. }
  2432. #u33505_img {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:151px;
  2438. height:38px;
  2439. }
  2440. #u33505 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:894px;
  2444. top:68px;
  2445. width:151px;
  2446. height:38px;
  2447. display:flex;
  2448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2449. font-weight:400;
  2450. font-style:normal;
  2451. font-size:14px;
  2452. }
  2453. #u33505 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:2px 2px 2px 2px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u33505_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. visibility:hidden;
  2465. }
  2466. #u33506_img {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:165px;
  2472. height:38px;
  2473. }
  2474. #u33506 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:1045px;
  2478. top:68px;
  2479. width:165px;
  2480. height:38px;
  2481. display:flex;
  2482. font-size:14px;
  2483. }
  2484. #u33506 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 2px 2px 2px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u33506_text {
  2492. border-width:0px;
  2493. word-wrap:break-word;
  2494. text-transform:none;
  2495. visibility:hidden;
  2496. }
  2497. #u33507_img {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:44px;
  2503. height:38px;
  2504. }
  2505. #u33507 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:0px;
  2509. top:106px;
  2510. width:44px;
  2511. height:38px;
  2512. display:flex;
  2513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2514. font-weight:400;
  2515. font-style:normal;
  2516. font-size:14px;
  2517. }
  2518. #u33507 .text {
  2519. position:absolute;
  2520. align-self:center;
  2521. padding:2px 2px 2px 2px;
  2522. box-sizing:border-box;
  2523. width:100%;
  2524. }
  2525. #u33507_text {
  2526. border-width:0px;
  2527. word-wrap:break-word;
  2528. text-transform:none;
  2529. visibility:hidden;
  2530. }
  2531. #u33508_img {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:170px;
  2537. height:38px;
  2538. }
  2539. #u33508 {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:44px;
  2543. top:106px;
  2544. width:170px;
  2545. height:38px;
  2546. display:flex;
  2547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:14px;
  2551. }
  2552. #u33508 .text {
  2553. position:absolute;
  2554. align-self:center;
  2555. padding:2px 2px 2px 2px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u33508_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. }
  2564. #u33509_img {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:0px;
  2569. width:170px;
  2570. height:38px;
  2571. }
  2572. #u33509 {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:214px;
  2576. top:106px;
  2577. width:170px;
  2578. height:38px;
  2579. display:flex;
  2580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2581. font-weight:400;
  2582. font-style:normal;
  2583. font-size:14px;
  2584. }
  2585. #u33509 .text {
  2586. position:absolute;
  2587. align-self:center;
  2588. padding:2px 2px 2px 2px;
  2589. box-sizing:border-box;
  2590. width:100%;
  2591. }
  2592. #u33509_text {
  2593. border-width:0px;
  2594. word-wrap:break-word;
  2595. text-transform:none;
  2596. visibility:hidden;
  2597. }
  2598. #u33510_img {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:0px;
  2602. top:0px;
  2603. width:170px;
  2604. height:38px;
  2605. }
  2606. #u33510 {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:384px;
  2610. top:106px;
  2611. width:170px;
  2612. height:38px;
  2613. display:flex;
  2614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:14px;
  2618. }
  2619. #u33510 .text {
  2620. position:absolute;
  2621. align-self:center;
  2622. padding:2px 2px 2px 2px;
  2623. box-sizing:border-box;
  2624. width:100%;
  2625. }
  2626. #u33510_text {
  2627. border-width:0px;
  2628. word-wrap:break-word;
  2629. text-transform:none;
  2630. visibility:hidden;
  2631. }
  2632. #u33511_img {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:170px;
  2638. height:38px;
  2639. }
  2640. #u33511 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:554px;
  2644. top:106px;
  2645. width:170px;
  2646. height:38px;
  2647. display:flex;
  2648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2649. font-weight:400;
  2650. font-style:normal;
  2651. font-size:14px;
  2652. }
  2653. #u33511 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 2px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u33511_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u33512_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:170px;
  2672. height:38px;
  2673. }
  2674. #u33512 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:724px;
  2678. top:106px;
  2679. width:170px;
  2680. height:38px;
  2681. display:flex;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:14px;
  2686. }
  2687. #u33512 .text {
  2688. position:absolute;
  2689. align-self:center;
  2690. padding:2px 2px 2px 2px;
  2691. box-sizing:border-box;
  2692. width:100%;
  2693. }
  2694. #u33512_text {
  2695. border-width:0px;
  2696. word-wrap:break-word;
  2697. text-transform:none;
  2698. visibility:hidden;
  2699. }
  2700. #u33513_img {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:151px;
  2706. height:38px;
  2707. }
  2708. #u33513 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:894px;
  2712. top:106px;
  2713. width:151px;
  2714. height:38px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:14px;
  2720. }
  2721. #u33513 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:2px 2px 2px 2px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u33513_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u33514_img {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:165px;
  2740. height:38px;
  2741. }
  2742. #u33514 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:1045px;
  2746. top:106px;
  2747. width:165px;
  2748. height:38px;
  2749. display:flex;
  2750. font-size:14px;
  2751. }
  2752. #u33514 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 2px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u33514_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. visibility:hidden;
  2764. }
  2765. #u33515_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:44px;
  2771. height:38px;
  2772. }
  2773. #u33515 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:144px;
  2778. width:44px;
  2779. height:38px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:14px;
  2785. }
  2786. #u33515 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:2px 2px 2px 2px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u33515_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. visibility:hidden;
  2798. }
  2799. #u33516_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:170px;
  2805. height:38px;
  2806. }
  2807. #u33516 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:44px;
  2811. top:144px;
  2812. width:170px;
  2813. height:38px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:14px;
  2819. }
  2820. #u33516 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 2px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u33516_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u33517_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:170px;
  2839. height:38px;
  2840. }
  2841. #u33517 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:214px;
  2845. top:144px;
  2846. width:170px;
  2847. height:38px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:14px;
  2853. }
  2854. #u33517 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 2px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u33517_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u33518_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:170px;
  2873. height:38px;
  2874. }
  2875. #u33518 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:384px;
  2879. top:144px;
  2880. width:170px;
  2881. height:38px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:14px;
  2887. }
  2888. #u33518 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 2px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u33518_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. visibility:hidden;
  2900. }
  2901. #u33519_img {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:170px;
  2907. height:38px;
  2908. }
  2909. #u33519 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:554px;
  2913. top:144px;
  2914. width:170px;
  2915. height:38px;
  2916. display:flex;
  2917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:14px;
  2921. }
  2922. #u33519 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 2px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u33519_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u33520_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:170px;
  2941. height:38px;
  2942. }
  2943. #u33520 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:724px;
  2947. top:144px;
  2948. width:170px;
  2949. height:38px;
  2950. display:flex;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. }
  2956. #u33520 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u33520_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u33521_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:151px;
  2975. height:38px;
  2976. }
  2977. #u33521 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:894px;
  2981. top:144px;
  2982. width:151px;
  2983. height:38px;
  2984. display:flex;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:14px;
  2989. }
  2990. #u33521 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 2px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u33521_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u33522_img {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:165px;
  3009. height:38px;
  3010. }
  3011. #u33522 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:1045px;
  3015. top:144px;
  3016. width:165px;
  3017. height:38px;
  3018. display:flex;
  3019. font-size:14px;
  3020. }
  3021. #u33522 .text {
  3022. position:absolute;
  3023. align-self:center;
  3024. padding:2px 2px 2px 2px;
  3025. box-sizing:border-box;
  3026. width:100%;
  3027. }
  3028. #u33522_text {
  3029. border-width:0px;
  3030. word-wrap:break-word;
  3031. text-transform:none;
  3032. visibility:hidden;
  3033. }
  3034. #u33523_img {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:44px;
  3040. height:38px;
  3041. }
  3042. #u33523 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:182px;
  3047. width:44px;
  3048. height:38px;
  3049. display:flex;
  3050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:14px;
  3054. }
  3055. #u33523 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 2px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u33523_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. visibility:hidden;
  3067. }
  3068. #u33524_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:170px;
  3074. height:38px;
  3075. }
  3076. #u33524 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:44px;
  3080. top:182px;
  3081. width:170px;
  3082. height:38px;
  3083. display:flex;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:14px;
  3088. }
  3089. #u33524 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 2px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u33524_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. visibility:hidden;
  3101. }
  3102. #u33525_img {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:170px;
  3108. height:38px;
  3109. }
  3110. #u33525 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:214px;
  3114. top:182px;
  3115. width:170px;
  3116. height:38px;
  3117. display:flex;
  3118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3119. font-weight:400;
  3120. font-style:normal;
  3121. font-size:14px;
  3122. }
  3123. #u33525 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 2px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u33525_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u33526_img {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:170px;
  3142. height:38px;
  3143. }
  3144. #u33526 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:384px;
  3148. top:182px;
  3149. width:170px;
  3150. height:38px;
  3151. display:flex;
  3152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:14px;
  3156. }
  3157. #u33526 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:2px 2px 2px 2px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u33526_text {
  3165. border-width:0px;
  3166. word-wrap:break-word;
  3167. text-transform:none;
  3168. visibility:hidden;
  3169. }
  3170. #u33527_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:170px;
  3176. height:38px;
  3177. }
  3178. #u33527 {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:554px;
  3182. top:182px;
  3183. width:170px;
  3184. height:38px;
  3185. display:flex;
  3186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3187. font-weight:400;
  3188. font-style:normal;
  3189. font-size:14px;
  3190. }
  3191. #u33527 .text {
  3192. position:absolute;
  3193. align-self:center;
  3194. padding:2px 2px 2px 2px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u33527_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. visibility:hidden;
  3203. }
  3204. #u33528_img {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:170px;
  3210. height:38px;
  3211. }
  3212. #u33528 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:724px;
  3216. top:182px;
  3217. width:170px;
  3218. height:38px;
  3219. display:flex;
  3220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3221. font-weight:400;
  3222. font-style:normal;
  3223. font-size:14px;
  3224. }
  3225. #u33528 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 2px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u33528_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u33529_img {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:151px;
  3244. height:38px;
  3245. }
  3246. #u33529 {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:894px;
  3250. top:182px;
  3251. width:151px;
  3252. height:38px;
  3253. display:flex;
  3254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3255. font-weight:400;
  3256. font-style:normal;
  3257. font-size:14px;
  3258. }
  3259. #u33529 .text {
  3260. position:absolute;
  3261. align-self:center;
  3262. padding:2px 2px 2px 2px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u33529_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. visibility:hidden;
  3271. }
  3272. #u33530_img {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:165px;
  3278. height:38px;
  3279. }
  3280. #u33530 {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:1045px;
  3284. top:182px;
  3285. width:165px;
  3286. height:38px;
  3287. display:flex;
  3288. font-size:14px;
  3289. }
  3290. #u33530 .text {
  3291. position:absolute;
  3292. align-self:center;
  3293. padding:2px 2px 2px 2px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u33530_text {
  3298. border-width:0px;
  3299. word-wrap:break-word;
  3300. text-transform:none;
  3301. visibility:hidden;
  3302. }
  3303. #u33531_div {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:60px;
  3309. height:30px;
  3310. background:inherit;
  3311. background-color:rgba(24, 144, 255, 1);
  3312. border:none;
  3313. border-radius:4px;
  3314. -moz-box-shadow:none;
  3315. -webkit-box-shadow:none;
  3316. box-shadow:none;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:14px;
  3321. color:#FFFFFF;
  3322. }
  3323. #u33531 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:357px;
  3327. top:191px;
  3328. width:60px;
  3329. height:30px;
  3330. display:flex;
  3331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:14px;
  3335. color:#FFFFFF;
  3336. }
  3337. #u33531 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 2px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u33531_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. }
  3349. #u33532 {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:0px;
  3355. height:0px;
  3356. }
  3357. #u33533_div {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:160px;
  3363. height:30px;
  3364. background:inherit;
  3365. background-color:rgba(255, 255, 255, 1);
  3366. box-sizing:border-box;
  3367. border-width:1px;
  3368. border-style:solid;
  3369. border-color:rgba(201, 201, 201, 1);
  3370. border-radius:4px;
  3371. -moz-box-shadow:none;
  3372. -webkit-box-shadow:none;
  3373. box-shadow:none;
  3374. font-family:'Microsoft YaHei', sans-serif;
  3375. font-weight:400;
  3376. font-style:normal;
  3377. font-size:14px;
  3378. color:#CCCCCC;
  3379. text-align:left;
  3380. }
  3381. #u33533 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:527px;
  3385. top:140px;
  3386. width:160px;
  3387. height:30px;
  3388. display:flex;
  3389. font-family:'Microsoft YaHei', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:14px;
  3393. color:#CCCCCC;
  3394. text-align:left;
  3395. }
  3396. #u33533 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 8px 2px 8px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u33533_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u33534_input {
  3410. position:absolute;
  3411. left:0px;
  3412. top:0px;
  3413. width:150px;
  3414. height:28px;
  3415. padding:2px 2px 2px 2px;
  3416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:14px;
  3420. letter-spacing:normal;
  3421. color:#000000;
  3422. vertical-align:none;
  3423. text-align:left;
  3424. text-transform:none;
  3425. background-color:transparent;
  3426. border-color:transparent;
  3427. }
  3428. #u33534_input.disabled {
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:150px;
  3433. height:28px;
  3434. padding:2px 2px 2px 2px;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:14px;
  3439. letter-spacing:normal;
  3440. color:#000000;
  3441. vertical-align:none;
  3442. text-align:left;
  3443. text-transform:none;
  3444. background-color:transparent;
  3445. border-color:transparent;
  3446. }
  3447. #u33534_div {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:150px;
  3453. height:28px;
  3454. background:inherit;
  3455. background-color:rgba(255, 255, 255, 1);
  3456. border:none;
  3457. border-radius:0px;
  3458. -moz-box-shadow:none;
  3459. -webkit-box-shadow:none;
  3460. box-shadow:none;
  3461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3462. font-weight:400;
  3463. font-style:normal;
  3464. font-size:14px;
  3465. }
  3466. #u33534 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:533px;
  3470. top:141px;
  3471. width:150px;
  3472. height:28px;
  3473. display:flex;
  3474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:14px;
  3478. }
  3479. #u33534 .text {
  3480. position:absolute;
  3481. align-self:center;
  3482. padding:2px 2px 2px 2px;
  3483. box-sizing:border-box;
  3484. width:100%;
  3485. }
  3486. #u33534_div.disabled {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:150px;
  3492. height:28px;
  3493. background:inherit;
  3494. background-color:rgba(240, 240, 240, 1);
  3495. border:none;
  3496. border-radius:0px;
  3497. -moz-box-shadow:none;
  3498. -webkit-box-shadow:none;
  3499. box-shadow:none;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:14px;
  3504. }
  3505. #u33534.disabled {
  3506. }
  3507. #u33535 {
  3508. border-width:0px;
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:0px;
  3513. height:0px;
  3514. }
  3515. #u33536_div {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:60px;
  3521. height:30px;
  3522. background:inherit;
  3523. background-color:rgba(24, 144, 255, 1);
  3524. border:none;
  3525. border-radius:4px;
  3526. -moz-box-shadow:none;
  3527. -webkit-box-shadow:none;
  3528. box-shadow:none;
  3529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3530. font-weight:400;
  3531. font-style:normal;
  3532. font-size:14px;
  3533. color:#FFFFFF;
  3534. }
  3535. #u33536 {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:867px;
  3539. top:140px;
  3540. width:60px;
  3541. height:30px;
  3542. display:flex;
  3543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3544. font-weight:400;
  3545. font-style:normal;
  3546. font-size:14px;
  3547. color:#FFFFFF;
  3548. }
  3549. #u33536 .text {
  3550. position:absolute;
  3551. align-self:center;
  3552. padding:2px 2px 2px 2px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u33536_text {
  3557. border-width:0px;
  3558. word-wrap:break-word;
  3559. text-transform:none;
  3560. }
  3561. #u33537_div {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:0px;
  3565. top:0px;
  3566. width:60px;
  3567. height:30px;
  3568. background:inherit;
  3569. background-color:rgba(255, 255, 255, 1);
  3570. box-sizing:border-box;
  3571. border-width:1px;
  3572. border-style:solid;
  3573. border-color:rgba(170, 170, 170, 1);
  3574. border-radius:4px;
  3575. -moz-box-shadow:none;
  3576. -webkit-box-shadow:none;
  3577. box-shadow:none;
  3578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:14px;
  3582. }
  3583. #u33537 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:937px;
  3587. top:140px;
  3588. width:60px;
  3589. height:30px;
  3590. display:flex;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:14px;
  3595. }
  3596. #u33537 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 2px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u33537_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. }
  3608. #u33538 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:0px;
  3614. height:0px;
  3615. }
  3616. #u33539_div {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:160px;
  3622. height:30px;
  3623. background:inherit;
  3624. background-color:rgba(255, 255, 255, 1);
  3625. box-sizing:border-box;
  3626. border-width:1px;
  3627. border-style:solid;
  3628. border-color:rgba(215, 215, 215, 1);
  3629. border-radius:4px;
  3630. -moz-box-shadow:none;
  3631. -webkit-box-shadow:none;
  3632. box-shadow:none;
  3633. font-size:14px;
  3634. }
  3635. #u33539 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:697px;
  3639. top:140px;
  3640. width:160px;
  3641. height:30px;
  3642. display:flex;
  3643. font-size:14px;
  3644. }
  3645. #u33539 .text {
  3646. position:absolute;
  3647. align-self:center;
  3648. padding:2px 2px 2px 2px;
  3649. box-sizing:border-box;
  3650. width:100%;
  3651. }
  3652. #u33539_text {
  3653. border-width:0px;
  3654. word-wrap:break-word;
  3655. text-transform:none;
  3656. visibility:hidden;
  3657. }
  3658. #u33540_input {
  3659. position:absolute;
  3660. left:0px;
  3661. top:0px;
  3662. width:153px;
  3663. height:23px;
  3664. padding:2px 2px 2px 2px;
  3665. font-family:'ArialMT', 'Arial', sans-serif;
  3666. font-weight:400;
  3667. font-style:normal;
  3668. font-size:14px;
  3669. letter-spacing:normal;
  3670. color:#AAAAAA;
  3671. vertical-align:none;
  3672. text-align:left;
  3673. text-transform:none;
  3674. background-color:transparent;
  3675. border-color:transparent;
  3676. }
  3677. #u33540_input.disabled {
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:153px;
  3682. height:23px;
  3683. padding:2px 2px 2px 2px;
  3684. font-family:'ArialMT', 'Arial', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:14px;
  3688. letter-spacing:normal;
  3689. color:#AAAAAA;
  3690. vertical-align:none;
  3691. text-align:left;
  3692. text-transform:none;
  3693. background-color:transparent;
  3694. border-color:transparent;
  3695. }
  3696. #u33540_div {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:153px;
  3702. height:23px;
  3703. background:inherit;
  3704. background-color:rgba(255, 255, 255, 1);
  3705. border:none;
  3706. border-radius:0px;
  3707. -moz-box-shadow:none;
  3708. -webkit-box-shadow:none;
  3709. box-shadow:none;
  3710. font-size:14px;
  3711. color:#AAAAAA;
  3712. }
  3713. #u33540 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:702px;
  3717. top:142px;
  3718. width:153px;
  3719. height:23px;
  3720. display:flex;
  3721. font-size:14px;
  3722. color:#AAAAAA;
  3723. }
  3724. #u33540 .text {
  3725. position:absolute;
  3726. align-self:flex-start;
  3727. padding:2px 2px 2px 2px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u33540_div.disabled {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:0px;
  3735. top:0px;
  3736. width:153px;
  3737. height:23px;
  3738. background:inherit;
  3739. background-color:rgba(240, 240, 240, 1);
  3740. border:none;
  3741. border-radius:0px;
  3742. -moz-box-shadow:none;
  3743. -webkit-box-shadow:none;
  3744. box-shadow:none;
  3745. font-size:14px;
  3746. color:#AAAAAA;
  3747. }
  3748. #u33540.disabled {
  3749. }
  3750. .u33540_input_option {
  3751. font-size:14px;
  3752. }
  3753. #u33541_div {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:55px;
  3759. height:50px;
  3760. background:inherit;
  3761. background-color:rgba(255, 255, 255, 0);
  3762. border:none;
  3763. border-left:0px;
  3764. border-top:0px;
  3765. border-right:0px;
  3766. border-radius:0px;
  3767. border-bottom-right-radius:0px;
  3768. border-bottom-left-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:18px;
  3776. line-height:40px;
  3777. }
  3778. #u33541 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:356px;
  3782. top:50px;
  3783. width:55px;
  3784. height:50px;
  3785. display:flex;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:18px;
  3790. line-height:40px;
  3791. }
  3792. #u33541 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:0px 0px 0px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u33541_text {
  3800. border-width:0px;
  3801. white-space:nowrap;
  3802. text-transform:none;
  3803. }
  3804. #u33542 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:0px;
  3810. height:0px;
  3811. }
  3812. #u33543_div {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:100px;
  3818. height:100px;
  3819. background:inherit;
  3820. background-color:rgba(255, 255, 255, 1);
  3821. box-sizing:border-box;
  3822. border-width:1px;
  3823. border-style:solid;
  3824. border-color:rgba(242, 242, 242, 1);
  3825. border-radius:4px;
  3826. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3827. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3828. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3830. font-weight:400;
  3831. font-style:normal;
  3832. font-size:14px;
  3833. text-align:left;
  3834. }
  3835. #u33543 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:1441px;
  3839. top:296px;
  3840. width:100px;
  3841. height:100px;
  3842. display:flex;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:14px;
  3847. text-align:left;
  3848. }
  3849. #u33543 .text {
  3850. position:absolute;
  3851. align-self:center;
  3852. padding:2px 2px 2px 2px;
  3853. box-sizing:border-box;
  3854. width:100%;
  3855. }
  3856. #u33543_text {
  3857. border-width:0px;
  3858. word-wrap:break-word;
  3859. text-transform:none;
  3860. visibility:hidden;
  3861. }
  3862. #u33544_div {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:85px;
  3868. height:40px;
  3869. background:inherit;
  3870. background-color:rgba(255, 255, 255, 1);
  3871. border:none;
  3872. border-left:0px;
  3873. border-top:0px;
  3874. border-right:0px;
  3875. border-radius:0px;
  3876. border-bottom-right-radius:0px;
  3877. border-bottom-left-radius:0px;
  3878. -moz-box-shadow:none;
  3879. -webkit-box-shadow:none;
  3880. box-shadow:none;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:14px;
  3885. }
  3886. #u33544 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:1449px;
  3890. top:346px;
  3891. width:85px;
  3892. height:40px;
  3893. display:flex;
  3894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3895. font-weight:400;
  3896. font-style:normal;
  3897. font-size:14px;
  3898. }
  3899. #u33544 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 2px 2px 2px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u33544_text {
  3907. border-width:0px;
  3908. word-wrap:break-word;
  3909. text-transform:none;
  3910. }
  3911. #u33545_div {
  3912. border-width:0px;
  3913. position:absolute;
  3914. left:0px;
  3915. top:0px;
  3916. width:85px;
  3917. height:40px;
  3918. background:inherit;
  3919. background-color:rgba(255, 255, 255, 1);
  3920. box-sizing:border-box;
  3921. border-width:1px;
  3922. border-style:solid;
  3923. border-color:rgba(215, 215, 215, 1);
  3924. border-left:0px;
  3925. border-top:0px;
  3926. border-right:0px;
  3927. border-radius:0px;
  3928. border-bottom-right-radius:0px;
  3929. border-bottom-left-radius:0px;
  3930. -moz-box-shadow:none;
  3931. -webkit-box-shadow:none;
  3932. box-shadow:none;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:14px;
  3937. }
  3938. #u33545 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:1449px;
  3942. top:306px;
  3943. width:85px;
  3944. height:40px;
  3945. display:flex;
  3946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:14px;
  3950. }
  3951. #u33545 .text {
  3952. position:absolute;
  3953. align-self:center;
  3954. padding:2px 2px 2px 2px;
  3955. box-sizing:border-box;
  3956. width:100%;
  3957. }
  3958. #u33545_text {
  3959. border-width:0px;
  3960. word-wrap:break-word;
  3961. text-transform:none;
  3962. }
  3963. #u33546 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:0px;
  3969. height:0px;
  3970. }
  3971. #u33547_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:160px;
  3977. height:30px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 1);
  3980. box-sizing:border-box;
  3981. border-width:1px;
  3982. border-style:solid;
  3983. border-color:rgba(215, 215, 215, 1);
  3984. border-radius:4px;
  3985. -moz-box-shadow:none;
  3986. -webkit-box-shadow:none;
  3987. box-shadow:none;
  3988. font-size:14px;
  3989. }
  3990. #u33547 {
  3991. border-width:0px;
  3992. position:absolute;
  3993. left:357px;
  3994. top:141px;
  3995. width:160px;
  3996. height:30px;
  3997. display:flex;
  3998. font-size:14px;
  3999. }
  4000. #u33547 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:2px 2px 2px 2px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u33547_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. visibility:hidden;
  4012. }
  4013. #u33548_input {
  4014. position:absolute;
  4015. left:0px;
  4016. top:0px;
  4017. width:153px;
  4018. height:23px;
  4019. padding:2px 2px 2px 2px;
  4020. font-family:'ArialMT', 'Arial', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:14px;
  4024. letter-spacing:normal;
  4025. color:#AAAAAA;
  4026. vertical-align:none;
  4027. text-align:left;
  4028. text-transform:none;
  4029. background-color:transparent;
  4030. border-color:transparent;
  4031. }
  4032. #u33548_input.disabled {
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:153px;
  4037. height:23px;
  4038. padding:2px 2px 2px 2px;
  4039. font-family:'ArialMT', 'Arial', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:14px;
  4043. letter-spacing:normal;
  4044. color:#AAAAAA;
  4045. vertical-align:none;
  4046. text-align:left;
  4047. text-transform:none;
  4048. background-color:transparent;
  4049. border-color:transparent;
  4050. }
  4051. #u33548_div {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:0px;
  4055. top:0px;
  4056. width:153px;
  4057. height:23px;
  4058. background:inherit;
  4059. background-color:rgba(255, 255, 255, 1);
  4060. border:none;
  4061. border-radius:0px;
  4062. -moz-box-shadow:none;
  4063. -webkit-box-shadow:none;
  4064. box-shadow:none;
  4065. font-size:14px;
  4066. color:#AAAAAA;
  4067. }
  4068. #u33548 {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:362px;
  4072. top:143px;
  4073. width:153px;
  4074. height:23px;
  4075. display:flex;
  4076. font-size:14px;
  4077. color:#AAAAAA;
  4078. }
  4079. #u33548 .text {
  4080. position:absolute;
  4081. align-self:flex-start;
  4082. padding:2px 2px 2px 2px;
  4083. box-sizing:border-box;
  4084. width:100%;
  4085. }
  4086. #u33548_div.disabled {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:0px;
  4090. top:0px;
  4091. width:153px;
  4092. height:23px;
  4093. background:inherit;
  4094. background-color:rgba(240, 240, 240, 1);
  4095. border:none;
  4096. border-radius:0px;
  4097. -moz-box-shadow:none;
  4098. -webkit-box-shadow:none;
  4099. box-shadow:none;
  4100. font-size:14px;
  4101. color:#AAAAAA;
  4102. }
  4103. #u33548.disabled {
  4104. }
  4105. .u33548_input_option {
  4106. font-size:14px;
  4107. }
  4108. #u33550_div {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:200px;
  4114. height:1188px;
  4115. background:inherit;
  4116. background-color:rgba(255, 255, 255, 1);
  4117. border:none;
  4118. border-radius:0px;
  4119. -moz-box-shadow:none;
  4120. -webkit-box-shadow:none;
  4121. box-shadow:none;
  4122. }
  4123. #u33550 {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:120px;
  4127. top:50px;
  4128. width:200px;
  4129. height:1188px;
  4130. display:flex;
  4131. }
  4132. #u33550 .text {
  4133. position:absolute;
  4134. align-self:center;
  4135. padding:2px 2px 2px 2px;
  4136. box-sizing:border-box;
  4137. width:100%;
  4138. }
  4139. #u33550_text {
  4140. border-width:0px;
  4141. word-wrap:break-word;
  4142. text-transform:none;
  4143. visibility:hidden;
  4144. }
  4145. #u33551_div {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:0px;
  4149. top:0px;
  4150. width:200px;
  4151. height:60px;
  4152. background:inherit;
  4153. background-color:rgba(224, 231, 247, 1);
  4154. border:none;
  4155. border-radius:0px;
  4156. -moz-box-shadow:none;
  4157. -webkit-box-shadow:none;
  4158. box-shadow:none;
  4159. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4160. font-weight:500;
  4161. font-style:normal;
  4162. font-size:18px;
  4163. }
  4164. #u33551 {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:120px;
  4168. top:50px;
  4169. width:200px;
  4170. height:60px;
  4171. display:flex;
  4172. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4173. font-weight:500;
  4174. font-style:normal;
  4175. font-size:18px;
  4176. }
  4177. #u33551 .text {
  4178. position:absolute;
  4179. align-self:center;
  4180. padding:0px 0px 0px 20px;
  4181. box-sizing:border-box;
  4182. width:100%;
  4183. }
  4184. #u33551_text {
  4185. border-width:0px;
  4186. word-wrap:break-word;
  4187. text-transform:none;
  4188. }
  4189. #u33552_div {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:65px;
  4195. height:22px;
  4196. background:inherit;
  4197. background-color:rgba(255, 255, 255, 0);
  4198. border:none;
  4199. border-radius:0px;
  4200. -moz-box-shadow:none;
  4201. -webkit-box-shadow:none;
  4202. box-shadow:none;
  4203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4204. font-weight:400;
  4205. font-style:normal;
  4206. font-size:16px;
  4207. }
  4208. #u33552 {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:147px;
  4212. top:346px;
  4213. width:65px;
  4214. height:22px;
  4215. display:flex;
  4216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4217. font-weight:400;
  4218. font-style:normal;
  4219. font-size:16px;
  4220. }
  4221. #u33552 .text {
  4222. position:absolute;
  4223. align-self:flex-start;
  4224. padding:0px 0px 0px 0px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u33552_text {
  4229. border-width:0px;
  4230. white-space:nowrap;
  4231. text-transform:none;
  4232. }
  4233. #u33553_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:65px;
  4239. height:22px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 0);
  4242. border:none;
  4243. border-radius:0px;
  4244. -moz-box-shadow:none;
  4245. -webkit-box-shadow:none;
  4246. box-shadow:none;
  4247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:16px;
  4251. }
  4252. #u33553 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:147px;
  4256. top:388px;
  4257. width:65px;
  4258. height:22px;
  4259. display:flex;
  4260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4261. font-weight:400;
  4262. font-style:normal;
  4263. font-size:16px;
  4264. }
  4265. #u33553 .text {
  4266. position:absolute;
  4267. align-self:flex-start;
  4268. padding:0px 0px 0px 0px;
  4269. box-sizing:border-box;
  4270. width:100%;
  4271. }
  4272. #u33553_text {
  4273. border-width:0px;
  4274. white-space:nowrap;
  4275. text-transform:none;
  4276. }
  4277. #u33554_div {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:0px;
  4281. top:0px;
  4282. width:49px;
  4283. height:22px;
  4284. background:inherit;
  4285. background-color:rgba(255, 255, 255, 0);
  4286. border:none;
  4287. border-radius:0px;
  4288. -moz-box-shadow:none;
  4289. -webkit-box-shadow:none;
  4290. box-shadow:none;
  4291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4292. font-weight:400;
  4293. font-style:normal;
  4294. font-size:16px;
  4295. }
  4296. #u33554 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:147px;
  4300. top:499px;
  4301. width:49px;
  4302. height:22px;
  4303. display:flex;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:16px;
  4308. }
  4309. #u33554 .text {
  4310. position:absolute;
  4311. align-self:flex-start;
  4312. padding:0px 0px 0px 0px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u33554_text {
  4317. border-width:0px;
  4318. white-space:nowrap;
  4319. text-transform:none;
  4320. }
  4321. #u33555_div {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:65px;
  4327. height:22px;
  4328. background:inherit;
  4329. background-color:rgba(255, 255, 255, 0);
  4330. border:none;
  4331. border-radius:0px;
  4332. -moz-box-shadow:none;
  4333. -webkit-box-shadow:none;
  4334. box-shadow:none;
  4335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4336. font-weight:400;
  4337. font-style:normal;
  4338. font-size:16px;
  4339. }
  4340. #u33555 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:147px;
  4344. top:625px;
  4345. width:65px;
  4346. height:22px;
  4347. display:flex;
  4348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4349. font-weight:400;
  4350. font-style:normal;
  4351. font-size:16px;
  4352. }
  4353. #u33555 .text {
  4354. position:absolute;
  4355. align-self:flex-start;
  4356. padding:0px 0px 0px 0px;
  4357. box-sizing:border-box;
  4358. width:100%;
  4359. }
  4360. #u33555_text {
  4361. border-width:0px;
  4362. white-space:nowrap;
  4363. text-transform:none;
  4364. }
  4365. #u33556_div {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:0px;
  4369. top:0px;
  4370. width:49px;
  4371. height:17px;
  4372. background:inherit;
  4373. background-color:rgba(255, 255, 255, 0);
  4374. border:none;
  4375. border-radius:0px;
  4376. -moz-box-shadow:none;
  4377. -webkit-box-shadow:none;
  4378. box-shadow:none;
  4379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:12px;
  4383. color:#AAAAAA;
  4384. }
  4385. #u33556 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:147px;
  4389. top:270px;
  4390. width:49px;
  4391. height:17px;
  4392. display:flex;
  4393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4394. font-weight:400;
  4395. font-style:normal;
  4396. font-size:12px;
  4397. color:#AAAAAA;
  4398. }
  4399. #u33556 .text {
  4400. position:absolute;
  4401. align-self:flex-start;
  4402. padding:0px 0px 0px 0px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u33556_text {
  4407. border-width:0px;
  4408. white-space:nowrap;
  4409. text-transform:none;
  4410. }
  4411. #u33557_img {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:201px;
  4417. height:2px;
  4418. }
  4419. #u33557 {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:120px;
  4423. top:440px;
  4424. width:200px;
  4425. height:1px;
  4426. display:flex;
  4427. }
  4428. #u33557 .text {
  4429. position:absolute;
  4430. align-self:center;
  4431. padding:2px 2px 2px 2px;
  4432. box-sizing:border-box;
  4433. width:100%;
  4434. }
  4435. #u33557_text {
  4436. border-width:0px;
  4437. word-wrap:break-word;
  4438. text-transform:none;
  4439. visibility:hidden;
  4440. }
  4441. #u33558_div {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:65px;
  4447. height:22px;
  4448. background:inherit;
  4449. background-color:rgba(255, 255, 255, 0);
  4450. border:none;
  4451. border-radius:0px;
  4452. -moz-box-shadow:none;
  4453. -webkit-box-shadow:none;
  4454. box-shadow:none;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:16px;
  4459. }
  4460. #u33558 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:147px;
  4464. top:583px;
  4465. width:65px;
  4466. height:22px;
  4467. display:flex;
  4468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:16px;
  4472. }
  4473. #u33558 .text {
  4474. position:absolute;
  4475. align-self:flex-start;
  4476. padding:0px 0px 0px 0px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u33558_text {
  4481. border-width:0px;
  4482. white-space:nowrap;
  4483. text-transform:none;
  4484. }
  4485. #u33559_div {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:65px;
  4491. height:22px;
  4492. background:inherit;
  4493. background-color:rgba(255, 255, 255, 0);
  4494. border:none;
  4495. border-radius:0px;
  4496. -moz-box-shadow:none;
  4497. -webkit-box-shadow:none;
  4498. box-shadow:none;
  4499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4500. font-weight:400;
  4501. font-style:normal;
  4502. font-size:16px;
  4503. }
  4504. #u33559 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:147px;
  4508. top:667px;
  4509. width:65px;
  4510. height:22px;
  4511. display:flex;
  4512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4513. font-weight:400;
  4514. font-style:normal;
  4515. font-size:16px;
  4516. }
  4517. #u33559 .text {
  4518. position:absolute;
  4519. align-self:flex-start;
  4520. padding:0px 0px 0px 0px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u33559_text {
  4525. border-width:0px;
  4526. white-space:nowrap;
  4527. text-transform:none;
  4528. }
  4529. #u33560_div {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:49px;
  4535. height:17px;
  4536. background:inherit;
  4537. background-color:rgba(255, 255, 255, 0);
  4538. border:none;
  4539. border-radius:0px;
  4540. -moz-box-shadow:none;
  4541. -webkit-box-shadow:none;
  4542. box-shadow:none;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:12px;
  4547. color:#AAAAAA;
  4548. }
  4549. #u33560 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:147px;
  4553. top:462px;
  4554. width:49px;
  4555. height:17px;
  4556. display:flex;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:12px;
  4561. color:#AAAAAA;
  4562. }
  4563. #u33560 .text {
  4564. position:absolute;
  4565. align-self:flex-start;
  4566. padding:0px 0px 0px 0px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u33560_text {
  4571. border-width:0px;
  4572. white-space:nowrap;
  4573. text-transform:none;
  4574. }
  4575. #u33561_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:65px;
  4581. height:22px;
  4582. background:inherit;
  4583. background-color:rgba(255, 255, 255, 0);
  4584. border:none;
  4585. border-radius:0px;
  4586. -moz-box-shadow:none;
  4587. -webkit-box-shadow:none;
  4588. box-shadow:none;
  4589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. font-size:16px;
  4593. }
  4594. #u33561 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:147px;
  4598. top:166px;
  4599. width:65px;
  4600. height:22px;
  4601. display:flex;
  4602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:16px;
  4606. }
  4607. #u33561 .text {
  4608. position:absolute;
  4609. align-self:flex-start;
  4610. padding:0px 0px 0px 0px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u33561_text {
  4615. border-width:0px;
  4616. white-space:nowrap;
  4617. text-transform:none;
  4618. }
  4619. #u33562_div {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:65px;
  4625. height:22px;
  4626. background:inherit;
  4627. background-color:rgba(255, 255, 255, 0);
  4628. border:none;
  4629. border-radius:0px;
  4630. -moz-box-shadow:none;
  4631. -webkit-box-shadow:none;
  4632. box-shadow:none;
  4633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:16px;
  4637. }
  4638. #u33562 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:147px;
  4642. top:304px;
  4643. width:65px;
  4644. height:22px;
  4645. display:flex;
  4646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:16px;
  4650. }
  4651. #u33562 .text {
  4652. position:absolute;
  4653. align-self:flex-start;
  4654. padding:0px 0px 0px 0px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u33562_text {
  4659. border-width:0px;
  4660. white-space:nowrap;
  4661. text-transform:none;
  4662. }
  4663. #u33563_div {
  4664. border-width:0px;
  4665. position:absolute;
  4666. left:0px;
  4667. top:0px;
  4668. width:49px;
  4669. height:17px;
  4670. background:inherit;
  4671. background-color:rgba(255, 255, 255, 0);
  4672. border:none;
  4673. border-radius:0px;
  4674. -moz-box-shadow:none;
  4675. -webkit-box-shadow:none;
  4676. box-shadow:none;
  4677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:12px;
  4681. color:#AAAAAA;
  4682. }
  4683. #u33563 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:147px;
  4687. top:130px;
  4688. width:49px;
  4689. height:17px;
  4690. display:flex;
  4691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:12px;
  4695. color:#AAAAAA;
  4696. }
  4697. #u33563 .text {
  4698. position:absolute;
  4699. align-self:flex-start;
  4700. padding:0px 0px 0px 0px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u33563_text {
  4705. border-width:0px;
  4706. white-space:nowrap;
  4707. text-transform:none;
  4708. }
  4709. #u33564_img {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:201px;
  4715. height:2px;
  4716. }
  4717. #u33564 {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:120px;
  4721. top:249px;
  4722. width:200px;
  4723. height:1px;
  4724. display:flex;
  4725. }
  4726. #u33564 .text {
  4727. position:absolute;
  4728. align-self:center;
  4729. padding:2px 2px 2px 2px;
  4730. box-sizing:border-box;
  4731. width:100%;
  4732. }
  4733. #u33564_text {
  4734. border-width:0px;
  4735. word-wrap:break-word;
  4736. text-transform:none;
  4737. visibility:hidden;
  4738. }
  4739. #u33565_div {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:65px;
  4745. height:22px;
  4746. background:inherit;
  4747. background-color:rgba(255, 255, 255, 0);
  4748. border:none;
  4749. border-radius:0px;
  4750. -moz-box-shadow:none;
  4751. -webkit-box-shadow:none;
  4752. box-shadow:none;
  4753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4754. font-weight:400;
  4755. font-style:normal;
  4756. font-size:16px;
  4757. }
  4758. #u33565 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:147px;
  4762. top:206px;
  4763. width:65px;
  4764. height:22px;
  4765. display:flex;
  4766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:16px;
  4770. }
  4771. #u33565 .text {
  4772. position:absolute;
  4773. align-self:flex-start;
  4774. padding:0px 0px 0px 0px;
  4775. box-sizing:border-box;
  4776. width:100%;
  4777. }
  4778. #u33565_text {
  4779. border-width:0px;
  4780. white-space:nowrap;
  4781. text-transform:none;
  4782. }
  4783. #u33566_div {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:65px;
  4789. height:22px;
  4790. background:inherit;
  4791. background-color:rgba(255, 255, 255, 0);
  4792. border:none;
  4793. border-radius:0px;
  4794. -moz-box-shadow:none;
  4795. -webkit-box-shadow:none;
  4796. box-shadow:none;
  4797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4798. font-weight:400;
  4799. font-style:normal;
  4800. font-size:16px;
  4801. }
  4802. #u33566 {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:147px;
  4806. top:541px;
  4807. width:65px;
  4808. height:22px;
  4809. display:flex;
  4810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4811. font-weight:400;
  4812. font-style:normal;
  4813. font-size:16px;
  4814. }
  4815. #u33566 .text {
  4816. position:absolute;
  4817. align-self:flex-start;
  4818. padding:0px 0px 0px 0px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u33566_text {
  4823. border-width:0px;
  4824. white-space:nowrap;
  4825. text-transform:none;
  4826. }
  4827. #u33567_div {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:1142px;
  4833. height:20px;
  4834. background:inherit;
  4835. background-color:rgba(255, 255, 255, 0);
  4836. border:none;
  4837. border-left:0px;
  4838. border-top:0px;
  4839. border-right:0px;
  4840. border-radius:0px;
  4841. border-bottom-right-radius:0px;
  4842. border-bottom-left-radius:0px;
  4843. -moz-box-shadow:none;
  4844. -webkit-box-shadow:none;
  4845. box-shadow:none;
  4846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4847. font-weight:400;
  4848. font-style:normal;
  4849. font-size:14px;
  4850. color:#7F7F7F;
  4851. }
  4852. #u33567 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:352px;
  4856. top:100px;
  4857. width:1142px;
  4858. height:20px;
  4859. display:flex;
  4860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:14px;
  4864. color:#7F7F7F;
  4865. }
  4866. #u33567 .text {
  4867. position:absolute;
  4868. align-self:center;
  4869. padding:0px 0px 0px 0px;
  4870. box-sizing:border-box;
  4871. width:100%;
  4872. }
  4873. #u33567_text {
  4874. border-width:0px;
  4875. white-space:nowrap;
  4876. text-transform:none;
  4877. }
  4878. #u33568_div {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:684px;
  4884. height:60px;
  4885. background:inherit;
  4886. background-color:rgba(255, 255, 255, 0);
  4887. border:none;
  4888. border-left:0px;
  4889. border-top:0px;
  4890. border-right:0px;
  4891. border-radius:0px;
  4892. border-bottom-right-radius:0px;
  4893. border-bottom-left-radius:0px;
  4894. -moz-box-shadow:none;
  4895. -webkit-box-shadow:none;
  4896. box-shadow:none;
  4897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:14px;
  4901. color:#D9001B;
  4902. line-height:30px;
  4903. }
  4904. #u33568 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:357px;
  4908. top:504px;
  4909. width:684px;
  4910. height:60px;
  4911. display:flex;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:14px;
  4916. color:#D9001B;
  4917. line-height:30px;
  4918. }
  4919. #u33568 .text {
  4920. position:absolute;
  4921. align-self:center;
  4922. padding:0px 0px 0px 0px;
  4923. box-sizing:border-box;
  4924. width:100%;
  4925. }
  4926. #u33568_text {
  4927. border-width:0px;
  4928. word-wrap:break-word;
  4929. text-transform:none;
  4930. }
  4931. #u33569 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:0px;
  4937. height:0px;
  4938. }
  4939. #u33570_div {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:400px;
  4945. height:500px;
  4946. background:inherit;
  4947. background-color:rgba(255, 255, 255, 1);
  4948. box-sizing:border-box;
  4949. border-width:1px;
  4950. border-style:solid;
  4951. border-color:rgba(204, 204, 204, 1);
  4952. border-radius:4px;
  4953. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4954. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4955. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4956. font-family:'Microsoft YaHei', sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. }
  4960. #u33570 {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:1623px;
  4964. top:157px;
  4965. width:400px;
  4966. height:500px;
  4967. display:flex;
  4968. font-family:'Microsoft YaHei', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. }
  4972. #u33570 .text {
  4973. position:absolute;
  4974. align-self:center;
  4975. padding:2px 2px 2px 2px;
  4976. box-sizing:border-box;
  4977. width:100%;
  4978. }
  4979. #u33570_text {
  4980. border-width:0px;
  4981. word-wrap:break-word;
  4982. text-transform:none;
  4983. visibility:hidden;
  4984. }
  4985. #u33571_div {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:91px;
  4991. height:22px;
  4992. background:inherit;
  4993. background-color:rgba(255, 255, 255, 0);
  4994. border:none;
  4995. border-radius:0px;
  4996. -moz-box-shadow:none;
  4997. -webkit-box-shadow:none;
  4998. box-shadow:none;
  4999. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5000. font-weight:500;
  5001. font-style:normal;
  5002. font-size:18px;
  5003. color:#000000;
  5004. line-height:22px;
  5005. }
  5006. #u33571 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:1648px;
  5010. top:183px;
  5011. width:91px;
  5012. height:22px;
  5013. display:flex;
  5014. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5015. font-weight:500;
  5016. font-style:normal;
  5017. font-size:18px;
  5018. color:#000000;
  5019. line-height:22px;
  5020. }
  5021. #u33571 .text {
  5022. position:absolute;
  5023. align-self:flex-start;
  5024. padding:0px 0px 0px 0px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u33571_text {
  5029. border-width:0px;
  5030. white-space:nowrap;
  5031. text-transform:none;
  5032. }
  5033. #u33572_img {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:14px;
  5039. height:14px;
  5040. }
  5041. #u33572 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:1994px;
  5045. top:167px;
  5046. width:14px;
  5047. height:14px;
  5048. display:flex;
  5049. }
  5050. #u33572 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:2px 2px 2px 2px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u33572_text {
  5058. border-width:0px;
  5059. word-wrap:break-word;
  5060. text-transform:none;
  5061. visibility:hidden;
  5062. }
  5063. #u33573 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:0px;
  5069. height:0px;
  5070. }
  5071. #u33574_div {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:280px;
  5077. height:320px;
  5078. background:inherit;
  5079. background-color:rgba(255, 255, 255, 1);
  5080. box-sizing:border-box;
  5081. border-width:1px;
  5082. border-style:solid;
  5083. border-color:rgba(121, 121, 121, 1);
  5084. border-radius:10px;
  5085. -moz-box-shadow:none;
  5086. -webkit-box-shadow:none;
  5087. box-shadow:none;
  5088. }
  5089. #u33574 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:1683px;
  5093. top:237px;
  5094. width:280px;
  5095. height:320px;
  5096. display:flex;
  5097. }
  5098. #u33574 .text {
  5099. position:absolute;
  5100. align-self:center;
  5101. padding:2px 2px 2px 2px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u33574_text {
  5106. border-width:0px;
  5107. word-wrap:break-word;
  5108. text-transform:none;
  5109. visibility:hidden;
  5110. }
  5111. #u33575_div {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:111px;
  5117. height:22px;
  5118. background:inherit;
  5119. background-color:rgba(255, 255, 255, 0);
  5120. border:none;
  5121. border-radius:0px;
  5122. -moz-box-shadow:none;
  5123. -webkit-box-shadow:none;
  5124. box-shadow:none;
  5125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5126. font-weight:500;
  5127. font-style:normal;
  5128. font-size:18px;
  5129. color:#000000;
  5130. text-align:center;
  5131. line-height:22px;
  5132. }
  5133. #u33575 {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:1768px;
  5137. top:256px;
  5138. width:111px;
  5139. height:22px;
  5140. display:flex;
  5141. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5142. font-weight:500;
  5143. font-style:normal;
  5144. font-size:18px;
  5145. color:#000000;
  5146. text-align:center;
  5147. line-height:22px;
  5148. }
  5149. #u33575 .text {
  5150. position:absolute;
  5151. align-self:flex-start;
  5152. padding:0px 0px 0px 0px;
  5153. box-sizing:border-box;
  5154. width:100%;
  5155. }
  5156. #u33575_text {
  5157. border-width:0px;
  5158. word-wrap:break-word;
  5159. text-transform:none;
  5160. }
  5161. #u33576 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:0px;
  5167. height:0px;
  5168. }
  5169. #u33577_div {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:29px;
  5175. height:22px;
  5176. background:inherit;
  5177. background-color:rgba(255, 255, 255, 0);
  5178. border:none;
  5179. border-radius:0px;
  5180. -moz-box-shadow:none;
  5181. -webkit-box-shadow:none;
  5182. box-shadow:none;
  5183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5184. font-weight:400;
  5185. font-style:normal;
  5186. font-size:14px;
  5187. color:#000000;
  5188. text-align:center;
  5189. line-height:22px;
  5190. }
  5191. #u33577 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:1796px;
  5195. top:581px;
  5196. width:29px;
  5197. height:22px;
  5198. display:flex;
  5199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:14px;
  5203. color:#000000;
  5204. text-align:center;
  5205. line-height:22px;
  5206. }
  5207. #u33577 .text {
  5208. position:absolute;
  5209. align-self:flex-start;
  5210. padding:0px 0px 0px 0px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u33577_text {
  5215. border-width:0px;
  5216. white-space:nowrap;
  5217. text-transform:none;
  5218. }
  5219. #u33578_img {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:16px;
  5225. height:16px;
  5226. }
  5227. #u33578 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:1834px;
  5231. top:584px;
  5232. width:16px;
  5233. height:16px;
  5234. display:flex;
  5235. }
  5236. #u33578 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:2px 2px 2px 2px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u33578_text {
  5244. border-width:0px;
  5245. word-wrap:break-word;
  5246. text-transform:none;
  5247. visibility:hidden;
  5248. }
  5249. #u33579_img {
  5250. border-width:0px;
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:168px;
  5255. height:168px;
  5256. }
  5257. #u33579 {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:1739px;
  5261. top:327px;
  5262. width:168px;
  5263. height:168px;
  5264. display:flex;
  5265. }
  5266. #u33579 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 2px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u33579_text {
  5274. border-width:0px;
  5275. word-wrap:break-word;
  5276. text-transform:none;
  5277. visibility:hidden;
  5278. }
  5279. #u33580_div {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:184px;
  5285. height:22px;
  5286. background:inherit;
  5287. background-color:rgba(255, 255, 255, 0);
  5288. border:none;
  5289. border-radius:0px;
  5290. -moz-box-shadow:none;
  5291. -webkit-box-shadow:none;
  5292. box-shadow:none;
  5293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5294. font-weight:400;
  5295. font-style:normal;
  5296. font-size:14px;
  5297. color:#AAAAAA;
  5298. text-align:center;
  5299. line-height:22px;
  5300. }
  5301. #u33580 {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:1731px;
  5305. top:518px;
  5306. width:184px;
  5307. height:22px;
  5308. display:flex;
  5309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5310. font-weight:400;
  5311. font-style:normal;
  5312. font-size:14px;
  5313. color:#AAAAAA;
  5314. text-align:center;
  5315. line-height:22px;
  5316. }
  5317. #u33580 .text {
  5318. position:absolute;
  5319. align-self:flex-start;
  5320. padding:0px 0px 0px 0px;
  5321. box-sizing:border-box;
  5322. width:100%;
  5323. }
  5324. #u33580_text {
  5325. border-width:0px;
  5326. white-space:nowrap;
  5327. text-transform:none;
  5328. }
  5329. #u33581_div {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:184px;
  5335. height:22px;
  5336. background:inherit;
  5337. background-color:rgba(255, 255, 255, 0);
  5338. border:none;
  5339. border-radius:0px;
  5340. -moz-box-shadow:none;
  5341. -webkit-box-shadow:none;
  5342. box-shadow:none;
  5343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5344. font-weight:400;
  5345. font-style:normal;
  5346. font-size:12px;
  5347. color:#666666;
  5348. text-align:center;
  5349. line-height:22px;
  5350. }
  5351. #u33581 {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:1731px;
  5355. top:287px;
  5356. width:184px;
  5357. height:22px;
  5358. display:flex;
  5359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:12px;
  5363. color:#666666;
  5364. text-align:center;
  5365. line-height:22px;
  5366. }
  5367. #u33581 .text {
  5368. position:absolute;
  5369. align-self:flex-start;
  5370. padding:0px 0px 0px 0px;
  5371. box-sizing:border-box;
  5372. width:100%;
  5373. }
  5374. #u33581_text {
  5375. border-width:0px;
  5376. word-wrap:break-word;
  5377. text-transform:none;
  5378. }
  5379. #u33583 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:0px;
  5385. height:0px;
  5386. }
  5387. #u33584_div {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:30px;
  5393. height:30px;
  5394. background:inherit;
  5395. background-color:rgba(255, 255, 255, 1);
  5396. box-sizing:border-box;
  5397. border-width:1px;
  5398. border-style:solid;
  5399. border-color:rgba(228, 228, 228, 1);
  5400. border-radius:4px;
  5401. -moz-box-shadow:none;
  5402. -webkit-box-shadow:none;
  5403. box-shadow:none;
  5404. font-family:'Microsoft YaHei', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:14px;
  5408. }
  5409. #u33584 {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:996px;
  5413. top:1183px;
  5414. width:30px;
  5415. height:30px;
  5416. display:flex;
  5417. font-family:'Microsoft YaHei', sans-serif;
  5418. font-weight:400;
  5419. font-style:normal;
  5420. font-size:14px;
  5421. }
  5422. #u33584 .text {
  5423. position:absolute;
  5424. align-self:center;
  5425. padding:2px 2px 2px 2px;
  5426. box-sizing:border-box;
  5427. width:100%;
  5428. }
  5429. #u33584_text {
  5430. border-width:0px;
  5431. word-wrap:break-word;
  5432. text-transform:none;
  5433. }
  5434. #u33585_div {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:0px;
  5438. top:0px;
  5439. width:49px;
  5440. height:30px;
  5441. background:inherit;
  5442. background-color:rgba(255, 255, 255, 0);
  5443. box-sizing:border-box;
  5444. border-width:1px;
  5445. border-style:solid;
  5446. border-color:rgba(188, 188, 188, 1);
  5447. border-radius:4px;
  5448. -moz-box-shadow:none;
  5449. -webkit-box-shadow:none;
  5450. box-shadow:none;
  5451. font-family:'Microsoft YaHei', sans-serif;
  5452. font-weight:400;
  5453. font-style:normal;
  5454. font-size:14px;
  5455. color:#1E1E1E;
  5456. }
  5457. #u33585 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:1512px;
  5461. top:1183px;
  5462. width:49px;
  5463. height:30px;
  5464. display:flex;
  5465. font-family:'Microsoft YaHei', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:14px;
  5469. color:#1E1E1E;
  5470. }
  5471. #u33585 .text {
  5472. position:absolute;
  5473. align-self:center;
  5474. padding:5px 10px 5px 10px;
  5475. box-sizing:border-box;
  5476. width:100%;
  5477. }
  5478. #u33585_text {
  5479. border-width:0px;
  5480. white-space:nowrap;
  5481. text-transform:none;
  5482. }
  5483. #u33586 {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:0px;
  5489. height:0px;
  5490. }
  5491. #u33587_div {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:0px;
  5495. top:0px;
  5496. width:33px;
  5497. height:24px;
  5498. background:inherit;
  5499. background-color:rgba(255, 255, 255, 1);
  5500. border:none;
  5501. border-radius:0px;
  5502. -moz-box-shadow:none;
  5503. -webkit-box-shadow:none;
  5504. box-shadow:none;
  5505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. font-size:14px;
  5509. color:#BCBCBC;
  5510. text-align:left;
  5511. }
  5512. #u33587 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:1280px;
  5516. top:1186px;
  5517. width:33px;
  5518. height:24px;
  5519. display:flex;
  5520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:14px;
  5524. color:#BCBCBC;
  5525. text-align:left;
  5526. }
  5527. #u33587 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 2px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u33587_text {
  5535. border-width:0px;
  5536. white-space:nowrap;
  5537. text-transform:none;
  5538. }
  5539. #u33588_div {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:0px;
  5543. top:0px;
  5544. width:40px;
  5545. height:30px;
  5546. background:inherit;
  5547. background-color:rgba(255, 255, 255, 1);
  5548. box-sizing:border-box;
  5549. border-width:1px;
  5550. border-style:solid;
  5551. border-color:rgba(228, 228, 228, 1);
  5552. border-radius:4px;
  5553. -moz-box-shadow:none;
  5554. -webkit-box-shadow:none;
  5555. box-shadow:none;
  5556. font-family:'Microsoft YaHei', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:14px;
  5560. }
  5561. #u33588 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:1315px;
  5565. top:1183px;
  5566. width:40px;
  5567. height:30px;
  5568. display:flex;
  5569. font-family:'Microsoft YaHei', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:14px;
  5573. }
  5574. #u33588 .text {
  5575. position:absolute;
  5576. align-self:center;
  5577. padding:2px 2px 2px 2px;
  5578. box-sizing:border-box;
  5579. width:100%;
  5580. }
  5581. #u33588_text {
  5582. border-width:0px;
  5583. word-wrap:break-word;
  5584. text-transform:none;
  5585. visibility:hidden;
  5586. }
  5587. #u33589_div {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:19px;
  5593. height:24px;
  5594. background:inherit;
  5595. background-color:rgba(255, 255, 255, 1);
  5596. border:none;
  5597. border-radius:0px;
  5598. -moz-box-shadow:none;
  5599. -webkit-box-shadow:none;
  5600. box-shadow:none;
  5601. font-family:'Microsoft YaHei', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:14px;
  5605. color:#BCBCBC;
  5606. text-align:left;
  5607. }
  5608. #u33589 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:1357px;
  5612. top:1187px;
  5613. width:19px;
  5614. height:24px;
  5615. display:flex;
  5616. font-family:'Microsoft YaHei', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. font-size:14px;
  5620. color:#BCBCBC;
  5621. text-align:left;
  5622. }
  5623. #u33589 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:2px 2px 2px 2px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u33589_text {
  5631. border-width:0px;
  5632. white-space:nowrap;
  5633. text-transform:none;
  5634. }
  5635. #u33590_input {
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:34px;
  5640. height:25px;
  5641. padding:2px 2px 2px 2px;
  5642. font-family:'Microsoft YaHei', sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:13px;
  5646. letter-spacing:normal;
  5647. color:#000000;
  5648. vertical-align:none;
  5649. text-align:left;
  5650. text-transform:none;
  5651. background-color:transparent;
  5652. border-color:transparent;
  5653. }
  5654. #u33590_input.disabled {
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:34px;
  5659. height:25px;
  5660. padding:2px 2px 2px 2px;
  5661. font-family:'Microsoft YaHei', sans-serif;
  5662. font-weight:400;
  5663. font-style:normal;
  5664. font-size:13px;
  5665. letter-spacing:normal;
  5666. color:#000000;
  5667. vertical-align:none;
  5668. text-align:left;
  5669. text-transform:none;
  5670. background-color:transparent;
  5671. border-color:transparent;
  5672. }
  5673. #u33590_div {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:34px;
  5679. height:25px;
  5680. background:inherit;
  5681. background-color:rgba(255, 255, 255, 1);
  5682. border:none;
  5683. border-radius:0px;
  5684. -moz-box-shadow:none;
  5685. -webkit-box-shadow:none;
  5686. box-shadow:none;
  5687. font-family:'Microsoft YaHei', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. }
  5691. #u33590 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:1318px;
  5695. top:1185px;
  5696. width:34px;
  5697. height:25px;
  5698. display:flex;
  5699. font-family:'Microsoft YaHei', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. }
  5703. #u33590 .text {
  5704. position:absolute;
  5705. align-self:center;
  5706. padding:2px 2px 2px 2px;
  5707. box-sizing:border-box;
  5708. width:100%;
  5709. }
  5710. #u33590_div.disabled {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:34px;
  5716. height:25px;
  5717. background:inherit;
  5718. background-color:rgba(240, 240, 240, 1);
  5719. border:none;
  5720. border-radius:0px;
  5721. -moz-box-shadow:none;
  5722. -webkit-box-shadow:none;
  5723. box-shadow:none;
  5724. font-family:'Microsoft YaHei', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. }
  5728. #u33590.disabled {
  5729. }
  5730. #u33591_div {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:30px;
  5736. height:30px;
  5737. background:inherit;
  5738. background-color:rgba(41, 143, 255, 1);
  5739. border:none;
  5740. border-radius:4px;
  5741. -moz-box-shadow:none;
  5742. -webkit-box-shadow:none;
  5743. box-shadow:none;
  5744. font-family:'Microsoft YaHei', sans-serif;
  5745. font-weight:400;
  5746. font-style:normal;
  5747. font-size:14px;
  5748. color:#FFFFFF;
  5749. }
  5750. #u33591 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:1030px;
  5754. top:1183px;
  5755. width:30px;
  5756. height:30px;
  5757. display:flex;
  5758. font-family:'Microsoft YaHei', sans-serif;
  5759. font-weight:400;
  5760. font-style:normal;
  5761. font-size:14px;
  5762. color:#FFFFFF;
  5763. }
  5764. #u33591 .text {
  5765. position:absolute;
  5766. align-self:center;
  5767. padding:2px 2px 2px 2px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u33591_text {
  5772. border-width:0px;
  5773. word-wrap:break-word;
  5774. text-transform:none;
  5775. }
  5776. #u33592_div {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:30px;
  5782. height:30px;
  5783. background:inherit;
  5784. background-color:rgba(255, 255, 255, 1);
  5785. box-sizing:border-box;
  5786. border-width:1px;
  5787. border-style:solid;
  5788. border-color:rgba(228, 228, 228, 1);
  5789. border-radius:4px;
  5790. -moz-box-shadow:none;
  5791. -webkit-box-shadow:none;
  5792. box-shadow:none;
  5793. font-family:'Microsoft YaHei', sans-serif;
  5794. font-weight:400;
  5795. font-style:normal;
  5796. font-size:14px;
  5797. }
  5798. #u33592 {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:1064px;
  5802. top:1183px;
  5803. width:30px;
  5804. height:30px;
  5805. display:flex;
  5806. font-family:'Microsoft YaHei', sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. font-size:14px;
  5810. }
  5811. #u33592 .text {
  5812. position:absolute;
  5813. align-self:center;
  5814. padding:2px 2px 2px 2px;
  5815. box-sizing:border-box;
  5816. width:100%;
  5817. }
  5818. #u33592_text {
  5819. border-width:0px;
  5820. word-wrap:break-word;
  5821. text-transform:none;
  5822. }
  5823. #u33593_div {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:30px;
  5829. height:30px;
  5830. background:inherit;
  5831. background-color:rgba(255, 255, 255, 1);
  5832. box-sizing:border-box;
  5833. border-width:1px;
  5834. border-style:solid;
  5835. border-color:rgba(228, 228, 228, 1);
  5836. border-radius:4px;
  5837. -moz-box-shadow:none;
  5838. -webkit-box-shadow:none;
  5839. box-shadow:none;
  5840. font-family:'Microsoft YaHei', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. font-size:14px;
  5844. }
  5845. #u33593 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:1098px;
  5849. top:1183px;
  5850. width:30px;
  5851. height:30px;
  5852. display:flex;
  5853. font-family:'Microsoft YaHei', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:14px;
  5857. }
  5858. #u33593 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:2px 2px 2px 2px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u33593_text {
  5866. border-width:0px;
  5867. word-wrap:break-word;
  5868. text-transform:none;
  5869. }
  5870. #u33594_div {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:30px;
  5876. height:30px;
  5877. background:inherit;
  5878. background-color:rgba(255, 255, 255, 1);
  5879. border:none;
  5880. border-radius:4px;
  5881. -moz-box-shadow:none;
  5882. -webkit-box-shadow:none;
  5883. box-shadow:none;
  5884. font-family:'Microsoft YaHei', sans-serif;
  5885. font-weight:400;
  5886. font-style:normal;
  5887. font-size:14px;
  5888. }
  5889. #u33594 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:1128px;
  5893. top:1183px;
  5894. width:30px;
  5895. height:30px;
  5896. display:flex;
  5897. font-family:'Microsoft YaHei', sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:14px;
  5901. }
  5902. #u33594 .text {
  5903. position:absolute;
  5904. align-self:center;
  5905. padding:2px 2px 2px 2px;
  5906. box-sizing:border-box;
  5907. width:100%;
  5908. }
  5909. #u33594_text {
  5910. border-width:0px;
  5911. word-wrap:break-word;
  5912. text-transform:none;
  5913. }
  5914. #u33595_div {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:30px;
  5920. height:30px;
  5921. background:inherit;
  5922. background-color:rgba(255, 255, 255, 1);
  5923. box-sizing:border-box;
  5924. border-width:1px;
  5925. border-style:solid;
  5926. border-color:rgba(228, 228, 228, 1);
  5927. border-radius:4px;
  5928. -moz-box-shadow:none;
  5929. -webkit-box-shadow:none;
  5930. box-shadow:none;
  5931. font-family:'Microsoft YaHei', sans-serif;
  5932. font-weight:400;
  5933. font-style:normal;
  5934. font-size:14px;
  5935. }
  5936. #u33595 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:1162px;
  5940. top:1183px;
  5941. width:30px;
  5942. height:30px;
  5943. display:flex;
  5944. font-family:'Microsoft YaHei', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:14px;
  5948. }
  5949. #u33595 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:2px 2px 2px 2px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u33595_text {
  5957. border-width:0px;
  5958. word-wrap:break-word;
  5959. text-transform:none;
  5960. }
  5961. #u33596_div {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:32px;
  5967. height:21px;
  5968. background:inherit;
  5969. background-color:rgba(255, 255, 255, 1);
  5970. border:none;
  5971. border-radius:15px;
  5972. -moz-box-shadow:none;
  5973. -webkit-box-shadow:none;
  5974. box-shadow:none;
  5975. font-family:'Microsoft YaHei', sans-serif;
  5976. font-weight:400;
  5977. font-style:normal;
  5978. font-size:14px;
  5979. color:#1E1E1E;
  5980. }
  5981. #u33596 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:1236px;
  5985. top:1188px;
  5986. width:32px;
  5987. height:21px;
  5988. display:flex;
  5989. font-family:'Microsoft YaHei', sans-serif;
  5990. font-weight:400;
  5991. font-style:normal;
  5992. font-size:14px;
  5993. color:#1E1E1E;
  5994. }
  5995. #u33596 .text {
  5996. position:absolute;
  5997. align-self:center;
  5998. padding:2px 2px 2px 2px;
  5999. box-sizing:border-box;
  6000. width:100%;
  6001. }
  6002. #u33596_text {
  6003. border-width:0px;
  6004. white-space:nowrap;
  6005. text-transform:none;
  6006. }
  6007. #u33597 {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:0px;
  6011. top:0px;
  6012. width:0px;
  6013. height:0px;
  6014. }
  6015. #u33598_div {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:0px;
  6019. top:0px;
  6020. width:31px;
  6021. height:30px;
  6022. background:inherit;
  6023. background-color:rgba(255, 255, 255, 1);
  6024. box-sizing:border-box;
  6025. border-width:1px;
  6026. border-style:solid;
  6027. border-color:rgba(228, 228, 228, 1);
  6028. border-radius:4px;
  6029. -moz-box-shadow:none;
  6030. -webkit-box-shadow:none;
  6031. box-shadow:none;
  6032. font-family:'Microsoft YaHei', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:12px;
  6036. }
  6037. #u33598 {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:961px;
  6041. top:1183px;
  6042. width:31px;
  6043. height:30px;
  6044. display:flex;
  6045. font-family:'Microsoft YaHei', sans-serif;
  6046. font-weight:400;
  6047. font-style:normal;
  6048. font-size:12px;
  6049. }
  6050. #u33598 .text {
  6051. position:absolute;
  6052. align-self:center;
  6053. padding:2px 2px 2px 2px;
  6054. box-sizing:border-box;
  6055. width:100%;
  6056. }
  6057. #u33598_text {
  6058. border-width:0px;
  6059. word-wrap:break-word;
  6060. text-transform:none;
  6061. visibility:hidden;
  6062. }
  6063. #u33599_img {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:0px;
  6067. top:0px;
  6068. width:8px;
  6069. height:14px;
  6070. }
  6071. #u33599 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:973px;
  6075. top:1191px;
  6076. width:8px;
  6077. height:14px;
  6078. display:flex;
  6079. font-family:'Microsoft YaHei', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:12px;
  6083. }
  6084. #u33599 .text {
  6085. position:absolute;
  6086. align-self:center;
  6087. padding:2px 2px 2px 2px;
  6088. box-sizing:border-box;
  6089. width:100%;
  6090. }
  6091. #u33599_text {
  6092. border-width:0px;
  6093. word-wrap:break-word;
  6094. text-transform:none;
  6095. visibility:hidden;
  6096. }
  6097. #u33600 {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:0px;
  6103. height:0px;
  6104. }
  6105. #u33601_div {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:31px;
  6111. height:30px;
  6112. background:inherit;
  6113. background-color:rgba(255, 255, 255, 1);
  6114. box-sizing:border-box;
  6115. border-width:1px;
  6116. border-style:solid;
  6117. border-color:rgba(228, 228, 228, 1);
  6118. border-radius:4px;
  6119. -moz-box-shadow:none;
  6120. -webkit-box-shadow:none;
  6121. box-shadow:none;
  6122. font-family:'Microsoft YaHei', sans-serif;
  6123. font-weight:400;
  6124. font-style:normal;
  6125. font-size:12px;
  6126. }
  6127. #u33601 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:1195px;
  6131. top:1183px;
  6132. width:31px;
  6133. height:30px;
  6134. display:flex;
  6135. font-family:'Microsoft YaHei', sans-serif;
  6136. font-weight:400;
  6137. font-style:normal;
  6138. font-size:12px;
  6139. }
  6140. #u33601 .text {
  6141. position:absolute;
  6142. align-self:center;
  6143. padding:2px 2px 2px 2px;
  6144. box-sizing:border-box;
  6145. width:100%;
  6146. }
  6147. #u33601_text {
  6148. border-width:0px;
  6149. word-wrap:break-word;
  6150. text-transform:none;
  6151. visibility:hidden;
  6152. }
  6153. #u33602_img {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:8px;
  6159. height:14px;
  6160. }
  6161. #u33602 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:1208px;
  6165. top:1191px;
  6166. width:8px;
  6167. height:14px;
  6168. display:flex;
  6169. font-family:'Microsoft YaHei', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:12px;
  6173. }
  6174. #u33602 .text {
  6175. position:absolute;
  6176. align-self:center;
  6177. padding:2px 2px 2px 2px;
  6178. box-sizing:border-box;
  6179. width:100%;
  6180. }
  6181. #u33602_text {
  6182. border-width:0px;
  6183. word-wrap:break-word;
  6184. text-transform:none;
  6185. visibility:hidden;
  6186. }
  6187. #u33603 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:0px;
  6193. height:0px;
  6194. }
  6195. #u33604_div {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:0px;
  6199. top:0px;
  6200. width:33px;
  6201. height:24px;
  6202. background:inherit;
  6203. background-color:rgba(255, 255, 255, 1);
  6204. border:none;
  6205. border-radius:0px;
  6206. -moz-box-shadow:none;
  6207. -webkit-box-shadow:none;
  6208. box-shadow:none;
  6209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. font-size:14px;
  6213. color:#BCBCBC;
  6214. text-align:left;
  6215. }
  6216. #u33604 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:1396px;
  6220. top:1186px;
  6221. width:33px;
  6222. height:24px;
  6223. display:flex;
  6224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:14px;
  6228. color:#BCBCBC;
  6229. text-align:left;
  6230. }
  6231. #u33604 .text {
  6232. position:absolute;
  6233. align-self:center;
  6234. padding:2px 2px 2px 2px;
  6235. box-sizing:border-box;
  6236. width:100%;
  6237. }
  6238. #u33604_text {
  6239. border-width:0px;
  6240. white-space:nowrap;
  6241. text-transform:none;
  6242. }
  6243. #u33605_div {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:40px;
  6249. height:30px;
  6250. background:inherit;
  6251. background-color:rgba(255, 255, 255, 1);
  6252. box-sizing:border-box;
  6253. border-width:1px;
  6254. border-style:solid;
  6255. border-color:rgba(228, 228, 228, 1);
  6256. border-radius:4px;
  6257. -moz-box-shadow:none;
  6258. -webkit-box-shadow:none;
  6259. box-shadow:none;
  6260. font-family:'Microsoft YaHei', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:14px;
  6264. }
  6265. #u33605 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:1431px;
  6269. top:1183px;
  6270. width:40px;
  6271. height:30px;
  6272. display:flex;
  6273. font-family:'Microsoft YaHei', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:14px;
  6277. }
  6278. #u33605 .text {
  6279. position:absolute;
  6280. align-self:center;
  6281. padding:2px 2px 2px 2px;
  6282. box-sizing:border-box;
  6283. width:100%;
  6284. }
  6285. #u33605_text {
  6286. border-width:0px;
  6287. word-wrap:break-word;
  6288. text-transform:none;
  6289. visibility:hidden;
  6290. }
  6291. #u33606_div {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:19px;
  6297. height:24px;
  6298. background:inherit;
  6299. background-color:rgba(255, 255, 255, 1);
  6300. border:none;
  6301. border-radius:0px;
  6302. -moz-box-shadow:none;
  6303. -webkit-box-shadow:none;
  6304. box-shadow:none;
  6305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6306. font-weight:400;
  6307. font-style:normal;
  6308. font-size:14px;
  6309. color:#BCBCBC;
  6310. text-align:left;
  6311. }
  6312. #u33606 {
  6313. border-width:0px;
  6314. position:absolute;
  6315. left:1473px;
  6316. top:1187px;
  6317. width:19px;
  6318. height:24px;
  6319. display:flex;
  6320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6321. font-weight:400;
  6322. font-style:normal;
  6323. font-size:14px;
  6324. color:#BCBCBC;
  6325. text-align:left;
  6326. }
  6327. #u33606 .text {
  6328. position:absolute;
  6329. align-self:center;
  6330. padding:2px 2px 2px 2px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u33606_text {
  6335. border-width:0px;
  6336. white-space:nowrap;
  6337. text-transform:none;
  6338. }
  6339. #u33607_input {
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:34px;
  6344. height:25px;
  6345. padding:2px 2px 2px 2px;
  6346. font-family:'Microsoft YaHei', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. font-size:13px;
  6350. letter-spacing:normal;
  6351. color:#000000;
  6352. vertical-align:none;
  6353. text-align:left;
  6354. text-transform:none;
  6355. background-color:transparent;
  6356. border-color:transparent;
  6357. }
  6358. #u33607_input.disabled {
  6359. position:absolute;
  6360. left:0px;
  6361. top:0px;
  6362. width:34px;
  6363. height:25px;
  6364. padding:2px 2px 2px 2px;
  6365. font-family:'Microsoft YaHei', sans-serif;
  6366. font-weight:400;
  6367. font-style:normal;
  6368. font-size:13px;
  6369. letter-spacing:normal;
  6370. color:#000000;
  6371. vertical-align:none;
  6372. text-align:left;
  6373. text-transform:none;
  6374. background-color:transparent;
  6375. border-color:transparent;
  6376. }
  6377. #u33607_div {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:34px;
  6383. height:25px;
  6384. background:inherit;
  6385. background-color:rgba(255, 255, 255, 1);
  6386. border:none;
  6387. border-radius:0px;
  6388. -moz-box-shadow:none;
  6389. -webkit-box-shadow:none;
  6390. box-shadow:none;
  6391. font-family:'Microsoft YaHei', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. }
  6395. #u33607 {
  6396. border-width:0px;
  6397. position:absolute;
  6398. left:1434px;
  6399. top:1185px;
  6400. width:34px;
  6401. height:25px;
  6402. display:flex;
  6403. font-family:'Microsoft YaHei', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. }
  6407. #u33607 .text {
  6408. position:absolute;
  6409. align-self:center;
  6410. padding:2px 2px 2px 2px;
  6411. box-sizing:border-box;
  6412. width:100%;
  6413. }
  6414. #u33607_div.disabled {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:34px;
  6420. height:25px;
  6421. background:inherit;
  6422. background-color:rgba(240, 240, 240, 1);
  6423. border:none;
  6424. border-radius:0px;
  6425. -moz-box-shadow:none;
  6426. -webkit-box-shadow:none;
  6427. box-shadow:none;
  6428. font-family:'Microsoft YaHei', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. }
  6432. #u33607.disabled {
  6433. }
  6434. #u33608 {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:0px;
  6440. height:0px;
  6441. }
  6442. #u33609_div {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:0px;
  6446. top:0px;
  6447. width:680px;
  6448. height:1198px;
  6449. background:inherit;
  6450. background-color:rgba(255, 255, 255, 1);
  6451. box-sizing:border-box;
  6452. border-width:1px;
  6453. border-style:solid;
  6454. border-color:rgba(215, 215, 215, 1);
  6455. border-radius:0px;
  6456. -moz-box-shadow:none;
  6457. -webkit-box-shadow:none;
  6458. box-shadow:none;
  6459. }
  6460. #u33609 {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:2040px;
  6464. top:42px;
  6465. width:680px;
  6466. height:1198px;
  6467. display:flex;
  6468. }
  6469. #u33609 .text {
  6470. position:absolute;
  6471. align-self:center;
  6472. padding:2px 2px 2px 2px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u33609_text {
  6477. border-width:0px;
  6478. word-wrap:break-word;
  6479. text-transform:none;
  6480. visibility:hidden;
  6481. }
  6482. #u33610_div {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:91px;
  6488. height:30px;
  6489. background:inherit;
  6490. background-color:rgba(255, 255, 255, 0);
  6491. border:none;
  6492. border-radius:0px;
  6493. -moz-box-shadow:none;
  6494. -webkit-box-shadow:none;
  6495. box-shadow:none;
  6496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6497. font-weight:400;
  6498. font-style:normal;
  6499. font-size:18px;
  6500. color:#000000;
  6501. line-height:30px;
  6502. }
  6503. #u33610 {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:2060px;
  6507. top:62px;
  6508. width:91px;
  6509. height:30px;
  6510. display:flex;
  6511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:18px;
  6515. color:#000000;
  6516. line-height:30px;
  6517. }
  6518. #u33610 .text {
  6519. position:absolute;
  6520. align-self:flex-start;
  6521. padding:0px 0px 0px 0px;
  6522. box-sizing:border-box;
  6523. width:100%;
  6524. }
  6525. #u33610_text {
  6526. border-width:0px;
  6527. white-space:nowrap;
  6528. text-transform:none;
  6529. }
  6530. #u33611_div {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:85px;
  6536. height:30px;
  6537. background:inherit;
  6538. background-color:rgba(255, 255, 255, 0);
  6539. border:none;
  6540. border-top:0px;
  6541. border-right:0px;
  6542. border-bottom:0px;
  6543. border-radius:0px;
  6544. border-top-left-radius:0px;
  6545. border-bottom-left-radius:0px;
  6546. -moz-box-shadow:none;
  6547. -webkit-box-shadow:none;
  6548. box-shadow:none;
  6549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6550. font-weight:400;
  6551. font-style:normal;
  6552. font-size:14px;
  6553. }
  6554. #u33611 {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:2089px;
  6558. top:156px;
  6559. width:85px;
  6560. height:30px;
  6561. display:flex;
  6562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:14px;
  6566. }
  6567. #u33611 .text {
  6568. position:absolute;
  6569. align-self:center;
  6570. padding:5px 0px 5px 0px;
  6571. box-sizing:border-box;
  6572. width:100%;
  6573. }
  6574. #u33611_text {
  6575. border-width:0px;
  6576. white-space:nowrap;
  6577. text-transform:none;
  6578. }
  6579. #u33612 {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:0px;
  6583. top:0px;
  6584. width:0px;
  6585. height:0px;
  6586. }
  6587. #u33613_div {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:0px;
  6591. top:0px;
  6592. width:40px;
  6593. height:40px;
  6594. background:inherit;
  6595. background-color:rgba(255, 255, 255, 0);
  6596. border:none;
  6597. border-top:0px;
  6598. border-right:0px;
  6599. border-bottom:0px;
  6600. border-radius:0px;
  6601. border-top-left-radius:0px;
  6602. border-bottom-left-radius:0px;
  6603. -moz-box-shadow:none;
  6604. -webkit-box-shadow:none;
  6605. box-shadow:none;
  6606. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6607. font-weight:500;
  6608. font-style:normal;
  6609. font-size:18px;
  6610. text-align:center;
  6611. }
  6612. #u33613 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:2680px;
  6616. top:42px;
  6617. width:40px;
  6618. height:40px;
  6619. display:flex;
  6620. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6621. font-weight:500;
  6622. font-style:normal;
  6623. font-size:18px;
  6624. text-align:center;
  6625. }
  6626. #u33613 .text {
  6627. position:absolute;
  6628. align-self:center;
  6629. padding:5px 10px 5px 0px;
  6630. box-sizing:border-box;
  6631. width:100%;
  6632. }
  6633. #u33613_text {
  6634. border-width:0px;
  6635. word-wrap:break-word;
  6636. text-transform:none;
  6637. }
  6638. #u33614_img {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:13px;
  6644. height:17px;
  6645. }
  6646. #u33614 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:2667px;
  6650. top:54px;
  6651. width:13px;
  6652. height:17px;
  6653. display:flex;
  6654. }
  6655. #u33614 .text {
  6656. position:absolute;
  6657. align-self:center;
  6658. padding:2px 2px 2px 2px;
  6659. box-sizing:border-box;
  6660. width:100%;
  6661. }
  6662. #u33614_text {
  6663. border-width:0px;
  6664. word-wrap:break-word;
  6665. text-transform:none;
  6666. visibility:hidden;
  6667. }
  6668. #u33615 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:0px;
  6672. top:0px;
  6673. width:0px;
  6674. height:0px;
  6675. }
  6676. #u33616_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:680px;
  6682. height:60px;
  6683. background:inherit;
  6684. background-color:rgba(255, 255, 255, 1);
  6685. box-sizing:border-box;
  6686. border-width:1px;
  6687. border-style:solid;
  6688. border-color:rgba(215, 215, 215, 1);
  6689. border-radius:0px;
  6690. -moz-box-shadow:none;
  6691. -webkit-box-shadow:none;
  6692. box-shadow:none;
  6693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. font-size:14px;
  6697. color:#AAAAAA;
  6698. text-align:center;
  6699. line-height:30px;
  6700. }
  6701. #u33616 {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:2040px;
  6705. top:1180px;
  6706. width:680px;
  6707. height:60px;
  6708. display:flex;
  6709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:14px;
  6713. color:#AAAAAA;
  6714. text-align:center;
  6715. line-height:30px;
  6716. }
  6717. #u33616 .text {
  6718. position:absolute;
  6719. align-self:center;
  6720. padding:5px 10px 5px 10px;
  6721. box-sizing:border-box;
  6722. width:100%;
  6723. }
  6724. #u33616_text {
  6725. border-width:0px;
  6726. word-wrap:break-word;
  6727. text-transform:none;
  6728. visibility:hidden;
  6729. }
  6730. #u33617_div {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:0px;
  6734. top:0px;
  6735. width:80px;
  6736. height:30px;
  6737. background:inherit;
  6738. background-color:rgba(255, 255, 255, 1);
  6739. box-sizing:border-box;
  6740. border-width:1px;
  6741. border-style:solid;
  6742. border-color:rgba(170, 170, 170, 1);
  6743. border-radius:4px;
  6744. -moz-box-shadow:none;
  6745. -webkit-box-shadow:none;
  6746. box-shadow:none;
  6747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:14px;
  6751. }
  6752. #u33617 {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:2620px;
  6756. top:1195px;
  6757. width:80px;
  6758. height:30px;
  6759. display:flex;
  6760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6761. font-weight:400;
  6762. font-style:normal;
  6763. font-size:14px;
  6764. }
  6765. #u33617 .text {
  6766. position:absolute;
  6767. align-self:center;
  6768. padding:2px 2px 2px 2px;
  6769. box-sizing:border-box;
  6770. width:100%;
  6771. }
  6772. #u33617_text {
  6773. border-width:0px;
  6774. word-wrap:break-word;
  6775. text-transform:none;
  6776. }
  6777. #u33618_div {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:0px;
  6781. top:0px;
  6782. width:85px;
  6783. height:30px;
  6784. background:inherit;
  6785. background-color:rgba(255, 255, 255, 0);
  6786. border:none;
  6787. border-top:0px;
  6788. border-right:0px;
  6789. border-bottom:0px;
  6790. border-radius:0px;
  6791. border-top-left-radius:0px;
  6792. border-bottom-left-radius:0px;
  6793. -moz-box-shadow:none;
  6794. -webkit-box-shadow:none;
  6795. box-shadow:none;
  6796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6797. font-weight:400;
  6798. font-style:normal;
  6799. font-size:14px;
  6800. }
  6801. #u33618 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:2089px;
  6805. top:116px;
  6806. width:85px;
  6807. height:30px;
  6808. display:flex;
  6809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:14px;
  6813. }
  6814. #u33618 .text {
  6815. position:absolute;
  6816. align-self:center;
  6817. padding:5px 0px 5px 0px;
  6818. box-sizing:border-box;
  6819. width:100%;
  6820. }
  6821. #u33618_text {
  6822. border-width:0px;
  6823. white-space:nowrap;
  6824. text-transform:none;
  6825. }
  6826. #u33619_div {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:39px;
  6832. height:30px;
  6833. background:inherit;
  6834. background-color:rgba(255, 255, 255, 0);
  6835. border:none;
  6836. border-top:0px;
  6837. border-right:0px;
  6838. border-bottom:0px;
  6839. border-radius:0px;
  6840. border-top-left-radius:0px;
  6841. border-bottom-left-radius:0px;
  6842. -moz-box-shadow:none;
  6843. -webkit-box-shadow:none;
  6844. box-shadow:none;
  6845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6846. font-weight:400;
  6847. font-style:normal;
  6848. font-size:14px;
  6849. }
  6850. #u33619 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:2181px;
  6854. top:116px;
  6855. width:39px;
  6856. height:30px;
  6857. display:flex;
  6858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6859. font-weight:400;
  6860. font-style:normal;
  6861. font-size:14px;
  6862. }
  6863. #u33619 .text {
  6864. position:absolute;
  6865. align-self:center;
  6866. padding:5px 10px 5px 0px;
  6867. box-sizing:border-box;
  6868. width:100%;
  6869. }
  6870. #u33619_text {
  6871. border-width:0px;
  6872. white-space:nowrap;
  6873. text-transform:none;
  6874. }
  6875. #u33620_div {
  6876. border-width:0px;
  6877. position:absolute;
  6878. left:0px;
  6879. top:0px;
  6880. width:106px;
  6881. height:30px;
  6882. background:inherit;
  6883. background-color:rgba(255, 255, 255, 0);
  6884. border:none;
  6885. border-top:0px;
  6886. border-right:0px;
  6887. border-bottom:0px;
  6888. border-radius:0px;
  6889. border-top-left-radius:0px;
  6890. border-bottom-left-radius:0px;
  6891. -moz-box-shadow:none;
  6892. -webkit-box-shadow:none;
  6893. box-shadow:none;
  6894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6895. font-weight:400;
  6896. font-style:normal;
  6897. font-size:14px;
  6898. }
  6899. #u33620 {
  6900. border-width:0px;
  6901. position:absolute;
  6902. left:2181px;
  6903. top:156px;
  6904. width:106px;
  6905. height:30px;
  6906. display:flex;
  6907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6908. font-weight:400;
  6909. font-style:normal;
  6910. font-size:14px;
  6911. }
  6912. #u33620 .text {
  6913. position:absolute;
  6914. align-self:center;
  6915. padding:5px 10px 5px 0px;
  6916. box-sizing:border-box;
  6917. width:100%;
  6918. }
  6919. #u33620_text {
  6920. border-width:0px;
  6921. white-space:nowrap;
  6922. text-transform:none;
  6923. }
  6924. #u33621_div {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:0px;
  6928. top:0px;
  6929. width:85px;
  6930. height:30px;
  6931. background:inherit;
  6932. background-color:rgba(255, 255, 255, 0);
  6933. border:none;
  6934. border-top:0px;
  6935. border-right:0px;
  6936. border-bottom:0px;
  6937. border-radius:0px;
  6938. border-top-left-radius:0px;
  6939. border-bottom-left-radius:0px;
  6940. -moz-box-shadow:none;
  6941. -webkit-box-shadow:none;
  6942. box-shadow:none;
  6943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6944. font-weight:400;
  6945. font-style:normal;
  6946. font-size:14px;
  6947. }
  6948. #u33621 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:2089px;
  6952. top:196px;
  6953. width:85px;
  6954. height:30px;
  6955. display:flex;
  6956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:14px;
  6960. }
  6961. #u33621 .text {
  6962. position:absolute;
  6963. align-self:center;
  6964. padding:5px 0px 5px 0px;
  6965. box-sizing:border-box;
  6966. width:100%;
  6967. }
  6968. #u33621_text {
  6969. border-width:0px;
  6970. white-space:nowrap;
  6971. text-transform:none;
  6972. }
  6973. #u33622_div {
  6974. border-width:0px;
  6975. position:absolute;
  6976. left:0px;
  6977. top:0px;
  6978. width:318px;
  6979. height:30px;
  6980. background:inherit;
  6981. background-color:rgba(255, 255, 255, 0);
  6982. border:none;
  6983. border-top:0px;
  6984. border-right:0px;
  6985. border-bottom:0px;
  6986. border-radius:0px;
  6987. border-top-left-radius:0px;
  6988. border-bottom-left-radius:0px;
  6989. -moz-box-shadow:none;
  6990. -webkit-box-shadow:none;
  6991. box-shadow:none;
  6992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6993. font-weight:400;
  6994. font-style:normal;
  6995. font-size:14px;
  6996. }
  6997. #u33622 {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:2181px;
  7001. top:196px;
  7002. width:318px;
  7003. height:30px;
  7004. display:flex;
  7005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:14px;
  7009. }
  7010. #u33622 .text {
  7011. position:absolute;
  7012. align-self:center;
  7013. padding:5px 10px 5px 0px;
  7014. box-sizing:border-box;
  7015. width:100%;
  7016. }
  7017. #u33622_text {
  7018. border-width:0px;
  7019. white-space:nowrap;
  7020. text-transform:none;
  7021. }
  7022. #u33623_div {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:71px;
  7028. height:30px;
  7029. background:inherit;
  7030. background-color:rgba(255, 255, 255, 0);
  7031. border:none;
  7032. border-top:0px;
  7033. border-right:0px;
  7034. border-bottom:0px;
  7035. border-radius:0px;
  7036. border-top-left-radius:0px;
  7037. border-bottom-left-radius:0px;
  7038. -moz-box-shadow:none;
  7039. -webkit-box-shadow:none;
  7040. box-shadow:none;
  7041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7042. font-weight:400;
  7043. font-style:normal;
  7044. font-size:14px;
  7045. }
  7046. #u33623 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:2089px;
  7050. top:236px;
  7051. width:71px;
  7052. height:30px;
  7053. display:flex;
  7054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7055. font-weight:400;
  7056. font-style:normal;
  7057. font-size:14px;
  7058. }
  7059. #u33623 .text {
  7060. position:absolute;
  7061. align-self:center;
  7062. padding:5px 0px 5px 0px;
  7063. box-sizing:border-box;
  7064. width:100%;
  7065. }
  7066. #u33623_text {
  7067. border-width:0px;
  7068. white-space:nowrap;
  7069. text-transform:none;
  7070. }
  7071. #u33624_div {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:0px;
  7075. top:0px;
  7076. width:33px;
  7077. height:30px;
  7078. background:inherit;
  7079. background-color:rgba(255, 255, 255, 0);
  7080. border:none;
  7081. border-top:0px;
  7082. border-right:0px;
  7083. border-bottom:0px;
  7084. border-radius:0px;
  7085. border-top-left-radius:0px;
  7086. border-bottom-left-radius:0px;
  7087. -moz-box-shadow:none;
  7088. -webkit-box-shadow:none;
  7089. box-shadow:none;
  7090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7091. font-weight:400;
  7092. font-style:normal;
  7093. font-size:14px;
  7094. }
  7095. #u33624 {
  7096. border-width:0px;
  7097. position:absolute;
  7098. left:2181px;
  7099. top:236px;
  7100. width:33px;
  7101. height:30px;
  7102. display:flex;
  7103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. font-size:14px;
  7107. }
  7108. #u33624 .text {
  7109. position:absolute;
  7110. align-self:center;
  7111. padding:5px 10px 5px 0px;
  7112. box-sizing:border-box;
  7113. width:100%;
  7114. }
  7115. #u33624_text {
  7116. border-width:0px;
  7117. white-space:nowrap;
  7118. text-transform:none;
  7119. }
  7120. #u33625_div {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:48px;
  7126. height:22px;
  7127. background:inherit;
  7128. background-color:rgba(51, 51, 51, 1);
  7129. border:none;
  7130. border-radius:17px;
  7131. -moz-box-shadow:none;
  7132. -webkit-box-shadow:none;
  7133. box-shadow:none;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:12px;
  7138. color:#FFFFFF;
  7139. text-align:center;
  7140. line-height:22px;
  7141. }
  7142. #u33625 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:1867px;
  7146. top:578px;
  7147. width:48px;
  7148. height:22px;
  7149. display:flex;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:12px;
  7154. color:#FFFFFF;
  7155. text-align:center;
  7156. line-height:22px;
  7157. }
  7158. #u33625 .text {
  7159. position:absolute;
  7160. align-self:flex-start;
  7161. padding:0px 0px 0px 0px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u33625_text {
  7166. border-width:0px;
  7167. word-wrap:break-word;
  7168. text-transform:none;
  7169. }
  7170. #u33626 {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:0px;
  7176. height:0px;
  7177. }
  7178. #u33627 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:0px;
  7184. height:0px;
  7185. }
  7186. #u33628_div {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:0px;
  7190. top:0px;
  7191. width:380px;
  7192. height:180px;
  7193. background:inherit;
  7194. background-color:rgba(255, 255, 255, 1);
  7195. box-sizing:border-box;
  7196. border-width:1px;
  7197. border-style:solid;
  7198. border-color:rgba(204, 204, 204, 1);
  7199. border-radius:4px;
  7200. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7201. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7202. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7203. font-family:'Microsoft YaHei', sans-serif;
  7204. font-weight:400;
  7205. font-style:normal;
  7206. }
  7207. #u33628 {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:1102px;
  7211. top:555px;
  7212. width:380px;
  7213. height:180px;
  7214. display:flex;
  7215. font-family:'Microsoft YaHei', sans-serif;
  7216. font-weight:400;
  7217. font-style:normal;
  7218. }
  7219. #u33628 .text {
  7220. position:absolute;
  7221. align-self:center;
  7222. padding:2px 2px 2px 2px;
  7223. box-sizing:border-box;
  7224. width:100%;
  7225. }
  7226. #u33628_text {
  7227. border-width:0px;
  7228. word-wrap:break-word;
  7229. text-transform:none;
  7230. visibility:hidden;
  7231. }
  7232. #u33629_div {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:299px;
  7238. height:66px;
  7239. background:inherit;
  7240. background-color:rgba(255, 255, 255, 0);
  7241. border:none;
  7242. border-radius:0px;
  7243. -moz-box-shadow:none;
  7244. -webkit-box-shadow:none;
  7245. box-shadow:none;
  7246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7247. font-weight:400;
  7248. font-style:normal;
  7249. font-size:14px;
  7250. color:#666666;
  7251. line-height:22px;
  7252. }
  7253. #u33629 {
  7254. border-width:0px;
  7255. position:absolute;
  7256. left:1162px;
  7257. top:610px;
  7258. width:299px;
  7259. height:66px;
  7260. display:flex;
  7261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7262. font-weight:400;
  7263. font-style:normal;
  7264. font-size:14px;
  7265. color:#666666;
  7266. line-height:22px;
  7267. }
  7268. #u33629 .text {
  7269. position:absolute;
  7270. align-self:flex-start;
  7271. padding:0px 0px 0px 0px;
  7272. box-sizing:border-box;
  7273. width:100%;
  7274. }
  7275. #u33629_text {
  7276. border-width:0px;
  7277. word-wrap:break-word;
  7278. text-transform:none;
  7279. }
  7280. #u33630_div {
  7281. border-width:0px;
  7282. position:absolute;
  7283. left:0px;
  7284. top:0px;
  7285. width:145px;
  7286. height:21px;
  7287. background:inherit;
  7288. background-color:rgba(255, 255, 255, 0);
  7289. border:none;
  7290. border-radius:0px;
  7291. -moz-box-shadow:none;
  7292. -webkit-box-shadow:none;
  7293. box-shadow:none;
  7294. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7295. font-weight:650;
  7296. font-style:normal;
  7297. font-size:18px;
  7298. color:#000000;
  7299. line-height:22px;
  7300. }
  7301. #u33630 {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:1162px;
  7305. top:580px;
  7306. width:145px;
  7307. height:21px;
  7308. display:flex;
  7309. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7310. font-weight:650;
  7311. font-style:normal;
  7312. font-size:18px;
  7313. color:#000000;
  7314. line-height:22px;
  7315. }
  7316. #u33630 .text {
  7317. position:absolute;
  7318. align-self:flex-start;
  7319. padding:0px 0px 0px 0px;
  7320. box-sizing:border-box;
  7321. width:100%;
  7322. }
  7323. #u33630_text {
  7324. border-width:0px;
  7325. white-space:nowrap;
  7326. text-transform:none;
  7327. }
  7328. #u33631_div {
  7329. border-width:0px;
  7330. position:absolute;
  7331. left:0px;
  7332. top:0px;
  7333. width:61px;
  7334. height:30px;
  7335. background:inherit;
  7336. background-color:rgba(24, 144, 255, 1);
  7337. border:none;
  7338. border-radius:4px;
  7339. -moz-box-shadow:none;
  7340. -webkit-box-shadow:none;
  7341. box-shadow:none;
  7342. font-family:'Microsoft YaHei', sans-serif;
  7343. font-weight:400;
  7344. font-style:normal;
  7345. font-size:14px;
  7346. color:#FFFFFF;
  7347. }
  7348. #u33631 {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:1404px;
  7352. top:690px;
  7353. width:61px;
  7354. height:30px;
  7355. display:flex;
  7356. font-family:'Microsoft YaHei', sans-serif;
  7357. font-weight:400;
  7358. font-style:normal;
  7359. font-size:14px;
  7360. color:#FFFFFF;
  7361. }
  7362. #u33631 .text {
  7363. position:absolute;
  7364. align-self:center;
  7365. padding:2px 16px 2px 16px;
  7366. box-sizing:border-box;
  7367. width:100%;
  7368. }
  7369. #u33631_text {
  7370. border-width:0px;
  7371. white-space:nowrap;
  7372. text-transform:none;
  7373. }
  7374. #u33632_div {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:0px;
  7378. top:0px;
  7379. width:66px;
  7380. height:30px;
  7381. background:inherit;
  7382. background-color:rgba(255, 255, 255, 1);
  7383. box-sizing:border-box;
  7384. border-width:1px;
  7385. border-style:solid;
  7386. border-color:rgba(217, 217, 217, 1);
  7387. border-radius:4px;
  7388. -moz-box-shadow:none;
  7389. -webkit-box-shadow:none;
  7390. box-shadow:none;
  7391. font-family:'Microsoft YaHei', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:14px;
  7395. color:rgba(0, 0, 0, 0.647058823529412);
  7396. line-height:21px;
  7397. }
  7398. #u33632 {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:1322px;
  7402. top:690px;
  7403. width:66px;
  7404. height:30px;
  7405. display:flex;
  7406. font-family:'Microsoft YaHei', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:14px;
  7410. color:rgba(0, 0, 0, 0.647058823529412);
  7411. line-height:21px;
  7412. }
  7413. #u33632 .text {
  7414. position:absolute;
  7415. align-self:center;
  7416. padding:2px 16px 2px 16px;
  7417. box-sizing:border-box;
  7418. width:100%;
  7419. }
  7420. #u33632_text {
  7421. border-width:0px;
  7422. white-space:nowrap;
  7423. text-transform:none;
  7424. }
  7425. #u33633_img {
  7426. border-width:0px;
  7427. position:absolute;
  7428. left:0px;
  7429. top:0px;
  7430. width:20px;
  7431. height:20px;
  7432. }
  7433. #u33633 {
  7434. border-width:0px;
  7435. position:absolute;
  7436. left:1131px;
  7437. top:584px;
  7438. width:20px;
  7439. height:20px;
  7440. display:flex;
  7441. }
  7442. #u33633 .text {
  7443. position:absolute;
  7444. align-self:center;
  7445. padding:2px 2px 2px 2px;
  7446. box-sizing:border-box;
  7447. width:100%;
  7448. }
  7449. #u33633_text {
  7450. border-width:0px;
  7451. word-wrap:break-word;
  7452. text-transform:none;
  7453. visibility:hidden;
  7454. }
  7455. #u33634 {
  7456. border-width:0px;
  7457. position:absolute;
  7458. left:0px;
  7459. top:0px;
  7460. width:0px;
  7461. height:0px;
  7462. }
  7463. #u33635 {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:0px;
  7467. top:0px;
  7468. width:0px;
  7469. height:0px;
  7470. }
  7471. #u33636 {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:0px;
  7475. top:0px;
  7476. width:0px;
  7477. height:0px;
  7478. }
  7479. #u33637_div {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:0px;
  7483. top:0px;
  7484. width:380px;
  7485. height:160px;
  7486. background:inherit;
  7487. background-color:rgba(255, 255, 255, 1);
  7488. box-sizing:border-box;
  7489. border-width:1px;
  7490. border-style:solid;
  7491. border-color:rgba(204, 204, 204, 1);
  7492. border-radius:4px;
  7493. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7494. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7495. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7496. font-family:'Microsoft YaHei', sans-serif;
  7497. font-weight:400;
  7498. font-style:normal;
  7499. }
  7500. #u33637 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:1102px;
  7504. top:346px;
  7505. width:380px;
  7506. height:160px;
  7507. display:flex;
  7508. font-family:'Microsoft YaHei', sans-serif;
  7509. font-weight:400;
  7510. font-style:normal;
  7511. }
  7512. #u33637 .text {
  7513. position:absolute;
  7514. align-self:center;
  7515. padding:2px 2px 2px 2px;
  7516. box-sizing:border-box;
  7517. width:100%;
  7518. }
  7519. #u33637_text {
  7520. border-width:0px;
  7521. word-wrap:break-word;
  7522. text-transform:none;
  7523. visibility:hidden;
  7524. }
  7525. #u33638_div {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:299px;
  7531. height:44px;
  7532. background:inherit;
  7533. background-color:rgba(255, 255, 255, 0);
  7534. border:none;
  7535. border-radius:0px;
  7536. -moz-box-shadow:none;
  7537. -webkit-box-shadow:none;
  7538. box-shadow:none;
  7539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7540. font-weight:400;
  7541. font-style:normal;
  7542. font-size:14px;
  7543. color:#666666;
  7544. line-height:22px;
  7545. }
  7546. #u33638 {
  7547. border-width:0px;
  7548. position:absolute;
  7549. left:1162px;
  7550. top:401px;
  7551. width:299px;
  7552. height:44px;
  7553. display:flex;
  7554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7555. font-weight:400;
  7556. font-style:normal;
  7557. font-size:14px;
  7558. color:#666666;
  7559. line-height:22px;
  7560. }
  7561. #u33638 .text {
  7562. position:absolute;
  7563. align-self:flex-start;
  7564. padding:0px 0px 0px 0px;
  7565. box-sizing:border-box;
  7566. width:100%;
  7567. }
  7568. #u33638_text {
  7569. border-width:0px;
  7570. word-wrap:break-word;
  7571. text-transform:none;
  7572. }
  7573. #u33639_div {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:0px;
  7577. top:0px;
  7578. width:199px;
  7579. height:21px;
  7580. background:inherit;
  7581. background-color:rgba(255, 255, 255, 0);
  7582. border:none;
  7583. border-radius:0px;
  7584. -moz-box-shadow:none;
  7585. -webkit-box-shadow:none;
  7586. box-shadow:none;
  7587. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7588. font-weight:650;
  7589. font-style:normal;
  7590. font-size:18px;
  7591. color:#000000;
  7592. line-height:22px;
  7593. }
  7594. #u33639 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:1162px;
  7598. top:371px;
  7599. width:199px;
  7600. height:21px;
  7601. display:flex;
  7602. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7603. font-weight:650;
  7604. font-style:normal;
  7605. font-size:18px;
  7606. color:#000000;
  7607. line-height:22px;
  7608. }
  7609. #u33639 .text {
  7610. position:absolute;
  7611. align-self:flex-start;
  7612. padding:0px 0px 0px 0px;
  7613. box-sizing:border-box;
  7614. width:100%;
  7615. }
  7616. #u33639_text {
  7617. border-width:0px;
  7618. white-space:nowrap;
  7619. text-transform:none;
  7620. }
  7621. #u33640_div {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:61px;
  7627. height:30px;
  7628. background:inherit;
  7629. background-color:rgba(24, 144, 255, 1);
  7630. border:none;
  7631. border-radius:4px;
  7632. -moz-box-shadow:none;
  7633. -webkit-box-shadow:none;
  7634. box-shadow:none;
  7635. font-family:'Microsoft YaHei', sans-serif;
  7636. font-weight:400;
  7637. font-style:normal;
  7638. font-size:14px;
  7639. color:#FFFFFF;
  7640. }
  7641. #u33640 {
  7642. border-width:0px;
  7643. position:absolute;
  7644. left:1404px;
  7645. top:461px;
  7646. width:61px;
  7647. height:30px;
  7648. display:flex;
  7649. font-family:'Microsoft YaHei', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:14px;
  7653. color:#FFFFFF;
  7654. }
  7655. #u33640 .text {
  7656. position:absolute;
  7657. align-self:center;
  7658. padding:2px 16px 2px 16px;
  7659. box-sizing:border-box;
  7660. width:100%;
  7661. }
  7662. #u33640_text {
  7663. border-width:0px;
  7664. white-space:nowrap;
  7665. text-transform:none;
  7666. }
  7667. #u33641_div {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:0px;
  7671. top:0px;
  7672. width:66px;
  7673. height:30px;
  7674. background:inherit;
  7675. background-color:rgba(255, 255, 255, 1);
  7676. box-sizing:border-box;
  7677. border-width:1px;
  7678. border-style:solid;
  7679. border-color:rgba(217, 217, 217, 1);
  7680. border-radius:4px;
  7681. -moz-box-shadow:none;
  7682. -webkit-box-shadow:none;
  7683. box-shadow:none;
  7684. font-family:'Microsoft YaHei', sans-serif;
  7685. font-weight:400;
  7686. font-style:normal;
  7687. font-size:14px;
  7688. color:rgba(0, 0, 0, 0.647058823529412);
  7689. line-height:21px;
  7690. }
  7691. #u33641 {
  7692. border-width:0px;
  7693. position:absolute;
  7694. left:1322px;
  7695. top:461px;
  7696. width:66px;
  7697. height:30px;
  7698. display:flex;
  7699. font-family:'Microsoft YaHei', sans-serif;
  7700. font-weight:400;
  7701. font-style:normal;
  7702. font-size:14px;
  7703. color:rgba(0, 0, 0, 0.647058823529412);
  7704. line-height:21px;
  7705. }
  7706. #u33641 .text {
  7707. position:absolute;
  7708. align-self:center;
  7709. padding:2px 16px 2px 16px;
  7710. box-sizing:border-box;
  7711. width:100%;
  7712. }
  7713. #u33641_text {
  7714. border-width:0px;
  7715. white-space:nowrap;
  7716. text-transform:none;
  7717. }
  7718. #u33642_img {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:0px;
  7722. top:0px;
  7723. width:20px;
  7724. height:20px;
  7725. }
  7726. #u33642 {
  7727. border-width:0px;
  7728. position:absolute;
  7729. left:1131px;
  7730. top:375px;
  7731. width:20px;
  7732. height:20px;
  7733. display:flex;
  7734. }
  7735. #u33642 .text {
  7736. position:absolute;
  7737. align-self:center;
  7738. padding:2px 2px 2px 2px;
  7739. box-sizing:border-box;
  7740. width:100%;
  7741. }
  7742. #u33642_text {
  7743. border-width:0px;
  7744. word-wrap:break-word;
  7745. text-transform:none;
  7746. visibility:hidden;
  7747. }
  7748. #u33643_div {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:0px;
  7752. top:0px;
  7753. width:111px;
  7754. height:22px;
  7755. background:inherit;
  7756. background-color:rgba(51, 51, 51, 1);
  7757. border:none;
  7758. border-radius:17px;
  7759. -moz-box-shadow:none;
  7760. -webkit-box-shadow:none;
  7761. box-shadow:none;
  7762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. font-size:12px;
  7766. color:#FFFFFF;
  7767. text-align:center;
  7768. line-height:22px;
  7769. }
  7770. #u33643 {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:1211px;
  7774. top:445px;
  7775. width:111px;
  7776. height:22px;
  7777. display:flex;
  7778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7779. font-weight:400;
  7780. font-style:normal;
  7781. font-size:12px;
  7782. color:#FFFFFF;
  7783. text-align:center;
  7784. line-height:22px;
  7785. }
  7786. #u33643 .text {
  7787. position:absolute;
  7788. align-self:flex-start;
  7789. padding:0px 0px 0px 0px;
  7790. box-sizing:border-box;
  7791. width:100%;
  7792. }
  7793. #u33643_text {
  7794. border-width:0px;
  7795. word-wrap:break-word;
  7796. text-transform:none;
  7797. }
  7798. #u33644_div {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:0px;
  7802. top:0px;
  7803. width:234px;
  7804. height:22px;
  7805. background:inherit;
  7806. background-color:rgba(255, 255, 255, 0);
  7807. border:none;
  7808. border-radius:0px;
  7809. -moz-box-shadow:none;
  7810. -webkit-box-shadow:none;
  7811. box-shadow:none;
  7812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7813. font-weight:400;
  7814. font-style:normal;
  7815. font-size:12px;
  7816. color:#D9001B;
  7817. text-align:center;
  7818. line-height:22px;
  7819. }
  7820. #u33644 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:1131px;
  7824. top:484px;
  7825. width:234px;
  7826. height:22px;
  7827. display:flex;
  7828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:12px;
  7832. color:#D9001B;
  7833. text-align:center;
  7834. line-height:22px;
  7835. }
  7836. #u33644 .text {
  7837. position:absolute;
  7838. align-self:flex-start;
  7839. padding:0px 0px 0px 0px;
  7840. box-sizing:border-box;
  7841. width:100%;
  7842. }
  7843. #u33644_text {
  7844. border-width:0px;
  7845. white-space:nowrap;
  7846. text-transform:none;
  7847. }