styles.css 175 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3229px;
  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. #u63325_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. #u63325 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u63325 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u63325_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u63326_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. #u63326 {
  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. #u63326 .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. #u63326_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u63327_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. #u63327 {
  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. #u63327 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u63327_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u63328 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u63329_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u63329 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u63329 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u63329_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u63330_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. #u63330 {
  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. #u63330 .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. #u63330_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u63331_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. #u63331 {
  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. #u63331 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u63331_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u63332 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u63333_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u63333_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u63333_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u63333 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u63333 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u63333_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u63333.disabled {
  356. }
  357. .u63333_input_option {
  358. font-size:14px;
  359. }
  360. #u63334_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u63334 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u63334 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u63334_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u63335_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u63335 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u63335 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u63335_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u63336_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u63336 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u63336 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u63336_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u63337 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u63338_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u63338 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u63338 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u63338_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u63339_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u63339 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u63339 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u63339_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u63340 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u63341_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u63341 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u63341 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u63341_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u63342_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u63342 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u63342 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u63342_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u63343 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u63344_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u63344 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u63344 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u63344_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u63345_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u63345 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u63345 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u63345_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u63346 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u63347_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u63347 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u63347 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u63347_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u63348_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u63348 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u63348 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u63348_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u63349 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u63350_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u63350 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u63350 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u63350_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u63351_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u63351 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u63351 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u63351_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u63352 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u63353_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u63353 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u63353 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u63353_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u63354_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u63354 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u63354 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u63354_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u63355 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u63356_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u63356 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u63356 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u63356_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u63357_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u63357 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u63357 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u63357_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u63358 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u63359_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u63359 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u63359 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u63359_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u63360_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u63360 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u63360 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u63360_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u63361 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u63362_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u63362 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u63362 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u63362_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u63363_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u63363 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u63363 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u63363_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u63364 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u63365_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u63365 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u63365 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u63365_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u63366_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u63366 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u63366 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u63366_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u63367_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u63367 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u63367 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u63367_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u63368_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u63368 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u63368 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u63368_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u63369_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u63369 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u63369 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u63369_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u63370_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u63370 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u63370 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u63370_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u63371 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u63372_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u63372 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u63372 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u63372_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u63373_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u63373 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u63373 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u63373_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u63374 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u63375_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u63375 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u63375 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u63375_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u63376_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u63376 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u63376 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u63376_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u63377_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1265px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. color:#1890FF;
  1653. }
  1654. #u63377 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:330px;
  1658. top:50px;
  1659. width:1265px;
  1660. height:1180px;
  1661. display:flex;
  1662. color:#1890FF;
  1663. }
  1664. #u63377 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u63377_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u63378_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:37px;
  1683. height:50px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1697. font-weight:400;
  1698. font-style:normal;
  1699. font-size:14px;
  1700. line-height:40px;
  1701. }
  1702. #u63378 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:356px;
  1706. top:50px;
  1707. width:37px;
  1708. height:50px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. font-size:14px;
  1714. line-height:40px;
  1715. }
  1716. #u63378 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:0px 0px 0px 0px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u63378_text {
  1724. border-width:0px;
  1725. white-space:nowrap;
  1726. text-transform:none;
  1727. }
  1728. #u63379 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:0px;
  1732. top:0px;
  1733. width:0px;
  1734. height:0px;
  1735. }
  1736. #u63380_div {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:115px;
  1742. height:30px;
  1743. background:inherit;
  1744. background-color:rgba(24, 144, 255, 1);
  1745. border:none;
  1746. border-radius:4px;
  1747. -moz-box-shadow:none;
  1748. -webkit-box-shadow:none;
  1749. box-shadow:none;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:14px;
  1754. color:#FFFFFF;
  1755. }
  1756. #u63380 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:356px;
  1760. top:111px;
  1761. width:115px;
  1762. height:30px;
  1763. display:flex;
  1764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1765. font-weight:400;
  1766. font-style:normal;
  1767. font-size:14px;
  1768. color:#FFFFFF;
  1769. }
  1770. #u63380 .text {
  1771. position:absolute;
  1772. align-self:center;
  1773. padding:5px 15px 5px 15px;
  1774. box-sizing:border-box;
  1775. width:100%;
  1776. }
  1777. #u63380_text {
  1778. border-width:0px;
  1779. white-space:nowrap;
  1780. text-transform:none;
  1781. }
  1782. #u63381_div {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:73px;
  1788. height:50px;
  1789. background:inherit;
  1790. background-color:rgba(255, 255, 255, 0);
  1791. border:none;
  1792. border-left:0px;
  1793. border-top:0px;
  1794. border-right:0px;
  1795. border-radius:0px;
  1796. border-bottom-right-radius:0px;
  1797. border-bottom-left-radius:0px;
  1798. -moz-box-shadow:none;
  1799. -webkit-box-shadow:none;
  1800. box-shadow:none;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:18px;
  1805. line-height:40px;
  1806. }
  1807. #u63381 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:414px;
  1811. top:50px;
  1812. width:73px;
  1813. height:50px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:18px;
  1819. line-height:40px;
  1820. }
  1821. #u63381 .text {
  1822. position:absolute;
  1823. align-self:center;
  1824. padding:0px 0px 0px 0px;
  1825. box-sizing:border-box;
  1826. width:100%;
  1827. }
  1828. #u63381_text {
  1829. border-width:0px;
  1830. white-space:nowrap;
  1831. text-transform:none;
  1832. }
  1833. #u63382 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:349px;
  1837. top:211px;
  1838. width:1227px;
  1839. height:328px;
  1840. }
  1841. #u63383_img {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:214px;
  1847. height:39px;
  1848. }
  1849. #u63383 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:214px;
  1855. height:39px;
  1856. display:flex;
  1857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1858. font-weight:400;
  1859. font-style:normal;
  1860. font-size:12px;
  1861. color:#FFFFFF;
  1862. }
  1863. #u63383 .text {
  1864. position:absolute;
  1865. align-self:center;
  1866. padding:2px 2px 2px 0px;
  1867. box-sizing:border-box;
  1868. width:100%;
  1869. }
  1870. #u63383_text {
  1871. border-width:0px;
  1872. word-wrap:break-word;
  1873. text-transform:none;
  1874. }
  1875. #u63384_img {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:214px;
  1881. height:39px;
  1882. }
  1883. #u63384 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:214px;
  1887. top:0px;
  1888. width:214px;
  1889. height:39px;
  1890. display:flex;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:12px;
  1895. color:#FFFFFF;
  1896. }
  1897. #u63384 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 0px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u63384_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u63385_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:214px;
  1915. height:39px;
  1916. }
  1917. #u63385 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:428px;
  1921. top:0px;
  1922. width:214px;
  1923. height:39px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:12px;
  1929. color:#FFFFFF;
  1930. }
  1931. #u63385 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 2px 2px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u63385_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u63386_img {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:175px;
  1949. height:39px;
  1950. }
  1951. #u63386 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:642px;
  1955. top:0px;
  1956. width:175px;
  1957. height:39px;
  1958. display:flex;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:12px;
  1963. color:#FFFFFF;
  1964. }
  1965. #u63386 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 0px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u63386_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. }
  1977. #u63387_img {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:205px;
  1983. height:39px;
  1984. }
  1985. #u63387 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:817px;
  1989. top:0px;
  1990. width:205px;
  1991. height:39px;
  1992. display:flex;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:12px;
  1997. color:#FFFFFF;
  1998. }
  1999. #u63387 .text {
  2000. position:absolute;
  2001. align-self:center;
  2002. padding:2px 2px 2px 0px;
  2003. box-sizing:border-box;
  2004. width:100%;
  2005. }
  2006. #u63387_text {
  2007. border-width:0px;
  2008. word-wrap:break-word;
  2009. text-transform:none;
  2010. }
  2011. #u63388_img {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:205px;
  2017. height:39px;
  2018. }
  2019. #u63388 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:1022px;
  2023. top:0px;
  2024. width:205px;
  2025. height:39px;
  2026. display:flex;
  2027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:12px;
  2031. color:#FFFFFF;
  2032. }
  2033. #u63388 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:2px 2px 2px 0px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u63388_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. }
  2045. #u63389_img {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:214px;
  2051. height:38px;
  2052. }
  2053. #u63389 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:39px;
  2058. width:214px;
  2059. height:38px;
  2060. display:flex;
  2061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2062. font-weight:400;
  2063. font-style:normal;
  2064. font-size:12px;
  2065. }
  2066. #u63389 .text {
  2067. position:absolute;
  2068. align-self:center;
  2069. padding:2px 2px 2px 0px;
  2070. box-sizing:border-box;
  2071. width:100%;
  2072. }
  2073. #u63389_text {
  2074. border-width:0px;
  2075. word-wrap:break-word;
  2076. text-transform:none;
  2077. }
  2078. #u63390_img {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:0px;
  2082. top:0px;
  2083. width:214px;
  2084. height:38px;
  2085. }
  2086. #u63390 {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:214px;
  2090. top:39px;
  2091. width:214px;
  2092. height:38px;
  2093. display:flex;
  2094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2095. font-weight:400;
  2096. font-style:normal;
  2097. font-size:12px;
  2098. }
  2099. #u63390 .text {
  2100. position:absolute;
  2101. align-self:center;
  2102. padding:2px 2px 2px 0px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u63390_text {
  2107. border-width:0px;
  2108. word-wrap:break-word;
  2109. text-transform:none;
  2110. }
  2111. #u63391_img {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:214px;
  2117. height:38px;
  2118. }
  2119. #u63391 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:428px;
  2123. top:39px;
  2124. width:214px;
  2125. height:38px;
  2126. display:flex;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:12px;
  2131. }
  2132. #u63391 .text {
  2133. position:absolute;
  2134. align-self:center;
  2135. padding:2px 2px 2px 0px;
  2136. box-sizing:border-box;
  2137. width:100%;
  2138. }
  2139. #u63391_text {
  2140. border-width:0px;
  2141. word-wrap:break-word;
  2142. text-transform:none;
  2143. }
  2144. #u63392_img {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:175px;
  2150. height:38px;
  2151. }
  2152. #u63392 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:642px;
  2156. top:39px;
  2157. width:175px;
  2158. height:38px;
  2159. display:flex;
  2160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2161. font-weight:400;
  2162. font-style:normal;
  2163. font-size:12px;
  2164. }
  2165. #u63392 .text {
  2166. position:absolute;
  2167. align-self:center;
  2168. padding:2px 2px 2px 0px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u63392_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. }
  2177. #u63393_img {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:205px;
  2183. height:38px;
  2184. }
  2185. #u63393 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:817px;
  2189. top:39px;
  2190. width:205px;
  2191. height:38px;
  2192. display:flex;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:12px;
  2197. }
  2198. #u63393 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:2px 2px 2px 0px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u63393_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. visibility:hidden;
  2210. }
  2211. #u63394_img {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:205px;
  2217. height:38px;
  2218. }
  2219. #u63394 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:1022px;
  2223. top:39px;
  2224. width:205px;
  2225. height:38px;
  2226. display:flex;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:12px;
  2231. }
  2232. #u63394 .text {
  2233. position:absolute;
  2234. align-self:center;
  2235. padding:2px 2px 2px 0px;
  2236. box-sizing:border-box;
  2237. width:100%;
  2238. }
  2239. #u63394_text {
  2240. border-width:0px;
  2241. word-wrap:break-word;
  2242. text-transform:none;
  2243. }
  2244. #u63395_img {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:214px;
  2250. height:38px;
  2251. }
  2252. #u63395 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:0px;
  2256. top:77px;
  2257. width:214px;
  2258. height:38px;
  2259. display:flex;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:12px;
  2264. }
  2265. #u63395 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 0px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u63395_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. }
  2277. #u63396_img {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:214px;
  2283. height:38px;
  2284. }
  2285. #u63396 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:214px;
  2289. top:77px;
  2290. width:214px;
  2291. height:38px;
  2292. display:flex;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:12px;
  2297. }
  2298. #u63396 .text {
  2299. position:absolute;
  2300. align-self:center;
  2301. padding:2px 2px 2px 0px;
  2302. box-sizing:border-box;
  2303. width:100%;
  2304. }
  2305. #u63396_text {
  2306. border-width:0px;
  2307. word-wrap:break-word;
  2308. text-transform:none;
  2309. }
  2310. #u63397_img {
  2311. border-width:0px;
  2312. position:absolute;
  2313. left:0px;
  2314. top:0px;
  2315. width:214px;
  2316. height:38px;
  2317. }
  2318. #u63397 {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:428px;
  2322. top:77px;
  2323. width:214px;
  2324. height:38px;
  2325. display:flex;
  2326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2327. font-weight:400;
  2328. font-style:normal;
  2329. font-size:12px;
  2330. }
  2331. #u63397 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 0px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u63397_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. }
  2343. #u63398_img {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:175px;
  2349. height:38px;
  2350. }
  2351. #u63398 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:642px;
  2355. top:77px;
  2356. width:175px;
  2357. height:38px;
  2358. display:flex;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:12px;
  2363. }
  2364. #u63398 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 2px 2px 0px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u63398_text {
  2372. border-width:0px;
  2373. word-wrap:break-word;
  2374. text-transform:none;
  2375. }
  2376. #u63399_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:205px;
  2382. height:38px;
  2383. }
  2384. #u63399 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:817px;
  2388. top:77px;
  2389. width:205px;
  2390. height:38px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:12px;
  2396. }
  2397. #u63399 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 0px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u63399_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u63400_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:205px;
  2416. height:38px;
  2417. }
  2418. #u63400 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:1022px;
  2422. top:77px;
  2423. width:205px;
  2424. height:38px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:12px;
  2430. }
  2431. #u63400 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 0px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u63400_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. visibility:hidden;
  2443. }
  2444. #u63401_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:214px;
  2450. height:38px;
  2451. }
  2452. #u63401 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:115px;
  2457. width:214px;
  2458. height:38px;
  2459. display:flex;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:12px;
  2464. }
  2465. #u63401 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 0px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u63401_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. }
  2477. #u63402_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:214px;
  2483. height:38px;
  2484. }
  2485. #u63402 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:214px;
  2489. top:115px;
  2490. width:214px;
  2491. height:38px;
  2492. display:flex;
  2493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:12px;
  2497. }
  2498. #u63402 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u63402_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. }
  2510. #u63403_img {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:214px;
  2516. height:38px;
  2517. }
  2518. #u63403 {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:428px;
  2522. top:115px;
  2523. width:214px;
  2524. height:38px;
  2525. display:flex;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:12px;
  2530. }
  2531. #u63403 .text {
  2532. position:absolute;
  2533. align-self:center;
  2534. padding:2px 2px 2px 0px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u63403_text {
  2539. border-width:0px;
  2540. word-wrap:break-word;
  2541. text-transform:none;
  2542. }
  2543. #u63404_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:175px;
  2549. height:38px;
  2550. }
  2551. #u63404 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:642px;
  2555. top:115px;
  2556. width:175px;
  2557. height:38px;
  2558. display:flex;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:12px;
  2563. }
  2564. #u63404 .text {
  2565. position:absolute;
  2566. align-self:center;
  2567. padding:2px 2px 2px 0px;
  2568. box-sizing:border-box;
  2569. width:100%;
  2570. }
  2571. #u63404_text {
  2572. border-width:0px;
  2573. word-wrap:break-word;
  2574. text-transform:none;
  2575. }
  2576. #u63405_img {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:205px;
  2582. height:38px;
  2583. }
  2584. #u63405 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:817px;
  2588. top:115px;
  2589. width:205px;
  2590. height:38px;
  2591. display:flex;
  2592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:12px;
  2596. }
  2597. #u63405 .text {
  2598. position:absolute;
  2599. align-self:center;
  2600. padding:2px 2px 2px 0px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u63405_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. visibility:hidden;
  2609. }
  2610. #u63406_img {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:205px;
  2616. height:38px;
  2617. }
  2618. #u63406 {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:1022px;
  2622. top:115px;
  2623. width:205px;
  2624. height:38px;
  2625. display:flex;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:12px;
  2630. }
  2631. #u63406 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 0px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u63406_text {
  2639. border-width:0px;
  2640. word-wrap:break-word;
  2641. text-transform:none;
  2642. visibility:hidden;
  2643. }
  2644. #u63407_img {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:214px;
  2650. height:35px;
  2651. }
  2652. #u63407 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:153px;
  2657. width:214px;
  2658. height:35px;
  2659. display:flex;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:12px;
  2664. color:#606266;
  2665. }
  2666. #u63407 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 0px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u63407_text {
  2674. border-width:0px;
  2675. word-wrap:break-word;
  2676. text-transform:none;
  2677. }
  2678. #u63408_img {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:214px;
  2684. height:35px;
  2685. }
  2686. #u63408 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:214px;
  2690. top:153px;
  2691. width:214px;
  2692. height:35px;
  2693. display:flex;
  2694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2695. font-weight:400;
  2696. font-style:normal;
  2697. font-size:12px;
  2698. color:#606266;
  2699. }
  2700. #u63408 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 0px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u63408_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. }
  2712. #u63409_img {
  2713. border-width:0px;
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:214px;
  2718. height:35px;
  2719. }
  2720. #u63409 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:428px;
  2724. top:153px;
  2725. width:214px;
  2726. height:35px;
  2727. display:flex;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:12px;
  2732. }
  2733. #u63409 .text {
  2734. position:absolute;
  2735. align-self:center;
  2736. padding:2px 2px 2px 0px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u63409_text {
  2741. border-width:0px;
  2742. word-wrap:break-word;
  2743. text-transform:none;
  2744. }
  2745. #u63410_img {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:175px;
  2751. height:35px;
  2752. }
  2753. #u63410 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:642px;
  2757. top:153px;
  2758. width:175px;
  2759. height:35px;
  2760. display:flex;
  2761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2762. font-weight:400;
  2763. font-style:normal;
  2764. font-size:12px;
  2765. }
  2766. #u63410 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:2px 2px 2px 0px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u63410_text {
  2774. border-width:0px;
  2775. word-wrap:break-word;
  2776. text-transform:none;
  2777. }
  2778. #u63411_img {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:0px;
  2782. top:0px;
  2783. width:205px;
  2784. height:35px;
  2785. }
  2786. #u63411 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:817px;
  2790. top:153px;
  2791. width:205px;
  2792. height:35px;
  2793. display:flex;
  2794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2795. font-weight:400;
  2796. font-style:normal;
  2797. font-size:12px;
  2798. }
  2799. #u63411 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 0px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u63411_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. visibility:hidden;
  2811. }
  2812. #u63412_img {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:0px;
  2816. top:0px;
  2817. width:205px;
  2818. height:35px;
  2819. }
  2820. #u63412 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:1022px;
  2824. top:153px;
  2825. width:205px;
  2826. height:35px;
  2827. display:flex;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:12px;
  2832. color:#606266;
  2833. }
  2834. #u63412 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:2px 2px 2px 0px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u63412_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u63413_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:214px;
  2853. height:35px;
  2854. }
  2855. #u63413 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:188px;
  2860. width:214px;
  2861. height:35px;
  2862. display:flex;
  2863. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:12px;
  2867. color:#606266;
  2868. }
  2869. #u63413 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:2px 2px 2px 0px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u63413_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. visibility:hidden;
  2881. }
  2882. #u63414_img {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:0px;
  2886. top:0px;
  2887. width:214px;
  2888. height:35px;
  2889. }
  2890. #u63414 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:214px;
  2894. top:188px;
  2895. width:214px;
  2896. height:35px;
  2897. display:flex;
  2898. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:12px;
  2902. color:#606266;
  2903. }
  2904. #u63414 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:2px 2px 2px 0px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u63414_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. visibility:hidden;
  2916. }
  2917. #u63415_img {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:214px;
  2923. height:35px;
  2924. }
  2925. #u63415 {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:428px;
  2929. top:188px;
  2930. width:214px;
  2931. height:35px;
  2932. display:flex;
  2933. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2934. font-weight:400;
  2935. font-style:normal;
  2936. font-size:12px;
  2937. color:#606266;
  2938. }
  2939. #u63415 .text {
  2940. position:absolute;
  2941. align-self:center;
  2942. padding:2px 2px 2px 0px;
  2943. box-sizing:border-box;
  2944. width:100%;
  2945. }
  2946. #u63415_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. visibility:hidden;
  2951. }
  2952. #u63416_img {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:175px;
  2958. height:35px;
  2959. }
  2960. #u63416 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:642px;
  2964. top:188px;
  2965. width:175px;
  2966. height:35px;
  2967. display:flex;
  2968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2969. font-weight:400;
  2970. font-style:normal;
  2971. font-size:12px;
  2972. color:#606266;
  2973. }
  2974. #u63416 .text {
  2975. position:absolute;
  2976. align-self:center;
  2977. padding:2px 2px 2px 0px;
  2978. box-sizing:border-box;
  2979. width:100%;
  2980. }
  2981. #u63416_text {
  2982. border-width:0px;
  2983. word-wrap:break-word;
  2984. text-transform:none;
  2985. visibility:hidden;
  2986. }
  2987. #u63417_img {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:205px;
  2993. height:35px;
  2994. }
  2995. #u63417 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:817px;
  2999. top:188px;
  3000. width:205px;
  3001. height:35px;
  3002. display:flex;
  3003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:12px;
  3007. color:#606266;
  3008. }
  3009. #u63417 .text {
  3010. position:absolute;
  3011. align-self:center;
  3012. padding:2px 2px 2px 0px;
  3013. box-sizing:border-box;
  3014. width:100%;
  3015. }
  3016. #u63417_text {
  3017. border-width:0px;
  3018. word-wrap:break-word;
  3019. text-transform:none;
  3020. visibility:hidden;
  3021. }
  3022. #u63418_img {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:205px;
  3028. height:35px;
  3029. }
  3030. #u63418 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:1022px;
  3034. top:188px;
  3035. width:205px;
  3036. height:35px;
  3037. display:flex;
  3038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3039. font-weight:400;
  3040. font-style:normal;
  3041. font-size:12px;
  3042. color:#606266;
  3043. }
  3044. #u63418 .text {
  3045. position:absolute;
  3046. align-self:center;
  3047. padding:2px 2px 2px 0px;
  3048. box-sizing:border-box;
  3049. width:100%;
  3050. }
  3051. #u63418_text {
  3052. border-width:0px;
  3053. word-wrap:break-word;
  3054. text-transform:none;
  3055. visibility:hidden;
  3056. }
  3057. #u63419_img {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:214px;
  3063. height:35px;
  3064. }
  3065. #u63419 {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:223px;
  3070. width:214px;
  3071. height:35px;
  3072. display:flex;
  3073. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3074. font-weight:400;
  3075. font-style:normal;
  3076. font-size:12px;
  3077. color:#606266;
  3078. }
  3079. #u63419 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 0px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u63419_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. visibility:hidden;
  3091. }
  3092. #u63420_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:214px;
  3098. height:35px;
  3099. }
  3100. #u63420 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:214px;
  3104. top:223px;
  3105. width:214px;
  3106. height:35px;
  3107. display:flex;
  3108. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:12px;
  3112. color:#606266;
  3113. }
  3114. #u63420 .text {
  3115. position:absolute;
  3116. align-self:center;
  3117. padding:2px 2px 2px 0px;
  3118. box-sizing:border-box;
  3119. width:100%;
  3120. }
  3121. #u63420_text {
  3122. border-width:0px;
  3123. word-wrap:break-word;
  3124. text-transform:none;
  3125. visibility:hidden;
  3126. }
  3127. #u63421_img {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:0px;
  3131. top:0px;
  3132. width:214px;
  3133. height:35px;
  3134. }
  3135. #u63421 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:428px;
  3139. top:223px;
  3140. width:214px;
  3141. height:35px;
  3142. display:flex;
  3143. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. color:#606266;
  3148. }
  3149. #u63421 .text {
  3150. position:absolute;
  3151. align-self:center;
  3152. padding:2px 2px 2px 0px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u63421_text {
  3157. border-width:0px;
  3158. word-wrap:break-word;
  3159. text-transform:none;
  3160. visibility:hidden;
  3161. }
  3162. #u63422_img {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:0px;
  3166. top:0px;
  3167. width:175px;
  3168. height:35px;
  3169. }
  3170. #u63422 {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:642px;
  3174. top:223px;
  3175. width:175px;
  3176. height:35px;
  3177. display:flex;
  3178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:12px;
  3182. color:#606266;
  3183. }
  3184. #u63422 .text {
  3185. position:absolute;
  3186. align-self:center;
  3187. padding:2px 2px 2px 0px;
  3188. box-sizing:border-box;
  3189. width:100%;
  3190. }
  3191. #u63422_text {
  3192. border-width:0px;
  3193. word-wrap:break-word;
  3194. text-transform:none;
  3195. visibility:hidden;
  3196. }
  3197. #u63423_img {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:205px;
  3203. height:35px;
  3204. }
  3205. #u63423 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:817px;
  3209. top:223px;
  3210. width:205px;
  3211. height:35px;
  3212. display:flex;
  3213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3214. font-weight:400;
  3215. font-style:normal;
  3216. font-size:12px;
  3217. color:#606266;
  3218. }
  3219. #u63423 .text {
  3220. position:absolute;
  3221. align-self:center;
  3222. padding:2px 2px 2px 0px;
  3223. box-sizing:border-box;
  3224. width:100%;
  3225. }
  3226. #u63423_text {
  3227. border-width:0px;
  3228. word-wrap:break-word;
  3229. text-transform:none;
  3230. visibility:hidden;
  3231. }
  3232. #u63424_img {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:0px;
  3236. top:0px;
  3237. width:205px;
  3238. height:35px;
  3239. }
  3240. #u63424 {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:1022px;
  3244. top:223px;
  3245. width:205px;
  3246. height:35px;
  3247. display:flex;
  3248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3249. font-weight:400;
  3250. font-style:normal;
  3251. font-size:12px;
  3252. color:#606266;
  3253. }
  3254. #u63424 .text {
  3255. position:absolute;
  3256. align-self:center;
  3257. padding:2px 2px 2px 0px;
  3258. box-sizing:border-box;
  3259. width:100%;
  3260. }
  3261. #u63424_text {
  3262. border-width:0px;
  3263. word-wrap:break-word;
  3264. text-transform:none;
  3265. visibility:hidden;
  3266. }
  3267. #u63425_img {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:214px;
  3273. height:35px;
  3274. }
  3275. #u63425 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:258px;
  3280. width:214px;
  3281. height:35px;
  3282. display:flex;
  3283. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:12px;
  3287. color:#606266;
  3288. }
  3289. #u63425 .text {
  3290. position:absolute;
  3291. align-self:center;
  3292. padding:2px 2px 2px 0px;
  3293. box-sizing:border-box;
  3294. width:100%;
  3295. }
  3296. #u63425_text {
  3297. border-width:0px;
  3298. word-wrap:break-word;
  3299. text-transform:none;
  3300. visibility:hidden;
  3301. }
  3302. #u63426_img {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:0px;
  3306. top:0px;
  3307. width:214px;
  3308. height:35px;
  3309. }
  3310. #u63426 {
  3311. border-width:0px;
  3312. position:absolute;
  3313. left:214px;
  3314. top:258px;
  3315. width:214px;
  3316. height:35px;
  3317. display:flex;
  3318. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:12px;
  3322. color:#606266;
  3323. }
  3324. #u63426 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 2px 2px 0px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u63426_text {
  3332. border-width:0px;
  3333. word-wrap:break-word;
  3334. text-transform:none;
  3335. visibility:hidden;
  3336. }
  3337. #u63427_img {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:214px;
  3343. height:35px;
  3344. }
  3345. #u63427 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:428px;
  3349. top:258px;
  3350. width:214px;
  3351. height:35px;
  3352. display:flex;
  3353. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. font-size:12px;
  3357. color:#606266;
  3358. }
  3359. #u63427 .text {
  3360. position:absolute;
  3361. align-self:center;
  3362. padding:2px 2px 2px 0px;
  3363. box-sizing:border-box;
  3364. width:100%;
  3365. }
  3366. #u63427_text {
  3367. border-width:0px;
  3368. word-wrap:break-word;
  3369. text-transform:none;
  3370. visibility:hidden;
  3371. }
  3372. #u63428_img {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:175px;
  3378. height:35px;
  3379. }
  3380. #u63428 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:642px;
  3384. top:258px;
  3385. width:175px;
  3386. height:35px;
  3387. display:flex;
  3388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. font-size:12px;
  3392. color:#606266;
  3393. }
  3394. #u63428 .text {
  3395. position:absolute;
  3396. align-self:center;
  3397. padding:2px 2px 2px 0px;
  3398. box-sizing:border-box;
  3399. width:100%;
  3400. }
  3401. #u63428_text {
  3402. border-width:0px;
  3403. word-wrap:break-word;
  3404. text-transform:none;
  3405. visibility:hidden;
  3406. }
  3407. #u63429_img {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:205px;
  3413. height:35px;
  3414. }
  3415. #u63429 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:817px;
  3419. top:258px;
  3420. width:205px;
  3421. height:35px;
  3422. display:flex;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:12px;
  3427. color:#606266;
  3428. }
  3429. #u63429 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 2px 2px 0px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u63429_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. visibility:hidden;
  3441. }
  3442. #u63430_img {
  3443. border-width:0px;
  3444. position:absolute;
  3445. left:0px;
  3446. top:0px;
  3447. width:205px;
  3448. height:35px;
  3449. }
  3450. #u63430 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:1022px;
  3454. top:258px;
  3455. width:205px;
  3456. height:35px;
  3457. display:flex;
  3458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3459. font-weight:400;
  3460. font-style:normal;
  3461. font-size:12px;
  3462. color:#606266;
  3463. }
  3464. #u63430 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 0px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u63430_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. visibility:hidden;
  3476. }
  3477. #u63431_img {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:214px;
  3483. height:35px;
  3484. }
  3485. #u63431 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:293px;
  3490. width:214px;
  3491. height:35px;
  3492. display:flex;
  3493. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:12px;
  3497. color:#606266;
  3498. }
  3499. #u63431 .text {
  3500. position:absolute;
  3501. align-self:center;
  3502. padding:2px 2px 2px 0px;
  3503. box-sizing:border-box;
  3504. width:100%;
  3505. }
  3506. #u63431_text {
  3507. border-width:0px;
  3508. word-wrap:break-word;
  3509. text-transform:none;
  3510. visibility:hidden;
  3511. }
  3512. #u63432_img {
  3513. border-width:0px;
  3514. position:absolute;
  3515. left:0px;
  3516. top:0px;
  3517. width:214px;
  3518. height:35px;
  3519. }
  3520. #u63432 {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:214px;
  3524. top:293px;
  3525. width:214px;
  3526. height:35px;
  3527. display:flex;
  3528. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3529. font-weight:400;
  3530. font-style:normal;
  3531. font-size:12px;
  3532. color:#606266;
  3533. }
  3534. #u63432 .text {
  3535. position:absolute;
  3536. align-self:center;
  3537. padding:2px 2px 2px 0px;
  3538. box-sizing:border-box;
  3539. width:100%;
  3540. }
  3541. #u63432_text {
  3542. border-width:0px;
  3543. word-wrap:break-word;
  3544. text-transform:none;
  3545. visibility:hidden;
  3546. }
  3547. #u63433_img {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:214px;
  3553. height:35px;
  3554. }
  3555. #u63433 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:428px;
  3559. top:293px;
  3560. width:214px;
  3561. height:35px;
  3562. display:flex;
  3563. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3564. font-weight:400;
  3565. font-style:normal;
  3566. font-size:12px;
  3567. color:#606266;
  3568. }
  3569. #u63433 .text {
  3570. position:absolute;
  3571. align-self:center;
  3572. padding:2px 2px 2px 0px;
  3573. box-sizing:border-box;
  3574. width:100%;
  3575. }
  3576. #u63433_text {
  3577. border-width:0px;
  3578. word-wrap:break-word;
  3579. text-transform:none;
  3580. visibility:hidden;
  3581. }
  3582. #u63434_img {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:0px;
  3586. top:0px;
  3587. width:175px;
  3588. height:35px;
  3589. }
  3590. #u63434 {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:642px;
  3594. top:293px;
  3595. width:175px;
  3596. height:35px;
  3597. display:flex;
  3598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3599. font-weight:400;
  3600. font-style:normal;
  3601. font-size:12px;
  3602. color:#606266;
  3603. }
  3604. #u63434 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:2px 2px 2px 0px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u63434_text {
  3612. border-width:0px;
  3613. word-wrap:break-word;
  3614. text-transform:none;
  3615. visibility:hidden;
  3616. }
  3617. #u63435_img {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:205px;
  3623. height:35px;
  3624. }
  3625. #u63435 {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:817px;
  3629. top:293px;
  3630. width:205px;
  3631. height:35px;
  3632. display:flex;
  3633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3634. font-weight:400;
  3635. font-style:normal;
  3636. font-size:12px;
  3637. color:#606266;
  3638. }
  3639. #u63435 .text {
  3640. position:absolute;
  3641. align-self:center;
  3642. padding:2px 2px 2px 0px;
  3643. box-sizing:border-box;
  3644. width:100%;
  3645. }
  3646. #u63435_text {
  3647. border-width:0px;
  3648. word-wrap:break-word;
  3649. text-transform:none;
  3650. visibility:hidden;
  3651. }
  3652. #u63436_img {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:205px;
  3658. height:35px;
  3659. }
  3660. #u63436 {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:1022px;
  3664. top:293px;
  3665. width:205px;
  3666. height:35px;
  3667. display:flex;
  3668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3669. font-weight:400;
  3670. font-style:normal;
  3671. font-size:12px;
  3672. color:#606266;
  3673. }
  3674. #u63436 .text {
  3675. position:absolute;
  3676. align-self:center;
  3677. padding:2px 2px 2px 0px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u63436_text {
  3682. border-width:0px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. visibility:hidden;
  3686. }
  3687. #u63437 {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:0px;
  3693. height:0px;
  3694. }
  3695. #u63438_div {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:0px;
  3699. top:0px;
  3700. width:59px;
  3701. height:30px;
  3702. background:inherit;
  3703. background-color:rgba(24, 144, 255, 1);
  3704. box-sizing:border-box;
  3705. border-width:1px;
  3706. border-style:solid;
  3707. border-color:rgba(0, 153, 255, 1);
  3708. border-radius:4px;
  3709. -moz-box-shadow:none;
  3710. -webkit-box-shadow:none;
  3711. box-shadow:none;
  3712. font-family:'Microsoft YaHei', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:14px;
  3716. color:#FFFFFF;
  3717. }
  3718. #u63438 {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:960px;
  3722. top:161px;
  3723. width:59px;
  3724. height:30px;
  3725. display:flex;
  3726. font-family:'Microsoft YaHei', sans-serif;
  3727. font-weight:400;
  3728. font-style:normal;
  3729. font-size:14px;
  3730. color:#FFFFFF;
  3731. }
  3732. #u63438 .text {
  3733. position:absolute;
  3734. align-self:center;
  3735. padding:5px 15px 5px 15px;
  3736. box-sizing:border-box;
  3737. width:100%;
  3738. }
  3739. #u63438_text {
  3740. border-width:0px;
  3741. white-space:nowrap;
  3742. text-transform:none;
  3743. }
  3744. #u63439_div {
  3745. border-width:0px;
  3746. position:absolute;
  3747. left:0px;
  3748. top:0px;
  3749. width:55px;
  3750. height:30px;
  3751. background:inherit;
  3752. background-color:rgba(255, 255, 255, 1);
  3753. box-sizing:border-box;
  3754. border-width:1px;
  3755. border-style:solid;
  3756. border-color:rgba(170, 170, 170, 1);
  3757. border-radius:4px;
  3758. -moz-box-shadow:none;
  3759. -webkit-box-shadow:none;
  3760. box-shadow:none;
  3761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3762. font-weight:400;
  3763. font-style:normal;
  3764. font-size:12px;
  3765. color:#555555;
  3766. }
  3767. #u63439 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:1029px;
  3771. top:161px;
  3772. width:55px;
  3773. height:30px;
  3774. display:flex;
  3775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3776. font-weight:400;
  3777. font-style:normal;
  3778. font-size:12px;
  3779. color:#555555;
  3780. }
  3781. #u63439 .text {
  3782. position:absolute;
  3783. align-self:center;
  3784. padding:5px 15px 5px 15px;
  3785. box-sizing:border-box;
  3786. width:100%;
  3787. }
  3788. #u63439_text {
  3789. border-width:0px;
  3790. white-space:nowrap;
  3791. text-transform:none;
  3792. }
  3793. #u63440 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:0px;
  3797. top:0px;
  3798. width:0px;
  3799. height:0px;
  3800. }
  3801. #u63441_div {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:140px;
  3807. height:30px;
  3808. background:inherit;
  3809. background-color:rgba(255, 255, 255, 1);
  3810. box-sizing:border-box;
  3811. border-width:1px;
  3812. border-style:solid;
  3813. border-color:rgba(201, 201, 201, 1);
  3814. border-radius:4px;
  3815. -moz-box-shadow:none;
  3816. -webkit-box-shadow:none;
  3817. box-shadow:none;
  3818. font-family:'Microsoft YaHei', sans-serif;
  3819. font-weight:400;
  3820. font-style:normal;
  3821. font-size:14px;
  3822. color:#CCCCCC;
  3823. text-align:left;
  3824. }
  3825. #u63441 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:650px;
  3829. top:161px;
  3830. width:140px;
  3831. height:30px;
  3832. display:flex;
  3833. font-family:'Microsoft YaHei', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:14px;
  3837. color:#CCCCCC;
  3838. text-align:left;
  3839. }
  3840. #u63441 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:2px 8px 2px 8px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u63441_text {
  3848. border-width:0px;
  3849. word-wrap:break-word;
  3850. text-transform:none;
  3851. visibility:hidden;
  3852. }
  3853. #u63442_input {
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:127px;
  3858. height:25px;
  3859. padding:2px 2px 2px 2px;
  3860. font-family:'Microsoft YaHei', sans-serif;
  3861. font-weight:400;
  3862. font-style:normal;
  3863. font-size:10px;
  3864. letter-spacing:normal;
  3865. color:#000000;
  3866. vertical-align:none;
  3867. text-align:left;
  3868. text-transform:none;
  3869. background-color:transparent;
  3870. border-color:transparent;
  3871. }
  3872. #u63442_input.disabled {
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:127px;
  3877. height:25px;
  3878. padding:2px 2px 2px 2px;
  3879. font-family:'Microsoft YaHei', sans-serif;
  3880. font-weight:400;
  3881. font-style:normal;
  3882. font-size:10px;
  3883. letter-spacing:normal;
  3884. color:#000000;
  3885. vertical-align:none;
  3886. text-align:left;
  3887. text-transform:none;
  3888. background-color:transparent;
  3889. border-color:transparent;
  3890. }
  3891. #u63442_div {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:127px;
  3897. height:25px;
  3898. background:inherit;
  3899. background-color:rgba(255, 255, 255, 1);
  3900. border:none;
  3901. border-radius:0px;
  3902. -moz-box-shadow:none;
  3903. -webkit-box-shadow:none;
  3904. box-shadow:none;
  3905. font-family:'Microsoft YaHei', sans-serif;
  3906. font-weight:400;
  3907. font-style:normal;
  3908. font-size:10px;
  3909. }
  3910. #u63442 {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:658px;
  3914. top:162px;
  3915. width:127px;
  3916. height:25px;
  3917. display:flex;
  3918. font-family:'Microsoft YaHei', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:10px;
  3922. }
  3923. #u63442 .text {
  3924. position:absolute;
  3925. align-self:center;
  3926. padding:2px 2px 2px 2px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u63442_div.disabled {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:127px;
  3936. height:25px;
  3937. background:inherit;
  3938. background-color:rgba(240, 240, 240, 1);
  3939. border:none;
  3940. border-radius:0px;
  3941. -moz-box-shadow:none;
  3942. -webkit-box-shadow:none;
  3943. box-shadow:none;
  3944. font-family:'Microsoft YaHei', sans-serif;
  3945. font-weight:400;
  3946. font-style:normal;
  3947. font-size:10px;
  3948. }
  3949. #u63442.disabled {
  3950. }
  3951. #u63443 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:0px;
  3957. height:0px;
  3958. }
  3959. #u63444_div {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:0px;
  3963. top:0px;
  3964. width:140px;
  3965. height:30px;
  3966. background:inherit;
  3967. background-color:rgba(255, 255, 255, 1);
  3968. box-sizing:border-box;
  3969. border-width:1px;
  3970. border-style:solid;
  3971. border-color:rgba(215, 215, 215, 1);
  3972. border-radius:4px;
  3973. -moz-box-shadow:none;
  3974. -webkit-box-shadow:none;
  3975. box-shadow:none;
  3976. font-size:14px;
  3977. }
  3978. #u63444 {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:350px;
  3982. top:161px;
  3983. width:140px;
  3984. height:30px;
  3985. display:flex;
  3986. font-size:14px;
  3987. }
  3988. #u63444 .text {
  3989. position:absolute;
  3990. align-self:center;
  3991. padding:2px 2px 2px 2px;
  3992. box-sizing:border-box;
  3993. width:100%;
  3994. }
  3995. #u63444_text {
  3996. border-width:0px;
  3997. word-wrap:break-word;
  3998. text-transform:none;
  3999. visibility:hidden;
  4000. }
  4001. #u63445_input {
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:134px;
  4006. height:23px;
  4007. padding:2px 2px 2px 2px;
  4008. font-family:'ArialMT', 'Arial', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. font-size:14px;
  4012. letter-spacing:normal;
  4013. color:#AAAAAA;
  4014. vertical-align:none;
  4015. text-align:left;
  4016. text-transform:none;
  4017. background-color:transparent;
  4018. border-color:transparent;
  4019. }
  4020. #u63445_input.disabled {
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:134px;
  4025. height:23px;
  4026. padding:2px 2px 2px 2px;
  4027. font-family:'ArialMT', 'Arial', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:14px;
  4031. letter-spacing:normal;
  4032. color:#AAAAAA;
  4033. vertical-align:none;
  4034. text-align:left;
  4035. text-transform:none;
  4036. background-color:transparent;
  4037. border-color:transparent;
  4038. }
  4039. #u63445_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:134px;
  4045. height:23px;
  4046. background:inherit;
  4047. background-color:rgba(255, 255, 255, 1);
  4048. border:none;
  4049. border-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-size:14px;
  4054. color:#AAAAAA;
  4055. }
  4056. #u63445 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:354px;
  4060. top:163px;
  4061. width:134px;
  4062. height:23px;
  4063. display:flex;
  4064. font-size:14px;
  4065. color:#AAAAAA;
  4066. }
  4067. #u63445 .text {
  4068. position:absolute;
  4069. align-self:flex-start;
  4070. padding:2px 2px 2px 2px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u63445_div.disabled {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:134px;
  4080. height:23px;
  4081. background:inherit;
  4082. background-color:rgba(240, 240, 240, 1);
  4083. border:none;
  4084. border-radius:0px;
  4085. -moz-box-shadow:none;
  4086. -webkit-box-shadow:none;
  4087. box-shadow:none;
  4088. font-size:14px;
  4089. color:#AAAAAA;
  4090. }
  4091. #u63445.disabled {
  4092. }
  4093. .u63445_input_option {
  4094. font-size:14px;
  4095. }
  4096. #u63446 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:0px;
  4102. height:0px;
  4103. }
  4104. #u63447_div {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:0px;
  4108. top:0px;
  4109. width:140px;
  4110. height:30px;
  4111. background:inherit;
  4112. background-color:rgba(255, 255, 255, 1);
  4113. box-sizing:border-box;
  4114. border-width:1px;
  4115. border-style:solid;
  4116. border-color:rgba(215, 215, 215, 1);
  4117. border-radius:4px;
  4118. -moz-box-shadow:none;
  4119. -webkit-box-shadow:none;
  4120. box-shadow:none;
  4121. font-size:14px;
  4122. }
  4123. #u63447 {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:500px;
  4127. top:161px;
  4128. width:140px;
  4129. height:30px;
  4130. display:flex;
  4131. font-size:14px;
  4132. }
  4133. #u63447 .text {
  4134. position:absolute;
  4135. align-self:center;
  4136. padding:2px 2px 2px 2px;
  4137. box-sizing:border-box;
  4138. width:100%;
  4139. }
  4140. #u63447_text {
  4141. border-width:0px;
  4142. word-wrap:break-word;
  4143. text-transform:none;
  4144. visibility:hidden;
  4145. }
  4146. #u63448_input {
  4147. position:absolute;
  4148. left:0px;
  4149. top:0px;
  4150. width:134px;
  4151. height:23px;
  4152. padding:2px 2px 2px 2px;
  4153. font-family:'ArialMT', 'Arial', sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:14px;
  4157. letter-spacing:normal;
  4158. color:#AAAAAA;
  4159. vertical-align:none;
  4160. text-align:left;
  4161. text-transform:none;
  4162. background-color:transparent;
  4163. border-color:transparent;
  4164. }
  4165. #u63448_input.disabled {
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:134px;
  4170. height:23px;
  4171. padding:2px 2px 2px 2px;
  4172. font-family:'ArialMT', 'Arial', sans-serif;
  4173. font-weight:400;
  4174. font-style:normal;
  4175. font-size:14px;
  4176. letter-spacing:normal;
  4177. color:#AAAAAA;
  4178. vertical-align:none;
  4179. text-align:left;
  4180. text-transform:none;
  4181. background-color:transparent;
  4182. border-color:transparent;
  4183. }
  4184. #u63448_div {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:134px;
  4190. height:23px;
  4191. background:inherit;
  4192. background-color:rgba(255, 255, 255, 1);
  4193. border:none;
  4194. border-radius:0px;
  4195. -moz-box-shadow:none;
  4196. -webkit-box-shadow:none;
  4197. box-shadow:none;
  4198. font-size:14px;
  4199. color:#AAAAAA;
  4200. }
  4201. #u63448 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:504px;
  4205. top:163px;
  4206. width:134px;
  4207. height:23px;
  4208. display:flex;
  4209. font-size:14px;
  4210. color:#AAAAAA;
  4211. }
  4212. #u63448 .text {
  4213. position:absolute;
  4214. align-self:flex-start;
  4215. padding:2px 2px 2px 2px;
  4216. box-sizing:border-box;
  4217. width:100%;
  4218. }
  4219. #u63448_div.disabled {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:134px;
  4225. height:23px;
  4226. background:inherit;
  4227. background-color:rgba(240, 240, 240, 1);
  4228. border:none;
  4229. border-radius:0px;
  4230. -moz-box-shadow:none;
  4231. -webkit-box-shadow:none;
  4232. box-shadow:none;
  4233. font-size:14px;
  4234. color:#AAAAAA;
  4235. }
  4236. #u63448.disabled {
  4237. }
  4238. .u63448_input_option {
  4239. font-size:14px;
  4240. }
  4241. #u63449 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:0px;
  4247. height:0px;
  4248. }
  4249. #u63450_div {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:140px;
  4255. height:30px;
  4256. background:inherit;
  4257. background-color:rgba(255, 255, 255, 1);
  4258. box-sizing:border-box;
  4259. border-width:1px;
  4260. border-style:solid;
  4261. border-color:rgba(201, 201, 201, 1);
  4262. border-radius:4px;
  4263. -moz-box-shadow:none;
  4264. -webkit-box-shadow:none;
  4265. box-shadow:none;
  4266. font-family:'Microsoft YaHei', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:14px;
  4270. color:#CCCCCC;
  4271. text-align:left;
  4272. }
  4273. #u63450 {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:800px;
  4277. top:161px;
  4278. width:140px;
  4279. height:30px;
  4280. display:flex;
  4281. font-family:'Microsoft YaHei', sans-serif;
  4282. font-weight:400;
  4283. font-style:normal;
  4284. font-size:14px;
  4285. color:#CCCCCC;
  4286. text-align:left;
  4287. }
  4288. #u63450 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:2px 8px 2px 8px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u63450_text {
  4296. border-width:0px;
  4297. word-wrap:break-word;
  4298. text-transform:none;
  4299. visibility:hidden;
  4300. }
  4301. #u63451_input {
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:127px;
  4306. height:25px;
  4307. padding:2px 2px 2px 2px;
  4308. font-family:'Microsoft YaHei', sans-serif;
  4309. font-weight:400;
  4310. font-style:normal;
  4311. font-size:10px;
  4312. letter-spacing:normal;
  4313. color:#000000;
  4314. vertical-align:none;
  4315. text-align:left;
  4316. text-transform:none;
  4317. background-color:transparent;
  4318. border-color:transparent;
  4319. }
  4320. #u63451_input.disabled {
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:127px;
  4325. height:25px;
  4326. padding:2px 2px 2px 2px;
  4327. font-family:'Microsoft YaHei', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:10px;
  4331. letter-spacing:normal;
  4332. color:#000000;
  4333. vertical-align:none;
  4334. text-align:left;
  4335. text-transform:none;
  4336. background-color:transparent;
  4337. border-color:transparent;
  4338. }
  4339. #u63451_div {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:127px;
  4345. height:25px;
  4346. background:inherit;
  4347. background-color:rgba(255, 255, 255, 1);
  4348. border:none;
  4349. border-radius:0px;
  4350. -moz-box-shadow:none;
  4351. -webkit-box-shadow:none;
  4352. box-shadow:none;
  4353. font-family:'Microsoft YaHei', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:10px;
  4357. }
  4358. #u63451 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:808px;
  4362. top:162px;
  4363. width:127px;
  4364. height:25px;
  4365. display:flex;
  4366. font-family:'Microsoft YaHei', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:10px;
  4370. }
  4371. #u63451 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u63451_div.disabled {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:127px;
  4384. height:25px;
  4385. background:inherit;
  4386. background-color:rgba(240, 240, 240, 1);
  4387. border:none;
  4388. border-radius:0px;
  4389. -moz-box-shadow:none;
  4390. -webkit-box-shadow:none;
  4391. box-shadow:none;
  4392. font-family:'Microsoft YaHei', sans-serif;
  4393. font-weight:400;
  4394. font-style:normal;
  4395. font-size:10px;
  4396. }
  4397. #u63451.disabled {
  4398. }
  4399. #u63452 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:0px;
  4403. top:0px;
  4404. width:0px;
  4405. height:0px;
  4406. }
  4407. #u63453_img {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:-5px;
  4411. top:-5px;
  4412. width:368px;
  4413. height:508px;
  4414. }
  4415. #u63453 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:51px;
  4419. top:-579px;
  4420. width:358px;
  4421. height:498px;
  4422. display:flex;
  4423. }
  4424. #u63453 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 2px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u63453_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u63454_img {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:-5px;
  4441. top:-5px;
  4442. width:368px;
  4443. height:507px;
  4444. }
  4445. #u63454 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:632px;
  4449. top:-572px;
  4450. width:358px;
  4451. height:497px;
  4452. display:flex;
  4453. }
  4454. #u63454 .text {
  4455. position:absolute;
  4456. align-self:center;
  4457. padding:2px 2px 2px 2px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u63454_text {
  4462. border-width:0px;
  4463. word-wrap:break-word;
  4464. text-transform:none;
  4465. visibility:hidden;
  4466. }
  4467. #u63455_img {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:0px;
  4471. top:0px;
  4472. width:198px;
  4473. height:74px;
  4474. }
  4475. #u63455 {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:375px;
  4479. top:-501px;
  4480. width:198px;
  4481. height:74px;
  4482. display:flex;
  4483. }
  4484. #u63455 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 2px 2px 2px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u63455_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. visibility:hidden;
  4496. }
  4497. #u63456_img {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:196px;
  4503. height:92px;
  4504. }
  4505. #u63456 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:377px;
  4509. top:-417px;
  4510. width:196px;
  4511. height:92px;
  4512. display:flex;
  4513. }
  4514. #u63456 .text {
  4515. position:absolute;
  4516. align-self:center;
  4517. padding:2px 2px 2px 2px;
  4518. box-sizing:border-box;
  4519. width:100%;
  4520. }
  4521. #u63456_text {
  4522. border-width:0px;
  4523. word-wrap:break-word;
  4524. text-transform:none;
  4525. visibility:hidden;
  4526. }
  4527. #u63457_img {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:197px;
  4533. height:111px;
  4534. }
  4535. #u63457 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:377px;
  4539. top:-315px;
  4540. width:197px;
  4541. height:111px;
  4542. display:flex;
  4543. }
  4544. #u63457 .text {
  4545. position:absolute;
  4546. align-self:center;
  4547. padding:2px 2px 2px 2px;
  4548. box-sizing:border-box;
  4549. width:100%;
  4550. }
  4551. #u63457_text {
  4552. border-width:0px;
  4553. word-wrap:break-word;
  4554. text-transform:none;
  4555. visibility:hidden;
  4556. }
  4557. #u63458 {
  4558. border-width:0px;
  4559. position:absolute;
  4560. left:0px;
  4561. top:0px;
  4562. width:0px;
  4563. height:0px;
  4564. }
  4565. #u63459_div {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:600px;
  4571. height:1200px;
  4572. background:inherit;
  4573. background-color:rgba(255, 255, 255, 1);
  4574. box-sizing:border-box;
  4575. border-width:1px;
  4576. border-style:solid;
  4577. border-color:rgba(215, 215, 215, 1);
  4578. border-radius:0px;
  4579. -moz-box-shadow:none;
  4580. -webkit-box-shadow:none;
  4581. box-shadow:none;
  4582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:14px;
  4586. color:#AAAAAA;
  4587. text-align:center;
  4588. line-height:30px;
  4589. }
  4590. #u63459 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:1663px;
  4594. top:75px;
  4595. width:600px;
  4596. height:1200px;
  4597. display:flex;
  4598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:14px;
  4602. color:#AAAAAA;
  4603. text-align:center;
  4604. line-height:30px;
  4605. }
  4606. #u63459 .text {
  4607. position:absolute;
  4608. align-self:center;
  4609. padding:5px 10px 5px 10px;
  4610. box-sizing:border-box;
  4611. width:100%;
  4612. }
  4613. #u63459_text {
  4614. border-width:0px;
  4615. word-wrap:break-word;
  4616. text-transform:none;
  4617. visibility:hidden;
  4618. }
  4619. #u63460_div {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:164px;
  4625. height:35px;
  4626. background:inherit;
  4627. background-color:rgba(255, 255, 255, 0);
  4628. border:none;
  4629. border-top:0px;
  4630. border-right:0px;
  4631. border-bottom:0px;
  4632. border-radius:0px;
  4633. border-top-left-radius:0px;
  4634. border-bottom-left-radius:0px;
  4635. -moz-box-shadow:none;
  4636. -webkit-box-shadow:none;
  4637. box-shadow:none;
  4638. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4639. font-weight:500;
  4640. font-style:normal;
  4641. font-size:18px;
  4642. }
  4643. #u63460 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:1683px;
  4647. top:93px;
  4648. width:164px;
  4649. height:35px;
  4650. display:flex;
  4651. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4652. font-weight:500;
  4653. font-style:normal;
  4654. font-size:18px;
  4655. }
  4656. #u63460 .text {
  4657. position:absolute;
  4658. align-self:center;
  4659. padding:5px 10px 5px 0px;
  4660. box-sizing:border-box;
  4661. width:100%;
  4662. }
  4663. #u63460_text {
  4664. border-width:0px;
  4665. white-space:nowrap;
  4666. text-transform:none;
  4667. }
  4668. #u63461 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:0px;
  4674. height:0px;
  4675. }
  4676. #u63462_div {
  4677. border-width:0px;
  4678. position:absolute;
  4679. left:0px;
  4680. top:0px;
  4681. width:600px;
  4682. height:60px;
  4683. background:inherit;
  4684. background-color:rgba(255, 255, 255, 1);
  4685. box-sizing:border-box;
  4686. border-width:1px;
  4687. border-style:solid;
  4688. border-color:rgba(215, 215, 215, 1);
  4689. border-radius:0px;
  4690. -moz-box-shadow:none;
  4691. -webkit-box-shadow:none;
  4692. box-shadow:none;
  4693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4694. font-weight:400;
  4695. font-style:normal;
  4696. font-size:14px;
  4697. color:#AAAAAA;
  4698. text-align:center;
  4699. line-height:30px;
  4700. }
  4701. #u63462 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:1663px;
  4705. top:1215px;
  4706. width:600px;
  4707. height:60px;
  4708. display:flex;
  4709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4710. font-weight:400;
  4711. font-style:normal;
  4712. font-size:14px;
  4713. color:#AAAAAA;
  4714. text-align:center;
  4715. line-height:30px;
  4716. }
  4717. #u63462 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:5px 10px 5px 10px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u63462_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u63463_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:80px;
  4736. height:30px;
  4737. background:inherit;
  4738. background-color:rgba(24, 144, 255, 1);
  4739. border:none;
  4740. border-radius:4px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:14px;
  4748. color:#FFFFFF;
  4749. }
  4750. #u63463 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:2143px;
  4754. top:1230px;
  4755. width:80px;
  4756. height:30px;
  4757. display:flex;
  4758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4759. font-weight:400;
  4760. font-style:normal;
  4761. font-size:14px;
  4762. color:#FFFFFF;
  4763. }
  4764. #u63463 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 2px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u63463_text {
  4772. border-width:0px;
  4773. word-wrap:break-word;
  4774. text-transform:none;
  4775. }
  4776. #u63464_div {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:79px;
  4782. height:30px;
  4783. background:inherit;
  4784. background-color:rgba(255, 255, 255, 1);
  4785. box-sizing:border-box;
  4786. border-width:1px;
  4787. border-style:solid;
  4788. border-color:rgba(170, 170, 170, 1);
  4789. border-radius:4px;
  4790. -moz-box-shadow:none;
  4791. -webkit-box-shadow:none;
  4792. box-shadow:none;
  4793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:14px;
  4797. }
  4798. #u63464 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:2044px;
  4802. top:1230px;
  4803. width:79px;
  4804. height:30px;
  4805. display:flex;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:14px;
  4810. }
  4811. #u63464 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:2px 2px 2px 2px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u63464_text {
  4819. border-width:0px;
  4820. word-wrap:break-word;
  4821. text-transform:none;
  4822. }
  4823. #u63465_div {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:29px;
  4829. height:40px;
  4830. background:inherit;
  4831. background-color:rgba(255, 255, 255, 0);
  4832. border:none;
  4833. border-top:0px;
  4834. border-right:0px;
  4835. border-bottom:0px;
  4836. border-radius:0px;
  4837. border-top-left-radius:0px;
  4838. border-bottom-left-radius:0px;
  4839. -moz-box-shadow:none;
  4840. -webkit-box-shadow:none;
  4841. box-shadow:none;
  4842. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4843. font-weight:500;
  4844. font-style:normal;
  4845. font-size:14px;
  4846. color:#0089FE;
  4847. text-align:center;
  4848. }
  4849. #u63465 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:1707px;
  4853. top:154px;
  4854. width:29px;
  4855. height:40px;
  4856. display:flex;
  4857. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4858. font-weight:500;
  4859. font-style:normal;
  4860. font-size:14px;
  4861. color:#0089FE;
  4862. text-align:center;
  4863. }
  4864. #u63465 .text {
  4865. position:absolute;
  4866. align-self:center;
  4867. padding:5px 0px 5px 0px;
  4868. box-sizing:border-box;
  4869. width:100%;
  4870. }
  4871. #u63465_text {
  4872. border-width:0px;
  4873. white-space:nowrap;
  4874. text-transform:none;
  4875. }
  4876. #u63466_div {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:29px;
  4882. height:40px;
  4883. background:inherit;
  4884. background-color:rgba(255, 255, 255, 0);
  4885. border:none;
  4886. border-top:0px;
  4887. border-right:0px;
  4888. border-bottom:0px;
  4889. border-radius:0px;
  4890. border-top-left-radius:0px;
  4891. border-bottom-left-radius:0px;
  4892. -moz-box-shadow:none;
  4893. -webkit-box-shadow:none;
  4894. box-shadow:none;
  4895. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4896. font-weight:500;
  4897. font-style:normal;
  4898. font-size:14px;
  4899. text-align:center;
  4900. }
  4901. #u63466 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:1766px;
  4905. top:154px;
  4906. width:29px;
  4907. height:40px;
  4908. display:flex;
  4909. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4910. font-weight:500;
  4911. font-style:normal;
  4912. font-size:14px;
  4913. text-align:center;
  4914. }
  4915. #u63466 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:5px 0px 5px 0px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u63466_text {
  4923. border-width:0px;
  4924. white-space:nowrap;
  4925. text-transform:none;
  4926. }
  4927. #u63467 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:0px;
  4933. height:0px;
  4934. }
  4935. #u63468_div {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:379px;
  4941. height:40px;
  4942. background:inherit;
  4943. background-color:rgba(255, 255, 255, 1);
  4944. box-sizing:border-box;
  4945. border-width:1px;
  4946. border-style:solid;
  4947. border-color:rgba(215, 215, 215, 1);
  4948. border-radius:4px;
  4949. -moz-box-shadow:none;
  4950. -webkit-box-shadow:none;
  4951. box-shadow:none;
  4952. font-size:14px;
  4953. }
  4954. #u63468 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:1798px;
  4958. top:219px;
  4959. width:379px;
  4960. height:40px;
  4961. display:flex;
  4962. font-size:14px;
  4963. }
  4964. #u63468 .text {
  4965. position:absolute;
  4966. align-self:center;
  4967. padding:2px 2px 2px 2px;
  4968. box-sizing:border-box;
  4969. width:100%;
  4970. }
  4971. #u63468_text {
  4972. border-width:0px;
  4973. word-wrap:break-word;
  4974. text-transform:none;
  4975. visibility:hidden;
  4976. }
  4977. #u63469_input {
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:363px;
  4982. height:31px;
  4983. padding:2px 2px 2px 2px;
  4984. font-family:'ArialMT', 'Arial', sans-serif;
  4985. font-weight:400;
  4986. font-style:normal;
  4987. font-size:14px;
  4988. letter-spacing:normal;
  4989. color:#AAAAAA;
  4990. vertical-align:none;
  4991. text-align:left;
  4992. text-transform:none;
  4993. background-color:transparent;
  4994. border-color:transparent;
  4995. }
  4996. #u63469_input.disabled {
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:363px;
  5001. height:31px;
  5002. padding:2px 2px 2px 2px;
  5003. font-family:'ArialMT', 'Arial', sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. font-size:14px;
  5007. letter-spacing:normal;
  5008. color:#AAAAAA;
  5009. vertical-align:none;
  5010. text-align:left;
  5011. text-transform:none;
  5012. background-color:transparent;
  5013. border-color:transparent;
  5014. }
  5015. #u63469_div {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:363px;
  5021. height:31px;
  5022. background:inherit;
  5023. background-color:rgba(255, 255, 255, 1);
  5024. border:none;
  5025. border-radius:0px;
  5026. -moz-box-shadow:none;
  5027. -webkit-box-shadow:none;
  5028. box-shadow:none;
  5029. font-size:14px;
  5030. color:#AAAAAA;
  5031. }
  5032. #u63469 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:1809px;
  5036. top:222px;
  5037. width:363px;
  5038. height:31px;
  5039. display:flex;
  5040. font-size:14px;
  5041. color:#AAAAAA;
  5042. }
  5043. #u63469 .text {
  5044. position:absolute;
  5045. align-self:flex-start;
  5046. padding:2px 2px 2px 2px;
  5047. box-sizing:border-box;
  5048. width:100%;
  5049. }
  5050. #u63469_div.disabled {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:363px;
  5056. height:31px;
  5057. background:inherit;
  5058. background-color:rgba(240, 240, 240, 1);
  5059. border:none;
  5060. border-radius:0px;
  5061. -moz-box-shadow:none;
  5062. -webkit-box-shadow:none;
  5063. box-shadow:none;
  5064. font-size:14px;
  5065. color:#AAAAAA;
  5066. }
  5067. #u63469.disabled {
  5068. }
  5069. .u63469_input_option {
  5070. font-size:14px;
  5071. }
  5072. #u63470_div {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:88px;
  5078. height:40px;
  5079. background:inherit;
  5080. background-color:rgba(255, 255, 255, 0);
  5081. border:none;
  5082. border-top:0px;
  5083. border-right:0px;
  5084. border-bottom:0px;
  5085. border-radius:0px;
  5086. border-top-left-radius:0px;
  5087. border-bottom-left-radius:0px;
  5088. -moz-box-shadow:none;
  5089. -webkit-box-shadow:none;
  5090. box-shadow:none;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:14px;
  5095. color:#7F7F7F;
  5096. text-align:right;
  5097. }
  5098. #u63470 {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:1700px;
  5102. top:219px;
  5103. width:88px;
  5104. height:40px;
  5105. display:flex;
  5106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:14px;
  5110. color:#7F7F7F;
  5111. text-align:right;
  5112. }
  5113. #u63470 .text {
  5114. position:absolute;
  5115. align-self:center;
  5116. padding:5px 10px 5px 0px;
  5117. box-sizing:border-box;
  5118. width:100%;
  5119. }
  5120. #u63470_text {
  5121. border-width:0px;
  5122. white-space:nowrap;
  5123. text-transform:none;
  5124. }
  5125. #u63471_div {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:0px;
  5129. top:0px;
  5130. width:88px;
  5131. height:40px;
  5132. background:inherit;
  5133. background-color:rgba(255, 255, 255, 0);
  5134. border:none;
  5135. border-top:0px;
  5136. border-right:0px;
  5137. border-bottom:0px;
  5138. border-radius:0px;
  5139. border-top-left-radius:0px;
  5140. border-bottom-left-radius:0px;
  5141. -moz-box-shadow:none;
  5142. -webkit-box-shadow:none;
  5143. box-shadow:none;
  5144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5145. font-weight:400;
  5146. font-style:normal;
  5147. font-size:14px;
  5148. color:#7F7F7F;
  5149. text-align:right;
  5150. }
  5151. #u63471 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:1700px;
  5155. top:269px;
  5156. width:88px;
  5157. height:40px;
  5158. display:flex;
  5159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:14px;
  5163. color:#7F7F7F;
  5164. text-align:right;
  5165. }
  5166. #u63471 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:5px 10px 5px 0px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u63471_text {
  5174. border-width:0px;
  5175. white-space:nowrap;
  5176. text-transform:none;
  5177. }
  5178. #u63472_div {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:81px;
  5184. height:40px;
  5185. background:inherit;
  5186. background-color:rgba(255, 255, 255, 0);
  5187. border:none;
  5188. border-top:0px;
  5189. border-right:0px;
  5190. border-bottom:0px;
  5191. border-radius:0px;
  5192. border-top-left-radius:0px;
  5193. border-bottom-left-radius:0px;
  5194. -moz-box-shadow:none;
  5195. -webkit-box-shadow:none;
  5196. box-shadow:none;
  5197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:14px;
  5201. color:#7F7F7F;
  5202. text-align:right;
  5203. }
  5204. #u63472 {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:1707px;
  5208. top:319px;
  5209. width:81px;
  5210. height:40px;
  5211. display:flex;
  5212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5213. font-weight:400;
  5214. font-style:normal;
  5215. font-size:14px;
  5216. color:#7F7F7F;
  5217. text-align:right;
  5218. }
  5219. #u63472 .text {
  5220. position:absolute;
  5221. align-self:center;
  5222. padding:5px 10px 5px 0px;
  5223. box-sizing:border-box;
  5224. width:100%;
  5225. }
  5226. #u63472_text {
  5227. border-width:0px;
  5228. white-space:nowrap;
  5229. text-transform:none;
  5230. }
  5231. #u63473 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:0px;
  5237. height:0px;
  5238. }
  5239. #u63474_div {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:379px;
  5245. height:40px;
  5246. background:inherit;
  5247. background-color:rgba(255, 255, 255, 1);
  5248. box-sizing:border-box;
  5249. border-width:1px;
  5250. border-style:solid;
  5251. border-color:rgba(201, 201, 201, 1);
  5252. border-radius:4px;
  5253. -moz-box-shadow:none;
  5254. -webkit-box-shadow:none;
  5255. box-shadow:none;
  5256. font-family:'Microsoft YaHei', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:14px;
  5260. color:#CCCCCC;
  5261. text-align:left;
  5262. }
  5263. #u63474 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:1798px;
  5267. top:319px;
  5268. width:379px;
  5269. height:40px;
  5270. display:flex;
  5271. font-family:'Microsoft YaHei', sans-serif;
  5272. font-weight:400;
  5273. font-style:normal;
  5274. font-size:14px;
  5275. color:#CCCCCC;
  5276. text-align:left;
  5277. }
  5278. #u63474 .text {
  5279. position:absolute;
  5280. align-self:center;
  5281. padding:2px 8px 2px 8px;
  5282. box-sizing:border-box;
  5283. width:100%;
  5284. }
  5285. #u63474_text {
  5286. border-width:0px;
  5287. word-wrap:break-word;
  5288. text-transform:none;
  5289. visibility:hidden;
  5290. }
  5291. #u63475_input {
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:360px;
  5296. height:38px;
  5297. padding:2px 2px 2px 2px;
  5298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5299. font-weight:400;
  5300. font-style:normal;
  5301. font-size:14px;
  5302. letter-spacing:normal;
  5303. color:#000000;
  5304. vertical-align:none;
  5305. text-align:left;
  5306. text-transform:none;
  5307. background-color:transparent;
  5308. border-color:transparent;
  5309. }
  5310. #u63475_input.disabled {
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:360px;
  5315. height:38px;
  5316. padding:2px 2px 2px 2px;
  5317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:14px;
  5321. letter-spacing:normal;
  5322. color:#000000;
  5323. vertical-align:none;
  5324. text-align:left;
  5325. text-transform:none;
  5326. background-color:transparent;
  5327. border-color:transparent;
  5328. }
  5329. #u63475_div {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:360px;
  5335. height:38px;
  5336. background:inherit;
  5337. background-color:rgba(255, 255, 255, 1);
  5338. border:none;
  5339. border-radius:0px;
  5340. -moz-box-shadow:none;
  5341. -webkit-box-shadow:none;
  5342. box-shadow:none;
  5343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5344. font-weight:400;
  5345. font-style:normal;
  5346. font-size:14px;
  5347. }
  5348. #u63475 {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:1808px;
  5352. top:320px;
  5353. width:360px;
  5354. height:38px;
  5355. display:flex;
  5356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5357. font-weight:400;
  5358. font-style:normal;
  5359. font-size:14px;
  5360. }
  5361. #u63475 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 2px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u63475_div.disabled {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:360px;
  5374. height:38px;
  5375. background:inherit;
  5376. background-color:rgba(240, 240, 240, 1);
  5377. border:none;
  5378. border-radius:0px;
  5379. -moz-box-shadow:none;
  5380. -webkit-box-shadow:none;
  5381. box-shadow:none;
  5382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5383. font-weight:400;
  5384. font-style:normal;
  5385. font-size:14px;
  5386. }
  5387. #u63475.disabled {
  5388. }
  5389. #u63476 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:0px;
  5395. height:0px;
  5396. }
  5397. #u63477_div {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:379px;
  5403. height:40px;
  5404. background:inherit;
  5405. background-color:rgba(255, 255, 255, 1);
  5406. box-sizing:border-box;
  5407. border-width:1px;
  5408. border-style:solid;
  5409. border-color:rgba(215, 215, 215, 1);
  5410. border-radius:4px;
  5411. -moz-box-shadow:none;
  5412. -webkit-box-shadow:none;
  5413. box-shadow:none;
  5414. font-size:14px;
  5415. }
  5416. #u63477 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:1798px;
  5420. top:269px;
  5421. width:379px;
  5422. height:40px;
  5423. display:flex;
  5424. font-size:14px;
  5425. }
  5426. #u63477 .text {
  5427. position:absolute;
  5428. align-self:center;
  5429. padding:2px 2px 2px 2px;
  5430. box-sizing:border-box;
  5431. width:100%;
  5432. }
  5433. #u63477_text {
  5434. border-width:0px;
  5435. word-wrap:break-word;
  5436. text-transform:none;
  5437. visibility:hidden;
  5438. }
  5439. #u63478_input {
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:363px;
  5444. height:31px;
  5445. padding:2px 2px 2px 2px;
  5446. font-family:'ArialMT', 'Arial', sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:14px;
  5450. letter-spacing:normal;
  5451. color:#AAAAAA;
  5452. vertical-align:none;
  5453. text-align:left;
  5454. text-transform:none;
  5455. background-color:transparent;
  5456. border-color:transparent;
  5457. }
  5458. #u63478_input.disabled {
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:363px;
  5463. height:31px;
  5464. padding:2px 2px 2px 2px;
  5465. font-family:'ArialMT', 'Arial', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:14px;
  5469. letter-spacing:normal;
  5470. color:#AAAAAA;
  5471. vertical-align:none;
  5472. text-align:left;
  5473. text-transform:none;
  5474. background-color:transparent;
  5475. border-color:transparent;
  5476. }
  5477. #u63478_div {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:0px;
  5481. top:0px;
  5482. width:363px;
  5483. height:31px;
  5484. background:inherit;
  5485. background-color:rgba(255, 255, 255, 1);
  5486. border:none;
  5487. border-radius:0px;
  5488. -moz-box-shadow:none;
  5489. -webkit-box-shadow:none;
  5490. box-shadow:none;
  5491. font-size:14px;
  5492. color:#AAAAAA;
  5493. }
  5494. #u63478 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:1809px;
  5498. top:272px;
  5499. width:363px;
  5500. height:31px;
  5501. display:flex;
  5502. font-size:14px;
  5503. color:#AAAAAA;
  5504. }
  5505. #u63478 .text {
  5506. position:absolute;
  5507. align-self:flex-start;
  5508. padding:2px 2px 2px 2px;
  5509. box-sizing:border-box;
  5510. width:100%;
  5511. }
  5512. #u63478_div.disabled {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:363px;
  5518. height:31px;
  5519. background:inherit;
  5520. background-color:rgba(240, 240, 240, 1);
  5521. border:none;
  5522. border-radius:0px;
  5523. -moz-box-shadow:none;
  5524. -webkit-box-shadow:none;
  5525. box-shadow:none;
  5526. font-size:14px;
  5527. color:#AAAAAA;
  5528. }
  5529. #u63478.disabled {
  5530. }
  5531. .u63478_input_option {
  5532. font-size:14px;
  5533. }
  5534. #u63479 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:0px;
  5540. height:0px;
  5541. }
  5542. #u63480_div {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:379px;
  5548. height:40px;
  5549. background:inherit;
  5550. background-color:rgba(255, 255, 255, 1);
  5551. box-sizing:border-box;
  5552. border-width:1px;
  5553. border-style:solid;
  5554. border-color:rgba(215, 215, 215, 1);
  5555. border-radius:4px;
  5556. -moz-box-shadow:none;
  5557. -webkit-box-shadow:none;
  5558. box-shadow:none;
  5559. font-size:14px;
  5560. }
  5561. #u63480 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:1798px;
  5565. top:369px;
  5566. width:379px;
  5567. height:40px;
  5568. display:flex;
  5569. font-size:14px;
  5570. }
  5571. #u63480 .text {
  5572. position:absolute;
  5573. align-self:center;
  5574. padding:2px 2px 2px 2px;
  5575. box-sizing:border-box;
  5576. width:100%;
  5577. }
  5578. #u63480_text {
  5579. border-width:0px;
  5580. word-wrap:break-word;
  5581. text-transform:none;
  5582. visibility:hidden;
  5583. }
  5584. #u63481_input {
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:363px;
  5589. height:31px;
  5590. padding:2px 2px 2px 2px;
  5591. font-family:'ArialMT', 'Arial', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:14px;
  5595. letter-spacing:normal;
  5596. color:#AAAAAA;
  5597. vertical-align:none;
  5598. text-align:left;
  5599. text-transform:none;
  5600. background-color:transparent;
  5601. border-color:transparent;
  5602. }
  5603. #u63481_input.disabled {
  5604. position:absolute;
  5605. left:0px;
  5606. top:0px;
  5607. width:363px;
  5608. height:31px;
  5609. padding:2px 2px 2px 2px;
  5610. font-family:'ArialMT', 'Arial', sans-serif;
  5611. font-weight:400;
  5612. font-style:normal;
  5613. font-size:14px;
  5614. letter-spacing:normal;
  5615. color:#AAAAAA;
  5616. vertical-align:none;
  5617. text-align:left;
  5618. text-transform:none;
  5619. background-color:transparent;
  5620. border-color:transparent;
  5621. }
  5622. #u63481_div {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:363px;
  5628. height:31px;
  5629. background:inherit;
  5630. background-color:rgba(255, 255, 255, 1);
  5631. border:none;
  5632. border-radius:0px;
  5633. -moz-box-shadow:none;
  5634. -webkit-box-shadow:none;
  5635. box-shadow:none;
  5636. font-size:14px;
  5637. color:#AAAAAA;
  5638. }
  5639. #u63481 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:1809px;
  5643. top:372px;
  5644. width:363px;
  5645. height:31px;
  5646. display:flex;
  5647. font-size:14px;
  5648. color:#AAAAAA;
  5649. }
  5650. #u63481 .text {
  5651. position:absolute;
  5652. align-self:flex-start;
  5653. padding:2px 2px 2px 2px;
  5654. box-sizing:border-box;
  5655. width:100%;
  5656. }
  5657. #u63481_div.disabled {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:363px;
  5663. height:31px;
  5664. background:inherit;
  5665. background-color:rgba(240, 240, 240, 1);
  5666. border:none;
  5667. border-radius:0px;
  5668. -moz-box-shadow:none;
  5669. -webkit-box-shadow:none;
  5670. box-shadow:none;
  5671. font-size:14px;
  5672. color:#AAAAAA;
  5673. }
  5674. #u63481.disabled {
  5675. }
  5676. .u63481_input_option {
  5677. font-size:14px;
  5678. }
  5679. #u63482_div {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:88px;
  5685. height:40px;
  5686. background:inherit;
  5687. background-color:rgba(255, 255, 255, 0);
  5688. border:none;
  5689. border-top:0px;
  5690. border-right:0px;
  5691. border-bottom:0px;
  5692. border-radius:0px;
  5693. border-top-left-radius:0px;
  5694. border-bottom-left-radius:0px;
  5695. -moz-box-shadow:none;
  5696. -webkit-box-shadow:none;
  5697. box-shadow:none;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:14px;
  5702. color:#7F7F7F;
  5703. text-align:right;
  5704. }
  5705. #u63482 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:1700px;
  5709. top:369px;
  5710. width:88px;
  5711. height:40px;
  5712. display:flex;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:14px;
  5717. color:#7F7F7F;
  5718. text-align:right;
  5719. }
  5720. #u63482 .text {
  5721. position:absolute;
  5722. align-self:center;
  5723. padding:5px 10px 5px 0px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u63482_text {
  5728. border-width:0px;
  5729. white-space:nowrap;
  5730. text-transform:none;
  5731. }
  5732. #u63483_div {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:81px;
  5738. height:40px;
  5739. background:inherit;
  5740. background-color:rgba(255, 255, 255, 0);
  5741. border:none;
  5742. border-top:0px;
  5743. border-right:0px;
  5744. border-bottom:0px;
  5745. border-radius:0px;
  5746. border-top-left-radius:0px;
  5747. border-bottom-left-radius:0px;
  5748. -moz-box-shadow:none;
  5749. -webkit-box-shadow:none;
  5750. box-shadow:none;
  5751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5752. font-weight:400;
  5753. font-style:normal;
  5754. font-size:14px;
  5755. color:#7F7F7F;
  5756. text-align:right;
  5757. }
  5758. #u63483 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:1707px;
  5762. top:419px;
  5763. width:81px;
  5764. height:40px;
  5765. display:flex;
  5766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5767. font-weight:400;
  5768. font-style:normal;
  5769. font-size:14px;
  5770. color:#7F7F7F;
  5771. text-align:right;
  5772. }
  5773. #u63483 .text {
  5774. position:absolute;
  5775. align-self:center;
  5776. padding:5px 10px 5px 0px;
  5777. box-sizing:border-box;
  5778. width:100%;
  5779. }
  5780. #u63483_text {
  5781. border-width:0px;
  5782. white-space:nowrap;
  5783. text-transform:none;
  5784. }
  5785. #u63484 {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:0px;
  5791. height:0px;
  5792. }
  5793. #u63485_div {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:379px;
  5799. height:40px;
  5800. background:inherit;
  5801. background-color:rgba(255, 255, 255, 1);
  5802. box-sizing:border-box;
  5803. border-width:1px;
  5804. border-style:solid;
  5805. border-color:rgba(201, 201, 201, 1);
  5806. border-radius:4px;
  5807. -moz-box-shadow:none;
  5808. -webkit-box-shadow:none;
  5809. box-shadow:none;
  5810. font-family:'Microsoft YaHei', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:14px;
  5814. color:#CCCCCC;
  5815. text-align:left;
  5816. }
  5817. #u63485 {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:1798px;
  5821. top:419px;
  5822. width:379px;
  5823. height:40px;
  5824. display:flex;
  5825. font-family:'Microsoft YaHei', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:14px;
  5829. color:#CCCCCC;
  5830. text-align:left;
  5831. }
  5832. #u63485 .text {
  5833. position:absolute;
  5834. align-self:center;
  5835. padding:2px 8px 2px 8px;
  5836. box-sizing:border-box;
  5837. width:100%;
  5838. }
  5839. #u63485_text {
  5840. border-width:0px;
  5841. word-wrap:break-word;
  5842. text-transform:none;
  5843. visibility:hidden;
  5844. }
  5845. #u63486_input {
  5846. position:absolute;
  5847. left:0px;
  5848. top:0px;
  5849. width:360px;
  5850. height:38px;
  5851. padding:2px 2px 2px 2px;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:14px;
  5856. letter-spacing:normal;
  5857. color:#000000;
  5858. vertical-align:none;
  5859. text-align:left;
  5860. text-transform:none;
  5861. background-color:transparent;
  5862. border-color:transparent;
  5863. }
  5864. #u63486_input.disabled {
  5865. position:absolute;
  5866. left:0px;
  5867. top:0px;
  5868. width:360px;
  5869. height:38px;
  5870. padding:2px 2px 2px 2px;
  5871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:14px;
  5875. letter-spacing:normal;
  5876. color:#000000;
  5877. vertical-align:none;
  5878. text-align:left;
  5879. text-transform:none;
  5880. background-color:transparent;
  5881. border-color:transparent;
  5882. }
  5883. #u63486_div {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:360px;
  5889. height:38px;
  5890. background:inherit;
  5891. background-color:rgba(255, 255, 255, 1);
  5892. border:none;
  5893. border-radius:0px;
  5894. -moz-box-shadow:none;
  5895. -webkit-box-shadow:none;
  5896. box-shadow:none;
  5897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:14px;
  5901. }
  5902. #u63486 {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:1808px;
  5906. top:420px;
  5907. width:360px;
  5908. height:38px;
  5909. display:flex;
  5910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5911. font-weight:400;
  5912. font-style:normal;
  5913. font-size:14px;
  5914. }
  5915. #u63486 .text {
  5916. position:absolute;
  5917. align-self:center;
  5918. padding:2px 2px 2px 2px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u63486_div.disabled {
  5923. border-width:0px;
  5924. position:absolute;
  5925. left:0px;
  5926. top:0px;
  5927. width:360px;
  5928. height:38px;
  5929. background:inherit;
  5930. background-color:rgba(240, 240, 240, 1);
  5931. border:none;
  5932. border-radius:0px;
  5933. -moz-box-shadow:none;
  5934. -webkit-box-shadow:none;
  5935. box-shadow:none;
  5936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5937. font-weight:400;
  5938. font-style:normal;
  5939. font-size:14px;
  5940. }
  5941. #u63486.disabled {
  5942. }
  5943. #u63487_div {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:81px;
  5949. height:40px;
  5950. background:inherit;
  5951. background-color:rgba(255, 255, 255, 0);
  5952. border:none;
  5953. border-top:0px;
  5954. border-right:0px;
  5955. border-bottom:0px;
  5956. border-radius:0px;
  5957. border-top-left-radius:0px;
  5958. border-bottom-left-radius:0px;
  5959. -moz-box-shadow:none;
  5960. -webkit-box-shadow:none;
  5961. box-shadow:none;
  5962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5963. font-weight:400;
  5964. font-style:normal;
  5965. font-size:14px;
  5966. color:#7F7F7F;
  5967. text-align:right;
  5968. }
  5969. #u63487 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:1707px;
  5973. top:469px;
  5974. width:81px;
  5975. height:40px;
  5976. display:flex;
  5977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5978. font-weight:400;
  5979. font-style:normal;
  5980. font-size:14px;
  5981. color:#7F7F7F;
  5982. text-align:right;
  5983. }
  5984. #u63487 .text {
  5985. position:absolute;
  5986. align-self:center;
  5987. padding:5px 10px 5px 0px;
  5988. box-sizing:border-box;
  5989. width:100%;
  5990. }
  5991. #u63487_text {
  5992. border-width:0px;
  5993. white-space:nowrap;
  5994. text-transform:none;
  5995. }
  5996. #u63488 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:0px;
  6000. top:0px;
  6001. width:0px;
  6002. height:0px;
  6003. }
  6004. #u63489_div {
  6005. border-width:0px;
  6006. position:absolute;
  6007. left:0px;
  6008. top:0px;
  6009. width:379px;
  6010. height:40px;
  6011. background:inherit;
  6012. background-color:rgba(255, 255, 255, 1);
  6013. box-sizing:border-box;
  6014. border-width:1px;
  6015. border-style:solid;
  6016. border-color:rgba(201, 201, 201, 1);
  6017. border-radius:4px;
  6018. -moz-box-shadow:none;
  6019. -webkit-box-shadow:none;
  6020. box-shadow:none;
  6021. font-family:'Microsoft YaHei', sans-serif;
  6022. font-weight:400;
  6023. font-style:normal;
  6024. font-size:14px;
  6025. color:#CCCCCC;
  6026. text-align:left;
  6027. }
  6028. #u63489 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:1798px;
  6032. top:469px;
  6033. width:379px;
  6034. height:40px;
  6035. display:flex;
  6036. font-family:'Microsoft YaHei', sans-serif;
  6037. font-weight:400;
  6038. font-style:normal;
  6039. font-size:14px;
  6040. color:#CCCCCC;
  6041. text-align:left;
  6042. }
  6043. #u63489 .text {
  6044. position:absolute;
  6045. align-self:center;
  6046. padding:2px 8px 2px 8px;
  6047. box-sizing:border-box;
  6048. width:100%;
  6049. }
  6050. #u63489_text {
  6051. border-width:0px;
  6052. word-wrap:break-word;
  6053. text-transform:none;
  6054. visibility:hidden;
  6055. }
  6056. #u63490_input {
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:360px;
  6061. height:38px;
  6062. padding:2px 2px 2px 2px;
  6063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:14px;
  6067. letter-spacing:normal;
  6068. color:#000000;
  6069. vertical-align:none;
  6070. text-align:left;
  6071. text-transform:none;
  6072. background-color:transparent;
  6073. border-color:transparent;
  6074. }
  6075. #u63490_input.disabled {
  6076. position:absolute;
  6077. left:0px;
  6078. top:0px;
  6079. width:360px;
  6080. height:38px;
  6081. padding:2px 2px 2px 2px;
  6082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6083. font-weight:400;
  6084. font-style:normal;
  6085. font-size:14px;
  6086. letter-spacing:normal;
  6087. color:#000000;
  6088. vertical-align:none;
  6089. text-align:left;
  6090. text-transform:none;
  6091. background-color:transparent;
  6092. border-color:transparent;
  6093. }
  6094. #u63490_div {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:360px;
  6100. height:38px;
  6101. background:inherit;
  6102. background-color:rgba(255, 255, 255, 1);
  6103. border:none;
  6104. border-radius:0px;
  6105. -moz-box-shadow:none;
  6106. -webkit-box-shadow:none;
  6107. box-shadow:none;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:14px;
  6112. }
  6113. #u63490 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:1808px;
  6117. top:470px;
  6118. width:360px;
  6119. height:38px;
  6120. display:flex;
  6121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:14px;
  6125. }
  6126. #u63490 .text {
  6127. position:absolute;
  6128. align-self:center;
  6129. padding:2px 2px 2px 2px;
  6130. box-sizing:border-box;
  6131. width:100%;
  6132. }
  6133. #u63490_div.disabled {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:360px;
  6139. height:38px;
  6140. background:inherit;
  6141. background-color:rgba(240, 240, 240, 1);
  6142. border:none;
  6143. border-radius:0px;
  6144. -moz-box-shadow:none;
  6145. -webkit-box-shadow:none;
  6146. box-shadow:none;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:14px;
  6151. }
  6152. #u63490.disabled {
  6153. }
  6154. #u63491_div {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:81px;
  6160. height:40px;
  6161. background:inherit;
  6162. background-color:rgba(255, 255, 255, 0);
  6163. border:none;
  6164. border-top:0px;
  6165. border-right:0px;
  6166. border-bottom:0px;
  6167. border-radius:0px;
  6168. border-top-left-radius:0px;
  6169. border-bottom-left-radius:0px;
  6170. -moz-box-shadow:none;
  6171. -webkit-box-shadow:none;
  6172. box-shadow:none;
  6173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:14px;
  6177. color:#7F7F7F;
  6178. text-align:right;
  6179. }
  6180. #u63491 {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:1707px;
  6184. top:519px;
  6185. width:81px;
  6186. height:40px;
  6187. display:flex;
  6188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6189. font-weight:400;
  6190. font-style:normal;
  6191. font-size:14px;
  6192. color:#7F7F7F;
  6193. text-align:right;
  6194. }
  6195. #u63491 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:5px 10px 5px 0px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u63491_text {
  6203. border-width:0px;
  6204. white-space:nowrap;
  6205. text-transform:none;
  6206. }
  6207. #u63492 {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:0px;
  6213. height:0px;
  6214. }
  6215. #u63493_div {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:91px;
  6221. height:40px;
  6222. background:inherit;
  6223. background-color:rgba(0, 137, 254, 1);
  6224. box-sizing:border-box;
  6225. border-width:1px;
  6226. border-style:solid;
  6227. border-color:rgba(201, 201, 201, 1);
  6228. border-radius:4px;
  6229. -moz-box-shadow:none;
  6230. -webkit-box-shadow:none;
  6231. box-shadow:none;
  6232. font-family:'Microsoft YaHei', sans-serif;
  6233. font-weight:400;
  6234. font-style:normal;
  6235. font-size:14px;
  6236. color:#CCCCCC;
  6237. text-align:left;
  6238. }
  6239. #u63493 {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:1798px;
  6243. top:519px;
  6244. width:91px;
  6245. height:40px;
  6246. display:flex;
  6247. font-family:'Microsoft YaHei', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:14px;
  6251. color:#CCCCCC;
  6252. text-align:left;
  6253. }
  6254. #u63493 .text {
  6255. position:absolute;
  6256. align-self:center;
  6257. padding:2px 8px 2px 8px;
  6258. box-sizing:border-box;
  6259. width:100%;
  6260. }
  6261. #u63493_text {
  6262. border-width:0px;
  6263. word-wrap:break-word;
  6264. text-transform:none;
  6265. visibility:hidden;
  6266. }
  6267. #u63494 label {
  6268. left:0px;
  6269. width:100%;
  6270. }
  6271. #u63494_img {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:3px;
  6276. width:12px;
  6277. height:12px;
  6278. }
  6279. #u63494 {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:1707px;
  6283. top:589px;
  6284. width:100px;
  6285. height:18px;
  6286. display:flex;
  6287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. }
  6291. #u63494 .text {
  6292. position:absolute;
  6293. align-self:center;
  6294. padding:0px 2px 0px 2px;
  6295. box-sizing:border-box;
  6296. }
  6297. #u63494_img.selected {
  6298. }
  6299. #u63494.selected {
  6300. }
  6301. #u63494_img.disabled {
  6302. }
  6303. #u63494.disabled {
  6304. }
  6305. #u63494_img.selectedDisabled {
  6306. }
  6307. #u63494.selectedDisabled {
  6308. }
  6309. #u63494_text {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:14px;
  6313. top:0px;
  6314. width:84px;
  6315. word-wrap:break-word;
  6316. text-transform:none;
  6317. }
  6318. #u63494_input {
  6319. border-width:0px;
  6320. position:absolute;
  6321. left:0px;
  6322. top:0px;
  6323. width:0px;
  6324. height:0px;
  6325. opacity:0;
  6326. }
  6327. #u63495_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:147px;
  6333. height:135px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 1);
  6336. box-sizing:border-box;
  6337. border-width:1px;
  6338. border-style:solid;
  6339. border-color:rgba(201, 201, 201, 1);
  6340. border-radius:4px;
  6341. -moz-box-shadow:none;
  6342. -webkit-box-shadow:none;
  6343. box-shadow:none;
  6344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6345. font-weight:400;
  6346. font-style:normal;
  6347. }
  6348. #u63495 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:1707px;
  6352. top:627px;
  6353. width:147px;
  6354. height:135px;
  6355. display:flex;
  6356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6357. font-weight:400;
  6358. font-style:normal;
  6359. }
  6360. #u63495 .text {
  6361. position:absolute;
  6362. align-self:center;
  6363. padding:2px 8px 2px 8px;
  6364. box-sizing:border-box;
  6365. width:100%;
  6366. }
  6367. #u63495_text {
  6368. border-width:0px;
  6369. word-wrap:break-word;
  6370. text-transform:none;
  6371. }
  6372. #u63496 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:0px;
  6376. top:0px;
  6377. width:0px;
  6378. height:0px;
  6379. }
  6380. #u63497_div {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:0px;
  6384. top:0px;
  6385. width:600px;
  6386. height:1200px;
  6387. background:inherit;
  6388. background-color:rgba(255, 255, 255, 1);
  6389. box-sizing:border-box;
  6390. border-width:1px;
  6391. border-style:solid;
  6392. border-color:rgba(215, 215, 215, 1);
  6393. border-radius:0px;
  6394. -moz-box-shadow:none;
  6395. -webkit-box-shadow:none;
  6396. box-shadow:none;
  6397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6398. font-weight:400;
  6399. font-style:normal;
  6400. font-size:14px;
  6401. color:#AAAAAA;
  6402. text-align:center;
  6403. line-height:30px;
  6404. }
  6405. #u63497 {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:2293px;
  6409. top:75px;
  6410. width:600px;
  6411. height:1200px;
  6412. display:flex;
  6413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6414. font-weight:400;
  6415. font-style:normal;
  6416. font-size:14px;
  6417. color:#AAAAAA;
  6418. text-align:center;
  6419. line-height:30px;
  6420. }
  6421. #u63497 .text {
  6422. position:absolute;
  6423. align-self:center;
  6424. padding:5px 10px 5px 10px;
  6425. box-sizing:border-box;
  6426. width:100%;
  6427. }
  6428. #u63497_text {
  6429. border-width:0px;
  6430. word-wrap:break-word;
  6431. text-transform:none;
  6432. visibility:hidden;
  6433. }
  6434. #u63498 {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:0px;
  6440. height:0px;
  6441. }
  6442. #u63499_div {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:0px;
  6446. top:0px;
  6447. width:560px;
  6448. height:393px;
  6449. background:inherit;
  6450. background-color:rgba(255, 255, 255, 1);
  6451. box-sizing:border-box;
  6452. border-width:1px;
  6453. border-style:solid;
  6454. border-color:rgba(215, 215, 215, 1);
  6455. border-radius:0px;
  6456. -moz-box-shadow:none;
  6457. -webkit-box-shadow:none;
  6458. box-shadow:none;
  6459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:14px;
  6463. color:#AAAAAA;
  6464. text-align:center;
  6465. line-height:30px;
  6466. }
  6467. #u63499 {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:2313px;
  6471. top:208px;
  6472. width:560px;
  6473. height:393px;
  6474. display:flex;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:14px;
  6479. color:#AAAAAA;
  6480. text-align:center;
  6481. line-height:30px;
  6482. }
  6483. #u63499 .text {
  6484. position:absolute;
  6485. align-self:center;
  6486. padding:5px 10px 5px 10px;
  6487. box-sizing:border-box;
  6488. width:100%;
  6489. }
  6490. #u63499_text {
  6491. border-width:0px;
  6492. word-wrap:break-word;
  6493. text-transform:none;
  6494. visibility:hidden;
  6495. }
  6496. #u63500_div {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:53px;
  6502. height:40px;
  6503. background:inherit;
  6504. background-color:rgba(255, 255, 255, 0);
  6505. border:none;
  6506. border-top:0px;
  6507. border-right:0px;
  6508. border-bottom:0px;
  6509. border-radius:0px;
  6510. border-top-left-radius:0px;
  6511. border-bottom-left-radius:0px;
  6512. -moz-box-shadow:none;
  6513. -webkit-box-shadow:none;
  6514. box-shadow:none;
  6515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6516. font-weight:400;
  6517. font-style:normal;
  6518. font-size:14px;
  6519. color:#7F7F7F;
  6520. text-align:right;
  6521. }
  6522. #u63500 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:2365px;
  6526. top:227px;
  6527. width:53px;
  6528. height:40px;
  6529. display:flex;
  6530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:14px;
  6534. color:#7F7F7F;
  6535. text-align:right;
  6536. }
  6537. #u63500 .text {
  6538. position:absolute;
  6539. align-self:center;
  6540. padding:5px 10px 5px 0px;
  6541. box-sizing:border-box;
  6542. width:100%;
  6543. }
  6544. #u63500_text {
  6545. border-width:0px;
  6546. white-space:nowrap;
  6547. text-transform:none;
  6548. }
  6549. #u63501_div {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:67px;
  6555. height:40px;
  6556. background:inherit;
  6557. background-color:rgba(255, 255, 255, 0);
  6558. border:none;
  6559. border-top:0px;
  6560. border-right:0px;
  6561. border-bottom:0px;
  6562. border-radius:0px;
  6563. border-top-left-radius:0px;
  6564. border-bottom-left-radius:0px;
  6565. -moz-box-shadow:none;
  6566. -webkit-box-shadow:none;
  6567. box-shadow:none;
  6568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:14px;
  6572. color:#7F7F7F;
  6573. text-align:right;
  6574. }
  6575. #u63501 {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:2351px;
  6579. top:277px;
  6580. width:67px;
  6581. height:40px;
  6582. display:flex;
  6583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6584. font-weight:400;
  6585. font-style:normal;
  6586. font-size:14px;
  6587. color:#7F7F7F;
  6588. text-align:right;
  6589. }
  6590. #u63501 .text {
  6591. position:absolute;
  6592. align-self:center;
  6593. padding:5px 10px 5px 0px;
  6594. box-sizing:border-box;
  6595. width:100%;
  6596. }
  6597. #u63501_text {
  6598. border-width:0px;
  6599. white-space:nowrap;
  6600. text-transform:none;
  6601. }
  6602. #u63502 {
  6603. border-width:0px;
  6604. position:absolute;
  6605. left:0px;
  6606. top:0px;
  6607. width:0px;
  6608. height:0px;
  6609. }
  6610. #u63503_div {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:379px;
  6616. height:40px;
  6617. background:inherit;
  6618. background-color:rgba(255, 255, 255, 1);
  6619. box-sizing:border-box;
  6620. border-width:1px;
  6621. border-style:solid;
  6622. border-color:rgba(201, 201, 201, 1);
  6623. border-radius:4px;
  6624. -moz-box-shadow:none;
  6625. -webkit-box-shadow:none;
  6626. box-shadow:none;
  6627. font-family:'Microsoft YaHei', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:14px;
  6631. color:#CCCCCC;
  6632. text-align:left;
  6633. }
  6634. #u63503 {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:2429px;
  6638. top:277px;
  6639. width:379px;
  6640. height:40px;
  6641. display:flex;
  6642. font-family:'Microsoft YaHei', sans-serif;
  6643. font-weight:400;
  6644. font-style:normal;
  6645. font-size:14px;
  6646. color:#CCCCCC;
  6647. text-align:left;
  6648. }
  6649. #u63503 .text {
  6650. position:absolute;
  6651. align-self:center;
  6652. padding:2px 8px 2px 8px;
  6653. box-sizing:border-box;
  6654. width:100%;
  6655. }
  6656. #u63503_text {
  6657. border-width:0px;
  6658. word-wrap:break-word;
  6659. text-transform:none;
  6660. visibility:hidden;
  6661. }
  6662. #u63504_input {
  6663. position:absolute;
  6664. left:0px;
  6665. top:0px;
  6666. width:360px;
  6667. height:38px;
  6668. padding:2px 2px 2px 2px;
  6669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6670. font-weight:400;
  6671. font-style:normal;
  6672. font-size:14px;
  6673. letter-spacing:normal;
  6674. color:#000000;
  6675. vertical-align:none;
  6676. text-align:left;
  6677. text-transform:none;
  6678. background-color:transparent;
  6679. border-color:transparent;
  6680. }
  6681. #u63504_input.disabled {
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:360px;
  6686. height:38px;
  6687. padding:2px 2px 2px 2px;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:14px;
  6692. letter-spacing:normal;
  6693. color:#000000;
  6694. vertical-align:none;
  6695. text-align:left;
  6696. text-transform:none;
  6697. background-color:transparent;
  6698. border-color:transparent;
  6699. }
  6700. #u63504_div {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:360px;
  6706. height:38px;
  6707. background:inherit;
  6708. background-color:rgba(255, 255, 255, 1);
  6709. border:none;
  6710. border-radius:0px;
  6711. -moz-box-shadow:none;
  6712. -webkit-box-shadow:none;
  6713. box-shadow:none;
  6714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. font-size:14px;
  6718. }
  6719. #u63504 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:2439px;
  6723. top:278px;
  6724. width:360px;
  6725. height:38px;
  6726. display:flex;
  6727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6728. font-weight:400;
  6729. font-style:normal;
  6730. font-size:14px;
  6731. }
  6732. #u63504 .text {
  6733. position:absolute;
  6734. align-self:center;
  6735. padding:2px 2px 2px 2px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u63504_div.disabled {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:360px;
  6745. height:38px;
  6746. background:inherit;
  6747. background-color:rgba(240, 240, 240, 1);
  6748. border:none;
  6749. border-radius:0px;
  6750. -moz-box-shadow:none;
  6751. -webkit-box-shadow:none;
  6752. box-shadow:none;
  6753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6754. font-weight:400;
  6755. font-style:normal;
  6756. font-size:14px;
  6757. }
  6758. #u63504.disabled {
  6759. }
  6760. #u63505 {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:0px;
  6766. height:0px;
  6767. }
  6768. #u63506_div {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:0px;
  6772. top:0px;
  6773. width:98px;
  6774. height:40px;
  6775. background:inherit;
  6776. background-color:rgba(0, 137, 254, 1);
  6777. box-sizing:border-box;
  6778. border-width:1px;
  6779. border-style:solid;
  6780. border-color:rgba(215, 215, 215, 1);
  6781. border-radius:4px;
  6782. -moz-box-shadow:none;
  6783. -webkit-box-shadow:none;
  6784. box-shadow:none;
  6785. font-size:14px;
  6786. }
  6787. #u63506 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:2428px;
  6791. top:327px;
  6792. width:98px;
  6793. height:40px;
  6794. display:flex;
  6795. font-size:14px;
  6796. }
  6797. #u63506 .text {
  6798. position:absolute;
  6799. align-self:center;
  6800. padding:2px 2px 2px 2px;
  6801. box-sizing:border-box;
  6802. width:100%;
  6803. }
  6804. #u63506_text {
  6805. border-width:0px;
  6806. word-wrap:break-word;
  6807. text-transform:none;
  6808. visibility:hidden;
  6809. }
  6810. #u63507_div {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:0px;
  6814. top:0px;
  6815. width:81px;
  6816. height:40px;
  6817. background:inherit;
  6818. background-color:rgba(255, 255, 255, 0);
  6819. border:none;
  6820. border-top:0px;
  6821. border-right:0px;
  6822. border-bottom:0px;
  6823. border-radius:0px;
  6824. border-top-left-radius:0px;
  6825. border-bottom-left-radius:0px;
  6826. -moz-box-shadow:none;
  6827. -webkit-box-shadow:none;
  6828. box-shadow:none;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. font-size:14px;
  6833. color:#7F7F7F;
  6834. text-align:right;
  6835. }
  6836. #u63507 {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:2337px;
  6840. top:327px;
  6841. width:81px;
  6842. height:40px;
  6843. display:flex;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:14px;
  6848. color:#7F7F7F;
  6849. text-align:right;
  6850. }
  6851. #u63507 .text {
  6852. position:absolute;
  6853. align-self:center;
  6854. padding:5px 10px 5px 0px;
  6855. box-sizing:border-box;
  6856. width:100%;
  6857. }
  6858. #u63507_text {
  6859. border-width:0px;
  6860. white-space:nowrap;
  6861. text-transform:none;
  6862. }
  6863. #u63508_div {
  6864. border-width:0px;
  6865. position:absolute;
  6866. left:0px;
  6867. top:0px;
  6868. width:81px;
  6869. height:40px;
  6870. background:inherit;
  6871. background-color:rgba(255, 255, 255, 0);
  6872. border:none;
  6873. border-top:0px;
  6874. border-right:0px;
  6875. border-bottom:0px;
  6876. border-radius:0px;
  6877. border-top-left-radius:0px;
  6878. border-bottom-left-radius:0px;
  6879. -moz-box-shadow:none;
  6880. -webkit-box-shadow:none;
  6881. box-shadow:none;
  6882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:14px;
  6886. color:#7F7F7F;
  6887. text-align:right;
  6888. }
  6889. #u63508 {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:2337px;
  6893. top:377px;
  6894. width:81px;
  6895. height:40px;
  6896. display:flex;
  6897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6898. font-weight:400;
  6899. font-style:normal;
  6900. font-size:14px;
  6901. color:#7F7F7F;
  6902. text-align:right;
  6903. }
  6904. #u63508 .text {
  6905. position:absolute;
  6906. align-self:center;
  6907. padding:5px 10px 5px 0px;
  6908. box-sizing:border-box;
  6909. width:100%;
  6910. }
  6911. #u63508_text {
  6912. border-width:0px;
  6913. white-space:nowrap;
  6914. text-transform:none;
  6915. }
  6916. #u63509 {
  6917. border-width:0px;
  6918. position:absolute;
  6919. left:0px;
  6920. top:0px;
  6921. width:0px;
  6922. height:0px;
  6923. }
  6924. #u63510_div {
  6925. border-width:0px;
  6926. position:absolute;
  6927. left:0px;
  6928. top:0px;
  6929. width:379px;
  6930. height:40px;
  6931. background:inherit;
  6932. background-color:rgba(255, 255, 255, 1);
  6933. box-sizing:border-box;
  6934. border-width:1px;
  6935. border-style:solid;
  6936. border-color:rgba(201, 201, 201, 1);
  6937. border-radius:4px;
  6938. -moz-box-shadow:none;
  6939. -webkit-box-shadow:none;
  6940. box-shadow:none;
  6941. font-family:'Microsoft YaHei', sans-serif;
  6942. font-weight:400;
  6943. font-style:normal;
  6944. font-size:14px;
  6945. color:#CCCCCC;
  6946. text-align:left;
  6947. }
  6948. #u63510 {
  6949. border-width:0px;
  6950. position:absolute;
  6951. left:2428px;
  6952. top:377px;
  6953. width:379px;
  6954. height:40px;
  6955. display:flex;
  6956. font-family:'Microsoft YaHei', sans-serif;
  6957. font-weight:400;
  6958. font-style:normal;
  6959. font-size:14px;
  6960. color:#CCCCCC;
  6961. text-align:left;
  6962. }
  6963. #u63510 .text {
  6964. position:absolute;
  6965. align-self:center;
  6966. padding:2px 8px 2px 8px;
  6967. box-sizing:border-box;
  6968. width:100%;
  6969. }
  6970. #u63510_text {
  6971. border-width:0px;
  6972. word-wrap:break-word;
  6973. text-transform:none;
  6974. visibility:hidden;
  6975. }
  6976. #u63511_input {
  6977. position:absolute;
  6978. left:0px;
  6979. top:0px;
  6980. width:360px;
  6981. height:38px;
  6982. padding:2px 2px 2px 2px;
  6983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6984. font-weight:400;
  6985. font-style:normal;
  6986. font-size:14px;
  6987. letter-spacing:normal;
  6988. color:#000000;
  6989. vertical-align:none;
  6990. text-align:left;
  6991. text-transform:none;
  6992. background-color:transparent;
  6993. border-color:transparent;
  6994. }
  6995. #u63511_input.disabled {
  6996. position:absolute;
  6997. left:0px;
  6998. top:0px;
  6999. width:360px;
  7000. height:38px;
  7001. padding:2px 2px 2px 2px;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:14px;
  7006. letter-spacing:normal;
  7007. color:#000000;
  7008. vertical-align:none;
  7009. text-align:left;
  7010. text-transform:none;
  7011. background-color:transparent;
  7012. border-color:transparent;
  7013. }
  7014. #u63511_div {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:360px;
  7020. height:38px;
  7021. background:inherit;
  7022. background-color:rgba(255, 255, 255, 1);
  7023. border:none;
  7024. border-radius:0px;
  7025. -moz-box-shadow:none;
  7026. -webkit-box-shadow:none;
  7027. box-shadow:none;
  7028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7029. font-weight:400;
  7030. font-style:normal;
  7031. font-size:14px;
  7032. }
  7033. #u63511 {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:2438px;
  7037. top:378px;
  7038. width:360px;
  7039. height:38px;
  7040. display:flex;
  7041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7042. font-weight:400;
  7043. font-style:normal;
  7044. font-size:14px;
  7045. }
  7046. #u63511 .text {
  7047. position:absolute;
  7048. align-self:center;
  7049. padding:2px 2px 2px 2px;
  7050. box-sizing:border-box;
  7051. width:100%;
  7052. }
  7053. #u63511_div.disabled {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:360px;
  7059. height:38px;
  7060. background:inherit;
  7061. background-color:rgba(240, 240, 240, 1);
  7062. border:none;
  7063. border-radius:0px;
  7064. -moz-box-shadow:none;
  7065. -webkit-box-shadow:none;
  7066. box-shadow:none;
  7067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:14px;
  7071. }
  7072. #u63511.disabled {
  7073. }
  7074. #u63512_div {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:0px;
  7078. top:0px;
  7079. width:81px;
  7080. height:40px;
  7081. background:inherit;
  7082. background-color:rgba(255, 255, 255, 0);
  7083. border:none;
  7084. border-top:0px;
  7085. border-right:0px;
  7086. border-bottom:0px;
  7087. border-radius:0px;
  7088. border-top-left-radius:0px;
  7089. border-bottom-left-radius:0px;
  7090. -moz-box-shadow:none;
  7091. -webkit-box-shadow:none;
  7092. box-shadow:none;
  7093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7094. font-weight:400;
  7095. font-style:normal;
  7096. font-size:14px;
  7097. color:#7F7F7F;
  7098. text-align:right;
  7099. }
  7100. #u63512 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:2337px;
  7104. top:427px;
  7105. width:81px;
  7106. height:40px;
  7107. display:flex;
  7108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:14px;
  7112. color:#7F7F7F;
  7113. text-align:right;
  7114. }
  7115. #u63512 .text {
  7116. position:absolute;
  7117. align-self:center;
  7118. padding:5px 10px 5px 0px;
  7119. box-sizing:border-box;
  7120. width:100%;
  7121. }
  7122. #u63512_text {
  7123. border-width:0px;
  7124. white-space:nowrap;
  7125. text-transform:none;
  7126. }
  7127. #u63513 label {
  7128. left:0px;
  7129. width:100%;
  7130. }
  7131. #u63513_img {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:0px;
  7135. top:4px;
  7136. width:12px;
  7137. height:12px;
  7138. }
  7139. #u63513 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:2337px;
  7143. top:497px;
  7144. width:100px;
  7145. height:20px;
  7146. display:flex;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:14px;
  7151. color:#7F7F7F;
  7152. }
  7153. #u63513 .text {
  7154. position:absolute;
  7155. align-self:center;
  7156. padding:0px 2px 0px 2px;
  7157. box-sizing:border-box;
  7158. }
  7159. #u63513_img.selected {
  7160. }
  7161. #u63513.selected {
  7162. }
  7163. #u63513_img.disabled {
  7164. }
  7165. #u63513.disabled {
  7166. }
  7167. #u63513_img.selectedDisabled {
  7168. }
  7169. #u63513.selectedDisabled {
  7170. }
  7171. #u63513_text {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:14px;
  7175. top:0px;
  7176. width:84px;
  7177. word-wrap:break-word;
  7178. text-transform:none;
  7179. }
  7180. #u63513_input {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:0px;
  7184. top:0px;
  7185. width:0px;
  7186. height:0px;
  7187. opacity:0;
  7188. }
  7189. #u63514_div {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:0px;
  7193. top:0px;
  7194. width:107px;
  7195. height:98px;
  7196. background:inherit;
  7197. background-color:rgba(255, 255, 255, 1);
  7198. box-sizing:border-box;
  7199. border-width:1px;
  7200. border-style:solid;
  7201. border-color:rgba(201, 201, 201, 1);
  7202. border-radius:4px;
  7203. -moz-box-shadow:none;
  7204. -webkit-box-shadow:none;
  7205. box-shadow:none;
  7206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. }
  7210. #u63514 {
  7211. border-width:0px;
  7212. position:absolute;
  7213. left:2428px;
  7214. top:485px;
  7215. width:107px;
  7216. height:98px;
  7217. display:flex;
  7218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7219. font-weight:400;
  7220. font-style:normal;
  7221. }
  7222. #u63514 .text {
  7223. position:absolute;
  7224. align-self:center;
  7225. padding:2px 8px 2px 8px;
  7226. box-sizing:border-box;
  7227. width:100%;
  7228. }
  7229. #u63514_text {
  7230. border-width:0px;
  7231. word-wrap:break-word;
  7232. text-transform:none;
  7233. }
  7234. #u63515 {
  7235. border-width:0px;
  7236. position:absolute;
  7237. left:0px;
  7238. top:0px;
  7239. width:0px;
  7240. height:0px;
  7241. }
  7242. #u63516_div {
  7243. border-width:0px;
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:379px;
  7248. height:40px;
  7249. background:inherit;
  7250. background-color:rgba(255, 255, 255, 1);
  7251. box-sizing:border-box;
  7252. border-width:1px;
  7253. border-style:solid;
  7254. border-color:rgba(215, 215, 215, 1);
  7255. border-radius:4px;
  7256. -moz-box-shadow:none;
  7257. -webkit-box-shadow:none;
  7258. box-shadow:none;
  7259. font-size:14px;
  7260. }
  7261. #u63516 {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:2428px;
  7265. top:427px;
  7266. width:379px;
  7267. height:40px;
  7268. display:flex;
  7269. font-size:14px;
  7270. }
  7271. #u63516 .text {
  7272. position:absolute;
  7273. align-self:center;
  7274. padding:2px 2px 2px 2px;
  7275. box-sizing:border-box;
  7276. width:100%;
  7277. }
  7278. #u63516_text {
  7279. border-width:0px;
  7280. word-wrap:break-word;
  7281. text-transform:none;
  7282. visibility:hidden;
  7283. }
  7284. #u63517_input {
  7285. position:absolute;
  7286. left:0px;
  7287. top:0px;
  7288. width:363px;
  7289. height:31px;
  7290. padding:2px 2px 2px 2px;
  7291. font-family:'ArialMT', 'Arial', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:14px;
  7295. letter-spacing:normal;
  7296. color:#AAAAAA;
  7297. vertical-align:none;
  7298. text-align:left;
  7299. text-transform:none;
  7300. background-color:transparent;
  7301. border-color:transparent;
  7302. }
  7303. #u63517_input.disabled {
  7304. position:absolute;
  7305. left:0px;
  7306. top:0px;
  7307. width:363px;
  7308. height:31px;
  7309. padding:2px 2px 2px 2px;
  7310. font-family:'ArialMT', 'Arial', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:14px;
  7314. letter-spacing:normal;
  7315. color:#AAAAAA;
  7316. vertical-align:none;
  7317. text-align:left;
  7318. text-transform:none;
  7319. background-color:transparent;
  7320. border-color:transparent;
  7321. }
  7322. #u63517_div {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:363px;
  7328. height:31px;
  7329. background:inherit;
  7330. background-color:rgba(255, 255, 255, 1);
  7331. border:none;
  7332. border-radius:0px;
  7333. -moz-box-shadow:none;
  7334. -webkit-box-shadow:none;
  7335. box-shadow:none;
  7336. font-size:14px;
  7337. color:#AAAAAA;
  7338. }
  7339. #u63517 {
  7340. border-width:0px;
  7341. position:absolute;
  7342. left:2439px;
  7343. top:430px;
  7344. width:363px;
  7345. height:31px;
  7346. display:flex;
  7347. font-size:14px;
  7348. color:#AAAAAA;
  7349. }
  7350. #u63517 .text {
  7351. position:absolute;
  7352. align-self:flex-start;
  7353. padding:2px 2px 2px 2px;
  7354. box-sizing:border-box;
  7355. width:100%;
  7356. }
  7357. #u63517_div.disabled {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:363px;
  7363. height:31px;
  7364. background:inherit;
  7365. background-color:rgba(240, 240, 240, 1);
  7366. border:none;
  7367. border-radius:0px;
  7368. -moz-box-shadow:none;
  7369. -webkit-box-shadow:none;
  7370. box-shadow:none;
  7371. font-size:14px;
  7372. color:#AAAAAA;
  7373. }
  7374. #u63517.disabled {
  7375. }
  7376. .u63517_input_option {
  7377. font-size:14px;
  7378. }
  7379. #u63518 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:0px;
  7383. top:0px;
  7384. width:0px;
  7385. height:0px;
  7386. }
  7387. #u63519_div {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:379px;
  7393. height:40px;
  7394. background:inherit;
  7395. background-color:rgba(255, 255, 255, 1);
  7396. box-sizing:border-box;
  7397. border-width:1px;
  7398. border-style:solid;
  7399. border-color:rgba(201, 201, 201, 1);
  7400. border-radius:4px;
  7401. -moz-box-shadow:none;
  7402. -webkit-box-shadow:none;
  7403. box-shadow:none;
  7404. font-family:'Microsoft YaHei', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. font-size:14px;
  7408. color:#CCCCCC;
  7409. text-align:left;
  7410. }
  7411. #u63519 {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:2428px;
  7415. top:227px;
  7416. width:379px;
  7417. height:40px;
  7418. display:flex;
  7419. font-family:'Microsoft YaHei', sans-serif;
  7420. font-weight:400;
  7421. font-style:normal;
  7422. font-size:14px;
  7423. color:#CCCCCC;
  7424. text-align:left;
  7425. }
  7426. #u63519 .text {
  7427. position:absolute;
  7428. align-self:center;
  7429. padding:2px 8px 2px 8px;
  7430. box-sizing:border-box;
  7431. width:100%;
  7432. }
  7433. #u63519_text {
  7434. border-width:0px;
  7435. word-wrap:break-word;
  7436. text-transform:none;
  7437. visibility:hidden;
  7438. }
  7439. #u63520_input {
  7440. position:absolute;
  7441. left:0px;
  7442. top:0px;
  7443. width:360px;
  7444. height:38px;
  7445. padding:2px 2px 2px 2px;
  7446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7447. font-weight:400;
  7448. font-style:normal;
  7449. font-size:14px;
  7450. letter-spacing:normal;
  7451. color:#000000;
  7452. vertical-align:none;
  7453. text-align:left;
  7454. text-transform:none;
  7455. background-color:transparent;
  7456. border-color:transparent;
  7457. }
  7458. #u63520_input.disabled {
  7459. position:absolute;
  7460. left:0px;
  7461. top:0px;
  7462. width:360px;
  7463. height:38px;
  7464. padding:2px 2px 2px 2px;
  7465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7466. font-weight:400;
  7467. font-style:normal;
  7468. font-size:14px;
  7469. letter-spacing:normal;
  7470. color:#000000;
  7471. vertical-align:none;
  7472. text-align:left;
  7473. text-transform:none;
  7474. background-color:transparent;
  7475. border-color:transparent;
  7476. }
  7477. #u63520_div {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:360px;
  7483. height:38px;
  7484. background:inherit;
  7485. background-color:rgba(255, 255, 255, 1);
  7486. border:none;
  7487. border-radius:0px;
  7488. -moz-box-shadow:none;
  7489. -webkit-box-shadow:none;
  7490. box-shadow:none;
  7491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7492. font-weight:400;
  7493. font-style:normal;
  7494. font-size:14px;
  7495. }
  7496. #u63520 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:2438px;
  7500. top:228px;
  7501. width:360px;
  7502. height:38px;
  7503. display:flex;
  7504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7505. font-weight:400;
  7506. font-style:normal;
  7507. font-size:14px;
  7508. }
  7509. #u63520 .text {
  7510. position:absolute;
  7511. align-self:center;
  7512. padding:2px 2px 2px 2px;
  7513. box-sizing:border-box;
  7514. width:100%;
  7515. }
  7516. #u63520_div.disabled {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:360px;
  7522. height:38px;
  7523. background:inherit;
  7524. background-color:rgba(240, 240, 240, 1);
  7525. border:none;
  7526. border-radius:0px;
  7527. -moz-box-shadow:none;
  7528. -webkit-box-shadow:none;
  7529. box-shadow:none;
  7530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:14px;
  7534. }
  7535. #u63520.disabled {
  7536. }
  7537. #u63521_img {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:0px;
  7541. top:0px;
  7542. width:20px;
  7543. height:20px;
  7544. }
  7545. #u63521 {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:2819px;
  7549. top:287px;
  7550. width:20px;
  7551. height:20px;
  7552. display:flex;
  7553. }
  7554. #u63521 .text {
  7555. position:absolute;
  7556. align-self:center;
  7557. padding:2px 2px 2px 2px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u63521_text {
  7562. border-width:0px;
  7563. word-wrap:break-word;
  7564. text-transform:none;
  7565. visibility:hidden;
  7566. }
  7567. #u63522_div {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:164px;
  7573. height:35px;
  7574. background:inherit;
  7575. background-color:rgba(255, 255, 255, 0);
  7576. border:none;
  7577. border-top:0px;
  7578. border-right:0px;
  7579. border-bottom:0px;
  7580. border-radius:0px;
  7581. border-top-left-radius:0px;
  7582. border-bottom-left-radius:0px;
  7583. -moz-box-shadow:none;
  7584. -webkit-box-shadow:none;
  7585. box-shadow:none;
  7586. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7587. font-weight:500;
  7588. font-style:normal;
  7589. font-size:18px;
  7590. }
  7591. #u63522 {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:2313px;
  7595. top:93px;
  7596. width:164px;
  7597. height:35px;
  7598. display:flex;
  7599. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7600. font-weight:500;
  7601. font-style:normal;
  7602. font-size:18px;
  7603. }
  7604. #u63522 .text {
  7605. position:absolute;
  7606. align-self:center;
  7607. padding:5px 10px 5px 0px;
  7608. box-sizing:border-box;
  7609. width:100%;
  7610. }
  7611. #u63522_text {
  7612. border-width:0px;
  7613. white-space:nowrap;
  7614. text-transform:none;
  7615. }
  7616. #u63523 {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:0px;
  7622. height:0px;
  7623. }
  7624. #u63524_div {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:600px;
  7630. height:60px;
  7631. background:inherit;
  7632. background-color:rgba(255, 255, 255, 1);
  7633. box-sizing:border-box;
  7634. border-width:1px;
  7635. border-style:solid;
  7636. border-color:rgba(215, 215, 215, 1);
  7637. border-radius:0px;
  7638. -moz-box-shadow:none;
  7639. -webkit-box-shadow:none;
  7640. box-shadow:none;
  7641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7642. font-weight:400;
  7643. font-style:normal;
  7644. font-size:14px;
  7645. color:#AAAAAA;
  7646. text-align:center;
  7647. line-height:30px;
  7648. }
  7649. #u63524 {
  7650. border-width:0px;
  7651. position:absolute;
  7652. left:2293px;
  7653. top:1215px;
  7654. width:600px;
  7655. height:60px;
  7656. display:flex;
  7657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7658. font-weight:400;
  7659. font-style:normal;
  7660. font-size:14px;
  7661. color:#AAAAAA;
  7662. text-align:center;
  7663. line-height:30px;
  7664. }
  7665. #u63524 .text {
  7666. position:absolute;
  7667. align-self:center;
  7668. padding:5px 10px 5px 10px;
  7669. box-sizing:border-box;
  7670. width:100%;
  7671. }
  7672. #u63524_text {
  7673. border-width:0px;
  7674. word-wrap:break-word;
  7675. text-transform:none;
  7676. visibility:hidden;
  7677. }
  7678. #u63525_div {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:0px;
  7682. top:0px;
  7683. width:80px;
  7684. height:30px;
  7685. background:inherit;
  7686. background-color:rgba(24, 144, 255, 1);
  7687. border:none;
  7688. border-radius:4px;
  7689. -moz-box-shadow:none;
  7690. -webkit-box-shadow:none;
  7691. box-shadow:none;
  7692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7693. font-weight:400;
  7694. font-style:normal;
  7695. font-size:14px;
  7696. color:#FFFFFF;
  7697. }
  7698. #u63525 {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:2773px;
  7702. top:1230px;
  7703. width:80px;
  7704. height:30px;
  7705. display:flex;
  7706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7707. font-weight:400;
  7708. font-style:normal;
  7709. font-size:14px;
  7710. color:#FFFFFF;
  7711. }
  7712. #u63525 .text {
  7713. position:absolute;
  7714. align-self:center;
  7715. padding:2px 2px 2px 2px;
  7716. box-sizing:border-box;
  7717. width:100%;
  7718. }
  7719. #u63525_text {
  7720. border-width:0px;
  7721. word-wrap:break-word;
  7722. text-transform:none;
  7723. }
  7724. #u63526_div {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:0px;
  7728. top:0px;
  7729. width:79px;
  7730. height:30px;
  7731. background:inherit;
  7732. background-color:rgba(255, 255, 255, 1);
  7733. box-sizing:border-box;
  7734. border-width:1px;
  7735. border-style:solid;
  7736. border-color:rgba(170, 170, 170, 1);
  7737. border-radius:4px;
  7738. -moz-box-shadow:none;
  7739. -webkit-box-shadow:none;
  7740. box-shadow:none;
  7741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7742. font-weight:400;
  7743. font-style:normal;
  7744. font-size:14px;
  7745. }
  7746. #u63526 {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:2674px;
  7750. top:1230px;
  7751. width:79px;
  7752. height:30px;
  7753. display:flex;
  7754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7755. font-weight:400;
  7756. font-style:normal;
  7757. font-size:14px;
  7758. }
  7759. #u63526 .text {
  7760. position:absolute;
  7761. align-self:center;
  7762. padding:2px 2px 2px 2px;
  7763. box-sizing:border-box;
  7764. width:100%;
  7765. }
  7766. #u63526_text {
  7767. border-width:0px;
  7768. word-wrap:break-word;
  7769. text-transform:none;
  7770. }
  7771. #u63527_div {
  7772. border-width:0px;
  7773. position:absolute;
  7774. left:0px;
  7775. top:0px;
  7776. width:29px;
  7777. height:40px;
  7778. background:inherit;
  7779. background-color:rgba(255, 255, 255, 0);
  7780. border:none;
  7781. border-top:0px;
  7782. border-right:0px;
  7783. border-bottom:0px;
  7784. border-radius:0px;
  7785. border-top-left-radius:0px;
  7786. border-bottom-left-radius:0px;
  7787. -moz-box-shadow:none;
  7788. -webkit-box-shadow:none;
  7789. box-shadow:none;
  7790. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7791. font-weight:500;
  7792. font-style:normal;
  7793. font-size:14px;
  7794. text-align:center;
  7795. }
  7796. #u63527 {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:2337px;
  7800. top:154px;
  7801. width:29px;
  7802. height:40px;
  7803. display:flex;
  7804. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7805. font-weight:500;
  7806. font-style:normal;
  7807. font-size:14px;
  7808. text-align:center;
  7809. }
  7810. #u63527 .text {
  7811. position:absolute;
  7812. align-self:center;
  7813. padding:5px 0px 5px 0px;
  7814. box-sizing:border-box;
  7815. width:100%;
  7816. }
  7817. #u63527_text {
  7818. border-width:0px;
  7819. white-space:nowrap;
  7820. text-transform:none;
  7821. }
  7822. #u63528_div {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:0px;
  7826. top:0px;
  7827. width:29px;
  7828. height:40px;
  7829. background:inherit;
  7830. background-color:rgba(255, 255, 255, 0);
  7831. border:none;
  7832. border-top:0px;
  7833. border-right:0px;
  7834. border-bottom:0px;
  7835. border-radius:0px;
  7836. border-top-left-radius:0px;
  7837. border-bottom-left-radius:0px;
  7838. -moz-box-shadow:none;
  7839. -webkit-box-shadow:none;
  7840. box-shadow:none;
  7841. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7842. font-weight:500;
  7843. font-style:normal;
  7844. font-size:14px;
  7845. color:#0089FE;
  7846. text-align:center;
  7847. }
  7848. #u63528 {
  7849. border-width:0px;
  7850. position:absolute;
  7851. left:2396px;
  7852. top:154px;
  7853. width:29px;
  7854. height:40px;
  7855. display:flex;
  7856. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7857. font-weight:500;
  7858. font-style:normal;
  7859. font-size:14px;
  7860. color:#0089FE;
  7861. text-align:center;
  7862. }
  7863. #u63528 .text {
  7864. position:absolute;
  7865. align-self:center;
  7866. padding:5px 0px 5px 0px;
  7867. box-sizing:border-box;
  7868. width:100%;
  7869. }
  7870. #u63528_text {
  7871. border-width:0px;
  7872. white-space:nowrap;
  7873. text-transform:none;
  7874. }
  7875. #u63529_div {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:0px;
  7879. top:0px;
  7880. width:37px;
  7881. height:40px;
  7882. background:inherit;
  7883. background-color:rgba(255, 255, 255, 0);
  7884. border:none;
  7885. border-top:0px;
  7886. border-right:0px;
  7887. border-bottom:0px;
  7888. border-radius:0px;
  7889. border-top-left-radius:0px;
  7890. border-bottom-left-radius:0px;
  7891. -moz-box-shadow:none;
  7892. -webkit-box-shadow:none;
  7893. box-shadow:none;
  7894. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7895. font-weight:500;
  7896. font-style:normal;
  7897. font-size:14px;
  7898. color:#0089FE;
  7899. text-align:center;
  7900. }
  7901. #u63529 {
  7902. border-width:0px;
  7903. position:absolute;
  7904. left:2333px;
  7905. top:1006px;
  7906. width:37px;
  7907. height:40px;
  7908. display:flex;
  7909. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7910. font-weight:500;
  7911. font-style:normal;
  7912. font-size:14px;
  7913. color:#0089FE;
  7914. text-align:center;
  7915. }
  7916. #u63529 .text {
  7917. position:absolute;
  7918. align-self:center;
  7919. padding:5px 0px 5px 0px;
  7920. box-sizing:border-box;
  7921. width:100%;
  7922. }
  7923. #u63529_text {
  7924. border-width:0px;
  7925. white-space:nowrap;
  7926. text-transform:none;
  7927. }
  7928. #u63530 {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:0px;
  7932. top:0px;
  7933. width:0px;
  7934. height:0px;
  7935. }
  7936. #u63531_div {
  7937. border-width:0px;
  7938. position:absolute;
  7939. left:0px;
  7940. top:0px;
  7941. width:560px;
  7942. height:395px;
  7943. background:inherit;
  7944. background-color:rgba(255, 255, 255, 1);
  7945. box-sizing:border-box;
  7946. border-width:1px;
  7947. border-style:solid;
  7948. border-color:rgba(215, 215, 215, 1);
  7949. border-radius:0px;
  7950. -moz-box-shadow:none;
  7951. -webkit-box-shadow:none;
  7952. box-shadow:none;
  7953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7954. font-weight:400;
  7955. font-style:normal;
  7956. font-size:14px;
  7957. color:#AAAAAA;
  7958. text-align:center;
  7959. line-height:30px;
  7960. }
  7961. #u63531 {
  7962. border-width:0px;
  7963. position:absolute;
  7964. left:2313px;
  7965. top:611px;
  7966. width:560px;
  7967. height:395px;
  7968. display:flex;
  7969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7970. font-weight:400;
  7971. font-style:normal;
  7972. font-size:14px;
  7973. color:#AAAAAA;
  7974. text-align:center;
  7975. line-height:30px;
  7976. }
  7977. #u63531 .text {
  7978. position:absolute;
  7979. align-self:center;
  7980. padding:5px 10px 5px 10px;
  7981. box-sizing:border-box;
  7982. width:100%;
  7983. }
  7984. #u63531_text {
  7985. border-width:0px;
  7986. word-wrap:break-word;
  7987. text-transform:none;
  7988. visibility:hidden;
  7989. }
  7990. #u63532_div {
  7991. border-width:0px;
  7992. position:absolute;
  7993. left:0px;
  7994. top:0px;
  7995. width:53px;
  7996. height:40px;
  7997. background:inherit;
  7998. background-color:rgba(255, 255, 255, 0);
  7999. border:none;
  8000. border-top:0px;
  8001. border-right:0px;
  8002. border-bottom:0px;
  8003. border-radius:0px;
  8004. border-top-left-radius:0px;
  8005. border-bottom-left-radius:0px;
  8006. -moz-box-shadow:none;
  8007. -webkit-box-shadow:none;
  8008. box-shadow:none;
  8009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8010. font-weight:400;
  8011. font-style:normal;
  8012. font-size:14px;
  8013. color:#7F7F7F;
  8014. text-align:right;
  8015. }
  8016. #u63532 {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:2365px;
  8020. top:630px;
  8021. width:53px;
  8022. height:40px;
  8023. display:flex;
  8024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8025. font-weight:400;
  8026. font-style:normal;
  8027. font-size:14px;
  8028. color:#7F7F7F;
  8029. text-align:right;
  8030. }
  8031. #u63532 .text {
  8032. position:absolute;
  8033. align-self:center;
  8034. padding:5px 10px 5px 0px;
  8035. box-sizing:border-box;
  8036. width:100%;
  8037. }
  8038. #u63532_text {
  8039. border-width:0px;
  8040. white-space:nowrap;
  8041. text-transform:none;
  8042. }
  8043. #u63533_div {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:0px;
  8047. top:0px;
  8048. width:67px;
  8049. height:40px;
  8050. background:inherit;
  8051. background-color:rgba(255, 255, 255, 0);
  8052. border:none;
  8053. border-top:0px;
  8054. border-right:0px;
  8055. border-bottom:0px;
  8056. border-radius:0px;
  8057. border-top-left-radius:0px;
  8058. border-bottom-left-radius:0px;
  8059. -moz-box-shadow:none;
  8060. -webkit-box-shadow:none;
  8061. box-shadow:none;
  8062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:14px;
  8066. color:#7F7F7F;
  8067. text-align:right;
  8068. }
  8069. #u63533 {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:2351px;
  8073. top:680px;
  8074. width:67px;
  8075. height:40px;
  8076. display:flex;
  8077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8078. font-weight:400;
  8079. font-style:normal;
  8080. font-size:14px;
  8081. color:#7F7F7F;
  8082. text-align:right;
  8083. }
  8084. #u63533 .text {
  8085. position:absolute;
  8086. align-self:center;
  8087. padding:5px 10px 5px 0px;
  8088. box-sizing:border-box;
  8089. width:100%;
  8090. }
  8091. #u63533_text {
  8092. border-width:0px;
  8093. white-space:nowrap;
  8094. text-transform:none;
  8095. }
  8096. #u63534 {
  8097. border-width:0px;
  8098. position:absolute;
  8099. left:0px;
  8100. top:0px;
  8101. width:0px;
  8102. height:0px;
  8103. }
  8104. #u63535_div {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:0px;
  8108. top:0px;
  8109. width:379px;
  8110. height:40px;
  8111. background:inherit;
  8112. background-color:rgba(255, 255, 255, 1);
  8113. box-sizing:border-box;
  8114. border-width:1px;
  8115. border-style:solid;
  8116. border-color:rgba(201, 201, 201, 1);
  8117. border-radius:4px;
  8118. -moz-box-shadow:none;
  8119. -webkit-box-shadow:none;
  8120. box-shadow:none;
  8121. font-family:'Microsoft YaHei', sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:14px;
  8125. color:#CCCCCC;
  8126. text-align:left;
  8127. }
  8128. #u63535 {
  8129. border-width:0px;
  8130. position:absolute;
  8131. left:2428px;
  8132. top:680px;
  8133. width:379px;
  8134. height:40px;
  8135. display:flex;
  8136. font-family:'Microsoft YaHei', sans-serif;
  8137. font-weight:400;
  8138. font-style:normal;
  8139. font-size:14px;
  8140. color:#CCCCCC;
  8141. text-align:left;
  8142. }
  8143. #u63535 .text {
  8144. position:absolute;
  8145. align-self:center;
  8146. padding:2px 8px 2px 8px;
  8147. box-sizing:border-box;
  8148. width:100%;
  8149. }
  8150. #u63535_text {
  8151. border-width:0px;
  8152. word-wrap:break-word;
  8153. text-transform:none;
  8154. visibility:hidden;
  8155. }
  8156. #u63536_input {
  8157. position:absolute;
  8158. left:0px;
  8159. top:0px;
  8160. width:360px;
  8161. height:38px;
  8162. padding:2px 2px 2px 2px;
  8163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8164. font-weight:400;
  8165. font-style:normal;
  8166. font-size:14px;
  8167. letter-spacing:normal;
  8168. color:#000000;
  8169. vertical-align:none;
  8170. text-align:left;
  8171. text-transform:none;
  8172. background-color:transparent;
  8173. border-color:transparent;
  8174. }
  8175. #u63536_input.disabled {
  8176. position:absolute;
  8177. left:0px;
  8178. top:0px;
  8179. width:360px;
  8180. height:38px;
  8181. padding:2px 2px 2px 2px;
  8182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8183. font-weight:400;
  8184. font-style:normal;
  8185. font-size:14px;
  8186. letter-spacing:normal;
  8187. color:#000000;
  8188. vertical-align:none;
  8189. text-align:left;
  8190. text-transform:none;
  8191. background-color:transparent;
  8192. border-color:transparent;
  8193. }
  8194. #u63536_div {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:0px;
  8198. top:0px;
  8199. width:360px;
  8200. height:38px;
  8201. background:inherit;
  8202. background-color:rgba(255, 255, 255, 1);
  8203. border:none;
  8204. border-radius:0px;
  8205. -moz-box-shadow:none;
  8206. -webkit-box-shadow:none;
  8207. box-shadow:none;
  8208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:14px;
  8212. }
  8213. #u63536 {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:2438px;
  8217. top:681px;
  8218. width:360px;
  8219. height:38px;
  8220. display:flex;
  8221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8222. font-weight:400;
  8223. font-style:normal;
  8224. font-size:14px;
  8225. }
  8226. #u63536 .text {
  8227. position:absolute;
  8228. align-self:center;
  8229. padding:2px 2px 2px 2px;
  8230. box-sizing:border-box;
  8231. width:100%;
  8232. }
  8233. #u63536_div.disabled {
  8234. border-width:0px;
  8235. position:absolute;
  8236. left:0px;
  8237. top:0px;
  8238. width:360px;
  8239. height:38px;
  8240. background:inherit;
  8241. background-color:rgba(240, 240, 240, 1);
  8242. border:none;
  8243. border-radius:0px;
  8244. -moz-box-shadow:none;
  8245. -webkit-box-shadow:none;
  8246. box-shadow:none;
  8247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8248. font-weight:400;
  8249. font-style:normal;
  8250. font-size:14px;
  8251. }
  8252. #u63536.disabled {
  8253. }
  8254. #u63537 {
  8255. border-width:0px;
  8256. position:absolute;
  8257. left:0px;
  8258. top:0px;
  8259. width:0px;
  8260. height:0px;
  8261. }
  8262. #u63538_div {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:0px;
  8266. top:0px;
  8267. width:98px;
  8268. height:40px;
  8269. background:inherit;
  8270. background-color:rgba(245, 154, 35, 1);
  8271. box-sizing:border-box;
  8272. border-width:1px;
  8273. border-style:solid;
  8274. border-color:rgba(215, 215, 215, 1);
  8275. border-radius:4px;
  8276. -moz-box-shadow:none;
  8277. -webkit-box-shadow:none;
  8278. box-shadow:none;
  8279. font-size:14px;
  8280. }
  8281. #u63538 {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:2428px;
  8285. top:730px;
  8286. width:98px;
  8287. height:40px;
  8288. display:flex;
  8289. font-size:14px;
  8290. }
  8291. #u63538 .text {
  8292. position:absolute;
  8293. align-self:center;
  8294. padding:2px 2px 2px 2px;
  8295. box-sizing:border-box;
  8296. width:100%;
  8297. }
  8298. #u63538_text {
  8299. border-width:0px;
  8300. word-wrap:break-word;
  8301. text-transform:none;
  8302. visibility:hidden;
  8303. }
  8304. #u63539_div {
  8305. border-width:0px;
  8306. position:absolute;
  8307. left:0px;
  8308. top:0px;
  8309. width:81px;
  8310. height:40px;
  8311. background:inherit;
  8312. background-color:rgba(255, 255, 255, 0);
  8313. border:none;
  8314. border-top:0px;
  8315. border-right:0px;
  8316. border-bottom:0px;
  8317. border-radius:0px;
  8318. border-top-left-radius:0px;
  8319. border-bottom-left-radius:0px;
  8320. -moz-box-shadow:none;
  8321. -webkit-box-shadow:none;
  8322. box-shadow:none;
  8323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8324. font-weight:400;
  8325. font-style:normal;
  8326. font-size:14px;
  8327. color:#7F7F7F;
  8328. text-align:right;
  8329. }
  8330. #u63539 {
  8331. border-width:0px;
  8332. position:absolute;
  8333. left:2337px;
  8334. top:730px;
  8335. width:81px;
  8336. height:40px;
  8337. display:flex;
  8338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8339. font-weight:400;
  8340. font-style:normal;
  8341. font-size:14px;
  8342. color:#7F7F7F;
  8343. text-align:right;
  8344. }
  8345. #u63539 .text {
  8346. position:absolute;
  8347. align-self:center;
  8348. padding:5px 10px 5px 0px;
  8349. box-sizing:border-box;
  8350. width:100%;
  8351. }
  8352. #u63539_text {
  8353. border-width:0px;
  8354. white-space:nowrap;
  8355. text-transform:none;
  8356. }
  8357. #u63540_div {
  8358. border-width:0px;
  8359. position:absolute;
  8360. left:0px;
  8361. top:0px;
  8362. width:81px;
  8363. height:40px;
  8364. background:inherit;
  8365. background-color:rgba(255, 255, 255, 0);
  8366. border:none;
  8367. border-top:0px;
  8368. border-right:0px;
  8369. border-bottom:0px;
  8370. border-radius:0px;
  8371. border-top-left-radius:0px;
  8372. border-bottom-left-radius:0px;
  8373. -moz-box-shadow:none;
  8374. -webkit-box-shadow:none;
  8375. box-shadow:none;
  8376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8377. font-weight:400;
  8378. font-style:normal;
  8379. font-size:14px;
  8380. color:#7F7F7F;
  8381. text-align:right;
  8382. }
  8383. #u63540 {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:2337px;
  8387. top:780px;
  8388. width:81px;
  8389. height:40px;
  8390. display:flex;
  8391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8392. font-weight:400;
  8393. font-style:normal;
  8394. font-size:14px;
  8395. color:#7F7F7F;
  8396. text-align:right;
  8397. }
  8398. #u63540 .text {
  8399. position:absolute;
  8400. align-self:center;
  8401. padding:5px 10px 5px 0px;
  8402. box-sizing:border-box;
  8403. width:100%;
  8404. }
  8405. #u63540_text {
  8406. border-width:0px;
  8407. white-space:nowrap;
  8408. text-transform:none;
  8409. }
  8410. #u63541 {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:0px;
  8414. top:0px;
  8415. width:0px;
  8416. height:0px;
  8417. }
  8418. #u63542_div {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:0px;
  8422. top:0px;
  8423. width:379px;
  8424. height:40px;
  8425. background:inherit;
  8426. background-color:rgba(255, 255, 255, 1);
  8427. box-sizing:border-box;
  8428. border-width:1px;
  8429. border-style:solid;
  8430. border-color:rgba(201, 201, 201, 1);
  8431. border-radius:4px;
  8432. -moz-box-shadow:none;
  8433. -webkit-box-shadow:none;
  8434. box-shadow:none;
  8435. font-family:'Microsoft YaHei', sans-serif;
  8436. font-weight:400;
  8437. font-style:normal;
  8438. font-size:14px;
  8439. color:#CCCCCC;
  8440. text-align:left;
  8441. }
  8442. #u63542 {
  8443. border-width:0px;
  8444. position:absolute;
  8445. left:2428px;
  8446. top:780px;
  8447. width:379px;
  8448. height:40px;
  8449. display:flex;
  8450. font-family:'Microsoft YaHei', sans-serif;
  8451. font-weight:400;
  8452. font-style:normal;
  8453. font-size:14px;
  8454. color:#CCCCCC;
  8455. text-align:left;
  8456. }
  8457. #u63542 .text {
  8458. position:absolute;
  8459. align-self:center;
  8460. padding:2px 8px 2px 8px;
  8461. box-sizing:border-box;
  8462. width:100%;
  8463. }
  8464. #u63542_text {
  8465. border-width:0px;
  8466. word-wrap:break-word;
  8467. text-transform:none;
  8468. visibility:hidden;
  8469. }
  8470. #u63543_input {
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:360px;
  8475. height:38px;
  8476. padding:2px 2px 2px 2px;
  8477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8478. font-weight:400;
  8479. font-style:normal;
  8480. font-size:14px;
  8481. letter-spacing:normal;
  8482. color:#000000;
  8483. vertical-align:none;
  8484. text-align:left;
  8485. text-transform:none;
  8486. background-color:transparent;
  8487. border-color:transparent;
  8488. }
  8489. #u63543_input.disabled {
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:360px;
  8494. height:38px;
  8495. padding:2px 2px 2px 2px;
  8496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8497. font-weight:400;
  8498. font-style:normal;
  8499. font-size:14px;
  8500. letter-spacing:normal;
  8501. color:#000000;
  8502. vertical-align:none;
  8503. text-align:left;
  8504. text-transform:none;
  8505. background-color:transparent;
  8506. border-color:transparent;
  8507. }
  8508. #u63543_div {
  8509. border-width:0px;
  8510. position:absolute;
  8511. left:0px;
  8512. top:0px;
  8513. width:360px;
  8514. height:38px;
  8515. background:inherit;
  8516. background-color:rgba(255, 255, 255, 1);
  8517. border:none;
  8518. border-radius:0px;
  8519. -moz-box-shadow:none;
  8520. -webkit-box-shadow:none;
  8521. box-shadow:none;
  8522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8523. font-weight:400;
  8524. font-style:normal;
  8525. font-size:14px;
  8526. }
  8527. #u63543 {
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:2438px;
  8531. top:781px;
  8532. width:360px;
  8533. height:38px;
  8534. display:flex;
  8535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8536. font-weight:400;
  8537. font-style:normal;
  8538. font-size:14px;
  8539. }
  8540. #u63543 .text {
  8541. position:absolute;
  8542. align-self:center;
  8543. padding:2px 2px 2px 2px;
  8544. box-sizing:border-box;
  8545. width:100%;
  8546. }
  8547. #u63543_div.disabled {
  8548. border-width:0px;
  8549. position:absolute;
  8550. left:0px;
  8551. top:0px;
  8552. width:360px;
  8553. height:38px;
  8554. background:inherit;
  8555. background-color:rgba(240, 240, 240, 1);
  8556. border:none;
  8557. border-radius:0px;
  8558. -moz-box-shadow:none;
  8559. -webkit-box-shadow:none;
  8560. box-shadow:none;
  8561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8562. font-weight:400;
  8563. font-style:normal;
  8564. font-size:14px;
  8565. }
  8566. #u63543.disabled {
  8567. }
  8568. #u63544_div {
  8569. border-width:0px;
  8570. position:absolute;
  8571. left:0px;
  8572. top:0px;
  8573. width:81px;
  8574. height:40px;
  8575. background:inherit;
  8576. background-color:rgba(255, 255, 255, 0);
  8577. border:none;
  8578. border-top:0px;
  8579. border-right:0px;
  8580. border-bottom:0px;
  8581. border-radius:0px;
  8582. border-top-left-radius:0px;
  8583. border-bottom-left-radius:0px;
  8584. -moz-box-shadow:none;
  8585. -webkit-box-shadow:none;
  8586. box-shadow:none;
  8587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8588. font-weight:400;
  8589. font-style:normal;
  8590. font-size:14px;
  8591. color:#7F7F7F;
  8592. text-align:right;
  8593. }
  8594. #u63544 {
  8595. border-width:0px;
  8596. position:absolute;
  8597. left:2337px;
  8598. top:830px;
  8599. width:81px;
  8600. height:40px;
  8601. display:flex;
  8602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8603. font-weight:400;
  8604. font-style:normal;
  8605. font-size:14px;
  8606. color:#7F7F7F;
  8607. text-align:right;
  8608. }
  8609. #u63544 .text {
  8610. position:absolute;
  8611. align-self:center;
  8612. padding:5px 10px 5px 0px;
  8613. box-sizing:border-box;
  8614. width:100%;
  8615. }
  8616. #u63544_text {
  8617. border-width:0px;
  8618. white-space:nowrap;
  8619. text-transform:none;
  8620. }
  8621. #u63545 label {
  8622. left:0px;
  8623. width:100%;
  8624. }
  8625. #u63545_img {
  8626. border-width:0px;
  8627. position:absolute;
  8628. left:0px;
  8629. top:4px;
  8630. width:12px;
  8631. height:12px;
  8632. }
  8633. #u63545 {
  8634. border-width:0px;
  8635. position:absolute;
  8636. left:2337px;
  8637. top:900px;
  8638. width:100px;
  8639. height:20px;
  8640. display:flex;
  8641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8642. font-weight:400;
  8643. font-style:normal;
  8644. font-size:14px;
  8645. color:#7F7F7F;
  8646. }
  8647. #u63545 .text {
  8648. position:absolute;
  8649. align-self:center;
  8650. padding:0px 2px 0px 2px;
  8651. box-sizing:border-box;
  8652. }
  8653. #u63545_img.selected {
  8654. }
  8655. #u63545.selected {
  8656. }
  8657. #u63545_img.disabled {
  8658. }
  8659. #u63545.disabled {
  8660. }
  8661. #u63545_img.selectedDisabled {
  8662. }
  8663. #u63545.selectedDisabled {
  8664. }
  8665. #u63545_text {
  8666. border-width:0px;
  8667. position:absolute;
  8668. left:14px;
  8669. top:0px;
  8670. width:84px;
  8671. word-wrap:break-word;
  8672. text-transform:none;
  8673. }
  8674. #u63545_input {
  8675. border-width:0px;
  8676. position:absolute;
  8677. left:0px;
  8678. top:0px;
  8679. width:0px;
  8680. height:0px;
  8681. opacity:0;
  8682. }
  8683. #u63546_div {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:0px;
  8687. top:0px;
  8688. width:107px;
  8689. height:98px;
  8690. background:inherit;
  8691. background-color:rgba(255, 255, 255, 1);
  8692. box-sizing:border-box;
  8693. border-width:1px;
  8694. border-style:solid;
  8695. border-color:rgba(201, 201, 201, 1);
  8696. border-radius:4px;
  8697. -moz-box-shadow:none;
  8698. -webkit-box-shadow:none;
  8699. box-shadow:none;
  8700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8701. font-weight:400;
  8702. font-style:normal;
  8703. }
  8704. #u63546 {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:2428px;
  8708. top:888px;
  8709. width:107px;
  8710. height:98px;
  8711. display:flex;
  8712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8713. font-weight:400;
  8714. font-style:normal;
  8715. }
  8716. #u63546 .text {
  8717. position:absolute;
  8718. align-self:center;
  8719. padding:2px 8px 2px 8px;
  8720. box-sizing:border-box;
  8721. width:100%;
  8722. }
  8723. #u63546_text {
  8724. border-width:0px;
  8725. word-wrap:break-word;
  8726. text-transform:none;
  8727. }
  8728. #u63547 {
  8729. border-width:0px;
  8730. position:absolute;
  8731. left:0px;
  8732. top:0px;
  8733. width:0px;
  8734. height:0px;
  8735. }
  8736. #u63548_div {
  8737. border-width:0px;
  8738. position:absolute;
  8739. left:0px;
  8740. top:0px;
  8741. width:379px;
  8742. height:40px;
  8743. background:inherit;
  8744. background-color:rgba(255, 255, 255, 1);
  8745. box-sizing:border-box;
  8746. border-width:1px;
  8747. border-style:solid;
  8748. border-color:rgba(215, 215, 215, 1);
  8749. border-radius:4px;
  8750. -moz-box-shadow:none;
  8751. -webkit-box-shadow:none;
  8752. box-shadow:none;
  8753. font-size:14px;
  8754. }
  8755. #u63548 {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:2428px;
  8759. top:830px;
  8760. width:379px;
  8761. height:40px;
  8762. display:flex;
  8763. font-size:14px;
  8764. }
  8765. #u63548 .text {
  8766. position:absolute;
  8767. align-self:center;
  8768. padding:2px 2px 2px 2px;
  8769. box-sizing:border-box;
  8770. width:100%;
  8771. }
  8772. #u63548_text {
  8773. border-width:0px;
  8774. word-wrap:break-word;
  8775. text-transform:none;
  8776. visibility:hidden;
  8777. }
  8778. #u63549_input {
  8779. position:absolute;
  8780. left:0px;
  8781. top:0px;
  8782. width:363px;
  8783. height:31px;
  8784. padding:2px 2px 2px 2px;
  8785. font-family:'ArialMT', 'Arial', sans-serif;
  8786. font-weight:400;
  8787. font-style:normal;
  8788. font-size:14px;
  8789. letter-spacing:normal;
  8790. color:#AAAAAA;
  8791. vertical-align:none;
  8792. text-align:left;
  8793. text-transform:none;
  8794. background-color:transparent;
  8795. border-color:transparent;
  8796. }
  8797. #u63549_input.disabled {
  8798. position:absolute;
  8799. left:0px;
  8800. top:0px;
  8801. width:363px;
  8802. height:31px;
  8803. padding:2px 2px 2px 2px;
  8804. font-family:'ArialMT', 'Arial', sans-serif;
  8805. font-weight:400;
  8806. font-style:normal;
  8807. font-size:14px;
  8808. letter-spacing:normal;
  8809. color:#AAAAAA;
  8810. vertical-align:none;
  8811. text-align:left;
  8812. text-transform:none;
  8813. background-color:transparent;
  8814. border-color:transparent;
  8815. }
  8816. #u63549_div {
  8817. border-width:0px;
  8818. position:absolute;
  8819. left:0px;
  8820. top:0px;
  8821. width:363px;
  8822. height:31px;
  8823. background:inherit;
  8824. background-color:rgba(255, 255, 255, 1);
  8825. border:none;
  8826. border-radius:0px;
  8827. -moz-box-shadow:none;
  8828. -webkit-box-shadow:none;
  8829. box-shadow:none;
  8830. font-size:14px;
  8831. color:#AAAAAA;
  8832. }
  8833. #u63549 {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:2439px;
  8837. top:833px;
  8838. width:363px;
  8839. height:31px;
  8840. display:flex;
  8841. font-size:14px;
  8842. color:#AAAAAA;
  8843. }
  8844. #u63549 .text {
  8845. position:absolute;
  8846. align-self:flex-start;
  8847. padding:2px 2px 2px 2px;
  8848. box-sizing:border-box;
  8849. width:100%;
  8850. }
  8851. #u63549_div.disabled {
  8852. border-width:0px;
  8853. position:absolute;
  8854. left:0px;
  8855. top:0px;
  8856. width:363px;
  8857. height:31px;
  8858. background:inherit;
  8859. background-color:rgba(240, 240, 240, 1);
  8860. border:none;
  8861. border-radius:0px;
  8862. -moz-box-shadow:none;
  8863. -webkit-box-shadow:none;
  8864. box-shadow:none;
  8865. font-size:14px;
  8866. color:#AAAAAA;
  8867. }
  8868. #u63549.disabled {
  8869. }
  8870. .u63549_input_option {
  8871. font-size:14px;
  8872. }
  8873. #u63550 {
  8874. border-width:0px;
  8875. position:absolute;
  8876. left:0px;
  8877. top:0px;
  8878. width:0px;
  8879. height:0px;
  8880. }
  8881. #u63551_div {
  8882. border-width:0px;
  8883. position:absolute;
  8884. left:0px;
  8885. top:0px;
  8886. width:379px;
  8887. height:40px;
  8888. background:inherit;
  8889. background-color:rgba(255, 255, 255, 1);
  8890. box-sizing:border-box;
  8891. border-width:1px;
  8892. border-style:solid;
  8893. border-color:rgba(201, 201, 201, 1);
  8894. border-radius:4px;
  8895. -moz-box-shadow:none;
  8896. -webkit-box-shadow:none;
  8897. box-shadow:none;
  8898. font-family:'Microsoft YaHei', sans-serif;
  8899. font-weight:400;
  8900. font-style:normal;
  8901. font-size:14px;
  8902. color:#CCCCCC;
  8903. text-align:left;
  8904. }
  8905. #u63551 {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:2428px;
  8909. top:630px;
  8910. width:379px;
  8911. height:40px;
  8912. display:flex;
  8913. font-family:'Microsoft YaHei', sans-serif;
  8914. font-weight:400;
  8915. font-style:normal;
  8916. font-size:14px;
  8917. color:#CCCCCC;
  8918. text-align:left;
  8919. }
  8920. #u63551 .text {
  8921. position:absolute;
  8922. align-self:center;
  8923. padding:2px 8px 2px 8px;
  8924. box-sizing:border-box;
  8925. width:100%;
  8926. }
  8927. #u63551_text {
  8928. border-width:0px;
  8929. word-wrap:break-word;
  8930. text-transform:none;
  8931. visibility:hidden;
  8932. }
  8933. #u63552_input {
  8934. position:absolute;
  8935. left:0px;
  8936. top:0px;
  8937. width:360px;
  8938. height:38px;
  8939. padding:2px 2px 2px 2px;
  8940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8941. font-weight:400;
  8942. font-style:normal;
  8943. font-size:14px;
  8944. letter-spacing:normal;
  8945. color:#000000;
  8946. vertical-align:none;
  8947. text-align:left;
  8948. text-transform:none;
  8949. background-color:transparent;
  8950. border-color:transparent;
  8951. }
  8952. #u63552_input.disabled {
  8953. position:absolute;
  8954. left:0px;
  8955. top:0px;
  8956. width:360px;
  8957. height:38px;
  8958. padding:2px 2px 2px 2px;
  8959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8960. font-weight:400;
  8961. font-style:normal;
  8962. font-size:14px;
  8963. letter-spacing:normal;
  8964. color:#000000;
  8965. vertical-align:none;
  8966. text-align:left;
  8967. text-transform:none;
  8968. background-color:transparent;
  8969. border-color:transparent;
  8970. }
  8971. #u63552_div {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:0px;
  8975. top:0px;
  8976. width:360px;
  8977. height:38px;
  8978. background:inherit;
  8979. background-color:rgba(255, 255, 255, 1);
  8980. border:none;
  8981. border-radius:0px;
  8982. -moz-box-shadow:none;
  8983. -webkit-box-shadow:none;
  8984. box-shadow:none;
  8985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8986. font-weight:400;
  8987. font-style:normal;
  8988. font-size:14px;
  8989. }
  8990. #u63552 {
  8991. border-width:0px;
  8992. position:absolute;
  8993. left:2438px;
  8994. top:631px;
  8995. width:360px;
  8996. height:38px;
  8997. display:flex;
  8998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8999. font-weight:400;
  9000. font-style:normal;
  9001. font-size:14px;
  9002. }
  9003. #u63552 .text {
  9004. position:absolute;
  9005. align-self:center;
  9006. padding:2px 2px 2px 2px;
  9007. box-sizing:border-box;
  9008. width:100%;
  9009. }
  9010. #u63552_div.disabled {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:0px;
  9014. top:0px;
  9015. width:360px;
  9016. height:38px;
  9017. background:inherit;
  9018. background-color:rgba(240, 240, 240, 1);
  9019. border:none;
  9020. border-radius:0px;
  9021. -moz-box-shadow:none;
  9022. -webkit-box-shadow:none;
  9023. box-shadow:none;
  9024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9025. font-weight:400;
  9026. font-style:normal;
  9027. font-size:14px;
  9028. }
  9029. #u63552.disabled {
  9030. }
  9031. #u63553_div {
  9032. border-width:0px;
  9033. position:absolute;
  9034. left:0px;
  9035. top:0px;
  9036. width:25px;
  9037. height:40px;
  9038. background:inherit;
  9039. background-color:rgba(255, 255, 255, 0);
  9040. border:none;
  9041. border-top:0px;
  9042. border-right:0px;
  9043. border-bottom:0px;
  9044. border-radius:0px;
  9045. border-top-left-radius:0px;
  9046. border-bottom-left-radius:0px;
  9047. -moz-box-shadow:none;
  9048. -webkit-box-shadow:none;
  9049. box-shadow:none;
  9050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9051. font-weight:400;
  9052. font-style:normal;
  9053. font-size:12px;
  9054. color:#D9001B;
  9055. text-align:center;
  9056. }
  9057. #u63553 {
  9058. border-width:0px;
  9059. position:absolute;
  9060. left:2838px;
  9061. top:611px;
  9062. width:25px;
  9063. height:40px;
  9064. display:flex;
  9065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9066. font-weight:400;
  9067. font-style:normal;
  9068. font-size:12px;
  9069. color:#D9001B;
  9070. text-align:center;
  9071. }
  9072. #u63553 .text {
  9073. position:absolute;
  9074. align-self:center;
  9075. padding:5px 0px 5px 0px;
  9076. box-sizing:border-box;
  9077. width:100%;
  9078. }
  9079. #u63553_text {
  9080. border-width:0px;
  9081. white-space:nowrap;
  9082. text-transform:none;
  9083. }
  9084. #u63554_img {
  9085. border-width:0px;
  9086. position:absolute;
  9087. left:0px;
  9088. top:0px;
  9089. width:50px;
  9090. height:31px;
  9091. }
  9092. #u63554 {
  9093. border-width:0px;
  9094. position:absolute;
  9095. left:1241px;
  9096. top:252px;
  9097. width:50px;
  9098. height:31px;
  9099. display:flex;
  9100. }
  9101. #u63554 .text {
  9102. position:absolute;
  9103. align-self:center;
  9104. padding:2px 2px 2px 2px;
  9105. box-sizing:border-box;
  9106. width:100%;
  9107. }
  9108. #u63554_text {
  9109. border-width:0px;
  9110. word-wrap:break-word;
  9111. text-transform:none;
  9112. visibility:hidden;
  9113. }
  9114. #u63555_img {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:0px;
  9118. top:0px;
  9119. width:50px;
  9120. height:31px;
  9121. }
  9122. #u63555 {
  9123. border-width:0px;
  9124. position:absolute;
  9125. left:1241px;
  9126. top:292px;
  9127. width:50px;
  9128. height:31px;
  9129. display:flex;
  9130. }
  9131. #u63555 .text {
  9132. position:absolute;
  9133. align-self:center;
  9134. padding:2px 2px 2px 2px;
  9135. box-sizing:border-box;
  9136. width:100%;
  9137. }
  9138. #u63555_text {
  9139. border-width:0px;
  9140. word-wrap:break-word;
  9141. text-transform:none;
  9142. visibility:hidden;
  9143. }
  9144. #u63556_img {
  9145. border-width:0px;
  9146. position:absolute;
  9147. left:0px;
  9148. top:0px;
  9149. width:50px;
  9150. height:31px;
  9151. }
  9152. #u63556 {
  9153. border-width:0px;
  9154. position:absolute;
  9155. left:1241px;
  9156. top:330px;
  9157. width:50px;
  9158. height:31px;
  9159. display:flex;
  9160. }
  9161. #u63556 .text {
  9162. position:absolute;
  9163. align-self:center;
  9164. padding:2px 2px 2px 2px;
  9165. box-sizing:border-box;
  9166. width:100%;
  9167. }
  9168. #u63556_text {
  9169. border-width:0px;
  9170. word-wrap:break-word;
  9171. text-transform:none;
  9172. visibility:hidden;
  9173. }
  9174. #u63557_img {
  9175. border-width:0px;
  9176. position:absolute;
  9177. left:0px;
  9178. top:0px;
  9179. width:50px;
  9180. height:31px;
  9181. }
  9182. #u63557 {
  9183. border-width:0px;
  9184. position:absolute;
  9185. left:1241px;
  9186. top:367px;
  9187. width:50px;
  9188. height:31px;
  9189. display:flex;
  9190. }
  9191. #u63557 .text {
  9192. position:absolute;
  9193. align-self:center;
  9194. padding:2px 2px 2px 2px;
  9195. box-sizing:border-box;
  9196. width:100%;
  9197. }
  9198. #u63557_text {
  9199. border-width:0px;
  9200. word-wrap:break-word;
  9201. text-transform:none;
  9202. visibility:hidden;
  9203. }
  9204. #u63558 {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:0px;
  9208. top:0px;
  9209. width:0px;
  9210. height:0px;
  9211. }
  9212. #u63559_div {
  9213. border-width:0px;
  9214. position:absolute;
  9215. left:0px;
  9216. top:0px;
  9217. width:200px;
  9218. height:1180px;
  9219. background:inherit;
  9220. background-color:rgba(255, 255, 255, 1);
  9221. border:none;
  9222. border-radius:0px;
  9223. -moz-box-shadow:none;
  9224. -webkit-box-shadow:none;
  9225. box-shadow:none;
  9226. }
  9227. #u63559 {
  9228. border-width:0px;
  9229. position:absolute;
  9230. left:121px;
  9231. top:50px;
  9232. width:200px;
  9233. height:1180px;
  9234. display:flex;
  9235. }
  9236. #u63559 .text {
  9237. position:absolute;
  9238. align-self:center;
  9239. padding:2px 2px 2px 2px;
  9240. box-sizing:border-box;
  9241. width:100%;
  9242. }
  9243. #u63559_text {
  9244. border-width:0px;
  9245. word-wrap:break-word;
  9246. text-transform:none;
  9247. visibility:hidden;
  9248. }
  9249. #u63560_div {
  9250. border-width:0px;
  9251. position:absolute;
  9252. left:0px;
  9253. top:0px;
  9254. width:200px;
  9255. height:60px;
  9256. background:inherit;
  9257. background-color:rgba(224, 231, 247, 1);
  9258. border:none;
  9259. border-radius:0px;
  9260. -moz-box-shadow:none;
  9261. -webkit-box-shadow:none;
  9262. box-shadow:none;
  9263. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9264. font-weight:500;
  9265. font-style:normal;
  9266. font-size:18px;
  9267. }
  9268. #u63560 {
  9269. border-width:0px;
  9270. position:absolute;
  9271. left:121px;
  9272. top:50px;
  9273. width:200px;
  9274. height:60px;
  9275. display:flex;
  9276. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9277. font-weight:500;
  9278. font-style:normal;
  9279. font-size:18px;
  9280. }
  9281. #u63560 .text {
  9282. position:absolute;
  9283. align-self:center;
  9284. padding:0px 0px 0px 20px;
  9285. box-sizing:border-box;
  9286. width:100%;
  9287. }
  9288. #u63560_text {
  9289. border-width:0px;
  9290. word-wrap:break-word;
  9291. text-transform:none;
  9292. }
  9293. #u63561_div {
  9294. border-width:0px;
  9295. position:absolute;
  9296. left:0px;
  9297. top:0px;
  9298. width:65px;
  9299. height:22px;
  9300. background:inherit;
  9301. background-color:rgba(255, 255, 255, 0);
  9302. border:none;
  9303. border-radius:0px;
  9304. -moz-box-shadow:none;
  9305. -webkit-box-shadow:none;
  9306. box-shadow:none;
  9307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9308. font-weight:400;
  9309. font-style:normal;
  9310. font-size:16px;
  9311. }
  9312. #u63561 {
  9313. border-width:0px;
  9314. position:absolute;
  9315. left:148px;
  9316. top:141px;
  9317. width:65px;
  9318. height:22px;
  9319. display:flex;
  9320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9321. font-weight:400;
  9322. font-style:normal;
  9323. font-size:16px;
  9324. }
  9325. #u63561 .text {
  9326. position:absolute;
  9327. align-self:flex-start;
  9328. padding:0px 0px 0px 0px;
  9329. box-sizing:border-box;
  9330. width:100%;
  9331. }
  9332. #u63561_text {
  9333. border-width:0px;
  9334. white-space:nowrap;
  9335. text-transform:none;
  9336. }
  9337. #u63562_div {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:0px;
  9341. top:0px;
  9342. width:65px;
  9343. height:22px;
  9344. background:inherit;
  9345. background-color:rgba(255, 255, 255, 0);
  9346. border:none;
  9347. border-radius:0px;
  9348. -moz-box-shadow:none;
  9349. -webkit-box-shadow:none;
  9350. box-shadow:none;
  9351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9352. font-weight:400;
  9353. font-style:normal;
  9354. font-size:16px;
  9355. }
  9356. #u63562 {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:148px;
  9360. top:183px;
  9361. width:65px;
  9362. height:22px;
  9363. display:flex;
  9364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9365. font-weight:400;
  9366. font-style:normal;
  9367. font-size:16px;
  9368. }
  9369. #u63562 .text {
  9370. position:absolute;
  9371. align-self:flex-start;
  9372. padding:0px 0px 0px 0px;
  9373. box-sizing:border-box;
  9374. width:100%;
  9375. }
  9376. #u63562_text {
  9377. border-width:0px;
  9378. white-space:nowrap;
  9379. text-transform:none;
  9380. }
  9381. #u63563_div {
  9382. border-width:0px;
  9383. position:absolute;
  9384. left:0px;
  9385. top:0px;
  9386. width:65px;
  9387. height:22px;
  9388. background:inherit;
  9389. background-color:rgba(255, 255, 255, 0);
  9390. border:none;
  9391. border-radius:0px;
  9392. -moz-box-shadow:none;
  9393. -webkit-box-shadow:none;
  9394. box-shadow:none;
  9395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9396. font-weight:400;
  9397. font-style:normal;
  9398. font-size:16px;
  9399. }
  9400. #u63563 {
  9401. border-width:0px;
  9402. position:absolute;
  9403. left:148px;
  9404. top:364px;
  9405. width:65px;
  9406. height:22px;
  9407. display:flex;
  9408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9409. font-weight:400;
  9410. font-style:normal;
  9411. font-size:16px;
  9412. }
  9413. #u63563 .text {
  9414. position:absolute;
  9415. align-self:flex-start;
  9416. padding:0px 0px 0px 0px;
  9417. box-sizing:border-box;
  9418. width:100%;
  9419. }
  9420. #u63563_text {
  9421. border-width:0px;
  9422. white-space:nowrap;
  9423. text-transform:none;
  9424. }
  9425. #u63564_div {
  9426. border-width:0px;
  9427. position:absolute;
  9428. left:0px;
  9429. top:0px;
  9430. width:65px;
  9431. height:22px;
  9432. background:inherit;
  9433. background-color:rgba(255, 255, 255, 0);
  9434. border:none;
  9435. border-radius:0px;
  9436. -moz-box-shadow:none;
  9437. -webkit-box-shadow:none;
  9438. box-shadow:none;
  9439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9440. font-weight:400;
  9441. font-style:normal;
  9442. font-size:16px;
  9443. }
  9444. #u63564 {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:148px;
  9448. top:280px;
  9449. width:65px;
  9450. height:22px;
  9451. display:flex;
  9452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9453. font-weight:400;
  9454. font-style:normal;
  9455. font-size:16px;
  9456. }
  9457. #u63564 .text {
  9458. position:absolute;
  9459. align-self:flex-start;
  9460. padding:0px 0px 0px 0px;
  9461. box-sizing:border-box;
  9462. width:100%;
  9463. }
  9464. #u63564_text {
  9465. border-width:0px;
  9466. white-space:nowrap;
  9467. text-transform:none;
  9468. }
  9469. #u63565_div {
  9470. border-width:0px;
  9471. position:absolute;
  9472. left:0px;
  9473. top:0px;
  9474. width:49px;
  9475. height:17px;
  9476. background:inherit;
  9477. background-color:rgba(255, 255, 255, 0);
  9478. border:none;
  9479. border-radius:0px;
  9480. -moz-box-shadow:none;
  9481. -webkit-box-shadow:none;
  9482. box-shadow:none;
  9483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9484. font-weight:400;
  9485. font-style:normal;
  9486. font-size:12px;
  9487. color:#AAAAAA;
  9488. }
  9489. #u63565 {
  9490. border-width:0px;
  9491. position:absolute;
  9492. left:148px;
  9493. top:244px;
  9494. width:49px;
  9495. height:17px;
  9496. display:flex;
  9497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9498. font-weight:400;
  9499. font-style:normal;
  9500. font-size:12px;
  9501. color:#AAAAAA;
  9502. }
  9503. #u63565 .text {
  9504. position:absolute;
  9505. align-self:flex-start;
  9506. padding:0px 0px 0px 0px;
  9507. box-sizing:border-box;
  9508. width:100%;
  9509. }
  9510. #u63565_text {
  9511. border-width:0px;
  9512. white-space:nowrap;
  9513. text-transform:none;
  9514. }
  9515. #u63566_img {
  9516. border-width:0px;
  9517. position:absolute;
  9518. left:0px;
  9519. top:0px;
  9520. width:201px;
  9521. height:2px;
  9522. }
  9523. #u63566 {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:121px;
  9527. top:222px;
  9528. width:200px;
  9529. height:1px;
  9530. display:flex;
  9531. }
  9532. #u63566 .text {
  9533. position:absolute;
  9534. align-self:center;
  9535. padding:2px 2px 2px 2px;
  9536. box-sizing:border-box;
  9537. width:100%;
  9538. }
  9539. #u63566_text {
  9540. border-width:0px;
  9541. word-wrap:break-word;
  9542. text-transform:none;
  9543. visibility:hidden;
  9544. }
  9545. #u63567_div {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:0px;
  9549. top:0px;
  9550. width:65px;
  9551. height:22px;
  9552. background:inherit;
  9553. background-color:rgba(255, 255, 255, 0);
  9554. border:none;
  9555. border-radius:0px;
  9556. -moz-box-shadow:none;
  9557. -webkit-box-shadow:none;
  9558. box-shadow:none;
  9559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9560. font-weight:400;
  9561. font-style:normal;
  9562. font-size:16px;
  9563. }
  9564. #u63567 {
  9565. border-width:0px;
  9566. position:absolute;
  9567. left:148px;
  9568. top:322px;
  9569. width:65px;
  9570. height:22px;
  9571. display:flex;
  9572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9573. font-weight:400;
  9574. font-style:normal;
  9575. font-size:16px;
  9576. }
  9577. #u63567 .text {
  9578. position:absolute;
  9579. align-self:flex-start;
  9580. padding:0px 0px 0px 0px;
  9581. box-sizing:border-box;
  9582. width:100%;
  9583. }
  9584. #u63567_text {
  9585. border-width:0px;
  9586. white-space:nowrap;
  9587. text-transform:none;
  9588. }
  9589. #u63568_div {
  9590. border-width:0px;
  9591. position:absolute;
  9592. left:0px;
  9593. top:0px;
  9594. width:65px;
  9595. height:22px;
  9596. background:inherit;
  9597. background-color:rgba(255, 255, 255, 0);
  9598. border:none;
  9599. border-radius:0px;
  9600. -moz-box-shadow:none;
  9601. -webkit-box-shadow:none;
  9602. box-shadow:none;
  9603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9604. font-weight:400;
  9605. font-style:normal;
  9606. font-size:16px;
  9607. }
  9608. #u63568 {
  9609. border-width:0px;
  9610. position:absolute;
  9611. left:148px;
  9612. top:406px;
  9613. width:65px;
  9614. height:22px;
  9615. display:flex;
  9616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9617. font-weight:400;
  9618. font-style:normal;
  9619. font-size:16px;
  9620. }
  9621. #u63568 .text {
  9622. position:absolute;
  9623. align-self:flex-start;
  9624. padding:0px 0px 0px 0px;
  9625. box-sizing:border-box;
  9626. width:100%;
  9627. }
  9628. #u63568_text {
  9629. border-width:0px;
  9630. white-space:nowrap;
  9631. text-transform:none;
  9632. }
  9633. #u63569_div {
  9634. border-width:0px;
  9635. position:absolute;
  9636. left:0px;
  9637. top:0px;
  9638. width:300px;
  9639. height:270px;
  9640. background:inherit;
  9641. background-color:rgba(51, 51, 51, 1);
  9642. border:none;
  9643. border-radius:0px;
  9644. -moz-box-shadow:none;
  9645. -webkit-box-shadow:none;
  9646. box-shadow:none;
  9647. font-size:14px;
  9648. color:#FFFFFF;
  9649. line-height:30px;
  9650. }
  9651. #u63569 {
  9652. border-width:0px;
  9653. position:absolute;
  9654. left:2929px;
  9655. top:270px;
  9656. width:300px;
  9657. height:270px;
  9658. display:flex;
  9659. font-size:14px;
  9660. color:#FFFFFF;
  9661. line-height:30px;
  9662. }
  9663. #u63569 .text {
  9664. position:absolute;
  9665. align-self:flex-start;
  9666. padding:0px 0px 0px 10px;
  9667. box-sizing:border-box;
  9668. width:100%;
  9669. }
  9670. #u63569_text {
  9671. border-width:0px;
  9672. word-wrap:break-word;
  9673. text-transform:none;
  9674. }