styles.css 110 KB

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