styles.css 107 KB

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