styles.css 113 KB

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