styles.css 118 KB

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