styles.css 142 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-97px;
  6. width:1660px;
  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. #u95571 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u95572_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  33. height:60px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u95572 {
  53. border-width:0px;
  54. position:absolute;
  55. left:97px;
  56. top:73px;
  57. width:800px;
  58. height:60px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u95572 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u95572_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u95573_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:119px;
  87. height:35px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  101. font-weight:500;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u95573 {
  106. border-width:0px;
  107. position:absolute;
  108. left:128px;
  109. top:86px;
  110. width:119px;
  111. height:35px;
  112. display:flex;
  113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  114. font-weight:500;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u95573 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u95573_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u95574_div {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:800px;
  136. height:1142px;
  137. background:inherit;
  138. background-color:rgba(255, 255, 255, 1);
  139. box-sizing:border-box;
  140. border-width:1px;
  141. border-style:solid;
  142. border-color:rgba(242, 242, 242, 1);
  143. border-radius:0px;
  144. -moz-box-shadow:none;
  145. -webkit-box-shadow:none;
  146. box-shadow:none;
  147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  148. font-weight:400;
  149. font-style:normal;
  150. font-size:14px;
  151. color:#AAAAAA;
  152. text-align:center;
  153. line-height:30px;
  154. }
  155. #u95574 {
  156. border-width:0px;
  157. position:absolute;
  158. left:97px;
  159. top:133px;
  160. width:800px;
  161. height:1142px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:14px;
  167. color:#AAAAAA;
  168. text-align:center;
  169. line-height:30px;
  170. }
  171. #u95574 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:5px 10px 5px 10px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u95574_text {
  179. border-width:0px;
  180. word-wrap:break-word;
  181. text-transform:none;
  182. visibility:hidden;
  183. }
  184. #u95575 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u95576_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:800px;
  198. height:60px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 1);
  201. box-sizing:border-box;
  202. border-width:1px;
  203. border-style:solid;
  204. border-color:rgba(215, 215, 215, 1);
  205. border-radius:0px;
  206. -moz-box-shadow:none;
  207. -webkit-box-shadow:none;
  208. box-shadow:none;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:14px;
  213. color:#AAAAAA;
  214. text-align:center;
  215. line-height:30px;
  216. }
  217. #u95576 {
  218. border-width:0px;
  219. position:absolute;
  220. left:97px;
  221. top:1214px;
  222. width:800px;
  223. height:60px;
  224. display:flex;
  225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  226. font-weight:400;
  227. font-style:normal;
  228. font-size:14px;
  229. color:#AAAAAA;
  230. text-align:center;
  231. line-height:30px;
  232. }
  233. #u95576 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:5px 10px 5px 10px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u95576_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. visibility:hidden;
  245. }
  246. #u95577_img {
  247. border-width:0px;
  248. position:absolute;
  249. left:0px;
  250. top:0px;
  251. width:80px;
  252. height:30px;
  253. }
  254. #u95577 {
  255. border-width:0px;
  256. position:absolute;
  257. left:777px;
  258. top:1229px;
  259. width:80px;
  260. height:30px;
  261. display:flex;
  262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  263. font-weight:400;
  264. font-style:normal;
  265. font-size:14px;
  266. color:#FFFFFF;
  267. }
  268. #u95577 .text {
  269. position:absolute;
  270. align-self:center;
  271. padding:2px 2px 2px 2px;
  272. box-sizing:border-box;
  273. width:100%;
  274. }
  275. #u95577_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. }
  280. #u95578_div {
  281. border-width:0px;
  282. position:absolute;
  283. left:0px;
  284. top:0px;
  285. width:80px;
  286. height:30px;
  287. background:inherit;
  288. background-color:rgba(255, 255, 255, 1);
  289. box-sizing:border-box;
  290. border-width:1px;
  291. border-style:solid;
  292. border-color:rgba(170, 170, 170, 1);
  293. border-radius:4px;
  294. -moz-box-shadow:none;
  295. -webkit-box-shadow:none;
  296. box-shadow:none;
  297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  298. font-weight:400;
  299. font-style:normal;
  300. font-size:14px;
  301. }
  302. #u95578 {
  303. border-width:0px;
  304. position:absolute;
  305. left:687px;
  306. top:1229px;
  307. width:80px;
  308. height:30px;
  309. display:flex;
  310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  311. font-weight:400;
  312. font-style:normal;
  313. font-size:14px;
  314. }
  315. #u95578 .text {
  316. position:absolute;
  317. align-self:center;
  318. padding:2px 2px 2px 2px;
  319. box-sizing:border-box;
  320. width:100%;
  321. }
  322. #u95578_text {
  323. border-width:0px;
  324. word-wrap:break-word;
  325. text-transform:none;
  326. }
  327. #u95579_div {
  328. border-width:0px;
  329. position:absolute;
  330. left:0px;
  331. top:0px;
  332. width:73px;
  333. height:40px;
  334. background:inherit;
  335. background-color:rgba(255, 255, 255, 0);
  336. border:none;
  337. border-left:0px;
  338. border-top:0px;
  339. border-right:0px;
  340. border-radius:0px;
  341. border-bottom-right-radius:0px;
  342. border-bottom-left-radius:0px;
  343. -moz-box-shadow:none;
  344. -webkit-box-shadow:none;
  345. box-shadow:none;
  346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  347. font-weight:500;
  348. font-style:normal;
  349. font-size:18px;
  350. }
  351. #u95579 {
  352. border-width:0px;
  353. position:absolute;
  354. left:136px;
  355. top:159px;
  356. width:73px;
  357. height:40px;
  358. display:flex;
  359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  360. font-weight:500;
  361. font-style:normal;
  362. font-size:18px;
  363. }
  364. #u95579 .text {
  365. position:absolute;
  366. align-self:center;
  367. padding:0px 0px 0px 0px;
  368. box-sizing:border-box;
  369. width:100%;
  370. }
  371. #u95579_text {
  372. border-width:0px;
  373. white-space:nowrap;
  374. text-transform:none;
  375. }
  376. #u95580_div {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:40px;
  382. height:40px;
  383. background:inherit;
  384. background-color:rgba(255, 255, 255, 0);
  385. border:none;
  386. border-top:0px;
  387. border-right:0px;
  388. border-bottom:0px;
  389. border-radius:0px;
  390. border-top-left-radius:0px;
  391. border-bottom-left-radius:0px;
  392. -moz-box-shadow:none;
  393. -webkit-box-shadow:none;
  394. box-shadow:none;
  395. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  396. font-weight:500;
  397. font-style:normal;
  398. font-size:24px;
  399. text-align:center;
  400. }
  401. #u95580 {
  402. border-width:0px;
  403. position:absolute;
  404. left:857px;
  405. top:73px;
  406. width:40px;
  407. height:40px;
  408. display:flex;
  409. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  410. font-weight:500;
  411. font-style:normal;
  412. font-size:24px;
  413. text-align:center;
  414. }
  415. #u95580 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:5px 10px 5px 0px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u95580_text {
  423. border-width:0px;
  424. word-wrap:break-word;
  425. text-transform:none;
  426. }
  427. #u95581 {
  428. border-width:0px;
  429. position:absolute;
  430. left:0px;
  431. top:0px;
  432. width:0px;
  433. height:0px;
  434. }
  435. #u95582_div {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:140px;
  441. height:40px;
  442. background:inherit;
  443. background-color:rgba(255, 255, 255, 1);
  444. box-sizing:border-box;
  445. border-width:1px;
  446. border-style:solid;
  447. border-color:rgba(215, 215, 215, 1);
  448. border-radius:4px;
  449. -moz-box-shadow:none;
  450. -webkit-box-shadow:none;
  451. box-shadow:none;
  452. font-size:14px;
  453. }
  454. #u95582 {
  455. border-width:0px;
  456. position:absolute;
  457. left:136px;
  458. top:209px;
  459. width:140px;
  460. height:40px;
  461. display:flex;
  462. font-size:14px;
  463. }
  464. #u95582 .text {
  465. position:absolute;
  466. align-self:center;
  467. padding:2px 2px 2px 2px;
  468. box-sizing:border-box;
  469. width:100%;
  470. }
  471. #u95582_text {
  472. border-width:0px;
  473. word-wrap:break-word;
  474. text-transform:none;
  475. visibility:hidden;
  476. }
  477. #u95583_input {
  478. position:absolute;
  479. left:0px;
  480. top:0px;
  481. width:134px;
  482. height:31px;
  483. padding:2px 2px 2px 2px;
  484. font-family:'ArialMT', 'Arial', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:14px;
  488. letter-spacing:normal;
  489. color:#AAAAAA;
  490. vertical-align:none;
  491. text-align:left;
  492. text-transform:none;
  493. background-color:transparent;
  494. border-color:transparent;
  495. }
  496. #u95583_input.disabled {
  497. position:absolute;
  498. left:0px;
  499. top:0px;
  500. width:134px;
  501. height:31px;
  502. padding:2px 2px 2px 2px;
  503. font-family:'ArialMT', 'Arial', sans-serif;
  504. font-weight:400;
  505. font-style:normal;
  506. font-size:14px;
  507. letter-spacing:normal;
  508. color:#AAAAAA;
  509. vertical-align:none;
  510. text-align:left;
  511. text-transform:none;
  512. background-color:transparent;
  513. border-color:transparent;
  514. }
  515. #u95583_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:134px;
  521. height:31px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 1);
  524. border:none;
  525. border-radius:0px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-size:14px;
  530. color:#AAAAAA;
  531. }
  532. #u95583 {
  533. border-width:0px;
  534. position:absolute;
  535. left:140px;
  536. top:212px;
  537. width:134px;
  538. height:31px;
  539. display:flex;
  540. font-size:14px;
  541. color:#AAAAAA;
  542. }
  543. #u95583 .text {
  544. position:absolute;
  545. align-self:flex-start;
  546. padding:2px 2px 2px 2px;
  547. box-sizing:border-box;
  548. width:100%;
  549. }
  550. #u95583_div.disabled {
  551. border-width:0px;
  552. position:absolute;
  553. left:0px;
  554. top:0px;
  555. width:134px;
  556. height:31px;
  557. background:inherit;
  558. background-color:rgba(240, 240, 240, 1);
  559. border:none;
  560. border-radius:0px;
  561. -moz-box-shadow:none;
  562. -webkit-box-shadow:none;
  563. box-shadow:none;
  564. font-size:14px;
  565. color:#AAAAAA;
  566. }
  567. #u95583.disabled {
  568. }
  569. .u95583_input_option {
  570. font-size:14px;
  571. }
  572. #u95584 {
  573. border-width:0px;
  574. position:absolute;
  575. left:0px;
  576. top:0px;
  577. width:0px;
  578. height:0px;
  579. }
  580. #u95585_div {
  581. border-width:0px;
  582. position:absolute;
  583. left:0px;
  584. top:0px;
  585. width:120px;
  586. height:40px;
  587. background:inherit;
  588. background-color:rgba(255, 255, 255, 1);
  589. box-sizing:border-box;
  590. border-width:1px;
  591. border-style:solid;
  592. border-color:rgba(215, 215, 215, 1);
  593. border-radius:4px;
  594. -moz-box-shadow:none;
  595. -webkit-box-shadow:none;
  596. box-shadow:none;
  597. font-size:14px;
  598. }
  599. #u95585 {
  600. border-width:0px;
  601. position:absolute;
  602. left:286px;
  603. top:209px;
  604. width:120px;
  605. height:40px;
  606. display:flex;
  607. font-size:14px;
  608. }
  609. #u95585 .text {
  610. position:absolute;
  611. align-self:center;
  612. padding:2px 2px 2px 2px;
  613. box-sizing:border-box;
  614. width:100%;
  615. }
  616. #u95585_text {
  617. border-width:0px;
  618. word-wrap:break-word;
  619. text-transform:none;
  620. visibility:hidden;
  621. }
  622. #u95586_input {
  623. position:absolute;
  624. left:0px;
  625. top:0px;
  626. width:115px;
  627. height:31px;
  628. padding:2px 2px 2px 2px;
  629. font-family:'ArialMT', 'Arial', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:14px;
  633. letter-spacing:normal;
  634. color:#AAAAAA;
  635. vertical-align:none;
  636. text-align:left;
  637. text-transform:none;
  638. background-color:transparent;
  639. border-color:transparent;
  640. }
  641. #u95586_input.disabled {
  642. position:absolute;
  643. left:0px;
  644. top:0px;
  645. width:115px;
  646. height:31px;
  647. padding:2px 2px 2px 2px;
  648. font-family:'ArialMT', 'Arial', sans-serif;
  649. font-weight:400;
  650. font-style:normal;
  651. font-size:14px;
  652. letter-spacing:normal;
  653. color:#AAAAAA;
  654. vertical-align:none;
  655. text-align:left;
  656. text-transform:none;
  657. background-color:transparent;
  658. border-color:transparent;
  659. }
  660. #u95586_div {
  661. border-width:0px;
  662. position:absolute;
  663. left:0px;
  664. top:0px;
  665. width:115px;
  666. height:31px;
  667. background:inherit;
  668. background-color:rgba(255, 255, 255, 1);
  669. border:none;
  670. border-radius:0px;
  671. -moz-box-shadow:none;
  672. -webkit-box-shadow:none;
  673. box-shadow:none;
  674. font-size:14px;
  675. color:#AAAAAA;
  676. }
  677. #u95586 {
  678. border-width:0px;
  679. position:absolute;
  680. left:290px;
  681. top:212px;
  682. width:115px;
  683. height:31px;
  684. display:flex;
  685. font-size:14px;
  686. color:#AAAAAA;
  687. }
  688. #u95586 .text {
  689. position:absolute;
  690. align-self:flex-start;
  691. padding:2px 2px 2px 2px;
  692. box-sizing:border-box;
  693. width:100%;
  694. }
  695. #u95586_div.disabled {
  696. border-width:0px;
  697. position:absolute;
  698. left:0px;
  699. top:0px;
  700. width:115px;
  701. height:31px;
  702. background:inherit;
  703. background-color:rgba(240, 240, 240, 1);
  704. border:none;
  705. border-radius:0px;
  706. -moz-box-shadow:none;
  707. -webkit-box-shadow:none;
  708. box-shadow:none;
  709. font-size:14px;
  710. color:#AAAAAA;
  711. }
  712. #u95586.disabled {
  713. }
  714. .u95586_input_option {
  715. font-size:14px;
  716. }
  717. #u95587_div {
  718. border-width:0px;
  719. position:absolute;
  720. left:0px;
  721. top:0px;
  722. width:36px;
  723. height:40px;
  724. background:inherit;
  725. background-color:rgba(255, 255, 255, 0);
  726. border:none;
  727. border-left:0px;
  728. border-top:0px;
  729. border-right:0px;
  730. border-radius:0px;
  731. border-bottom-right-radius:0px;
  732. border-bottom-left-radius:0px;
  733. -moz-box-shadow:none;
  734. -webkit-box-shadow:none;
  735. box-shadow:none;
  736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  737. font-weight:400;
  738. font-style:normal;
  739. font-size:14px;
  740. }
  741. #u95587 {
  742. border-width:0px;
  743. position:absolute;
  744. left:336px;
  745. top:424px;
  746. width:36px;
  747. height:40px;
  748. display:flex;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:14px;
  753. }
  754. #u95587 .text {
  755. position:absolute;
  756. align-self:center;
  757. padding:0px 0px 0px 0px;
  758. box-sizing:border-box;
  759. width:100%;
  760. }
  761. #u95587_text {
  762. border-width:0px;
  763. white-space:nowrap;
  764. text-transform:none;
  765. }
  766. #u95588 {
  767. border-width:0px;
  768. position:absolute;
  769. left:0px;
  770. top:0px;
  771. width:0px;
  772. height:0px;
  773. }
  774. #u95589_div {
  775. border-width:0px;
  776. position:absolute;
  777. left:0px;
  778. top:0px;
  779. width:200px;
  780. height:40px;
  781. background:inherit;
  782. background-color:rgba(255, 255, 255, 1);
  783. box-sizing:border-box;
  784. border-width:1px;
  785. border-style:solid;
  786. border-color:rgba(201, 201, 201, 1);
  787. border-radius:4px;
  788. -moz-box-shadow:none;
  789. -webkit-box-shadow:none;
  790. box-shadow:none;
  791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  792. font-weight:400;
  793. font-style:normal;
  794. font-size:14px;
  795. text-align:right;
  796. }
  797. #u95589 {
  798. border-width:0px;
  799. position:absolute;
  800. left:566px;
  801. top:463px;
  802. width:200px;
  803. height:40px;
  804. display:flex;
  805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  806. font-weight:400;
  807. font-style:normal;
  808. font-size:14px;
  809. text-align:right;
  810. }
  811. #u95589 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 8px 2px 8px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u95589_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u95590_input {
  825. position:absolute;
  826. left:0px;
  827. top:0px;
  828. width:161px;
  829. height:33px;
  830. padding:2px 2px 2px 2px;
  831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  832. font-weight:400;
  833. font-style:normal;
  834. font-size:14px;
  835. letter-spacing:normal;
  836. color:#D7D7D7;
  837. vertical-align:none;
  838. text-align:left;
  839. text-transform:none;
  840. background-color:transparent;
  841. border-color:transparent;
  842. }
  843. #u95590_input.disabled {
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:161px;
  848. height:33px;
  849. padding:2px 2px 2px 2px;
  850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  851. font-weight:400;
  852. font-style:normal;
  853. font-size:14px;
  854. letter-spacing:normal;
  855. color:#D7D7D7;
  856. vertical-align:none;
  857. text-align:left;
  858. text-transform:none;
  859. background-color:transparent;
  860. border-color:transparent;
  861. }
  862. #u95590_div {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:161px;
  868. height:33px;
  869. background:inherit;
  870. background-color:rgba(255, 255, 255, 0);
  871. border:none;
  872. border-radius:0px;
  873. -moz-box-shadow:none;
  874. -webkit-box-shadow:none;
  875. box-shadow:none;
  876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  877. font-weight:400;
  878. font-style:normal;
  879. font-size:14px;
  880. color:#D7D7D7;
  881. }
  882. #u95590 {
  883. border-width:0px;
  884. position:absolute;
  885. left:574px;
  886. top:466px;
  887. width:161px;
  888. height:33px;
  889. display:flex;
  890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  891. font-weight:400;
  892. font-style:normal;
  893. font-size:14px;
  894. color:#D7D7D7;
  895. }
  896. #u95590 .text {
  897. position:absolute;
  898. align-self:center;
  899. padding:2px 2px 2px 2px;
  900. box-sizing:border-box;
  901. width:100%;
  902. }
  903. #u95590_div.disabled {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:161px;
  909. height:33px;
  910. background:inherit;
  911. background-color:rgba(240, 240, 240, 1);
  912. border:none;
  913. border-radius:0px;
  914. -moz-box-shadow:none;
  915. -webkit-box-shadow:none;
  916. box-shadow:none;
  917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  918. font-weight:400;
  919. font-style:normal;
  920. font-size:14px;
  921. color:#D7D7D7;
  922. }
  923. #u95590.disabled {
  924. }
  925. #u95591_div {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:50px;
  931. height:40px;
  932. background:inherit;
  933. background-color:rgba(255, 255, 255, 0);
  934. border:none;
  935. border-left:0px;
  936. border-top:0px;
  937. border-right:0px;
  938. border-radius:0px;
  939. border-bottom-right-radius:0px;
  940. border-bottom-left-radius:0px;
  941. -moz-box-shadow:none;
  942. -webkit-box-shadow:none;
  943. box-shadow:none;
  944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  945. font-weight:400;
  946. font-style:normal;
  947. font-size:14px;
  948. }
  949. #u95591 {
  950. border-width:0px;
  951. position:absolute;
  952. left:566px;
  953. top:424px;
  954. width:50px;
  955. height:40px;
  956. display:flex;
  957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  958. font-weight:400;
  959. font-style:normal;
  960. font-size:14px;
  961. }
  962. #u95591 .text {
  963. position:absolute;
  964. align-self:center;
  965. padding:0px 0px 0px 0px;
  966. box-sizing:border-box;
  967. width:100%;
  968. }
  969. #u95591_text {
  970. border-width:0px;
  971. white-space:nowrap;
  972. text-transform:none;
  973. }
  974. #u95592 {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:0px;
  980. height:0px;
  981. }
  982. #u95593_div {
  983. border-width:0px;
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:200px;
  988. height:40px;
  989. background:inherit;
  990. background-color:rgba(255, 255, 255, 1);
  991. box-sizing:border-box;
  992. border-width:1px;
  993. border-style:solid;
  994. border-color:rgba(201, 201, 201, 1);
  995. border-radius:4px;
  996. -moz-box-shadow:none;
  997. -webkit-box-shadow:none;
  998. box-shadow:none;
  999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1000. font-weight:400;
  1001. font-style:normal;
  1002. font-size:14px;
  1003. text-align:right;
  1004. }
  1005. #u95593 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:336px;
  1009. top:642px;
  1010. width:200px;
  1011. height:40px;
  1012. display:flex;
  1013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1014. font-weight:400;
  1015. font-style:normal;
  1016. font-size:14px;
  1017. text-align:right;
  1018. }
  1019. #u95593 .text {
  1020. position:absolute;
  1021. align-self:center;
  1022. padding:2px 8px 2px 8px;
  1023. box-sizing:border-box;
  1024. width:100%;
  1025. }
  1026. #u95593_text {
  1027. border-width:0px;
  1028. word-wrap:break-word;
  1029. text-transform:none;
  1030. visibility:hidden;
  1031. }
  1032. #u95594_input {
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:161px;
  1037. height:33px;
  1038. padding:2px 2px 2px 2px;
  1039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1040. font-weight:400;
  1041. font-style:normal;
  1042. font-size:14px;
  1043. letter-spacing:normal;
  1044. color:#D7D7D7;
  1045. vertical-align:none;
  1046. text-align:left;
  1047. text-transform:none;
  1048. background-color:transparent;
  1049. border-color:transparent;
  1050. }
  1051. #u95594_input.disabled {
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:161px;
  1056. height:33px;
  1057. padding:2px 2px 2px 2px;
  1058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1059. font-weight:400;
  1060. font-style:normal;
  1061. font-size:14px;
  1062. letter-spacing:normal;
  1063. color:#D7D7D7;
  1064. vertical-align:none;
  1065. text-align:left;
  1066. text-transform:none;
  1067. background-color:transparent;
  1068. border-color:transparent;
  1069. }
  1070. #u95594_div {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:161px;
  1076. height:33px;
  1077. background:inherit;
  1078. background-color:rgba(255, 255, 255, 0);
  1079. border:none;
  1080. border-radius:0px;
  1081. -moz-box-shadow:none;
  1082. -webkit-box-shadow:none;
  1083. box-shadow:none;
  1084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1085. font-weight:400;
  1086. font-style:normal;
  1087. font-size:14px;
  1088. color:#D7D7D7;
  1089. }
  1090. #u95594 {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:344px;
  1094. top:645px;
  1095. width:161px;
  1096. height:33px;
  1097. display:flex;
  1098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1099. font-weight:400;
  1100. font-style:normal;
  1101. font-size:14px;
  1102. color:#D7D7D7;
  1103. }
  1104. #u95594 .text {
  1105. position:absolute;
  1106. align-self:center;
  1107. padding:2px 2px 2px 2px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u95594_div.disabled {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:161px;
  1117. height:33px;
  1118. background:inherit;
  1119. background-color:rgba(240, 240, 240, 1);
  1120. border:none;
  1121. border-radius:0px;
  1122. -moz-box-shadow:none;
  1123. -webkit-box-shadow:none;
  1124. box-shadow:none;
  1125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1126. font-weight:400;
  1127. font-style:normal;
  1128. font-size:14px;
  1129. color:#D7D7D7;
  1130. }
  1131. #u95594.disabled {
  1132. }
  1133. #u95595_div {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:0px;
  1137. top:0px;
  1138. width:78px;
  1139. height:40px;
  1140. background:inherit;
  1141. background-color:rgba(255, 255, 255, 0);
  1142. border:none;
  1143. border-left:0px;
  1144. border-top:0px;
  1145. border-right:0px;
  1146. border-radius:0px;
  1147. border-bottom-right-radius:0px;
  1148. border-bottom-left-radius:0px;
  1149. -moz-box-shadow:none;
  1150. -webkit-box-shadow:none;
  1151. box-shadow:none;
  1152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1153. font-weight:400;
  1154. font-style:normal;
  1155. font-size:14px;
  1156. }
  1157. #u95595 {
  1158. border-width:0px;
  1159. position:absolute;
  1160. left:336px;
  1161. top:603px;
  1162. width:78px;
  1163. height:40px;
  1164. display:flex;
  1165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1166. font-weight:400;
  1167. font-style:normal;
  1168. font-size:14px;
  1169. }
  1170. #u95595 .text {
  1171. position:absolute;
  1172. align-self:center;
  1173. padding:0px 0px 0px 0px;
  1174. box-sizing:border-box;
  1175. width:100%;
  1176. }
  1177. #u95595_text {
  1178. border-width:0px;
  1179. white-space:nowrap;
  1180. text-transform:none;
  1181. }
  1182. #u95596_div {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:0px;
  1186. top:0px;
  1187. width:64px;
  1188. height:40px;
  1189. background:inherit;
  1190. background-color:rgba(255, 255, 255, 0);
  1191. border:none;
  1192. border-left:0px;
  1193. border-top:0px;
  1194. border-right:0px;
  1195. border-radius:0px;
  1196. border-bottom-right-radius:0px;
  1197. border-bottom-left-radius:0px;
  1198. -moz-box-shadow:none;
  1199. -webkit-box-shadow:none;
  1200. box-shadow:none;
  1201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1202. font-weight:400;
  1203. font-style:normal;
  1204. font-size:14px;
  1205. }
  1206. #u95596 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:136px;
  1210. top:519px;
  1211. width:64px;
  1212. height:40px;
  1213. display:flex;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. font-size:14px;
  1218. }
  1219. #u95596 .text {
  1220. position:absolute;
  1221. align-self:center;
  1222. padding:0px 0px 0px 0px;
  1223. box-sizing:border-box;
  1224. width:100%;
  1225. }
  1226. #u95596_text {
  1227. border-width:0px;
  1228. white-space:nowrap;
  1229. text-transform:none;
  1230. }
  1231. #u95597_div {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:120px;
  1237. height:120px;
  1238. background:inherit;
  1239. background-color:rgba(255, 255, 255, 1);
  1240. box-sizing:border-box;
  1241. border-width:1px;
  1242. border-style:solid;
  1243. border-color:rgba(201, 201, 201, 1);
  1244. border-radius:4px;
  1245. -moz-box-shadow:none;
  1246. -webkit-box-shadow:none;
  1247. box-shadow:none;
  1248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1249. font-weight:400;
  1250. font-style:normal;
  1251. font-size:38px;
  1252. }
  1253. #u95597 {
  1254. border-width:0px;
  1255. position:absolute;
  1256. left:136px;
  1257. top:559px;
  1258. width:120px;
  1259. height:120px;
  1260. display:flex;
  1261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1262. font-weight:400;
  1263. font-style:normal;
  1264. font-size:38px;
  1265. }
  1266. #u95597 .text {
  1267. position:absolute;
  1268. align-self:center;
  1269. padding:2px 8px 2px 8px;
  1270. box-sizing:border-box;
  1271. width:100%;
  1272. }
  1273. #u95597_text {
  1274. border-width:0px;
  1275. word-wrap:break-word;
  1276. text-transform:none;
  1277. }
  1278. #u95598_div {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:71px;
  1284. height:40px;
  1285. background:inherit;
  1286. background-color:rgba(255, 255, 255, 0);
  1287. border:none;
  1288. border-left:0px;
  1289. border-top:0px;
  1290. border-right:0px;
  1291. border-radius:0px;
  1292. border-bottom-right-radius:0px;
  1293. border-bottom-left-radius:0px;
  1294. -moz-box-shadow:none;
  1295. -webkit-box-shadow:none;
  1296. box-shadow:none;
  1297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1298. font-weight:400;
  1299. font-style:normal;
  1300. font-size:14px;
  1301. }
  1302. #u95598 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:336px;
  1306. top:692px;
  1307. width:71px;
  1308. height:40px;
  1309. display:flex;
  1310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1311. font-weight:400;
  1312. font-style:normal;
  1313. font-size:14px;
  1314. }
  1315. #u95598 .text {
  1316. position:absolute;
  1317. align-self:center;
  1318. padding:0px 0px 0px 0px;
  1319. box-sizing:border-box;
  1320. width:100%;
  1321. }
  1322. #u95598_text {
  1323. border-width:0px;
  1324. white-space:nowrap;
  1325. text-transform:none;
  1326. }
  1327. #u95599 {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:0px;
  1333. height:0px;
  1334. }
  1335. #u95600_div {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:200px;
  1341. height:40px;
  1342. background:inherit;
  1343. background-color:rgba(255, 255, 255, 1);
  1344. box-sizing:border-box;
  1345. border-width:1px;
  1346. border-style:solid;
  1347. border-color:rgba(201, 201, 201, 1);
  1348. border-radius:4px;
  1349. -moz-box-shadow:none;
  1350. -webkit-box-shadow:none;
  1351. box-shadow:none;
  1352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1353. font-weight:400;
  1354. font-style:normal;
  1355. font-size:14px;
  1356. text-align:right;
  1357. }
  1358. #u95600 {
  1359. border-width:0px;
  1360. position:absolute;
  1361. left:566px;
  1362. top:731px;
  1363. width:200px;
  1364. height:40px;
  1365. display:flex;
  1366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1367. font-weight:400;
  1368. font-style:normal;
  1369. font-size:14px;
  1370. text-align:right;
  1371. }
  1372. #u95600 .text {
  1373. position:absolute;
  1374. align-self:center;
  1375. padding:2px 8px 2px 8px;
  1376. box-sizing:border-box;
  1377. width:100%;
  1378. }
  1379. #u95600_text {
  1380. border-width:0px;
  1381. word-wrap:break-word;
  1382. text-transform:none;
  1383. visibility:hidden;
  1384. }
  1385. #u95601_input {
  1386. position:absolute;
  1387. left:0px;
  1388. top:0px;
  1389. width:161px;
  1390. height:33px;
  1391. padding:2px 2px 2px 2px;
  1392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1393. font-weight:400;
  1394. font-style:normal;
  1395. font-size:14px;
  1396. letter-spacing:normal;
  1397. color:#D7D7D7;
  1398. vertical-align:none;
  1399. text-align:left;
  1400. text-transform:none;
  1401. background-color:transparent;
  1402. border-color:transparent;
  1403. }
  1404. #u95601_input.disabled {
  1405. position:absolute;
  1406. left:0px;
  1407. top:0px;
  1408. width:161px;
  1409. height:33px;
  1410. padding:2px 2px 2px 2px;
  1411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1412. font-weight:400;
  1413. font-style:normal;
  1414. font-size:14px;
  1415. letter-spacing:normal;
  1416. color:#D7D7D7;
  1417. vertical-align:none;
  1418. text-align:left;
  1419. text-transform:none;
  1420. background-color:transparent;
  1421. border-color:transparent;
  1422. }
  1423. #u95601_div {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:161px;
  1429. height:33px;
  1430. background:inherit;
  1431. background-color:rgba(255, 255, 255, 0);
  1432. border:none;
  1433. border-radius:0px;
  1434. -moz-box-shadow:none;
  1435. -webkit-box-shadow:none;
  1436. box-shadow:none;
  1437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1438. font-weight:400;
  1439. font-style:normal;
  1440. font-size:14px;
  1441. color:#D7D7D7;
  1442. }
  1443. #u95601 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:574px;
  1447. top:734px;
  1448. width:161px;
  1449. height:33px;
  1450. display:flex;
  1451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1452. font-weight:400;
  1453. font-style:normal;
  1454. font-size:14px;
  1455. color:#D7D7D7;
  1456. }
  1457. #u95601 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u95601_div.disabled {
  1465. border-width:0px;
  1466. position:absolute;
  1467. left:0px;
  1468. top:0px;
  1469. width:161px;
  1470. height:33px;
  1471. background:inherit;
  1472. background-color:rgba(240, 240, 240, 1);
  1473. border:none;
  1474. border-radius:0px;
  1475. -moz-box-shadow:none;
  1476. -webkit-box-shadow:none;
  1477. box-shadow:none;
  1478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1479. font-weight:400;
  1480. font-style:normal;
  1481. font-size:14px;
  1482. color:#D7D7D7;
  1483. }
  1484. #u95601.disabled {
  1485. }
  1486. #u95602_div {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:0px;
  1490. top:0px;
  1491. width:85px;
  1492. height:40px;
  1493. background:inherit;
  1494. background-color:rgba(255, 255, 255, 0);
  1495. border:none;
  1496. border-left:0px;
  1497. border-top:0px;
  1498. border-right:0px;
  1499. border-radius:0px;
  1500. border-bottom-right-radius:0px;
  1501. border-bottom-left-radius:0px;
  1502. -moz-box-shadow:none;
  1503. -webkit-box-shadow:none;
  1504. box-shadow:none;
  1505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1506. font-weight:400;
  1507. font-style:normal;
  1508. font-size:14px;
  1509. }
  1510. #u95602 {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:566px;
  1514. top:692px;
  1515. width:85px;
  1516. height:40px;
  1517. display:flex;
  1518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1519. font-weight:400;
  1520. font-style:normal;
  1521. font-size:14px;
  1522. }
  1523. #u95602 .text {
  1524. position:absolute;
  1525. align-self:center;
  1526. padding:0px 0px 0px 0px;
  1527. box-sizing:border-box;
  1528. width:100%;
  1529. }
  1530. #u95602_text {
  1531. border-width:0px;
  1532. white-space:nowrap;
  1533. text-transform:none;
  1534. }
  1535. #u95603 {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:0px;
  1541. height:0px;
  1542. }
  1543. #u95604_div {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:200px;
  1549. height:40px;
  1550. background:inherit;
  1551. background-color:rgba(255, 255, 255, 1);
  1552. box-sizing:border-box;
  1553. border-width:1px;
  1554. border-style:solid;
  1555. border-color:rgba(201, 201, 201, 1);
  1556. border-radius:4px;
  1557. -moz-box-shadow:none;
  1558. -webkit-box-shadow:none;
  1559. box-shadow:none;
  1560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1561. font-weight:400;
  1562. font-style:normal;
  1563. font-size:14px;
  1564. text-align:right;
  1565. }
  1566. #u95604 {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:336px;
  1570. top:732px;
  1571. width:200px;
  1572. height:40px;
  1573. display:flex;
  1574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1575. font-weight:400;
  1576. font-style:normal;
  1577. font-size:14px;
  1578. text-align:right;
  1579. }
  1580. #u95604 .text {
  1581. position:absolute;
  1582. align-self:center;
  1583. padding:2px 8px 2px 8px;
  1584. box-sizing:border-box;
  1585. width:100%;
  1586. }
  1587. #u95604_text {
  1588. border-width:0px;
  1589. word-wrap:break-word;
  1590. text-transform:none;
  1591. visibility:hidden;
  1592. }
  1593. #u95605_input {
  1594. position:absolute;
  1595. left:0px;
  1596. top:0px;
  1597. width:161px;
  1598. height:33px;
  1599. padding:2px 2px 2px 2px;
  1600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1601. font-weight:400;
  1602. font-style:normal;
  1603. font-size:14px;
  1604. letter-spacing:normal;
  1605. color:#D7D7D7;
  1606. vertical-align:none;
  1607. text-align:left;
  1608. text-transform:none;
  1609. background-color:transparent;
  1610. border-color:transparent;
  1611. }
  1612. #u95605_input.disabled {
  1613. position:absolute;
  1614. left:0px;
  1615. top:0px;
  1616. width:161px;
  1617. height:33px;
  1618. padding:2px 2px 2px 2px;
  1619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1620. font-weight:400;
  1621. font-style:normal;
  1622. font-size:14px;
  1623. letter-spacing:normal;
  1624. color:#D7D7D7;
  1625. vertical-align:none;
  1626. text-align:left;
  1627. text-transform:none;
  1628. background-color:transparent;
  1629. border-color:transparent;
  1630. }
  1631. #u95605_div {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:0px;
  1635. top:0px;
  1636. width:161px;
  1637. height:33px;
  1638. background:inherit;
  1639. background-color:rgba(255, 255, 255, 0);
  1640. border:none;
  1641. border-radius:0px;
  1642. -moz-box-shadow:none;
  1643. -webkit-box-shadow:none;
  1644. box-shadow:none;
  1645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1646. font-weight:400;
  1647. font-style:normal;
  1648. font-size:14px;
  1649. color:#D7D7D7;
  1650. }
  1651. #u95605 {
  1652. border-width:0px;
  1653. position:absolute;
  1654. left:344px;
  1655. top:735px;
  1656. width:161px;
  1657. height:33px;
  1658. display:flex;
  1659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1660. font-weight:400;
  1661. font-style:normal;
  1662. font-size:14px;
  1663. color:#D7D7D7;
  1664. }
  1665. #u95605 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u95605_div.disabled {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:161px;
  1678. height:33px;
  1679. background:inherit;
  1680. background-color:rgba(240, 240, 240, 1);
  1681. border:none;
  1682. border-radius:0px;
  1683. -moz-box-shadow:none;
  1684. -webkit-box-shadow:none;
  1685. box-shadow:none;
  1686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1687. font-weight:400;
  1688. font-style:normal;
  1689. font-size:14px;
  1690. color:#D7D7D7;
  1691. }
  1692. #u95605.disabled {
  1693. }
  1694. #u95606_div {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:36px;
  1700. height:40px;
  1701. background:inherit;
  1702. background-color:rgba(255, 255, 255, 0);
  1703. border:none;
  1704. border-left:0px;
  1705. border-top:0px;
  1706. border-right:0px;
  1707. border-radius:0px;
  1708. border-bottom-right-radius:0px;
  1709. border-bottom-left-radius:0px;
  1710. -moz-box-shadow:none;
  1711. -webkit-box-shadow:none;
  1712. box-shadow:none;
  1713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1714. font-weight:400;
  1715. font-style:normal;
  1716. font-size:14px;
  1717. }
  1718. #u95606 {
  1719. border-width:0px;
  1720. position:absolute;
  1721. left:336px;
  1722. top:513px;
  1723. width:36px;
  1724. height:40px;
  1725. display:flex;
  1726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1727. font-weight:400;
  1728. font-style:normal;
  1729. font-size:14px;
  1730. }
  1731. #u95606 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:0px 0px 0px 0px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u95606_text {
  1739. border-width:0px;
  1740. white-space:nowrap;
  1741. text-transform:none;
  1742. }
  1743. #u95607 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:0px;
  1747. top:0px;
  1748. width:0px;
  1749. height:0px;
  1750. }
  1751. #u95608_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:200px;
  1757. height:40px;
  1758. background:inherit;
  1759. background-color:rgba(255, 255, 255, 1);
  1760. box-sizing:border-box;
  1761. border-width:1px;
  1762. border-style:solid;
  1763. border-color:rgba(215, 215, 215, 1);
  1764. border-radius:4px;
  1765. -moz-box-shadow:none;
  1766. -webkit-box-shadow:none;
  1767. box-shadow:none;
  1768. font-size:14px;
  1769. }
  1770. #u95608 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:336px;
  1774. top:553px;
  1775. width:200px;
  1776. height:40px;
  1777. display:flex;
  1778. font-size:14px;
  1779. }
  1780. #u95608 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 2px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u95608_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. visibility:hidden;
  1792. }
  1793. #u95609_input {
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:191px;
  1798. height:31px;
  1799. padding:2px 2px 2px 2px;
  1800. font-family:'ArialMT', 'Arial', sans-serif;
  1801. font-weight:400;
  1802. font-style:normal;
  1803. font-size:14px;
  1804. letter-spacing:normal;
  1805. color:#AAAAAA;
  1806. vertical-align:none;
  1807. text-align:left;
  1808. text-transform:none;
  1809. background-color:transparent;
  1810. border-color:transparent;
  1811. }
  1812. #u95609_input.disabled {
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:191px;
  1817. height:31px;
  1818. padding:2px 2px 2px 2px;
  1819. font-family:'ArialMT', 'Arial', sans-serif;
  1820. font-weight:400;
  1821. font-style:normal;
  1822. font-size:14px;
  1823. letter-spacing:normal;
  1824. color:#AAAAAA;
  1825. vertical-align:none;
  1826. text-align:left;
  1827. text-transform:none;
  1828. background-color:transparent;
  1829. border-color:transparent;
  1830. }
  1831. #u95609_div {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:191px;
  1837. height:31px;
  1838. background:inherit;
  1839. background-color:rgba(255, 255, 255, 1);
  1840. border:none;
  1841. border-radius:0px;
  1842. -moz-box-shadow:none;
  1843. -webkit-box-shadow:none;
  1844. box-shadow:none;
  1845. font-size:14px;
  1846. color:#AAAAAA;
  1847. }
  1848. #u95609 {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:342px;
  1852. top:556px;
  1853. width:191px;
  1854. height:31px;
  1855. display:flex;
  1856. font-size:14px;
  1857. color:#AAAAAA;
  1858. }
  1859. #u95609 .text {
  1860. position:absolute;
  1861. align-self:flex-start;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u95609_div.disabled {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:191px;
  1872. height:31px;
  1873. background:inherit;
  1874. background-color:rgba(240, 240, 240, 1);
  1875. border:none;
  1876. border-radius:0px;
  1877. -moz-box-shadow:none;
  1878. -webkit-box-shadow:none;
  1879. box-shadow:none;
  1880. font-size:14px;
  1881. color:#AAAAAA;
  1882. }
  1883. #u95609.disabled {
  1884. }
  1885. .u95609_input_option {
  1886. font-size:14px;
  1887. }
  1888. #u95610 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:0px;
  1894. height:0px;
  1895. }
  1896. #u95611_div {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:200px;
  1902. height:40px;
  1903. background:inherit;
  1904. background-color:rgba(255, 255, 255, 1);
  1905. box-sizing:border-box;
  1906. border-width:1px;
  1907. border-style:solid;
  1908. border-color:rgba(201, 201, 201, 1);
  1909. border-radius:4px;
  1910. -moz-box-shadow:none;
  1911. -webkit-box-shadow:none;
  1912. box-shadow:none;
  1913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1914. font-weight:400;
  1915. font-style:normal;
  1916. font-size:14px;
  1917. text-align:right;
  1918. }
  1919. #u95611 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:566px;
  1923. top:642px;
  1924. width:200px;
  1925. height:40px;
  1926. display:flex;
  1927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. font-size:14px;
  1931. text-align:right;
  1932. }
  1933. #u95611 .text {
  1934. position:absolute;
  1935. align-self:center;
  1936. padding:2px 8px 2px 8px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u95611_text {
  1941. border-width:0px;
  1942. word-wrap:break-word;
  1943. text-transform:none;
  1944. visibility:hidden;
  1945. }
  1946. #u95612_input {
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:161px;
  1951. height:33px;
  1952. padding:2px 2px 2px 2px;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:14px;
  1957. letter-spacing:normal;
  1958. color:#D7D7D7;
  1959. vertical-align:none;
  1960. text-align:left;
  1961. text-transform:none;
  1962. background-color:transparent;
  1963. border-color:transparent;
  1964. }
  1965. #u95612_input.disabled {
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:161px;
  1970. height:33px;
  1971. padding:2px 2px 2px 2px;
  1972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1973. font-weight:400;
  1974. font-style:normal;
  1975. font-size:14px;
  1976. letter-spacing:normal;
  1977. color:#D7D7D7;
  1978. vertical-align:none;
  1979. text-align:left;
  1980. text-transform:none;
  1981. background-color:transparent;
  1982. border-color:transparent;
  1983. }
  1984. #u95612_div {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:161px;
  1990. height:33px;
  1991. background:inherit;
  1992. background-color:rgba(255, 255, 255, 0);
  1993. border:none;
  1994. border-radius:0px;
  1995. -moz-box-shadow:none;
  1996. -webkit-box-shadow:none;
  1997. box-shadow:none;
  1998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. font-size:14px;
  2002. color:#D7D7D7;
  2003. }
  2004. #u95612 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:574px;
  2008. top:645px;
  2009. width:161px;
  2010. height:33px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:14px;
  2016. color:#D7D7D7;
  2017. }
  2018. #u95612 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u95612_div.disabled {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:161px;
  2031. height:33px;
  2032. background:inherit;
  2033. background-color:rgba(240, 240, 240, 1);
  2034. border:none;
  2035. border-radius:0px;
  2036. -moz-box-shadow:none;
  2037. -webkit-box-shadow:none;
  2038. box-shadow:none;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:14px;
  2043. color:#D7D7D7;
  2044. }
  2045. #u95612.disabled {
  2046. }
  2047. #u95613_div {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:78px;
  2053. height:40px;
  2054. background:inherit;
  2055. background-color:rgba(255, 255, 255, 0);
  2056. border:none;
  2057. border-left:0px;
  2058. border-top:0px;
  2059. border-right:0px;
  2060. border-radius:0px;
  2061. border-bottom-right-radius:0px;
  2062. border-bottom-left-radius:0px;
  2063. -moz-box-shadow:none;
  2064. -webkit-box-shadow:none;
  2065. box-shadow:none;
  2066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2067. font-weight:400;
  2068. font-style:normal;
  2069. font-size:14px;
  2070. }
  2071. #u95613 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:566px;
  2075. top:603px;
  2076. width:78px;
  2077. height:40px;
  2078. display:flex;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:14px;
  2083. }
  2084. #u95613 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:0px 0px 0px 0px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u95613_text {
  2092. border-width:0px;
  2093. white-space:nowrap;
  2094. text-transform:none;
  2095. }
  2096. #u95614_div {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:57px;
  2102. height:40px;
  2103. background:inherit;
  2104. background-color:rgba(255, 255, 255, 0);
  2105. border:none;
  2106. border-left:0px;
  2107. border-top:0px;
  2108. border-right:0px;
  2109. border-radius:0px;
  2110. border-bottom-right-radius:0px;
  2111. border-bottom-left-radius:0px;
  2112. -moz-box-shadow:none;
  2113. -webkit-box-shadow:none;
  2114. box-shadow:none;
  2115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2116. font-weight:400;
  2117. font-style:normal;
  2118. font-size:14px;
  2119. }
  2120. #u95614 {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:136px;
  2124. top:339px;
  2125. width:57px;
  2126. height:40px;
  2127. display:flex;
  2128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2129. font-weight:400;
  2130. font-style:normal;
  2131. font-size:14px;
  2132. }
  2133. #u95614 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:0px 0px 0px 0px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u95614_text {
  2141. border-width:0px;
  2142. white-space:nowrap;
  2143. text-transform:none;
  2144. }
  2145. #u95615_div {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:120px;
  2151. height:120px;
  2152. background:inherit;
  2153. background-color:rgba(255, 255, 255, 1);
  2154. box-sizing:border-box;
  2155. border-width:1px;
  2156. border-style:solid;
  2157. border-color:rgba(201, 201, 201, 1);
  2158. border-radius:4px;
  2159. -moz-box-shadow:none;
  2160. -webkit-box-shadow:none;
  2161. box-shadow:none;
  2162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2163. font-weight:400;
  2164. font-style:normal;
  2165. font-size:38px;
  2166. }
  2167. #u95615 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:136px;
  2171. top:379px;
  2172. width:120px;
  2173. height:120px;
  2174. display:flex;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:38px;
  2179. }
  2180. #u95615 .text {
  2181. position:absolute;
  2182. align-self:center;
  2183. padding:2px 8px 2px 8px;
  2184. box-sizing:border-box;
  2185. width:100%;
  2186. }
  2187. #u95615_text {
  2188. border-width:0px;
  2189. word-wrap:break-word;
  2190. text-transform:none;
  2191. }
  2192. #u95616 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:0px;
  2198. height:0px;
  2199. }
  2200. #u95617_div {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:120px;
  2206. height:40px;
  2207. background:inherit;
  2208. background-color:rgba(255, 255, 255, 1);
  2209. box-sizing:border-box;
  2210. border-width:1px;
  2211. border-style:solid;
  2212. border-color:rgba(215, 215, 215, 1);
  2213. border-radius:4px;
  2214. -moz-box-shadow:none;
  2215. -webkit-box-shadow:none;
  2216. box-shadow:none;
  2217. font-size:14px;
  2218. }
  2219. #u95617 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:416px;
  2223. top:209px;
  2224. width:120px;
  2225. height:40px;
  2226. display:flex;
  2227. font-size:14px;
  2228. }
  2229. #u95617 .text {
  2230. position:absolute;
  2231. align-self:center;
  2232. padding:2px 2px 2px 2px;
  2233. box-sizing:border-box;
  2234. width:100%;
  2235. }
  2236. #u95617_text {
  2237. border-width:0px;
  2238. word-wrap:break-word;
  2239. text-transform:none;
  2240. visibility:hidden;
  2241. }
  2242. #u95618_input {
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:115px;
  2247. height:31px;
  2248. padding:2px 2px 2px 2px;
  2249. font-family:'ArialMT', 'Arial', sans-serif;
  2250. font-weight:400;
  2251. font-style:normal;
  2252. font-size:14px;
  2253. letter-spacing:normal;
  2254. color:#AAAAAA;
  2255. vertical-align:none;
  2256. text-align:left;
  2257. text-transform:none;
  2258. background-color:transparent;
  2259. border-color:transparent;
  2260. }
  2261. #u95618_input.disabled {
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:115px;
  2266. height:31px;
  2267. padding:2px 2px 2px 2px;
  2268. font-family:'ArialMT', 'Arial', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:14px;
  2272. letter-spacing:normal;
  2273. color:#AAAAAA;
  2274. vertical-align:none;
  2275. text-align:left;
  2276. text-transform:none;
  2277. background-color:transparent;
  2278. border-color:transparent;
  2279. }
  2280. #u95618_div {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:115px;
  2286. height:31px;
  2287. background:inherit;
  2288. background-color:rgba(255, 255, 255, 1);
  2289. border:none;
  2290. border-radius:0px;
  2291. -moz-box-shadow:none;
  2292. -webkit-box-shadow:none;
  2293. box-shadow:none;
  2294. font-size:14px;
  2295. color:#AAAAAA;
  2296. }
  2297. #u95618 {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:420px;
  2301. top:212px;
  2302. width:115px;
  2303. height:31px;
  2304. display:flex;
  2305. font-size:14px;
  2306. color:#AAAAAA;
  2307. }
  2308. #u95618 .text {
  2309. position:absolute;
  2310. align-self:flex-start;
  2311. padding:2px 2px 2px 2px;
  2312. box-sizing:border-box;
  2313. width:100%;
  2314. }
  2315. #u95618_div.disabled {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:115px;
  2321. height:31px;
  2322. background:inherit;
  2323. background-color:rgba(240, 240, 240, 1);
  2324. border:none;
  2325. border-radius:0px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  2329. font-size:14px;
  2330. color:#AAAAAA;
  2331. }
  2332. #u95618.disabled {
  2333. }
  2334. .u95618_input_option {
  2335. font-size:14px;
  2336. }
  2337. #u95619 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:0px;
  2341. top:0px;
  2342. width:0px;
  2343. height:0px;
  2344. }
  2345. #u95620_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:120px;
  2351. height:40px;
  2352. background:inherit;
  2353. background-color:rgba(255, 255, 255, 1);
  2354. box-sizing:border-box;
  2355. border-width:1px;
  2356. border-style:solid;
  2357. border-color:rgba(215, 215, 215, 1);
  2358. border-radius:4px;
  2359. -moz-box-shadow:none;
  2360. -webkit-box-shadow:none;
  2361. box-shadow:none;
  2362. font-size:14px;
  2363. }
  2364. #u95620 {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:546px;
  2368. top:209px;
  2369. width:120px;
  2370. height:40px;
  2371. display:flex;
  2372. font-size:14px;
  2373. }
  2374. #u95620 .text {
  2375. position:absolute;
  2376. align-self:center;
  2377. padding:2px 2px 2px 2px;
  2378. box-sizing:border-box;
  2379. width:100%;
  2380. }
  2381. #u95620_text {
  2382. border-width:0px;
  2383. word-wrap:break-word;
  2384. text-transform:none;
  2385. visibility:hidden;
  2386. }
  2387. #u95621_input {
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:115px;
  2392. height:31px;
  2393. padding:2px 2px 2px 2px;
  2394. font-family:'ArialMT', 'Arial', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:14px;
  2398. letter-spacing:normal;
  2399. color:#AAAAAA;
  2400. vertical-align:none;
  2401. text-align:left;
  2402. text-transform:none;
  2403. background-color:transparent;
  2404. border-color:transparent;
  2405. }
  2406. #u95621_input.disabled {
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:115px;
  2411. height:31px;
  2412. padding:2px 2px 2px 2px;
  2413. font-family:'ArialMT', 'Arial', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:14px;
  2417. letter-spacing:normal;
  2418. color:#AAAAAA;
  2419. vertical-align:none;
  2420. text-align:left;
  2421. text-transform:none;
  2422. background-color:transparent;
  2423. border-color:transparent;
  2424. }
  2425. #u95621_div {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:115px;
  2431. height:31px;
  2432. background:inherit;
  2433. background-color:rgba(255, 255, 255, 1);
  2434. border:none;
  2435. border-radius:0px;
  2436. -moz-box-shadow:none;
  2437. -webkit-box-shadow:none;
  2438. box-shadow:none;
  2439. font-size:14px;
  2440. color:#AAAAAA;
  2441. }
  2442. #u95621 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:550px;
  2446. top:212px;
  2447. width:115px;
  2448. height:31px;
  2449. display:flex;
  2450. font-size:14px;
  2451. color:#AAAAAA;
  2452. }
  2453. #u95621 .text {
  2454. position:absolute;
  2455. align-self:flex-start;
  2456. padding:2px 2px 2px 2px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u95621_div.disabled {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:0px;
  2464. top:0px;
  2465. width:115px;
  2466. height:31px;
  2467. background:inherit;
  2468. background-color:rgba(240, 240, 240, 1);
  2469. border:none;
  2470. border-radius:0px;
  2471. -moz-box-shadow:none;
  2472. -webkit-box-shadow:none;
  2473. box-shadow:none;
  2474. font-size:14px;
  2475. color:#AAAAAA;
  2476. }
  2477. #u95621.disabled {
  2478. }
  2479. .u95621_input_option {
  2480. font-size:14px;
  2481. }
  2482. #u95622_div {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:73px;
  2488. height:40px;
  2489. background:inherit;
  2490. background-color:rgba(255, 255, 255, 0);
  2491. border:none;
  2492. border-left:0px;
  2493. border-top:0px;
  2494. border-right:0px;
  2495. border-radius:0px;
  2496. border-bottom-right-radius:0px;
  2497. border-bottom-left-radius:0px;
  2498. -moz-box-shadow:none;
  2499. -webkit-box-shadow:none;
  2500. box-shadow:none;
  2501. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2502. font-weight:500;
  2503. font-style:normal;
  2504. font-size:18px;
  2505. }
  2506. #u95622 {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:136px;
  2510. top:279px;
  2511. width:73px;
  2512. height:40px;
  2513. display:flex;
  2514. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2515. font-weight:500;
  2516. font-style:normal;
  2517. font-size:18px;
  2518. }
  2519. #u95622 .text {
  2520. position:absolute;
  2521. align-self:center;
  2522. padding:0px 0px 0px 0px;
  2523. box-sizing:border-box;
  2524. width:100%;
  2525. }
  2526. #u95622_text {
  2527. border-width:0px;
  2528. white-space:nowrap;
  2529. text-transform:none;
  2530. }
  2531. #u95623_div {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:0px;
  2535. top:0px;
  2536. width:64px;
  2537. height:40px;
  2538. background:inherit;
  2539. background-color:rgba(255, 255, 255, 0);
  2540. border:none;
  2541. border-left:0px;
  2542. border-top:0px;
  2543. border-right:0px;
  2544. border-radius:0px;
  2545. border-bottom-right-radius:0px;
  2546. border-bottom-left-radius:0px;
  2547. -moz-box-shadow:none;
  2548. -webkit-box-shadow:none;
  2549. box-shadow:none;
  2550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2551. font-weight:400;
  2552. font-style:normal;
  2553. font-size:14px;
  2554. }
  2555. #u95623 {
  2556. border-width:0px;
  2557. position:absolute;
  2558. left:336px;
  2559. top:339px;
  2560. width:64px;
  2561. height:40px;
  2562. display:flex;
  2563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2564. font-weight:400;
  2565. font-style:normal;
  2566. font-size:14px;
  2567. }
  2568. #u95623 .text {
  2569. position:absolute;
  2570. align-self:center;
  2571. padding:0px 0px 0px 0px;
  2572. box-sizing:border-box;
  2573. width:100%;
  2574. }
  2575. #u95623_text {
  2576. border-width:0px;
  2577. white-space:nowrap;
  2578. text-transform:none;
  2579. }
  2580. #u95624 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:0px;
  2586. height:0px;
  2587. }
  2588. #u95625_div {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:120px;
  2594. height:40px;
  2595. background:inherit;
  2596. background-color:rgba(242, 242, 242, 1);
  2597. box-sizing:border-box;
  2598. border-width:1px;
  2599. border-style:solid;
  2600. border-color:rgba(215, 215, 215, 1);
  2601. border-radius:4px;
  2602. -moz-box-shadow:none;
  2603. -webkit-box-shadow:none;
  2604. box-shadow:none;
  2605. font-size:14px;
  2606. }
  2607. #u95625 {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:676px;
  2611. top:208px;
  2612. width:120px;
  2613. height:40px;
  2614. display:flex;
  2615. font-size:14px;
  2616. }
  2617. #u95625 .text {
  2618. position:absolute;
  2619. align-self:center;
  2620. padding:2px 2px 2px 2px;
  2621. box-sizing:border-box;
  2622. width:100%;
  2623. }
  2624. #u95625_text {
  2625. border-width:0px;
  2626. word-wrap:break-word;
  2627. text-transform:none;
  2628. visibility:hidden;
  2629. }
  2630. #u95626_input {
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:115px;
  2635. height:31px;
  2636. padding:2px 2px 2px 2px;
  2637. font-family:'ArialMT', 'Arial', sans-serif;
  2638. font-weight:400;
  2639. font-style:normal;
  2640. font-size:14px;
  2641. letter-spacing:normal;
  2642. color:#AAAAAA;
  2643. vertical-align:none;
  2644. text-align:left;
  2645. text-transform:none;
  2646. background-color:transparent;
  2647. border-color:transparent;
  2648. }
  2649. #u95626_input.disabled {
  2650. position:absolute;
  2651. left:0px;
  2652. top:0px;
  2653. width:115px;
  2654. height:31px;
  2655. padding:2px 2px 2px 2px;
  2656. font-family:'ArialMT', 'Arial', sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. font-size:14px;
  2660. letter-spacing:normal;
  2661. color:#AAAAAA;
  2662. vertical-align:none;
  2663. text-align:left;
  2664. text-transform:none;
  2665. background-color:transparent;
  2666. border-color:transparent;
  2667. }
  2668. #u95626_div {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:0px;
  2672. top:0px;
  2673. width:115px;
  2674. height:31px;
  2675. background:inherit;
  2676. background-color:rgba(242, 242, 242, 1);
  2677. border:none;
  2678. border-radius:0px;
  2679. -moz-box-shadow:none;
  2680. -webkit-box-shadow:none;
  2681. box-shadow:none;
  2682. font-size:14px;
  2683. color:#AAAAAA;
  2684. }
  2685. #u95626 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:680px;
  2689. top:211px;
  2690. width:115px;
  2691. height:31px;
  2692. display:flex;
  2693. font-size:14px;
  2694. color:#AAAAAA;
  2695. }
  2696. #u95626 .text {
  2697. position:absolute;
  2698. align-self:flex-start;
  2699. padding:2px 2px 2px 2px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u95626_div.disabled {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:115px;
  2709. height:31px;
  2710. background:inherit;
  2711. background-color:rgba(240, 240, 240, 1);
  2712. border:none;
  2713. border-radius:0px;
  2714. -moz-box-shadow:none;
  2715. -webkit-box-shadow:none;
  2716. box-shadow:none;
  2717. font-size:14px;
  2718. color:#AAAAAA;
  2719. }
  2720. #u95626.disabled {
  2721. }
  2722. .u95626_input_option {
  2723. font-size:14px;
  2724. }
  2725. #u95627 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:0px;
  2731. height:0px;
  2732. }
  2733. #u95628_div {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:200px;
  2739. height:40px;
  2740. background:inherit;
  2741. background-color:rgba(255, 255, 255, 1);
  2742. box-sizing:border-box;
  2743. border-width:1px;
  2744. border-style:solid;
  2745. border-color:rgba(201, 201, 201, 1);
  2746. border-radius:4px;
  2747. -moz-box-shadow:none;
  2748. -webkit-box-shadow:none;
  2749. box-shadow:none;
  2750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2751. font-weight:400;
  2752. font-style:normal;
  2753. font-size:14px;
  2754. text-align:right;
  2755. }
  2756. #u95628 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:336px;
  2760. top:463px;
  2761. width:200px;
  2762. height:40px;
  2763. display:flex;
  2764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2765. font-weight:400;
  2766. font-style:normal;
  2767. font-size:14px;
  2768. text-align:right;
  2769. }
  2770. #u95628 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 8px 2px 8px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u95628_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u95629_input {
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:161px;
  2788. height:33px;
  2789. padding:2px 2px 2px 2px;
  2790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:14px;
  2794. letter-spacing:normal;
  2795. color:#D7D7D7;
  2796. vertical-align:none;
  2797. text-align:left;
  2798. text-transform:none;
  2799. background-color:transparent;
  2800. border-color:transparent;
  2801. }
  2802. #u95629_input.disabled {
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:161px;
  2807. height:33px;
  2808. padding:2px 2px 2px 2px;
  2809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:14px;
  2813. letter-spacing:normal;
  2814. color:#D7D7D7;
  2815. vertical-align:none;
  2816. text-align:left;
  2817. text-transform:none;
  2818. background-color:transparent;
  2819. border-color:transparent;
  2820. }
  2821. #u95629_div {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:161px;
  2827. height:33px;
  2828. background:inherit;
  2829. background-color:rgba(255, 255, 255, 0);
  2830. border:none;
  2831. border-radius:0px;
  2832. -moz-box-shadow:none;
  2833. -webkit-box-shadow:none;
  2834. box-shadow:none;
  2835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2836. font-weight:400;
  2837. font-style:normal;
  2838. font-size:14px;
  2839. color:#D7D7D7;
  2840. }
  2841. #u95629 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:344px;
  2845. top:466px;
  2846. width:161px;
  2847. height:33px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:14px;
  2853. color:#D7D7D7;
  2854. }
  2855. #u95629 .text {
  2856. position:absolute;
  2857. align-self:center;
  2858. padding:2px 2px 2px 2px;
  2859. box-sizing:border-box;
  2860. width:100%;
  2861. }
  2862. #u95629_div.disabled {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:0px;
  2866. top:0px;
  2867. width:161px;
  2868. height:33px;
  2869. background:inherit;
  2870. background-color:rgba(240, 240, 240, 1);
  2871. border:none;
  2872. border-radius:0px;
  2873. -moz-box-shadow:none;
  2874. -webkit-box-shadow:none;
  2875. box-shadow:none;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:14px;
  2880. color:#D7D7D7;
  2881. }
  2882. #u95629.disabled {
  2883. }
  2884. #u95630_img {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:13px;
  2890. height:13px;
  2891. }
  2892. #u95630 {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:514px;
  2896. top:476px;
  2897. width:13px;
  2898. height:13px;
  2899. display:flex;
  2900. }
  2901. #u95630 .text {
  2902. position:absolute;
  2903. align-self:center;
  2904. padding:2px 2px 2px 2px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u95630_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. visibility:hidden;
  2913. }
  2914. #u95631_div {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:64px;
  2920. height:40px;
  2921. background:inherit;
  2922. background-color:rgba(255, 255, 255, 0);
  2923. border:none;
  2924. border-left:0px;
  2925. border-top:0px;
  2926. border-right:0px;
  2927. border-radius:0px;
  2928. border-bottom-right-radius:0px;
  2929. border-bottom-left-radius:0px;
  2930. -moz-box-shadow:none;
  2931. -webkit-box-shadow:none;
  2932. box-shadow:none;
  2933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2934. font-weight:400;
  2935. font-style:normal;
  2936. font-size:14px;
  2937. }
  2938. #u95631 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:566px;
  2942. top:513px;
  2943. width:64px;
  2944. height:40px;
  2945. display:flex;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:14px;
  2950. }
  2951. #u95631 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:0px 0px 0px 0px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u95631_text {
  2959. border-width:0px;
  2960. white-space:nowrap;
  2961. text-transform:none;
  2962. }
  2963. #u95632 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:0px;
  2969. height:0px;
  2970. }
  2971. #u95633_div {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:200px;
  2977. height:40px;
  2978. background:inherit;
  2979. background-color:rgba(255, 255, 255, 1);
  2980. box-sizing:border-box;
  2981. border-width:1px;
  2982. border-style:solid;
  2983. border-color:rgba(215, 215, 215, 1);
  2984. border-radius:4px;
  2985. -moz-box-shadow:none;
  2986. -webkit-box-shadow:none;
  2987. box-shadow:none;
  2988. font-size:14px;
  2989. }
  2990. #u95633 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:566px;
  2994. top:553px;
  2995. width:200px;
  2996. height:40px;
  2997. display:flex;
  2998. font-size:14px;
  2999. }
  3000. #u95633 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 2px 2px 2px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u95633_text {
  3008. border-width:0px;
  3009. word-wrap:break-word;
  3010. text-transform:none;
  3011. visibility:hidden;
  3012. }
  3013. #u95634_input {
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:191px;
  3018. height:31px;
  3019. padding:2px 2px 2px 2px;
  3020. font-family:'ArialMT', 'Arial', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:14px;
  3024. letter-spacing:normal;
  3025. color:#AAAAAA;
  3026. vertical-align:none;
  3027. text-align:left;
  3028. text-transform:none;
  3029. background-color:transparent;
  3030. border-color:transparent;
  3031. }
  3032. #u95634_input.disabled {
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:191px;
  3037. height:31px;
  3038. padding:2px 2px 2px 2px;
  3039. font-family:'ArialMT', 'Arial', sans-serif;
  3040. font-weight:400;
  3041. font-style:normal;
  3042. font-size:14px;
  3043. letter-spacing:normal;
  3044. color:#AAAAAA;
  3045. vertical-align:none;
  3046. text-align:left;
  3047. text-transform:none;
  3048. background-color:transparent;
  3049. border-color:transparent;
  3050. }
  3051. #u95634_div {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:191px;
  3057. height:31px;
  3058. background:inherit;
  3059. background-color:rgba(255, 255, 255, 1);
  3060. border:none;
  3061. border-radius:0px;
  3062. -moz-box-shadow:none;
  3063. -webkit-box-shadow:none;
  3064. box-shadow:none;
  3065. font-size:14px;
  3066. color:#AAAAAA;
  3067. }
  3068. #u95634 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:572px;
  3072. top:556px;
  3073. width:191px;
  3074. height:31px;
  3075. display:flex;
  3076. font-size:14px;
  3077. color:#AAAAAA;
  3078. }
  3079. #u95634 .text {
  3080. position:absolute;
  3081. align-self:flex-start;
  3082. padding:2px 2px 2px 2px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u95634_div.disabled {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:0px;
  3090. top:0px;
  3091. width:191px;
  3092. height:31px;
  3093. background:inherit;
  3094. background-color:rgba(240, 240, 240, 1);
  3095. border:none;
  3096. border-radius:0px;
  3097. -moz-box-shadow:none;
  3098. -webkit-box-shadow:none;
  3099. box-shadow:none;
  3100. font-size:14px;
  3101. color:#AAAAAA;
  3102. }
  3103. #u95634.disabled {
  3104. }
  3105. .u95634_input_option {
  3106. font-size:14px;
  3107. }
  3108. #u95635 label {
  3109. left:0px;
  3110. width:100%;
  3111. }
  3112. #u95635_img {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:0px;
  3116. top:4px;
  3117. width:12px;
  3118. height:12px;
  3119. }
  3120. #u95635 {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:344px;
  3124. top:389px;
  3125. width:100px;
  3126. height:20px;
  3127. display:flex;
  3128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3129. font-weight:400;
  3130. font-style:normal;
  3131. font-size:14px;
  3132. }
  3133. #u95635 .text {
  3134. position:absolute;
  3135. align-self:center;
  3136. padding:0px 2px 0px 2px;
  3137. box-sizing:border-box;
  3138. }
  3139. #u95635_img.selected {
  3140. }
  3141. #u95635.selected {
  3142. }
  3143. #u95635_img.disabled {
  3144. }
  3145. #u95635.disabled {
  3146. }
  3147. #u95635_img.selectedDisabled {
  3148. }
  3149. #u95635.selectedDisabled {
  3150. }
  3151. #u95635_text {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:14px;
  3155. top:0px;
  3156. width:84px;
  3157. word-wrap:break-word;
  3158. text-transform:none;
  3159. }
  3160. #u95635_input {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:0px;
  3166. height:0px;
  3167. opacity:0;
  3168. }
  3169. #u95636 label {
  3170. left:0px;
  3171. width:100%;
  3172. }
  3173. #u95636_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:4px;
  3178. width:12px;
  3179. height:12px;
  3180. }
  3181. #u95636 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:566px;
  3185. top:389px;
  3186. width:100px;
  3187. height:20px;
  3188. display:flex;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:14px;
  3193. }
  3194. #u95636 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:0px 2px 0px 2px;
  3198. box-sizing:border-box;
  3199. }
  3200. #u95636_img.selected {
  3201. }
  3202. #u95636.selected {
  3203. }
  3204. #u95636_img.disabled {
  3205. }
  3206. #u95636.disabled {
  3207. }
  3208. #u95636_img.selectedDisabled {
  3209. }
  3210. #u95636.selectedDisabled {
  3211. }
  3212. #u95636_text {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:14px;
  3216. top:0px;
  3217. width:84px;
  3218. word-wrap:break-word;
  3219. text-transform:none;
  3220. }
  3221. #u95636_input {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:0px;
  3227. height:0px;
  3228. opacity:0;
  3229. }
  3230. #u95637_div {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:100px;
  3236. height:90px;
  3237. background:inherit;
  3238. background-color:rgba(255, 255, 255, 1);
  3239. box-sizing:border-box;
  3240. border-width:1px;
  3241. border-style:solid;
  3242. border-color:rgba(201, 201, 201, 1);
  3243. border-radius:4px;
  3244. -moz-box-shadow:none;
  3245. -webkit-box-shadow:none;
  3246. box-shadow:none;
  3247. font-family:'Helvetica', sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:24px;
  3251. }
  3252. #u95637 {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:336px;
  3256. top:902px;
  3257. width:100px;
  3258. height:90px;
  3259. display:flex;
  3260. font-family:'Helvetica', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:24px;
  3264. }
  3265. #u95637 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 8px 2px 8px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u95637_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. }
  3277. #u95638_div {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:57px;
  3283. height:40px;
  3284. background:inherit;
  3285. background-color:rgba(255, 255, 255, 0);
  3286. border:none;
  3287. border-left:0px;
  3288. border-top:0px;
  3289. border-right:0px;
  3290. border-radius:0px;
  3291. border-bottom-right-radius:0px;
  3292. border-bottom-left-radius:0px;
  3293. -moz-box-shadow:none;
  3294. -webkit-box-shadow:none;
  3295. box-shadow:none;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:14px;
  3300. }
  3301. #u95638 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:336px;
  3305. top:862px;
  3306. width:57px;
  3307. height:40px;
  3308. display:flex;
  3309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:14px;
  3313. }
  3314. #u95638 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:0px 0px 0px 0px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u95638_text {
  3322. border-width:0px;
  3323. white-space:nowrap;
  3324. text-transform:none;
  3325. }
  3326. #u95639_div {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:57px;
  3332. height:40px;
  3333. background:inherit;
  3334. background-color:rgba(255, 255, 255, 0);
  3335. border:none;
  3336. border-left:0px;
  3337. border-top:0px;
  3338. border-right:0px;
  3339. border-radius:0px;
  3340. border-bottom-right-radius:0px;
  3341. border-bottom-left-radius:0px;
  3342. -moz-box-shadow:none;
  3343. -webkit-box-shadow:none;
  3344. box-shadow:none;
  3345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3346. font-weight:400;
  3347. font-style:normal;
  3348. font-size:14px;
  3349. }
  3350. #u95639 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:336px;
  3354. top:772px;
  3355. width:57px;
  3356. height:40px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:14px;
  3362. }
  3363. #u95639 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:0px 0px 0px 0px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u95639_text {
  3371. border-width:0px;
  3372. white-space:nowrap;
  3373. text-transform:none;
  3374. }
  3375. #u95640 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:0px;
  3381. height:0px;
  3382. }
  3383. #u95641_div {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:427px;
  3389. height:40px;
  3390. background:inherit;
  3391. background-color:rgba(255, 255, 255, 1);
  3392. box-sizing:border-box;
  3393. border-width:1px;
  3394. border-style:solid;
  3395. border-color:rgba(215, 215, 215, 1);
  3396. border-radius:4px;
  3397. -moz-box-shadow:none;
  3398. -webkit-box-shadow:none;
  3399. box-shadow:none;
  3400. font-size:14px;
  3401. }
  3402. #u95641 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:336px;
  3406. top:812px;
  3407. width:427px;
  3408. height:40px;
  3409. display:flex;
  3410. font-size:14px;
  3411. }
  3412. #u95641 .text {
  3413. position:absolute;
  3414. align-self:center;
  3415. padding:2px 2px 2px 2px;
  3416. box-sizing:border-box;
  3417. width:100%;
  3418. }
  3419. #u95641_text {
  3420. border-width:0px;
  3421. word-wrap:break-word;
  3422. text-transform:none;
  3423. visibility:hidden;
  3424. }
  3425. #u95642_input {
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:408px;
  3430. height:31px;
  3431. padding:2px 2px 2px 2px;
  3432. font-family:'ArialMT', 'Arial', sans-serif;
  3433. font-weight:400;
  3434. font-style:normal;
  3435. font-size:14px;
  3436. letter-spacing:normal;
  3437. color:#AAAAAA;
  3438. vertical-align:none;
  3439. text-align:left;
  3440. text-transform:none;
  3441. background-color:transparent;
  3442. border-color:transparent;
  3443. }
  3444. #u95642_input.disabled {
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:408px;
  3449. height:31px;
  3450. padding:2px 2px 2px 2px;
  3451. font-family:'ArialMT', 'Arial', sans-serif;
  3452. font-weight:400;
  3453. font-style:normal;
  3454. font-size:14px;
  3455. letter-spacing:normal;
  3456. color:#AAAAAA;
  3457. vertical-align:none;
  3458. text-align:left;
  3459. text-transform:none;
  3460. background-color:transparent;
  3461. border-color:transparent;
  3462. }
  3463. #u95642_div {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:0px;
  3467. top:0px;
  3468. width:408px;
  3469. height:31px;
  3470. background:inherit;
  3471. background-color:rgba(255, 255, 255, 1);
  3472. border:none;
  3473. border-radius:0px;
  3474. -moz-box-shadow:none;
  3475. -webkit-box-shadow:none;
  3476. box-shadow:none;
  3477. font-size:14px;
  3478. color:#AAAAAA;
  3479. }
  3480. #u95642 {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:349px;
  3484. top:815px;
  3485. width:408px;
  3486. height:31px;
  3487. display:flex;
  3488. font-size:14px;
  3489. color:#AAAAAA;
  3490. }
  3491. #u95642 .text {
  3492. position:absolute;
  3493. align-self:flex-start;
  3494. padding:2px 2px 2px 2px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u95642_div.disabled {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:408px;
  3504. height:31px;
  3505. background:inherit;
  3506. background-color:rgba(240, 240, 240, 1);
  3507. border:none;
  3508. border-radius:0px;
  3509. -moz-box-shadow:none;
  3510. -webkit-box-shadow:none;
  3511. box-shadow:none;
  3512. font-size:14px;
  3513. color:#AAAAAA;
  3514. }
  3515. #u95642.disabled {
  3516. }
  3517. .u95642_input_option {
  3518. font-size:14px;
  3519. }
  3520. #u95643 {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:0px;
  3526. height:0px;
  3527. }
  3528. #u95644_div {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:427px;
  3534. height:80px;
  3535. background:inherit;
  3536. background-color:rgba(255, 255, 255, 1);
  3537. box-sizing:border-box;
  3538. border-width:1px;
  3539. border-style:solid;
  3540. border-color:rgba(201, 201, 201, 1);
  3541. border-radius:4px;
  3542. -moz-box-shadow:none;
  3543. -webkit-box-shadow:none;
  3544. box-shadow:none;
  3545. font-family:'Microsoft YaHei', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:14px;
  3549. color:#CCCCCC;
  3550. text-align:left;
  3551. }
  3552. #u95644 {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:336px;
  3556. top:1042px;
  3557. width:427px;
  3558. height:80px;
  3559. display:flex;
  3560. font-family:'Microsoft YaHei', sans-serif;
  3561. font-weight:400;
  3562. font-style:normal;
  3563. font-size:14px;
  3564. color:#CCCCCC;
  3565. text-align:left;
  3566. }
  3567. #u95644 .text {
  3568. position:absolute;
  3569. align-self:center;
  3570. padding:2px 8px 2px 8px;
  3571. box-sizing:border-box;
  3572. width:100%;
  3573. }
  3574. #u95644_text {
  3575. border-width:0px;
  3576. word-wrap:break-word;
  3577. text-transform:none;
  3578. visibility:hidden;
  3579. }
  3580. #u95645_input {
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:389px;
  3585. height:33px;
  3586. padding:2px 2px 2px 2px;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:14px;
  3591. letter-spacing:normal;
  3592. color:#D7D7D7;
  3593. vertical-align:none;
  3594. text-align:left;
  3595. text-transform:none;
  3596. background-color:transparent;
  3597. border-color:transparent;
  3598. }
  3599. #u95645_input.disabled {
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:389px;
  3604. height:33px;
  3605. padding:2px 2px 2px 2px;
  3606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:14px;
  3610. letter-spacing:normal;
  3611. color:#D7D7D7;
  3612. vertical-align:none;
  3613. text-align:left;
  3614. text-transform:none;
  3615. background-color:transparent;
  3616. border-color:transparent;
  3617. }
  3618. #u95645_div {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:389px;
  3624. height:33px;
  3625. background:inherit;
  3626. background-color:rgba(255, 255, 255, 0);
  3627. border:none;
  3628. border-radius:0px;
  3629. -moz-box-shadow:none;
  3630. -webkit-box-shadow:none;
  3631. box-shadow:none;
  3632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3633. font-weight:400;
  3634. font-style:normal;
  3635. font-size:14px;
  3636. color:#D7D7D7;
  3637. }
  3638. #u95645 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:353px;
  3642. top:1045px;
  3643. width:389px;
  3644. height:33px;
  3645. display:flex;
  3646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3647. font-weight:400;
  3648. font-style:normal;
  3649. font-size:14px;
  3650. color:#D7D7D7;
  3651. }
  3652. #u95645 .text {
  3653. position:absolute;
  3654. align-self:center;
  3655. padding:2px 2px 2px 2px;
  3656. box-sizing:border-box;
  3657. width:100%;
  3658. }
  3659. #u95645_div.disabled {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:0px;
  3663. top:0px;
  3664. width:389px;
  3665. height:33px;
  3666. background:inherit;
  3667. background-color:rgba(240, 240, 240, 1);
  3668. border:none;
  3669. border-radius:0px;
  3670. -moz-box-shadow:none;
  3671. -webkit-box-shadow:none;
  3672. box-shadow:none;
  3673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3674. font-weight:400;
  3675. font-style:normal;
  3676. font-size:14px;
  3677. color:#D7D7D7;
  3678. }
  3679. #u95645.disabled {
  3680. }
  3681. #u95646_div {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:71px;
  3687. height:40px;
  3688. background:inherit;
  3689. background-color:rgba(255, 255, 255, 0);
  3690. border:none;
  3691. border-left:0px;
  3692. border-top:0px;
  3693. border-right:0px;
  3694. border-radius:0px;
  3695. border-bottom-right-radius:0px;
  3696. border-bottom-left-radius:0px;
  3697. -moz-box-shadow:none;
  3698. -webkit-box-shadow:none;
  3699. box-shadow:none;
  3700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3701. font-weight:400;
  3702. font-style:normal;
  3703. font-size:14px;
  3704. }
  3705. #u95646 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:336px;
  3709. top:1002px;
  3710. width:71px;
  3711. height:40px;
  3712. display:flex;
  3713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:14px;
  3717. }
  3718. #u95646 .text {
  3719. position:absolute;
  3720. align-self:center;
  3721. padding:0px 0px 0px 0px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u95646_text {
  3726. border-width:0px;
  3727. white-space:nowrap;
  3728. text-transform:none;
  3729. }
  3730. #u95647 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:0px;
  3736. height:0px;
  3737. }
  3738. #u95648_div {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:800px;
  3744. height:60px;
  3745. background:inherit;
  3746. background-color:rgba(255, 255, 255, 1);
  3747. box-sizing:border-box;
  3748. border-width:1px;
  3749. border-style:solid;
  3750. border-color:rgba(242, 242, 242, 1);
  3751. border-radius:0px;
  3752. -moz-box-shadow:none;
  3753. -webkit-box-shadow:none;
  3754. box-shadow:none;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:14px;
  3759. color:#AAAAAA;
  3760. text-align:center;
  3761. line-height:30px;
  3762. }
  3763. #u95648 {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:957px;
  3767. top:73px;
  3768. width:800px;
  3769. height:60px;
  3770. display:flex;
  3771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. font-size:14px;
  3775. color:#AAAAAA;
  3776. text-align:center;
  3777. line-height:30px;
  3778. }
  3779. #u95648 .text {
  3780. position:absolute;
  3781. align-self:center;
  3782. padding:5px 10px 5px 10px;
  3783. box-sizing:border-box;
  3784. width:100%;
  3785. }
  3786. #u95648_text {
  3787. border-width:0px;
  3788. word-wrap:break-word;
  3789. text-transform:none;
  3790. visibility:hidden;
  3791. }
  3792. #u95649_div {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:0px;
  3796. top:0px;
  3797. width:119px;
  3798. height:35px;
  3799. background:inherit;
  3800. background-color:rgba(255, 255, 255, 0);
  3801. border:none;
  3802. border-top:0px;
  3803. border-right:0px;
  3804. border-bottom:0px;
  3805. border-radius:0px;
  3806. border-top-left-radius:0px;
  3807. border-bottom-left-radius:0px;
  3808. -moz-box-shadow:none;
  3809. -webkit-box-shadow:none;
  3810. box-shadow:none;
  3811. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3812. font-weight:500;
  3813. font-style:normal;
  3814. font-size:18px;
  3815. }
  3816. #u95649 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:988px;
  3820. top:86px;
  3821. width:119px;
  3822. height:35px;
  3823. display:flex;
  3824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3825. font-weight:500;
  3826. font-style:normal;
  3827. font-size:18px;
  3828. }
  3829. #u95649 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:5px 10px 5px 0px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u95649_text {
  3837. border-width:0px;
  3838. white-space:nowrap;
  3839. text-transform:none;
  3840. }
  3841. #u95650_div {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:800px;
  3847. height:1142px;
  3848. background:inherit;
  3849. background-color:rgba(255, 255, 255, 1);
  3850. box-sizing:border-box;
  3851. border-width:1px;
  3852. border-style:solid;
  3853. border-color:rgba(242, 242, 242, 1);
  3854. border-radius:0px;
  3855. -moz-box-shadow:none;
  3856. -webkit-box-shadow:none;
  3857. box-shadow:none;
  3858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3859. font-weight:400;
  3860. font-style:normal;
  3861. font-size:14px;
  3862. color:#AAAAAA;
  3863. text-align:center;
  3864. line-height:30px;
  3865. }
  3866. #u95650 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:957px;
  3870. top:133px;
  3871. width:800px;
  3872. height:1142px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:14px;
  3878. color:#AAAAAA;
  3879. text-align:center;
  3880. line-height:30px;
  3881. }
  3882. #u95650 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:5px 10px 5px 10px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u95650_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u95651 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:0px;
  3901. height:0px;
  3902. }
  3903. #u95652_div {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:800px;
  3909. height:60px;
  3910. background:inherit;
  3911. background-color:rgba(255, 255, 255, 1);
  3912. box-sizing:border-box;
  3913. border-width:1px;
  3914. border-style:solid;
  3915. border-color:rgba(215, 215, 215, 1);
  3916. border-radius:0px;
  3917. -moz-box-shadow:none;
  3918. -webkit-box-shadow:none;
  3919. box-shadow:none;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:14px;
  3924. color:#AAAAAA;
  3925. text-align:center;
  3926. line-height:30px;
  3927. }
  3928. #u95652 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:957px;
  3932. top:1214px;
  3933. width:800px;
  3934. height:60px;
  3935. display:flex;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:14px;
  3940. color:#AAAAAA;
  3941. text-align:center;
  3942. line-height:30px;
  3943. }
  3944. #u95652 .text {
  3945. position:absolute;
  3946. align-self:center;
  3947. padding:5px 10px 5px 10px;
  3948. box-sizing:border-box;
  3949. width:100%;
  3950. }
  3951. #u95652_text {
  3952. border-width:0px;
  3953. word-wrap:break-word;
  3954. text-transform:none;
  3955. visibility:hidden;
  3956. }
  3957. #u95653_img {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:80px;
  3963. height:30px;
  3964. }
  3965. #u95653 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:1637px;
  3969. top:1229px;
  3970. width:80px;
  3971. height:30px;
  3972. display:flex;
  3973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3974. font-weight:400;
  3975. font-style:normal;
  3976. font-size:14px;
  3977. color:#FFFFFF;
  3978. }
  3979. #u95653 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 2px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u95653_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. }
  3991. #u95654_div {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:80px;
  3997. height:30px;
  3998. background:inherit;
  3999. background-color:rgba(255, 255, 255, 1);
  4000. box-sizing:border-box;
  4001. border-width:1px;
  4002. border-style:solid;
  4003. border-color:rgba(170, 170, 170, 1);
  4004. border-radius:4px;
  4005. -moz-box-shadow:none;
  4006. -webkit-box-shadow:none;
  4007. box-shadow:none;
  4008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. font-size:14px;
  4012. }
  4013. #u95654 {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:1547px;
  4017. top:1229px;
  4018. width:80px;
  4019. height:30px;
  4020. display:flex;
  4021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4022. font-weight:400;
  4023. font-style:normal;
  4024. font-size:14px;
  4025. }
  4026. #u95654 .text {
  4027. position:absolute;
  4028. align-self:center;
  4029. padding:2px 2px 2px 2px;
  4030. box-sizing:border-box;
  4031. width:100%;
  4032. }
  4033. #u95654_text {
  4034. border-width:0px;
  4035. word-wrap:break-word;
  4036. text-transform:none;
  4037. }
  4038. #u95655_div {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:0px;
  4042. top:0px;
  4043. width:73px;
  4044. height:40px;
  4045. background:inherit;
  4046. background-color:rgba(255, 255, 255, 0);
  4047. border:none;
  4048. border-left:0px;
  4049. border-top:0px;
  4050. border-right:0px;
  4051. border-radius:0px;
  4052. border-bottom-right-radius:0px;
  4053. border-bottom-left-radius:0px;
  4054. -moz-box-shadow:none;
  4055. -webkit-box-shadow:none;
  4056. box-shadow:none;
  4057. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4058. font-weight:500;
  4059. font-style:normal;
  4060. font-size:18px;
  4061. }
  4062. #u95655 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:996px;
  4066. top:159px;
  4067. width:73px;
  4068. height:40px;
  4069. display:flex;
  4070. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4071. font-weight:500;
  4072. font-style:normal;
  4073. font-size:18px;
  4074. }
  4075. #u95655 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:0px 0px 0px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u95655_text {
  4083. border-width:0px;
  4084. white-space:nowrap;
  4085. text-transform:none;
  4086. }
  4087. #u95656_div {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:40px;
  4093. height:40px;
  4094. background:inherit;
  4095. background-color:rgba(255, 255, 255, 0);
  4096. border:none;
  4097. border-top:0px;
  4098. border-right:0px;
  4099. border-bottom:0px;
  4100. border-radius:0px;
  4101. border-top-left-radius:0px;
  4102. border-bottom-left-radius:0px;
  4103. -moz-box-shadow:none;
  4104. -webkit-box-shadow:none;
  4105. box-shadow:none;
  4106. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4107. font-weight:500;
  4108. font-style:normal;
  4109. font-size:24px;
  4110. text-align:center;
  4111. }
  4112. #u95656 {
  4113. border-width:0px;
  4114. position:absolute;
  4115. left:1717px;
  4116. top:73px;
  4117. width:40px;
  4118. height:40px;
  4119. display:flex;
  4120. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4121. font-weight:500;
  4122. font-style:normal;
  4123. font-size:24px;
  4124. text-align:center;
  4125. }
  4126. #u95656 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:5px 10px 5px 0px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u95656_text {
  4134. border-width:0px;
  4135. word-wrap:break-word;
  4136. text-transform:none;
  4137. }
  4138. #u95657 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:0px;
  4144. height:0px;
  4145. }
  4146. #u95658_div {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:140px;
  4152. height:40px;
  4153. background:inherit;
  4154. background-color:rgba(255, 255, 255, 1);
  4155. box-sizing:border-box;
  4156. border-width:1px;
  4157. border-style:solid;
  4158. border-color:rgba(215, 215, 215, 1);
  4159. border-radius:4px;
  4160. -moz-box-shadow:none;
  4161. -webkit-box-shadow:none;
  4162. box-shadow:none;
  4163. font-size:14px;
  4164. }
  4165. #u95658 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:996px;
  4169. top:209px;
  4170. width:140px;
  4171. height:40px;
  4172. display:flex;
  4173. font-size:14px;
  4174. }
  4175. #u95658 .text {
  4176. position:absolute;
  4177. align-self:center;
  4178. padding:2px 2px 2px 2px;
  4179. box-sizing:border-box;
  4180. width:100%;
  4181. }
  4182. #u95658_text {
  4183. border-width:0px;
  4184. word-wrap:break-word;
  4185. text-transform:none;
  4186. visibility:hidden;
  4187. }
  4188. #u95659_input {
  4189. position:absolute;
  4190. left:0px;
  4191. top:0px;
  4192. width:134px;
  4193. height:31px;
  4194. padding:2px 2px 2px 2px;
  4195. font-family:'ArialMT', 'Arial', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:14px;
  4199. letter-spacing:normal;
  4200. color:#AAAAAA;
  4201. vertical-align:none;
  4202. text-align:left;
  4203. text-transform:none;
  4204. background-color:transparent;
  4205. border-color:transparent;
  4206. }
  4207. #u95659_input.disabled {
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:134px;
  4212. height:31px;
  4213. padding:2px 2px 2px 2px;
  4214. font-family:'ArialMT', 'Arial', sans-serif;
  4215. font-weight:400;
  4216. font-style:normal;
  4217. font-size:14px;
  4218. letter-spacing:normal;
  4219. color:#AAAAAA;
  4220. vertical-align:none;
  4221. text-align:left;
  4222. text-transform:none;
  4223. background-color:transparent;
  4224. border-color:transparent;
  4225. }
  4226. #u95659_div {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:134px;
  4232. height:31px;
  4233. background:inherit;
  4234. background-color:rgba(255, 255, 255, 1);
  4235. border:none;
  4236. border-radius:0px;
  4237. -moz-box-shadow:none;
  4238. -webkit-box-shadow:none;
  4239. box-shadow:none;
  4240. font-size:14px;
  4241. color:#AAAAAA;
  4242. }
  4243. #u95659 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:1000px;
  4247. top:212px;
  4248. width:134px;
  4249. height:31px;
  4250. display:flex;
  4251. font-size:14px;
  4252. color:#AAAAAA;
  4253. }
  4254. #u95659 .text {
  4255. position:absolute;
  4256. align-self:flex-start;
  4257. padding:2px 2px 2px 2px;
  4258. box-sizing:border-box;
  4259. width:100%;
  4260. }
  4261. #u95659_div.disabled {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:134px;
  4267. height:31px;
  4268. background:inherit;
  4269. background-color:rgba(240, 240, 240, 1);
  4270. border:none;
  4271. border-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. font-size:14px;
  4276. color:#AAAAAA;
  4277. }
  4278. #u95659.disabled {
  4279. }
  4280. .u95659_input_option {
  4281. font-size:14px;
  4282. }
  4283. #u95660 {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:0px;
  4289. height:0px;
  4290. }
  4291. #u95661_div {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:120px;
  4297. height:40px;
  4298. background:inherit;
  4299. background-color:rgba(255, 255, 255, 1);
  4300. box-sizing:border-box;
  4301. border-width:1px;
  4302. border-style:solid;
  4303. border-color:rgba(215, 215, 215, 1);
  4304. border-radius:4px;
  4305. -moz-box-shadow:none;
  4306. -webkit-box-shadow:none;
  4307. box-shadow:none;
  4308. font-size:14px;
  4309. }
  4310. #u95661 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:1146px;
  4314. top:209px;
  4315. width:120px;
  4316. height:40px;
  4317. display:flex;
  4318. font-size:14px;
  4319. }
  4320. #u95661 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 2px 2px 2px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u95661_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u95662_input {
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:115px;
  4338. height:31px;
  4339. padding:2px 2px 2px 2px;
  4340. font-family:'ArialMT', 'Arial', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:14px;
  4344. letter-spacing:normal;
  4345. color:#AAAAAA;
  4346. vertical-align:none;
  4347. text-align:left;
  4348. text-transform:none;
  4349. background-color:transparent;
  4350. border-color:transparent;
  4351. }
  4352. #u95662_input.disabled {
  4353. position:absolute;
  4354. left:0px;
  4355. top:0px;
  4356. width:115px;
  4357. height:31px;
  4358. padding:2px 2px 2px 2px;
  4359. font-family:'ArialMT', 'Arial', sans-serif;
  4360. font-weight:400;
  4361. font-style:normal;
  4362. font-size:14px;
  4363. letter-spacing:normal;
  4364. color:#AAAAAA;
  4365. vertical-align:none;
  4366. text-align:left;
  4367. text-transform:none;
  4368. background-color:transparent;
  4369. border-color:transparent;
  4370. }
  4371. #u95662_div {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:115px;
  4377. height:31px;
  4378. background:inherit;
  4379. background-color:rgba(255, 255, 255, 1);
  4380. border:none;
  4381. border-radius:0px;
  4382. -moz-box-shadow:none;
  4383. -webkit-box-shadow:none;
  4384. box-shadow:none;
  4385. font-size:14px;
  4386. color:#AAAAAA;
  4387. }
  4388. #u95662 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:1150px;
  4392. top:212px;
  4393. width:115px;
  4394. height:31px;
  4395. display:flex;
  4396. font-size:14px;
  4397. color:#AAAAAA;
  4398. }
  4399. #u95662 .text {
  4400. position:absolute;
  4401. align-self:flex-start;
  4402. padding:2px 2px 2px 2px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u95662_div.disabled {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:115px;
  4412. height:31px;
  4413. background:inherit;
  4414. background-color:rgba(240, 240, 240, 1);
  4415. border:none;
  4416. border-radius:0px;
  4417. -moz-box-shadow:none;
  4418. -webkit-box-shadow:none;
  4419. box-shadow:none;
  4420. font-size:14px;
  4421. color:#AAAAAA;
  4422. }
  4423. #u95662.disabled {
  4424. }
  4425. .u95662_input_option {
  4426. font-size:14px;
  4427. }
  4428. #u95663_div {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:0px;
  4432. top:0px;
  4433. width:64px;
  4434. height:40px;
  4435. background:inherit;
  4436. background-color:rgba(255, 255, 255, 0);
  4437. border:none;
  4438. border-left:0px;
  4439. border-top:0px;
  4440. border-right:0px;
  4441. border-radius:0px;
  4442. border-bottom-right-radius:0px;
  4443. border-bottom-left-radius:0px;
  4444. -moz-box-shadow:none;
  4445. -webkit-box-shadow:none;
  4446. box-shadow:none;
  4447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4448. font-weight:400;
  4449. font-style:normal;
  4450. font-size:14px;
  4451. }
  4452. #u95663 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:1196px;
  4456. top:424px;
  4457. width:64px;
  4458. height:40px;
  4459. display:flex;
  4460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4461. font-weight:400;
  4462. font-style:normal;
  4463. font-size:14px;
  4464. }
  4465. #u95663 .text {
  4466. position:absolute;
  4467. align-self:center;
  4468. padding:0px 0px 0px 0px;
  4469. box-sizing:border-box;
  4470. width:100%;
  4471. }
  4472. #u95663_text {
  4473. border-width:0px;
  4474. white-space:nowrap;
  4475. text-transform:none;
  4476. }
  4477. #u95664 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:0px;
  4481. top:0px;
  4482. width:0px;
  4483. height:0px;
  4484. }
  4485. #u95665_div {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:200px;
  4491. height:40px;
  4492. background:inherit;
  4493. background-color:rgba(255, 255, 255, 1);
  4494. box-sizing:border-box;
  4495. border-width:1px;
  4496. border-style:solid;
  4497. border-color:rgba(201, 201, 201, 1);
  4498. border-radius:4px;
  4499. -moz-box-shadow:none;
  4500. -webkit-box-shadow:none;
  4501. box-shadow:none;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:14px;
  4506. text-align:right;
  4507. }
  4508. #u95665 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:1426px;
  4512. top:463px;
  4513. width:200px;
  4514. height:40px;
  4515. display:flex;
  4516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:14px;
  4520. text-align:right;
  4521. }
  4522. #u95665 .text {
  4523. position:absolute;
  4524. align-self:center;
  4525. padding:2px 8px 2px 8px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u95665_text {
  4530. border-width:0px;
  4531. word-wrap:break-word;
  4532. text-transform:none;
  4533. visibility:hidden;
  4534. }
  4535. #u95666_input {
  4536. position:absolute;
  4537. left:0px;
  4538. top:0px;
  4539. width:161px;
  4540. height:33px;
  4541. padding:2px 2px 2px 2px;
  4542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4543. font-weight:400;
  4544. font-style:normal;
  4545. font-size:14px;
  4546. letter-spacing:normal;
  4547. color:#D7D7D7;
  4548. vertical-align:none;
  4549. text-align:left;
  4550. text-transform:none;
  4551. background-color:transparent;
  4552. border-color:transparent;
  4553. }
  4554. #u95666_input.disabled {
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:161px;
  4559. height:33px;
  4560. padding:2px 2px 2px 2px;
  4561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:14px;
  4565. letter-spacing:normal;
  4566. color:#D7D7D7;
  4567. vertical-align:none;
  4568. text-align:left;
  4569. text-transform:none;
  4570. background-color:transparent;
  4571. border-color:transparent;
  4572. }
  4573. #u95666_div {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:161px;
  4579. height:33px;
  4580. background:inherit;
  4581. background-color:rgba(255, 255, 255, 0);
  4582. border:none;
  4583. border-radius:0px;
  4584. -moz-box-shadow:none;
  4585. -webkit-box-shadow:none;
  4586. box-shadow:none;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:14px;
  4591. color:#D7D7D7;
  4592. }
  4593. #u95666 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:1434px;
  4597. top:466px;
  4598. width:161px;
  4599. height:33px;
  4600. display:flex;
  4601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:14px;
  4605. color:#D7D7D7;
  4606. }
  4607. #u95666 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u95666_div.disabled {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:161px;
  4620. height:33px;
  4621. background:inherit;
  4622. background-color:rgba(240, 240, 240, 1);
  4623. border:none;
  4624. border-radius:0px;
  4625. -moz-box-shadow:none;
  4626. -webkit-box-shadow:none;
  4627. box-shadow:none;
  4628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4629. font-weight:400;
  4630. font-style:normal;
  4631. font-size:14px;
  4632. color:#D7D7D7;
  4633. }
  4634. #u95666.disabled {
  4635. }
  4636. #u95667_div {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:78px;
  4642. height:40px;
  4643. background:inherit;
  4644. background-color:rgba(255, 255, 255, 0);
  4645. border:none;
  4646. border-left:0px;
  4647. border-top:0px;
  4648. border-right:0px;
  4649. border-radius:0px;
  4650. border-bottom-right-radius:0px;
  4651. border-bottom-left-radius:0px;
  4652. -moz-box-shadow:none;
  4653. -webkit-box-shadow:none;
  4654. box-shadow:none;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:14px;
  4659. }
  4660. #u95667 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:1426px;
  4664. top:424px;
  4665. width:78px;
  4666. height:40px;
  4667. display:flex;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:14px;
  4672. }
  4673. #u95667 .text {
  4674. position:absolute;
  4675. align-self:center;
  4676. padding:0px 0px 0px 0px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u95667_text {
  4681. border-width:0px;
  4682. white-space:nowrap;
  4683. text-transform:none;
  4684. }
  4685. #u95668 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:0px;
  4691. height:0px;
  4692. }
  4693. #u95669_div {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:200px;
  4699. height:40px;
  4700. background:inherit;
  4701. background-color:rgba(255, 255, 255, 1);
  4702. box-sizing:border-box;
  4703. border-width:1px;
  4704. border-style:solid;
  4705. border-color:rgba(201, 201, 201, 1);
  4706. border-radius:4px;
  4707. -moz-box-shadow:none;
  4708. -webkit-box-shadow:none;
  4709. box-shadow:none;
  4710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4711. font-weight:400;
  4712. font-style:normal;
  4713. font-size:14px;
  4714. text-align:right;
  4715. }
  4716. #u95669 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:1196px;
  4720. top:642px;
  4721. width:200px;
  4722. height:40px;
  4723. display:flex;
  4724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:14px;
  4728. text-align:right;
  4729. }
  4730. #u95669 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 8px 2px 8px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u95669_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. visibility:hidden;
  4742. }
  4743. #u95670_input {
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:161px;
  4748. height:33px;
  4749. padding:2px 2px 2px 2px;
  4750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. font-size:14px;
  4754. letter-spacing:normal;
  4755. color:#D7D7D7;
  4756. vertical-align:none;
  4757. text-align:left;
  4758. text-transform:none;
  4759. background-color:transparent;
  4760. border-color:transparent;
  4761. }
  4762. #u95670_input.disabled {
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:161px;
  4767. height:33px;
  4768. padding:2px 2px 2px 2px;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:14px;
  4773. letter-spacing:normal;
  4774. color:#D7D7D7;
  4775. vertical-align:none;
  4776. text-align:left;
  4777. text-transform:none;
  4778. background-color:transparent;
  4779. border-color:transparent;
  4780. }
  4781. #u95670_div {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:161px;
  4787. height:33px;
  4788. background:inherit;
  4789. background-color:rgba(255, 255, 255, 0);
  4790. border:none;
  4791. border-radius:0px;
  4792. -moz-box-shadow:none;
  4793. -webkit-box-shadow:none;
  4794. box-shadow:none;
  4795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4796. font-weight:400;
  4797. font-style:normal;
  4798. font-size:14px;
  4799. color:#D7D7D7;
  4800. }
  4801. #u95670 {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:1204px;
  4805. top:645px;
  4806. width:161px;
  4807. height:33px;
  4808. display:flex;
  4809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4810. font-weight:400;
  4811. font-style:normal;
  4812. font-size:14px;
  4813. color:#D7D7D7;
  4814. }
  4815. #u95670 .text {
  4816. position:absolute;
  4817. align-self:center;
  4818. padding:2px 2px 2px 2px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u95670_div.disabled {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:161px;
  4828. height:33px;
  4829. background:inherit;
  4830. background-color:rgba(240, 240, 240, 1);
  4831. border:none;
  4832. border-radius:0px;
  4833. -moz-box-shadow:none;
  4834. -webkit-box-shadow:none;
  4835. box-shadow:none;
  4836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4837. font-weight:400;
  4838. font-style:normal;
  4839. font-size:14px;
  4840. color:#D7D7D7;
  4841. }
  4842. #u95670.disabled {
  4843. }
  4844. #u95671_div {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:50px;
  4850. height:40px;
  4851. background:inherit;
  4852. background-color:rgba(255, 255, 255, 0);
  4853. border:none;
  4854. border-left:0px;
  4855. border-top:0px;
  4856. border-right:0px;
  4857. border-radius:0px;
  4858. border-bottom-right-radius:0px;
  4859. border-bottom-left-radius:0px;
  4860. -moz-box-shadow:none;
  4861. -webkit-box-shadow:none;
  4862. box-shadow:none;
  4863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4864. font-weight:400;
  4865. font-style:normal;
  4866. font-size:14px;
  4867. }
  4868. #u95671 {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:1196px;
  4872. top:603px;
  4873. width:50px;
  4874. height:40px;
  4875. display:flex;
  4876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4877. font-weight:400;
  4878. font-style:normal;
  4879. font-size:14px;
  4880. }
  4881. #u95671 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:0px 0px 0px 0px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u95671_text {
  4889. border-width:0px;
  4890. white-space:nowrap;
  4891. text-transform:none;
  4892. }
  4893. #u95672_div {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:71px;
  4899. height:40px;
  4900. background:inherit;
  4901. background-color:rgba(255, 255, 255, 0);
  4902. border:none;
  4903. border-left:0px;
  4904. border-top:0px;
  4905. border-right:0px;
  4906. border-radius:0px;
  4907. border-bottom-right-radius:0px;
  4908. border-bottom-left-radius:0px;
  4909. -moz-box-shadow:none;
  4910. -webkit-box-shadow:none;
  4911. box-shadow:none;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:14px;
  4916. }
  4917. #u95672 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:1196px;
  4921. top:782px;
  4922. width:71px;
  4923. height:40px;
  4924. display:flex;
  4925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4926. font-weight:400;
  4927. font-style:normal;
  4928. font-size:14px;
  4929. }
  4930. #u95672 .text {
  4931. position:absolute;
  4932. align-self:center;
  4933. padding:0px 0px 0px 0px;
  4934. box-sizing:border-box;
  4935. width:100%;
  4936. }
  4937. #u95672_text {
  4938. border-width:0px;
  4939. white-space:nowrap;
  4940. text-transform:none;
  4941. }
  4942. #u95673 {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:0px;
  4946. top:0px;
  4947. width:0px;
  4948. height:0px;
  4949. }
  4950. #u95674_div {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:0px;
  4954. top:0px;
  4955. width:200px;
  4956. height:40px;
  4957. background:inherit;
  4958. background-color:rgba(255, 255, 255, 1);
  4959. box-sizing:border-box;
  4960. border-width:1px;
  4961. border-style:solid;
  4962. border-color:rgba(201, 201, 201, 1);
  4963. border-radius:4px;
  4964. -moz-box-shadow:none;
  4965. -webkit-box-shadow:none;
  4966. box-shadow:none;
  4967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4968. font-weight:400;
  4969. font-style:normal;
  4970. font-size:14px;
  4971. text-align:right;
  4972. }
  4973. #u95674 {
  4974. border-width:0px;
  4975. position:absolute;
  4976. left:1426px;
  4977. top:821px;
  4978. width:200px;
  4979. height:40px;
  4980. display:flex;
  4981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4982. font-weight:400;
  4983. font-style:normal;
  4984. font-size:14px;
  4985. text-align:right;
  4986. }
  4987. #u95674 .text {
  4988. position:absolute;
  4989. align-self:center;
  4990. padding:2px 8px 2px 8px;
  4991. box-sizing:border-box;
  4992. width:100%;
  4993. }
  4994. #u95674_text {
  4995. border-width:0px;
  4996. word-wrap:break-word;
  4997. text-transform:none;
  4998. visibility:hidden;
  4999. }
  5000. #u95675_input {
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:161px;
  5005. height:33px;
  5006. padding:2px 2px 2px 2px;
  5007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. font-size:14px;
  5011. letter-spacing:normal;
  5012. color:#D7D7D7;
  5013. vertical-align:none;
  5014. text-align:left;
  5015. text-transform:none;
  5016. background-color:transparent;
  5017. border-color:transparent;
  5018. }
  5019. #u95675_input.disabled {
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:161px;
  5024. height:33px;
  5025. padding:2px 2px 2px 2px;
  5026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5027. font-weight:400;
  5028. font-style:normal;
  5029. font-size:14px;
  5030. letter-spacing:normal;
  5031. color:#D7D7D7;
  5032. vertical-align:none;
  5033. text-align:left;
  5034. text-transform:none;
  5035. background-color:transparent;
  5036. border-color:transparent;
  5037. }
  5038. #u95675_div {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:0px;
  5042. top:0px;
  5043. width:161px;
  5044. height:33px;
  5045. background:inherit;
  5046. background-color:rgba(255, 255, 255, 0);
  5047. border:none;
  5048. border-radius:0px;
  5049. -moz-box-shadow:none;
  5050. -webkit-box-shadow:none;
  5051. box-shadow:none;
  5052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:14px;
  5056. color:#D7D7D7;
  5057. }
  5058. #u95675 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:1434px;
  5062. top:824px;
  5063. width:161px;
  5064. height:33px;
  5065. display:flex;
  5066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:14px;
  5070. color:#D7D7D7;
  5071. }
  5072. #u95675 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 2px 2px 2px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u95675_div.disabled {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:161px;
  5085. height:33px;
  5086. background:inherit;
  5087. background-color:rgba(240, 240, 240, 1);
  5088. border:none;
  5089. border-radius:0px;
  5090. -moz-box-shadow:none;
  5091. -webkit-box-shadow:none;
  5092. box-shadow:none;
  5093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5094. font-weight:400;
  5095. font-style:normal;
  5096. font-size:14px;
  5097. color:#D7D7D7;
  5098. }
  5099. #u95675.disabled {
  5100. }
  5101. #u95676_div {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:0px;
  5105. top:0px;
  5106. width:85px;
  5107. height:40px;
  5108. background:inherit;
  5109. background-color:rgba(255, 255, 255, 0);
  5110. border:none;
  5111. border-left:0px;
  5112. border-top:0px;
  5113. border-right:0px;
  5114. border-radius:0px;
  5115. border-bottom-right-radius:0px;
  5116. border-bottom-left-radius:0px;
  5117. -moz-box-shadow:none;
  5118. -webkit-box-shadow:none;
  5119. box-shadow:none;
  5120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:14px;
  5124. }
  5125. #u95676 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:1426px;
  5129. top:782px;
  5130. width:85px;
  5131. height:40px;
  5132. display:flex;
  5133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5134. font-weight:400;
  5135. font-style:normal;
  5136. font-size:14px;
  5137. }
  5138. #u95676 .text {
  5139. position:absolute;
  5140. align-self:center;
  5141. padding:0px 0px 0px 0px;
  5142. box-sizing:border-box;
  5143. width:100%;
  5144. }
  5145. #u95676_text {
  5146. border-width:0px;
  5147. white-space:nowrap;
  5148. text-transform:none;
  5149. }
  5150. #u95677 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:0px;
  5156. height:0px;
  5157. }
  5158. #u95678_div {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:200px;
  5164. height:40px;
  5165. background:inherit;
  5166. background-color:rgba(255, 255, 255, 1);
  5167. box-sizing:border-box;
  5168. border-width:1px;
  5169. border-style:solid;
  5170. border-color:rgba(201, 201, 201, 1);
  5171. border-radius:4px;
  5172. -moz-box-shadow:none;
  5173. -webkit-box-shadow:none;
  5174. box-shadow:none;
  5175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5176. font-weight:400;
  5177. font-style:normal;
  5178. font-size:14px;
  5179. text-align:right;
  5180. }
  5181. #u95678 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:1196px;
  5185. top:822px;
  5186. width:200px;
  5187. height:40px;
  5188. display:flex;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:14px;
  5193. text-align:right;
  5194. }
  5195. #u95678 .text {
  5196. position:absolute;
  5197. align-self:center;
  5198. padding:2px 8px 2px 8px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u95678_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. visibility:hidden;
  5207. }
  5208. #u95679_input {
  5209. position:absolute;
  5210. left:0px;
  5211. top:0px;
  5212. width:161px;
  5213. height:33px;
  5214. padding:2px 2px 2px 2px;
  5215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5216. font-weight:400;
  5217. font-style:normal;
  5218. font-size:14px;
  5219. letter-spacing:normal;
  5220. color:#D7D7D7;
  5221. vertical-align:none;
  5222. text-align:left;
  5223. text-transform:none;
  5224. background-color:transparent;
  5225. border-color:transparent;
  5226. }
  5227. #u95679_input.disabled {
  5228. position:absolute;
  5229. left:0px;
  5230. top:0px;
  5231. width:161px;
  5232. height:33px;
  5233. padding:2px 2px 2px 2px;
  5234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:14px;
  5238. letter-spacing:normal;
  5239. color:#D7D7D7;
  5240. vertical-align:none;
  5241. text-align:left;
  5242. text-transform:none;
  5243. background-color:transparent;
  5244. border-color:transparent;
  5245. }
  5246. #u95679_div {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:161px;
  5252. height:33px;
  5253. background:inherit;
  5254. background-color:rgba(255, 255, 255, 0);
  5255. border:none;
  5256. border-radius:0px;
  5257. -moz-box-shadow:none;
  5258. -webkit-box-shadow:none;
  5259. box-shadow:none;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:14px;
  5264. color:#D7D7D7;
  5265. }
  5266. #u95679 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:1204px;
  5270. top:825px;
  5271. width:161px;
  5272. height:33px;
  5273. display:flex;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:14px;
  5278. color:#D7D7D7;
  5279. }
  5280. #u95679 .text {
  5281. position:absolute;
  5282. align-self:center;
  5283. padding:2px 2px 2px 2px;
  5284. box-sizing:border-box;
  5285. width:100%;
  5286. }
  5287. #u95679_div.disabled {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:161px;
  5293. height:33px;
  5294. background:inherit;
  5295. background-color:rgba(240, 240, 240, 1);
  5296. border:none;
  5297. border-radius:0px;
  5298. -moz-box-shadow:none;
  5299. -webkit-box-shadow:none;
  5300. box-shadow:none;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:14px;
  5305. color:#D7D7D7;
  5306. }
  5307. #u95679.disabled {
  5308. }
  5309. #u95680_div {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:64px;
  5315. height:40px;
  5316. background:inherit;
  5317. background-color:rgba(255, 255, 255, 0);
  5318. border:none;
  5319. border-left:0px;
  5320. border-top:0px;
  5321. border-right:0px;
  5322. border-radius:0px;
  5323. border-bottom-right-radius:0px;
  5324. border-bottom-left-radius:0px;
  5325. -moz-box-shadow:none;
  5326. -webkit-box-shadow:none;
  5327. box-shadow:none;
  5328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5329. font-weight:400;
  5330. font-style:normal;
  5331. font-size:14px;
  5332. }
  5333. #u95680 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:1196px;
  5337. top:513px;
  5338. width:64px;
  5339. height:40px;
  5340. display:flex;
  5341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5342. font-weight:400;
  5343. font-style:normal;
  5344. font-size:14px;
  5345. }
  5346. #u95680 .text {
  5347. position:absolute;
  5348. align-self:center;
  5349. padding:0px 0px 0px 0px;
  5350. box-sizing:border-box;
  5351. width:100%;
  5352. }
  5353. #u95680_text {
  5354. border-width:0px;
  5355. white-space:nowrap;
  5356. text-transform:none;
  5357. }
  5358. #u95681 {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:0px;
  5364. height:0px;
  5365. }
  5366. #u95682_div {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:0px;
  5370. top:0px;
  5371. width:200px;
  5372. height:40px;
  5373. background:inherit;
  5374. background-color:rgba(255, 255, 255, 1);
  5375. box-sizing:border-box;
  5376. border-width:1px;
  5377. border-style:solid;
  5378. border-color:rgba(215, 215, 215, 1);
  5379. border-radius:4px;
  5380. -moz-box-shadow:none;
  5381. -webkit-box-shadow:none;
  5382. box-shadow:none;
  5383. font-size:14px;
  5384. }
  5385. #u95682 {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:1196px;
  5389. top:553px;
  5390. width:200px;
  5391. height:40px;
  5392. display:flex;
  5393. font-size:14px;
  5394. }
  5395. #u95682 .text {
  5396. position:absolute;
  5397. align-self:center;
  5398. padding:2px 2px 2px 2px;
  5399. box-sizing:border-box;
  5400. width:100%;
  5401. }
  5402. #u95682_text {
  5403. border-width:0px;
  5404. word-wrap:break-word;
  5405. text-transform:none;
  5406. visibility:hidden;
  5407. }
  5408. #u95683_input {
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:191px;
  5413. height:31px;
  5414. padding:2px 2px 2px 2px;
  5415. font-family:'ArialMT', 'Arial', sans-serif;
  5416. font-weight:400;
  5417. font-style:normal;
  5418. font-size:14px;
  5419. letter-spacing:normal;
  5420. color:#AAAAAA;
  5421. vertical-align:none;
  5422. text-align:left;
  5423. text-transform:none;
  5424. background-color:transparent;
  5425. border-color:transparent;
  5426. }
  5427. #u95683_input.disabled {
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:191px;
  5432. height:31px;
  5433. padding:2px 2px 2px 2px;
  5434. font-family:'ArialMT', 'Arial', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:14px;
  5438. letter-spacing:normal;
  5439. color:#AAAAAA;
  5440. vertical-align:none;
  5441. text-align:left;
  5442. text-transform:none;
  5443. background-color:transparent;
  5444. border-color:transparent;
  5445. }
  5446. #u95683_div {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:0px;
  5450. top:0px;
  5451. width:191px;
  5452. height:31px;
  5453. background:inherit;
  5454. background-color:rgba(255, 255, 255, 1);
  5455. border:none;
  5456. border-radius:0px;
  5457. -moz-box-shadow:none;
  5458. -webkit-box-shadow:none;
  5459. box-shadow:none;
  5460. font-size:14px;
  5461. color:#AAAAAA;
  5462. }
  5463. #u95683 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:1202px;
  5467. top:556px;
  5468. width:191px;
  5469. height:31px;
  5470. display:flex;
  5471. font-size:14px;
  5472. color:#AAAAAA;
  5473. }
  5474. #u95683 .text {
  5475. position:absolute;
  5476. align-self:flex-start;
  5477. padding:2px 2px 2px 2px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u95683_div.disabled {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:191px;
  5487. height:31px;
  5488. background:inherit;
  5489. background-color:rgba(240, 240, 240, 1);
  5490. border:none;
  5491. border-radius:0px;
  5492. -moz-box-shadow:none;
  5493. -webkit-box-shadow:none;
  5494. box-shadow:none;
  5495. font-size:14px;
  5496. color:#AAAAAA;
  5497. }
  5498. #u95683.disabled {
  5499. }
  5500. .u95683_input_option {
  5501. font-size:14px;
  5502. }
  5503. #u95684_div {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:64px;
  5509. height:40px;
  5510. background:inherit;
  5511. background-color:rgba(255, 255, 255, 0);
  5512. border:none;
  5513. border-left:0px;
  5514. border-top:0px;
  5515. border-right:0px;
  5516. border-radius:0px;
  5517. border-bottom-right-radius:0px;
  5518. border-bottom-left-radius:0px;
  5519. -moz-box-shadow:none;
  5520. -webkit-box-shadow:none;
  5521. box-shadow:none;
  5522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5523. font-weight:400;
  5524. font-style:normal;
  5525. font-size:14px;
  5526. }
  5527. #u95684 {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:996px;
  5531. top:339px;
  5532. width:64px;
  5533. height:40px;
  5534. display:flex;
  5535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5536. font-weight:400;
  5537. font-style:normal;
  5538. font-size:14px;
  5539. }
  5540. #u95684 .text {
  5541. position:absolute;
  5542. align-self:center;
  5543. padding:0px 0px 0px 0px;
  5544. box-sizing:border-box;
  5545. width:100%;
  5546. }
  5547. #u95684_text {
  5548. border-width:0px;
  5549. white-space:nowrap;
  5550. text-transform:none;
  5551. }
  5552. #u95685_div {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:0px;
  5556. top:0px;
  5557. width:120px;
  5558. height:120px;
  5559. background:inherit;
  5560. background-color:rgba(255, 255, 255, 1);
  5561. box-sizing:border-box;
  5562. border-width:1px;
  5563. border-style:solid;
  5564. border-color:rgba(201, 201, 201, 1);
  5565. border-radius:4px;
  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:38px;
  5573. }
  5574. #u95685 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:996px;
  5578. top:379px;
  5579. width:120px;
  5580. height:120px;
  5581. display:flex;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:38px;
  5586. }
  5587. #u95685 .text {
  5588. position:absolute;
  5589. align-self:center;
  5590. padding:2px 8px 2px 8px;
  5591. box-sizing:border-box;
  5592. width:100%;
  5593. }
  5594. #u95685_text {
  5595. border-width:0px;
  5596. word-wrap:break-word;
  5597. text-transform:none;
  5598. }
  5599. #u95686 {
  5600. border-width:0px;
  5601. position:absolute;
  5602. left:0px;
  5603. top:0px;
  5604. width:0px;
  5605. height:0px;
  5606. }
  5607. #u95687_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:120px;
  5613. height:40px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 1);
  5616. box-sizing:border-box;
  5617. border-width:1px;
  5618. border-style:solid;
  5619. border-color:rgba(215, 215, 215, 1);
  5620. border-radius:4px;
  5621. -moz-box-shadow:none;
  5622. -webkit-box-shadow:none;
  5623. box-shadow:none;
  5624. font-size:14px;
  5625. }
  5626. #u95687 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:1276px;
  5630. top:209px;
  5631. width:120px;
  5632. height:40px;
  5633. display:flex;
  5634. font-size:14px;
  5635. }
  5636. #u95687 .text {
  5637. position:absolute;
  5638. align-self:center;
  5639. padding:2px 2px 2px 2px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u95687_text {
  5644. border-width:0px;
  5645. word-wrap:break-word;
  5646. text-transform:none;
  5647. visibility:hidden;
  5648. }
  5649. #u95688_input {
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:115px;
  5654. height:31px;
  5655. padding:2px 2px 2px 2px;
  5656. font-family:'ArialMT', 'Arial', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:14px;
  5660. letter-spacing:normal;
  5661. color:#AAAAAA;
  5662. vertical-align:none;
  5663. text-align:left;
  5664. text-transform:none;
  5665. background-color:transparent;
  5666. border-color:transparent;
  5667. }
  5668. #u95688_input.disabled {
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:115px;
  5673. height:31px;
  5674. padding:2px 2px 2px 2px;
  5675. font-family:'ArialMT', 'Arial', sans-serif;
  5676. font-weight:400;
  5677. font-style:normal;
  5678. font-size:14px;
  5679. letter-spacing:normal;
  5680. color:#AAAAAA;
  5681. vertical-align:none;
  5682. text-align:left;
  5683. text-transform:none;
  5684. background-color:transparent;
  5685. border-color:transparent;
  5686. }
  5687. #u95688_div {
  5688. border-width:0px;
  5689. position:absolute;
  5690. left:0px;
  5691. top:0px;
  5692. width:115px;
  5693. height:31px;
  5694. background:inherit;
  5695. background-color:rgba(255, 255, 255, 1);
  5696. border:none;
  5697. border-radius:0px;
  5698. -moz-box-shadow:none;
  5699. -webkit-box-shadow:none;
  5700. box-shadow:none;
  5701. font-size:14px;
  5702. color:#AAAAAA;
  5703. }
  5704. #u95688 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:1280px;
  5708. top:212px;
  5709. width:115px;
  5710. height:31px;
  5711. display:flex;
  5712. font-size:14px;
  5713. color:#AAAAAA;
  5714. }
  5715. #u95688 .text {
  5716. position:absolute;
  5717. align-self:flex-start;
  5718. padding:2px 2px 2px 2px;
  5719. box-sizing:border-box;
  5720. width:100%;
  5721. }
  5722. #u95688_div.disabled {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:115px;
  5728. height:31px;
  5729. background:inherit;
  5730. background-color:rgba(240, 240, 240, 1);
  5731. border:none;
  5732. border-radius:0px;
  5733. -moz-box-shadow:none;
  5734. -webkit-box-shadow:none;
  5735. box-shadow:none;
  5736. font-size:14px;
  5737. color:#AAAAAA;
  5738. }
  5739. #u95688.disabled {
  5740. }
  5741. .u95688_input_option {
  5742. font-size:14px;
  5743. }
  5744. #u95689 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:0px;
  5750. height:0px;
  5751. }
  5752. #u95690_div {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:120px;
  5758. height:40px;
  5759. background:inherit;
  5760. background-color:rgba(255, 255, 255, 1);
  5761. box-sizing:border-box;
  5762. border-width:1px;
  5763. border-style:solid;
  5764. border-color:rgba(215, 215, 215, 1);
  5765. border-radius:4px;
  5766. -moz-box-shadow:none;
  5767. -webkit-box-shadow:none;
  5768. box-shadow:none;
  5769. font-size:14px;
  5770. }
  5771. #u95690 {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:1406px;
  5775. top:209px;
  5776. width:120px;
  5777. height:40px;
  5778. display:flex;
  5779. font-size:14px;
  5780. }
  5781. #u95690 .text {
  5782. position:absolute;
  5783. align-self:center;
  5784. padding:2px 2px 2px 2px;
  5785. box-sizing:border-box;
  5786. width:100%;
  5787. }
  5788. #u95690_text {
  5789. border-width:0px;
  5790. word-wrap:break-word;
  5791. text-transform:none;
  5792. visibility:hidden;
  5793. }
  5794. #u95691_input {
  5795. position:absolute;
  5796. left:0px;
  5797. top:0px;
  5798. width:115px;
  5799. height:31px;
  5800. padding:2px 2px 2px 2px;
  5801. font-family:'ArialMT', 'Arial', sans-serif;
  5802. font-weight:400;
  5803. font-style:normal;
  5804. font-size:14px;
  5805. letter-spacing:normal;
  5806. color:#AAAAAA;
  5807. vertical-align:none;
  5808. text-align:left;
  5809. text-transform:none;
  5810. background-color:transparent;
  5811. border-color:transparent;
  5812. }
  5813. #u95691_input.disabled {
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:115px;
  5818. height:31px;
  5819. padding:2px 2px 2px 2px;
  5820. font-family:'ArialMT', 'Arial', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:14px;
  5824. letter-spacing:normal;
  5825. color:#AAAAAA;
  5826. vertical-align:none;
  5827. text-align:left;
  5828. text-transform:none;
  5829. background-color:transparent;
  5830. border-color:transparent;
  5831. }
  5832. #u95691_div {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:115px;
  5838. height:31px;
  5839. background:inherit;
  5840. background-color:rgba(255, 255, 255, 1);
  5841. border:none;
  5842. border-radius:0px;
  5843. -moz-box-shadow:none;
  5844. -webkit-box-shadow:none;
  5845. box-shadow:none;
  5846. font-size:14px;
  5847. color:#AAAAAA;
  5848. }
  5849. #u95691 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:1410px;
  5853. top:212px;
  5854. width:115px;
  5855. height:31px;
  5856. display:flex;
  5857. font-size:14px;
  5858. color:#AAAAAA;
  5859. }
  5860. #u95691 .text {
  5861. position:absolute;
  5862. align-self:flex-start;
  5863. padding:2px 2px 2px 2px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u95691_div.disabled {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:115px;
  5873. height:31px;
  5874. background:inherit;
  5875. background-color:rgba(240, 240, 240, 1);
  5876. border:none;
  5877. border-radius:0px;
  5878. -moz-box-shadow:none;
  5879. -webkit-box-shadow:none;
  5880. box-shadow:none;
  5881. font-size:14px;
  5882. color:#AAAAAA;
  5883. }
  5884. #u95691.disabled {
  5885. }
  5886. .u95691_input_option {
  5887. font-size:14px;
  5888. }
  5889. #u95692_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:73px;
  5895. height:40px;
  5896. background:inherit;
  5897. background-color:rgba(255, 255, 255, 0);
  5898. border:none;
  5899. border-left:0px;
  5900. border-top:0px;
  5901. border-right:0px;
  5902. border-radius:0px;
  5903. border-bottom-right-radius:0px;
  5904. border-bottom-left-radius:0px;
  5905. -moz-box-shadow:none;
  5906. -webkit-box-shadow:none;
  5907. box-shadow:none;
  5908. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5909. font-weight:500;
  5910. font-style:normal;
  5911. font-size:18px;
  5912. }
  5913. #u95692 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:996px;
  5917. top:279px;
  5918. width:73px;
  5919. height:40px;
  5920. display:flex;
  5921. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5922. font-weight:500;
  5923. font-style:normal;
  5924. font-size:18px;
  5925. }
  5926. #u95692 .text {
  5927. position:absolute;
  5928. align-self:center;
  5929. padding:0px 0px 0px 0px;
  5930. box-sizing:border-box;
  5931. width:100%;
  5932. }
  5933. #u95692_text {
  5934. border-width:0px;
  5935. white-space:nowrap;
  5936. text-transform:none;
  5937. }
  5938. #u95693_div {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:0px;
  5942. top:0px;
  5943. width:64px;
  5944. height:40px;
  5945. background:inherit;
  5946. background-color:rgba(255, 255, 255, 0);
  5947. border:none;
  5948. border-left:0px;
  5949. border-top:0px;
  5950. border-right:0px;
  5951. border-radius:0px;
  5952. border-bottom-right-radius:0px;
  5953. border-bottom-left-radius:0px;
  5954. -moz-box-shadow:none;
  5955. -webkit-box-shadow:none;
  5956. box-shadow:none;
  5957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:14px;
  5961. }
  5962. #u95693 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:1196px;
  5966. top:339px;
  5967. width:64px;
  5968. height:40px;
  5969. display:flex;
  5970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5971. font-weight:400;
  5972. font-style:normal;
  5973. font-size:14px;
  5974. }
  5975. #u95693 .text {
  5976. position:absolute;
  5977. align-self:center;
  5978. padding:0px 0px 0px 0px;
  5979. box-sizing:border-box;
  5980. width:100%;
  5981. }
  5982. #u95693_text {
  5983. border-width:0px;
  5984. white-space:nowrap;
  5985. text-transform:none;
  5986. }
  5987. #u95694 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:0px;
  5993. height:0px;
  5994. }
  5995. #u95695_div {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:0px;
  5999. top:0px;
  6000. width:120px;
  6001. height:40px;
  6002. background:inherit;
  6003. background-color:rgba(242, 242, 242, 1);
  6004. box-sizing:border-box;
  6005. border-width:1px;
  6006. border-style:solid;
  6007. border-color:rgba(215, 215, 215, 1);
  6008. border-radius:4px;
  6009. -moz-box-shadow:none;
  6010. -webkit-box-shadow:none;
  6011. box-shadow:none;
  6012. font-size:14px;
  6013. }
  6014. #u95695 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:1536px;
  6018. top:208px;
  6019. width:120px;
  6020. height:40px;
  6021. display:flex;
  6022. font-size:14px;
  6023. }
  6024. #u95695 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:2px 2px 2px 2px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u95695_text {
  6032. border-width:0px;
  6033. word-wrap:break-word;
  6034. text-transform:none;
  6035. visibility:hidden;
  6036. }
  6037. #u95696_input {
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:115px;
  6042. height:31px;
  6043. padding:2px 2px 2px 2px;
  6044. font-family:'ArialMT', 'Arial', sans-serif;
  6045. font-weight:400;
  6046. font-style:normal;
  6047. font-size:14px;
  6048. letter-spacing:normal;
  6049. color:#AAAAAA;
  6050. vertical-align:none;
  6051. text-align:left;
  6052. text-transform:none;
  6053. background-color:transparent;
  6054. border-color:transparent;
  6055. }
  6056. #u95696_input.disabled {
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:115px;
  6061. height:31px;
  6062. padding:2px 2px 2px 2px;
  6063. font-family:'ArialMT', 'Arial', sans-serif;
  6064. font-weight:400;
  6065. font-style:normal;
  6066. font-size:14px;
  6067. letter-spacing:normal;
  6068. color:#AAAAAA;
  6069. vertical-align:none;
  6070. text-align:left;
  6071. text-transform:none;
  6072. background-color:transparent;
  6073. border-color:transparent;
  6074. }
  6075. #u95696_div {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:115px;
  6081. height:31px;
  6082. background:inherit;
  6083. background-color:rgba(242, 242, 242, 1);
  6084. border:none;
  6085. border-radius:0px;
  6086. -moz-box-shadow:none;
  6087. -webkit-box-shadow:none;
  6088. box-shadow:none;
  6089. font-size:14px;
  6090. color:#AAAAAA;
  6091. }
  6092. #u95696 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:1540px;
  6096. top:211px;
  6097. width:115px;
  6098. height:31px;
  6099. display:flex;
  6100. font-size:14px;
  6101. color:#AAAAAA;
  6102. }
  6103. #u95696 .text {
  6104. position:absolute;
  6105. align-self:flex-start;
  6106. padding:2px 2px 2px 2px;
  6107. box-sizing:border-box;
  6108. width:100%;
  6109. }
  6110. #u95696_div.disabled {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:115px;
  6116. height:31px;
  6117. background:inherit;
  6118. background-color:rgba(240, 240, 240, 1);
  6119. border:none;
  6120. border-radius:0px;
  6121. -moz-box-shadow:none;
  6122. -webkit-box-shadow:none;
  6123. box-shadow:none;
  6124. font-size:14px;
  6125. color:#AAAAAA;
  6126. }
  6127. #u95696.disabled {
  6128. }
  6129. .u95696_input_option {
  6130. font-size:14px;
  6131. }
  6132. #u95697 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:0px;
  6136. top:0px;
  6137. width:0px;
  6138. height:0px;
  6139. }
  6140. #u95698_div {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:200px;
  6146. height:40px;
  6147. background:inherit;
  6148. background-color:rgba(255, 255, 255, 1);
  6149. box-sizing:border-box;
  6150. border-width:1px;
  6151. border-style:solid;
  6152. border-color:rgba(201, 201, 201, 1);
  6153. border-radius:4px;
  6154. -moz-box-shadow:none;
  6155. -webkit-box-shadow:none;
  6156. box-shadow:none;
  6157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:14px;
  6161. text-align:right;
  6162. }
  6163. #u95698 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:1196px;
  6167. top:463px;
  6168. width:200px;
  6169. height:40px;
  6170. display:flex;
  6171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6172. font-weight:400;
  6173. font-style:normal;
  6174. font-size:14px;
  6175. text-align:right;
  6176. }
  6177. #u95698 .text {
  6178. position:absolute;
  6179. align-self:center;
  6180. padding:2px 8px 2px 8px;
  6181. box-sizing:border-box;
  6182. width:100%;
  6183. }
  6184. #u95698_text {
  6185. border-width:0px;
  6186. word-wrap:break-word;
  6187. text-transform:none;
  6188. visibility:hidden;
  6189. }
  6190. #u95699_input {
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:161px;
  6195. height:33px;
  6196. padding:2px 2px 2px 2px;
  6197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6198. font-weight:400;
  6199. font-style:normal;
  6200. font-size:14px;
  6201. letter-spacing:normal;
  6202. color:#D7D7D7;
  6203. vertical-align:none;
  6204. text-align:left;
  6205. text-transform:none;
  6206. background-color:transparent;
  6207. border-color:transparent;
  6208. }
  6209. #u95699_input.disabled {
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:161px;
  6214. height:33px;
  6215. padding:2px 2px 2px 2px;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:14px;
  6220. letter-spacing:normal;
  6221. color:#D7D7D7;
  6222. vertical-align:none;
  6223. text-align:left;
  6224. text-transform:none;
  6225. background-color:transparent;
  6226. border-color:transparent;
  6227. }
  6228. #u95699_div {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:0px;
  6232. top:0px;
  6233. width:161px;
  6234. height:33px;
  6235. background:inherit;
  6236. background-color:rgba(255, 255, 255, 0);
  6237. border:none;
  6238. border-radius:0px;
  6239. -moz-box-shadow:none;
  6240. -webkit-box-shadow:none;
  6241. box-shadow:none;
  6242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6243. font-weight:400;
  6244. font-style:normal;
  6245. font-size:14px;
  6246. color:#D7D7D7;
  6247. }
  6248. #u95699 {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:1204px;
  6252. top:466px;
  6253. width:161px;
  6254. height:33px;
  6255. display:flex;
  6256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. font-size:14px;
  6260. color:#D7D7D7;
  6261. }
  6262. #u95699 .text {
  6263. position:absolute;
  6264. align-self:center;
  6265. padding:2px 2px 2px 2px;
  6266. box-sizing:border-box;
  6267. width:100%;
  6268. }
  6269. #u95699_div.disabled {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:161px;
  6275. height:33px;
  6276. background:inherit;
  6277. background-color:rgba(240, 240, 240, 1);
  6278. border:none;
  6279. border-radius:0px;
  6280. -moz-box-shadow:none;
  6281. -webkit-box-shadow:none;
  6282. box-shadow:none;
  6283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6284. font-weight:400;
  6285. font-style:normal;
  6286. font-size:14px;
  6287. color:#D7D7D7;
  6288. }
  6289. #u95699.disabled {
  6290. }
  6291. #u95700_img {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:13px;
  6297. height:13px;
  6298. }
  6299. #u95700 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:1374px;
  6303. top:476px;
  6304. width:13px;
  6305. height:13px;
  6306. display:flex;
  6307. }
  6308. #u95700 .text {
  6309. position:absolute;
  6310. align-self:center;
  6311. padding:2px 2px 2px 2px;
  6312. box-sizing:border-box;
  6313. width:100%;
  6314. }
  6315. #u95700_text {
  6316. border-width:0px;
  6317. word-wrap:break-word;
  6318. text-transform:none;
  6319. visibility:hidden;
  6320. }
  6321. #u95701_div {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:0px;
  6325. top:0px;
  6326. width:64px;
  6327. height:40px;
  6328. background:inherit;
  6329. background-color:rgba(255, 255, 255, 0);
  6330. border:none;
  6331. border-left:0px;
  6332. border-top:0px;
  6333. border-right:0px;
  6334. border-radius:0px;
  6335. border-bottom-right-radius:0px;
  6336. border-bottom-left-radius:0px;
  6337. -moz-box-shadow:none;
  6338. -webkit-box-shadow:none;
  6339. box-shadow:none;
  6340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:14px;
  6344. }
  6345. #u95701 {
  6346. border-width:0px;
  6347. position:absolute;
  6348. left:1426px;
  6349. top:513px;
  6350. width:64px;
  6351. height:40px;
  6352. display:flex;
  6353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6354. font-weight:400;
  6355. font-style:normal;
  6356. font-size:14px;
  6357. }
  6358. #u95701 .text {
  6359. position:absolute;
  6360. align-self:center;
  6361. padding:0px 0px 0px 0px;
  6362. box-sizing:border-box;
  6363. width:100%;
  6364. }
  6365. #u95701_text {
  6366. border-width:0px;
  6367. white-space:nowrap;
  6368. text-transform:none;
  6369. }
  6370. #u95702 label {
  6371. left:0px;
  6372. width:100%;
  6373. }
  6374. #u95702_img {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:0px;
  6378. top:4px;
  6379. width:12px;
  6380. height:12px;
  6381. }
  6382. #u95702 {
  6383. border-width:0px;
  6384. position:absolute;
  6385. left:1204px;
  6386. top:389px;
  6387. width:100px;
  6388. height:20px;
  6389. display:flex;
  6390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6391. font-weight:400;
  6392. font-style:normal;
  6393. font-size:14px;
  6394. }
  6395. #u95702 .text {
  6396. position:absolute;
  6397. align-self:center;
  6398. padding:0px 2px 0px 2px;
  6399. box-sizing:border-box;
  6400. }
  6401. #u95702_img.selected {
  6402. }
  6403. #u95702.selected {
  6404. }
  6405. #u95702_img.disabled {
  6406. }
  6407. #u95702.disabled {
  6408. }
  6409. #u95702_img.selectedDisabled {
  6410. }
  6411. #u95702.selectedDisabled {
  6412. }
  6413. #u95702_text {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:14px;
  6417. top:0px;
  6418. width:84px;
  6419. word-wrap:break-word;
  6420. text-transform:none;
  6421. }
  6422. #u95702_input {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:0px;
  6428. height:0px;
  6429. opacity:0;
  6430. }
  6431. #u95703 label {
  6432. left:0px;
  6433. width:100%;
  6434. }
  6435. #u95703_img {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:4px;
  6440. width:12px;
  6441. height:12px;
  6442. }
  6443. #u95703 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:1426px;
  6447. top:389px;
  6448. width:100px;
  6449. height:20px;
  6450. display:flex;
  6451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6452. font-weight:400;
  6453. font-style:normal;
  6454. font-size:14px;
  6455. }
  6456. #u95703 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:0px 2px 0px 2px;
  6460. box-sizing:border-box;
  6461. }
  6462. #u95703_img.selected {
  6463. }
  6464. #u95703.selected {
  6465. }
  6466. #u95703_img.disabled {
  6467. }
  6468. #u95703.disabled {
  6469. }
  6470. #u95703_img.selectedDisabled {
  6471. }
  6472. #u95703.selectedDisabled {
  6473. }
  6474. #u95703_text {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:14px;
  6478. top:0px;
  6479. width:84px;
  6480. word-wrap:break-word;
  6481. text-transform:none;
  6482. }
  6483. #u95703_input {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:0px;
  6488. width:0px;
  6489. height:0px;
  6490. opacity:0;
  6491. }
  6492. #u95704 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:0px;
  6498. height:0px;
  6499. }
  6500. #u95705_div {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:200px;
  6506. height:40px;
  6507. background:inherit;
  6508. background-color:rgba(255, 255, 255, 1);
  6509. box-sizing:border-box;
  6510. border-width:1px;
  6511. border-style:solid;
  6512. border-color:rgba(215, 215, 215, 1);
  6513. border-radius:4px;
  6514. -moz-box-shadow:none;
  6515. -webkit-box-shadow:none;
  6516. box-shadow:none;
  6517. font-size:14px;
  6518. }
  6519. #u95705 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:1426px;
  6523. top:553px;
  6524. width:200px;
  6525. height:40px;
  6526. display:flex;
  6527. font-size:14px;
  6528. }
  6529. #u95705 .text {
  6530. position:absolute;
  6531. align-self:center;
  6532. padding:2px 2px 2px 2px;
  6533. box-sizing:border-box;
  6534. width:100%;
  6535. }
  6536. #u95705_text {
  6537. border-width:0px;
  6538. word-wrap:break-word;
  6539. text-transform:none;
  6540. visibility:hidden;
  6541. }
  6542. #u95706_input {
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:191px;
  6547. height:31px;
  6548. padding:2px 2px 2px 2px;
  6549. font-family:'ArialMT', 'Arial', sans-serif;
  6550. font-weight:400;
  6551. font-style:normal;
  6552. font-size:14px;
  6553. letter-spacing:normal;
  6554. color:#AAAAAA;
  6555. vertical-align:none;
  6556. text-align:left;
  6557. text-transform:none;
  6558. background-color:transparent;
  6559. border-color:transparent;
  6560. }
  6561. #u95706_input.disabled {
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:191px;
  6566. height:31px;
  6567. padding:2px 2px 2px 2px;
  6568. font-family:'ArialMT', 'Arial', sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:14px;
  6572. letter-spacing:normal;
  6573. color:#AAAAAA;
  6574. vertical-align:none;
  6575. text-align:left;
  6576. text-transform:none;
  6577. background-color:transparent;
  6578. border-color:transparent;
  6579. }
  6580. #u95706_div {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:191px;
  6586. height:31px;
  6587. background:inherit;
  6588. background-color:rgba(255, 255, 255, 1);
  6589. border:none;
  6590. border-radius:0px;
  6591. -moz-box-shadow:none;
  6592. -webkit-box-shadow:none;
  6593. box-shadow:none;
  6594. font-size:14px;
  6595. color:#AAAAAA;
  6596. }
  6597. #u95706 {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:1432px;
  6601. top:556px;
  6602. width:191px;
  6603. height:31px;
  6604. display:flex;
  6605. font-size:14px;
  6606. color:#AAAAAA;
  6607. }
  6608. #u95706 .text {
  6609. position:absolute;
  6610. align-self:flex-start;
  6611. padding:2px 2px 2px 2px;
  6612. box-sizing:border-box;
  6613. width:100%;
  6614. }
  6615. #u95706_div.disabled {
  6616. border-width:0px;
  6617. position:absolute;
  6618. left:0px;
  6619. top:0px;
  6620. width:191px;
  6621. height:31px;
  6622. background:inherit;
  6623. background-color:rgba(240, 240, 240, 1);
  6624. border:none;
  6625. border-radius:0px;
  6626. -moz-box-shadow:none;
  6627. -webkit-box-shadow:none;
  6628. box-shadow:none;
  6629. font-size:14px;
  6630. color:#AAAAAA;
  6631. }
  6632. #u95706.disabled {
  6633. }
  6634. .u95706_input_option {
  6635. font-size:14px;
  6636. }
  6637. #u95707 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:0px;
  6641. top:0px;
  6642. width:0px;
  6643. height:0px;
  6644. }
  6645. #u95708_div {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:200px;
  6651. height:40px;
  6652. background:inherit;
  6653. background-color:rgba(255, 255, 255, 1);
  6654. box-sizing:border-box;
  6655. border-width:1px;
  6656. border-style:solid;
  6657. border-color:rgba(201, 201, 201, 1);
  6658. border-radius:4px;
  6659. -moz-box-shadow:none;
  6660. -webkit-box-shadow:none;
  6661. box-shadow:none;
  6662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6663. font-weight:400;
  6664. font-style:normal;
  6665. font-size:14px;
  6666. text-align:right;
  6667. }
  6668. #u95708 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:1426px;
  6672. top:642px;
  6673. width:200px;
  6674. height:40px;
  6675. display:flex;
  6676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6677. font-weight:400;
  6678. font-style:normal;
  6679. font-size:14px;
  6680. text-align:right;
  6681. }
  6682. #u95708 .text {
  6683. position:absolute;
  6684. align-self:center;
  6685. padding:2px 8px 2px 8px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u95708_text {
  6690. border-width:0px;
  6691. word-wrap:break-word;
  6692. text-transform:none;
  6693. visibility:hidden;
  6694. }
  6695. #u95709_input {
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:161px;
  6700. height:33px;
  6701. padding:2px 2px 2px 2px;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:14px;
  6706. letter-spacing:normal;
  6707. color:#D7D7D7;
  6708. vertical-align:none;
  6709. text-align:left;
  6710. text-transform:none;
  6711. background-color:transparent;
  6712. border-color:transparent;
  6713. }
  6714. #u95709_input.disabled {
  6715. position:absolute;
  6716. left:0px;
  6717. top:0px;
  6718. width:161px;
  6719. height:33px;
  6720. padding:2px 2px 2px 2px;
  6721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6722. font-weight:400;
  6723. font-style:normal;
  6724. font-size:14px;
  6725. letter-spacing:normal;
  6726. color:#D7D7D7;
  6727. vertical-align:none;
  6728. text-align:left;
  6729. text-transform:none;
  6730. background-color:transparent;
  6731. border-color:transparent;
  6732. }
  6733. #u95709_div {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:0px;
  6737. top:0px;
  6738. width:161px;
  6739. height:33px;
  6740. background:inherit;
  6741. background-color:rgba(255, 255, 255, 0);
  6742. border:none;
  6743. border-radius:0px;
  6744. -moz-box-shadow:none;
  6745. -webkit-box-shadow:none;
  6746. box-shadow:none;
  6747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:14px;
  6751. color:#D7D7D7;
  6752. }
  6753. #u95709 {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:1434px;
  6757. top:645px;
  6758. width:161px;
  6759. height:33px;
  6760. display:flex;
  6761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6762. font-weight:400;
  6763. font-style:normal;
  6764. font-size:14px;
  6765. color:#D7D7D7;
  6766. }
  6767. #u95709 .text {
  6768. position:absolute;
  6769. align-self:center;
  6770. padding:2px 2px 2px 2px;
  6771. box-sizing:border-box;
  6772. width:100%;
  6773. }
  6774. #u95709_div.disabled {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:161px;
  6780. height:33px;
  6781. background:inherit;
  6782. background-color:rgba(240, 240, 240, 1);
  6783. border:none;
  6784. border-radius:0px;
  6785. -moz-box-shadow:none;
  6786. -webkit-box-shadow:none;
  6787. box-shadow:none;
  6788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6789. font-weight:400;
  6790. font-style:normal;
  6791. font-size:14px;
  6792. color:#D7D7D7;
  6793. }
  6794. #u95709.disabled {
  6795. }
  6796. #u95710_div {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:78px;
  6802. height:40px;
  6803. background:inherit;
  6804. background-color:rgba(255, 255, 255, 0);
  6805. border:none;
  6806. border-left:0px;
  6807. border-top:0px;
  6808. border-right:0px;
  6809. border-radius:0px;
  6810. border-bottom-right-radius:0px;
  6811. border-bottom-left-radius:0px;
  6812. -moz-box-shadow:none;
  6813. -webkit-box-shadow:none;
  6814. box-shadow:none;
  6815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:14px;
  6819. }
  6820. #u95710 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:1426px;
  6824. top:603px;
  6825. width:78px;
  6826. height:40px;
  6827. display:flex;
  6828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6829. font-weight:400;
  6830. font-style:normal;
  6831. font-size:14px;
  6832. }
  6833. #u95710 .text {
  6834. position:absolute;
  6835. align-self:center;
  6836. padding:0px 0px 0px 0px;
  6837. box-sizing:border-box;
  6838. width:100%;
  6839. }
  6840. #u95710_text {
  6841. border-width:0px;
  6842. white-space:nowrap;
  6843. text-transform:none;
  6844. }
  6845. #u95711_div {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:64px;
  6851. height:40px;
  6852. background:inherit;
  6853. background-color:rgba(255, 255, 255, 0);
  6854. border:none;
  6855. border-left:0px;
  6856. border-top:0px;
  6857. border-right:0px;
  6858. border-radius:0px;
  6859. border-bottom-right-radius:0px;
  6860. border-bottom-left-radius:0px;
  6861. -moz-box-shadow:none;
  6862. -webkit-box-shadow:none;
  6863. box-shadow:none;
  6864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6865. font-weight:400;
  6866. font-style:normal;
  6867. font-size:14px;
  6868. }
  6869. #u95711 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:1196px;
  6873. top:692px;
  6874. width:64px;
  6875. height:40px;
  6876. display:flex;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:14px;
  6881. }
  6882. #u95711 .text {
  6883. position:absolute;
  6884. align-self:center;
  6885. padding:0px 0px 0px 0px;
  6886. box-sizing:border-box;
  6887. width:100%;
  6888. }
  6889. #u95711_text {
  6890. border-width:0px;
  6891. white-space:nowrap;
  6892. text-transform:none;
  6893. }
  6894. #u95712 {
  6895. border-width:0px;
  6896. position:absolute;
  6897. left:0px;
  6898. top:0px;
  6899. width:0px;
  6900. height:0px;
  6901. }
  6902. #u95713_div {
  6903. border-width:0px;
  6904. position:absolute;
  6905. left:0px;
  6906. top:0px;
  6907. width:200px;
  6908. height:40px;
  6909. background:inherit;
  6910. background-color:rgba(255, 255, 255, 1);
  6911. box-sizing:border-box;
  6912. border-width:1px;
  6913. border-style:solid;
  6914. border-color:rgba(215, 215, 215, 1);
  6915. border-radius:4px;
  6916. -moz-box-shadow:none;
  6917. -webkit-box-shadow:none;
  6918. box-shadow:none;
  6919. font-size:14px;
  6920. }
  6921. #u95713 {
  6922. border-width:0px;
  6923. position:absolute;
  6924. left:1196px;
  6925. top:732px;
  6926. width:200px;
  6927. height:40px;
  6928. display:flex;
  6929. font-size:14px;
  6930. }
  6931. #u95713 .text {
  6932. position:absolute;
  6933. align-self:center;
  6934. padding:2px 2px 2px 2px;
  6935. box-sizing:border-box;
  6936. width:100%;
  6937. }
  6938. #u95713_text {
  6939. border-width:0px;
  6940. word-wrap:break-word;
  6941. text-transform:none;
  6942. visibility:hidden;
  6943. }
  6944. #u95714_input {
  6945. position:absolute;
  6946. left:0px;
  6947. top:0px;
  6948. width:191px;
  6949. height:31px;
  6950. padding:2px 2px 2px 2px;
  6951. font-family:'ArialMT', 'Arial', sans-serif;
  6952. font-weight:400;
  6953. font-style:normal;
  6954. font-size:14px;
  6955. letter-spacing:normal;
  6956. color:#AAAAAA;
  6957. vertical-align:none;
  6958. text-align:left;
  6959. text-transform:none;
  6960. background-color:transparent;
  6961. border-color:transparent;
  6962. }
  6963. #u95714_input.disabled {
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:191px;
  6968. height:31px;
  6969. padding:2px 2px 2px 2px;
  6970. font-family:'ArialMT', 'Arial', sans-serif;
  6971. font-weight:400;
  6972. font-style:normal;
  6973. font-size:14px;
  6974. letter-spacing:normal;
  6975. color:#AAAAAA;
  6976. vertical-align:none;
  6977. text-align:left;
  6978. text-transform:none;
  6979. background-color:transparent;
  6980. border-color:transparent;
  6981. }
  6982. #u95714_div {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:0px;
  6986. top:0px;
  6987. width:191px;
  6988. height:31px;
  6989. background:inherit;
  6990. background-color:rgba(255, 255, 255, 1);
  6991. border:none;
  6992. border-radius:0px;
  6993. -moz-box-shadow:none;
  6994. -webkit-box-shadow:none;
  6995. box-shadow:none;
  6996. font-size:14px;
  6997. color:#AAAAAA;
  6998. }
  6999. #u95714 {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:1202px;
  7003. top:735px;
  7004. width:191px;
  7005. height:31px;
  7006. display:flex;
  7007. font-size:14px;
  7008. color:#AAAAAA;
  7009. }
  7010. #u95714 .text {
  7011. position:absolute;
  7012. align-self:flex-start;
  7013. padding:2px 2px 2px 2px;
  7014. box-sizing:border-box;
  7015. width:100%;
  7016. }
  7017. #u95714_div.disabled {
  7018. border-width:0px;
  7019. position:absolute;
  7020. left:0px;
  7021. top:0px;
  7022. width:191px;
  7023. height:31px;
  7024. background:inherit;
  7025. background-color:rgba(240, 240, 240, 1);
  7026. border:none;
  7027. border-radius:0px;
  7028. -moz-box-shadow:none;
  7029. -webkit-box-shadow:none;
  7030. box-shadow:none;
  7031. font-size:14px;
  7032. color:#AAAAAA;
  7033. }
  7034. #u95714.disabled {
  7035. }
  7036. .u95714_input_option {
  7037. font-size:14px;
  7038. }
  7039. #u95715 {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:0px;
  7043. top:0px;
  7044. width:0px;
  7045. height:0px;
  7046. }
  7047. #u95716_div {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:200px;
  7053. height:40px;
  7054. background:inherit;
  7055. background-color:rgba(255, 255, 255, 1);
  7056. box-sizing:border-box;
  7057. border-width:1px;
  7058. border-style:solid;
  7059. border-color:rgba(201, 201, 201, 1);
  7060. border-radius:4px;
  7061. -moz-box-shadow:none;
  7062. -webkit-box-shadow:none;
  7063. box-shadow:none;
  7064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7065. font-weight:400;
  7066. font-style:normal;
  7067. font-size:14px;
  7068. text-align:right;
  7069. }
  7070. #u95716 {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:1426px;
  7074. top:732px;
  7075. width:200px;
  7076. height:40px;
  7077. display:flex;
  7078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7079. font-weight:400;
  7080. font-style:normal;
  7081. font-size:14px;
  7082. text-align:right;
  7083. }
  7084. #u95716 .text {
  7085. position:absolute;
  7086. align-self:center;
  7087. padding:2px 8px 2px 8px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u95716_text {
  7092. border-width:0px;
  7093. word-wrap:break-word;
  7094. text-transform:none;
  7095. visibility:hidden;
  7096. }
  7097. #u95717_input {
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:161px;
  7102. height:33px;
  7103. padding:2px 2px 2px 2px;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:14px;
  7108. letter-spacing:normal;
  7109. color:#D7D7D7;
  7110. vertical-align:none;
  7111. text-align:left;
  7112. text-transform:none;
  7113. background-color:transparent;
  7114. border-color:transparent;
  7115. }
  7116. #u95717_input.disabled {
  7117. position:absolute;
  7118. left:0px;
  7119. top:0px;
  7120. width:161px;
  7121. height:33px;
  7122. padding:2px 2px 2px 2px;
  7123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:14px;
  7127. letter-spacing:normal;
  7128. color:#D7D7D7;
  7129. vertical-align:none;
  7130. text-align:left;
  7131. text-transform:none;
  7132. background-color:transparent;
  7133. border-color:transparent;
  7134. }
  7135. #u95717_div {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:161px;
  7141. height:33px;
  7142. background:inherit;
  7143. background-color:rgba(255, 255, 255, 0);
  7144. border:none;
  7145. border-radius:0px;
  7146. -moz-box-shadow:none;
  7147. -webkit-box-shadow:none;
  7148. box-shadow:none;
  7149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7150. font-weight:400;
  7151. font-style:normal;
  7152. font-size:14px;
  7153. color:#D7D7D7;
  7154. }
  7155. #u95717 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:1434px;
  7159. top:735px;
  7160. width:161px;
  7161. height:33px;
  7162. display:flex;
  7163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7164. font-weight:400;
  7165. font-style:normal;
  7166. font-size:14px;
  7167. color:#D7D7D7;
  7168. }
  7169. #u95717 .text {
  7170. position:absolute;
  7171. align-self:center;
  7172. padding:2px 2px 2px 2px;
  7173. box-sizing:border-box;
  7174. width:100%;
  7175. }
  7176. #u95717_div.disabled {
  7177. border-width:0px;
  7178. position:absolute;
  7179. left:0px;
  7180. top:0px;
  7181. width:161px;
  7182. height:33px;
  7183. background:inherit;
  7184. background-color:rgba(240, 240, 240, 1);
  7185. border:none;
  7186. border-radius:0px;
  7187. -moz-box-shadow:none;
  7188. -webkit-box-shadow:none;
  7189. box-shadow:none;
  7190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7191. font-weight:400;
  7192. font-style:normal;
  7193. font-size:14px;
  7194. color:#D7D7D7;
  7195. }
  7196. #u95717.disabled {
  7197. }
  7198. #u95718_div {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:0px;
  7202. top:0px;
  7203. width:64px;
  7204. height:40px;
  7205. background:inherit;
  7206. background-color:rgba(255, 255, 255, 0);
  7207. border:none;
  7208. border-left:0px;
  7209. border-top:0px;
  7210. border-right:0px;
  7211. border-radius:0px;
  7212. border-bottom-right-radius:0px;
  7213. border-bottom-left-radius:0px;
  7214. -moz-box-shadow:none;
  7215. -webkit-box-shadow:none;
  7216. box-shadow:none;
  7217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7218. font-weight:400;
  7219. font-style:normal;
  7220. font-size:14px;
  7221. }
  7222. #u95718 {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:1426px;
  7226. top:693px;
  7227. width:64px;
  7228. height:40px;
  7229. display:flex;
  7230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7231. font-weight:400;
  7232. font-style:normal;
  7233. font-size:14px;
  7234. }
  7235. #u95718 .text {
  7236. position:absolute;
  7237. align-self:center;
  7238. padding:0px 0px 0px 0px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u95718_text {
  7243. border-width:0px;
  7244. white-space:nowrap;
  7245. text-transform:none;
  7246. }
  7247. #u95719 {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:0px;
  7253. height:0px;
  7254. }
  7255. #u95720_div {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:0px;
  7259. top:0px;
  7260. width:427px;
  7261. height:80px;
  7262. background:inherit;
  7263. background-color:rgba(255, 255, 255, 1);
  7264. box-sizing:border-box;
  7265. border-width:1px;
  7266. border-style:solid;
  7267. border-color:rgba(201, 201, 201, 1);
  7268. border-radius:4px;
  7269. -moz-box-shadow:none;
  7270. -webkit-box-shadow:none;
  7271. box-shadow:none;
  7272. font-family:'Microsoft YaHei', sans-serif;
  7273. font-weight:400;
  7274. font-style:normal;
  7275. font-size:14px;
  7276. color:#CCCCCC;
  7277. text-align:left;
  7278. }
  7279. #u95720 {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:1196px;
  7283. top:1022px;
  7284. width:427px;
  7285. height:80px;
  7286. display:flex;
  7287. font-family:'Microsoft YaHei', sans-serif;
  7288. font-weight:400;
  7289. font-style:normal;
  7290. font-size:14px;
  7291. color:#CCCCCC;
  7292. text-align:left;
  7293. }
  7294. #u95720 .text {
  7295. position:absolute;
  7296. align-self:center;
  7297. padding:2px 8px 2px 8px;
  7298. box-sizing:border-box;
  7299. width:100%;
  7300. }
  7301. #u95720_text {
  7302. border-width:0px;
  7303. word-wrap:break-word;
  7304. text-transform:none;
  7305. visibility:hidden;
  7306. }
  7307. #u95721_input {
  7308. position:absolute;
  7309. left:0px;
  7310. top:0px;
  7311. width:389px;
  7312. height:33px;
  7313. padding:2px 2px 2px 2px;
  7314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7315. font-weight:400;
  7316. font-style:normal;
  7317. font-size:14px;
  7318. letter-spacing:normal;
  7319. color:#D7D7D7;
  7320. vertical-align:none;
  7321. text-align:left;
  7322. text-transform:none;
  7323. background-color:transparent;
  7324. border-color:transparent;
  7325. }
  7326. #u95721_input.disabled {
  7327. position:absolute;
  7328. left:0px;
  7329. top:0px;
  7330. width:389px;
  7331. height:33px;
  7332. padding:2px 2px 2px 2px;
  7333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7334. font-weight:400;
  7335. font-style:normal;
  7336. font-size:14px;
  7337. letter-spacing:normal;
  7338. color:#D7D7D7;
  7339. vertical-align:none;
  7340. text-align:left;
  7341. text-transform:none;
  7342. background-color:transparent;
  7343. border-color:transparent;
  7344. }
  7345. #u95721_div {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:389px;
  7351. height:33px;
  7352. background:inherit;
  7353. background-color:rgba(255, 255, 255, 0);
  7354. border:none;
  7355. border-radius:0px;
  7356. -moz-box-shadow:none;
  7357. -webkit-box-shadow:none;
  7358. box-shadow:none;
  7359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7360. font-weight:400;
  7361. font-style:normal;
  7362. font-size:14px;
  7363. color:#D7D7D7;
  7364. }
  7365. #u95721 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:1213px;
  7369. top:1025px;
  7370. width:389px;
  7371. height:33px;
  7372. display:flex;
  7373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7374. font-weight:400;
  7375. font-style:normal;
  7376. font-size:14px;
  7377. color:#D7D7D7;
  7378. }
  7379. #u95721 .text {
  7380. position:absolute;
  7381. align-self:center;
  7382. padding:2px 2px 2px 2px;
  7383. box-sizing:border-box;
  7384. width:100%;
  7385. }
  7386. #u95721_div.disabled {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:0px;
  7390. top:0px;
  7391. width:389px;
  7392. height:33px;
  7393. background:inherit;
  7394. background-color:rgba(240, 240, 240, 1);
  7395. border:none;
  7396. border-radius:0px;
  7397. -moz-box-shadow:none;
  7398. -webkit-box-shadow:none;
  7399. box-shadow:none;
  7400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:14px;
  7404. color:#D7D7D7;
  7405. }
  7406. #u95721.disabled {
  7407. }
  7408. #u95722_div {
  7409. border-width:0px;
  7410. position:absolute;
  7411. left:0px;
  7412. top:0px;
  7413. width:71px;
  7414. height:40px;
  7415. background:inherit;
  7416. background-color:rgba(255, 255, 255, 0);
  7417. border:none;
  7418. border-left:0px;
  7419. border-top:0px;
  7420. border-right:0px;
  7421. border-radius:0px;
  7422. border-bottom-right-radius:0px;
  7423. border-bottom-left-radius:0px;
  7424. -moz-box-shadow:none;
  7425. -webkit-box-shadow:none;
  7426. box-shadow:none;
  7427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7428. font-weight:400;
  7429. font-style:normal;
  7430. font-size:14px;
  7431. }
  7432. #u95722 {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:1196px;
  7436. top:982px;
  7437. width:71px;
  7438. height:40px;
  7439. display:flex;
  7440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. font-size:14px;
  7444. }
  7445. #u95722 .text {
  7446. position:absolute;
  7447. align-self:center;
  7448. padding:0px 0px 0px 0px;
  7449. box-sizing:border-box;
  7450. width:100%;
  7451. }
  7452. #u95722_text {
  7453. border-width:0px;
  7454. white-space:nowrap;
  7455. text-transform:none;
  7456. }
  7457. #u95723 {
  7458. border-width:0px;
  7459. position:absolute;
  7460. left:0px;
  7461. top:0px;
  7462. width:0px;
  7463. height:0px;
  7464. }
  7465. #u95724_div {
  7466. border-width:0px;
  7467. position:absolute;
  7468. left:0px;
  7469. top:0px;
  7470. width:83px;
  7471. height:80px;
  7472. background:inherit;
  7473. background-color:rgba(255, 255, 255, 1);
  7474. box-sizing:border-box;
  7475. border-width:1px;
  7476. border-style:solid;
  7477. border-color:rgba(201, 201, 201, 1);
  7478. border-radius:4px;
  7479. -moz-box-shadow:none;
  7480. -webkit-box-shadow:none;
  7481. box-shadow:none;
  7482. font-family:'Helvetica', sans-serif;
  7483. font-weight:400;
  7484. font-style:normal;
  7485. font-size:24px;
  7486. }
  7487. #u95724 {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:1196px;
  7491. top:902px;
  7492. width:83px;
  7493. height:80px;
  7494. display:flex;
  7495. font-family:'Helvetica', sans-serif;
  7496. font-weight:400;
  7497. font-style:normal;
  7498. font-size:24px;
  7499. }
  7500. #u95724 .text {
  7501. position:absolute;
  7502. align-self:center;
  7503. padding:2px 8px 2px 8px;
  7504. box-sizing:border-box;
  7505. width:100%;
  7506. }
  7507. #u95724_text {
  7508. border-width:0px;
  7509. word-wrap:break-word;
  7510. text-transform:none;
  7511. }
  7512. #u95725_div {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:57px;
  7518. height:40px;
  7519. background:inherit;
  7520. background-color:rgba(255, 255, 255, 0);
  7521. border:none;
  7522. border-left:0px;
  7523. border-top:0px;
  7524. border-right:0px;
  7525. border-radius:0px;
  7526. border-bottom-right-radius:0px;
  7527. border-bottom-left-radius:0px;
  7528. -moz-box-shadow:none;
  7529. -webkit-box-shadow:none;
  7530. box-shadow:none;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:14px;
  7535. color:#D9001B;
  7536. }
  7537. #u95725 {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:1196px;
  7541. top:862px;
  7542. width:57px;
  7543. height:40px;
  7544. display:flex;
  7545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7546. font-weight:400;
  7547. font-style:normal;
  7548. font-size:14px;
  7549. color:#D9001B;
  7550. }
  7551. #u95725 .text {
  7552. position:absolute;
  7553. align-self:center;
  7554. padding:0px 0px 0px 0px;
  7555. box-sizing:border-box;
  7556. width:100%;
  7557. }
  7558. #u95725_text {
  7559. border-width:0px;
  7560. white-space:nowrap;
  7561. text-transform:none;
  7562. }