styles.css 204 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-72px;
  6. width:2051px;
  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. #u79819 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u79820_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. 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. #u79820 {
  53. border-width:0px;
  54. position:absolute;
  55. left:72px;
  56. top:44px;
  57. width:1000px;
  58. height:1201px;
  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. #u79820 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u79820_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u79821_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:83px;
  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. #u79821 {
  106. border-width:0px;
  107. position:absolute;
  108. left:92px;
  109. top:62px;
  110. width:83px;
  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. #u79821 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u79821_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u79822 {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:0px;
  136. height:0px;
  137. }
  138. #u79823_div {
  139. border-width:0px;
  140. position:absolute;
  141. left:0px;
  142. top:0px;
  143. width:40px;
  144. height:40px;
  145. background:inherit;
  146. background-color:rgba(255, 255, 255, 0);
  147. border:none;
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  158. font-weight:500;
  159. font-style:normal;
  160. font-size:14px;
  161. text-align:center;
  162. }
  163. #u79823 {
  164. border-width:0px;
  165. position:absolute;
  166. left:1032px;
  167. top:44px;
  168. width:40px;
  169. height:40px;
  170. display:flex;
  171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  172. font-weight:500;
  173. font-style:normal;
  174. font-size:14px;
  175. text-align:center;
  176. }
  177. #u79823 .text {
  178. position:absolute;
  179. align-self:center;
  180. padding:5px 10px 5px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u79823_text {
  185. border-width:0px;
  186. word-wrap:break-word;
  187. text-transform:none;
  188. }
  189. #u79824_img {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:13px;
  195. height:13px;
  196. }
  197. #u79824 {
  198. border-width:0px;
  199. position:absolute;
  200. left:1020px;
  201. top:60px;
  202. width:13px;
  203. height:13px;
  204. display:flex;
  205. font-size:14px;
  206. }
  207. #u79824 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u79824_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u79825 {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:0px;
  226. height:0px;
  227. }
  228. #u79826_div {
  229. border-width:0px;
  230. position:absolute;
  231. left:0px;
  232. top:0px;
  233. width:1000px;
  234. height:60px;
  235. background:inherit;
  236. background-color:rgba(255, 255, 255, 1);
  237. box-sizing:border-box;
  238. border-width:1px;
  239. border-style:solid;
  240. border-color:rgba(215, 215, 215, 1);
  241. border-radius:0px;
  242. -moz-box-shadow:none;
  243. -webkit-box-shadow:none;
  244. box-shadow:none;
  245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  246. font-weight:400;
  247. font-style:normal;
  248. font-size:14px;
  249. color:#AAAAAA;
  250. text-align:center;
  251. line-height:30px;
  252. }
  253. #u79826 {
  254. border-width:0px;
  255. position:absolute;
  256. left:72px;
  257. top:1185px;
  258. width:1000px;
  259. height:60px;
  260. display:flex;
  261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  262. font-weight:400;
  263. font-style:normal;
  264. font-size:14px;
  265. color:#AAAAAA;
  266. text-align:center;
  267. line-height:30px;
  268. }
  269. #u79826 .text {
  270. position:absolute;
  271. align-self:center;
  272. padding:5px 10px 5px 10px;
  273. box-sizing:border-box;
  274. width:100%;
  275. }
  276. #u79826_text {
  277. border-width:0px;
  278. word-wrap:break-word;
  279. text-transform:none;
  280. visibility:hidden;
  281. }
  282. #u79827_div {
  283. border-width:0px;
  284. position:absolute;
  285. left:0px;
  286. top:0px;
  287. width:80px;
  288. height:30px;
  289. background:inherit;
  290. background-color:rgba(255, 255, 255, 1);
  291. box-sizing:border-box;
  292. border-width:1px;
  293. border-style:solid;
  294. border-color:rgba(170, 170, 170, 1);
  295. border-radius:4px;
  296. -moz-box-shadow:none;
  297. -webkit-box-shadow:none;
  298. box-shadow:none;
  299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  300. font-weight:400;
  301. font-style:normal;
  302. font-size:14px;
  303. }
  304. #u79827 {
  305. border-width:0px;
  306. position:absolute;
  307. left:852px;
  308. top:1200px;
  309. width:80px;
  310. height:30px;
  311. display:flex;
  312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  313. font-weight:400;
  314. font-style:normal;
  315. font-size:14px;
  316. }
  317. #u79827 .text {
  318. position:absolute;
  319. align-self:center;
  320. padding:2px 2px 2px 2px;
  321. box-sizing:border-box;
  322. width:100%;
  323. }
  324. #u79827_text {
  325. border-width:0px;
  326. word-wrap:break-word;
  327. text-transform:none;
  328. }
  329. #u79828_div {
  330. border-width:0px;
  331. position:absolute;
  332. left:0px;
  333. top:0px;
  334. width:100px;
  335. height:30px;
  336. background:inherit;
  337. background-color:rgba(24, 144, 255, 1);
  338. border:none;
  339. border-radius:4px;
  340. -moz-box-shadow:none;
  341. -webkit-box-shadow:none;
  342. box-shadow:none;
  343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  344. font-weight:400;
  345. font-style:normal;
  346. font-size:14px;
  347. color:#FFFFFF;
  348. }
  349. #u79828 {
  350. border-width:0px;
  351. position:absolute;
  352. left:942px;
  353. top:1200px;
  354. width:100px;
  355. height:30px;
  356. display:flex;
  357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  358. font-weight:400;
  359. font-style:normal;
  360. font-size:14px;
  361. color:#FFFFFF;
  362. }
  363. #u79828 .text {
  364. position:absolute;
  365. align-self:center;
  366. padding:2px 2px 2px 2px;
  367. box-sizing:border-box;
  368. width:100%;
  369. }
  370. #u79828_text {
  371. border-width:0px;
  372. word-wrap:break-word;
  373. text-transform:none;
  374. }
  375. #u79829 {
  376. border-width:0px;
  377. position:absolute;
  378. left:0px;
  379. top:0px;
  380. width:0px;
  381. height:0px;
  382. }
  383. #u79830_div {
  384. border-width:0px;
  385. position:absolute;
  386. left:0px;
  387. top:0px;
  388. width:100px;
  389. height:30px;
  390. background:inherit;
  391. background-color:rgba(255, 255, 255, 1);
  392. box-sizing:border-box;
  393. border-width:1px;
  394. border-style:solid;
  395. border-color:rgba(188, 188, 188, 1);
  396. border-radius:4px;
  397. -moz-box-shadow:none;
  398. -webkit-box-shadow:none;
  399. box-shadow:none;
  400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  401. font-weight:400;
  402. font-style:normal;
  403. font-size:12px;
  404. color:#FFFFFF;
  405. }
  406. #u79830 {
  407. border-width:0px;
  408. position:absolute;
  409. left:629px;
  410. top:653px;
  411. width:100px;
  412. height:30px;
  413. display:flex;
  414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  415. font-weight:400;
  416. font-style:normal;
  417. font-size:12px;
  418. color:#FFFFFF;
  419. }
  420. #u79830 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:8px 15px 8px 15px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u79830_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u79831_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:25px;
  439. height:17px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:12px;
  451. color:#BCBCBC;
  452. }
  453. #u79831 {
  454. border-width:0px;
  455. position:absolute;
  456. left:635px;
  457. top:660px;
  458. width:25px;
  459. height:17px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:12px;
  465. color:#BCBCBC;
  466. }
  467. #u79831 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u79831_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u79832_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u79832 {
  488. border-width:0px;
  489. position:absolute;
  490. left:708px;
  491. top:661px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. opacity:0.5;
  496. font-size:12px;
  497. }
  498. #u79832 .text {
  499. position:absolute;
  500. align-self:center;
  501. padding:2px 2px 2px 2px;
  502. box-sizing:border-box;
  503. width:100%;
  504. }
  505. #u79832_text {
  506. border-width:0px;
  507. word-wrap:break-word;
  508. text-transform:none;
  509. visibility:hidden;
  510. }
  511. #u79833_div {
  512. border-width:0px;
  513. position:absolute;
  514. left:0px;
  515. top:0px;
  516. width:83px;
  517. height:35px;
  518. background:inherit;
  519. background-color:rgba(255, 255, 255, 0);
  520. border:none;
  521. border-top:0px;
  522. border-right:0px;
  523. border-bottom:0px;
  524. border-radius:0px;
  525. border-top-left-radius:0px;
  526. border-bottom-left-radius:0px;
  527. -moz-box-shadow:none;
  528. -webkit-box-shadow:none;
  529. box-shadow:none;
  530. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  531. font-weight:500;
  532. font-style:normal;
  533. font-size:18px;
  534. }
  535. #u79833 {
  536. border-width:0px;
  537. position:absolute;
  538. left:105px;
  539. top:128px;
  540. width:83px;
  541. height:35px;
  542. display:flex;
  543. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  544. font-weight:500;
  545. font-style:normal;
  546. font-size:18px;
  547. }
  548. #u79833 .text {
  549. position:absolute;
  550. align-self:center;
  551. padding:5px 10px 5px 0px;
  552. box-sizing:border-box;
  553. width:100%;
  554. }
  555. #u79833_text {
  556. border-width:0px;
  557. white-space:nowrap;
  558. text-transform:none;
  559. }
  560. #u79834_div {
  561. border-width:0px;
  562. position:absolute;
  563. left:0px;
  564. top:0px;
  565. width:100px;
  566. height:30px;
  567. background:inherit;
  568. background-color:rgba(255, 255, 255, 0);
  569. border:none;
  570. border-top:0px;
  571. border-right:0px;
  572. border-bottom:0px;
  573. border-radius:0px;
  574. border-top-left-radius:0px;
  575. border-bottom-left-radius:0px;
  576. -moz-box-shadow:none;
  577. -webkit-box-shadow:none;
  578. box-shadow:none;
  579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  580. font-weight:400;
  581. font-style:normal;
  582. font-size:14px;
  583. color:#7F7F7F;
  584. }
  585. #u79834 {
  586. border-width:0px;
  587. position:absolute;
  588. left:105px;
  589. top:183px;
  590. width:100px;
  591. height:30px;
  592. display:flex;
  593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  594. font-weight:400;
  595. font-style:normal;
  596. font-size:14px;
  597. color:#7F7F7F;
  598. }
  599. #u79834 .text {
  600. position:absolute;
  601. align-self:center;
  602. padding:5px 10px 5px 0px;
  603. box-sizing:border-box;
  604. width:100%;
  605. }
  606. #u79834_text {
  607. border-width:0px;
  608. word-wrap:break-word;
  609. text-transform:none;
  610. }
  611. #u79835 {
  612. border-width:0px;
  613. position:absolute;
  614. left:0px;
  615. top:0px;
  616. width:0px;
  617. height:0px;
  618. }
  619. #u79836_div {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:200px;
  625. height:30px;
  626. background:inherit;
  627. background-color:rgba(255, 255, 255, 1);
  628. box-sizing:border-box;
  629. border-width:1px;
  630. border-style:solid;
  631. border-color:rgba(201, 201, 201, 1);
  632. border-radius:4px;
  633. -moz-box-shadow:none;
  634. -webkit-box-shadow:none;
  635. box-shadow:none;
  636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  637. font-weight:400;
  638. font-style:normal;
  639. font-size:12px;
  640. color:#CCCCCC;
  641. text-align:right;
  642. }
  643. #u79836 {
  644. border-width:0px;
  645. position:absolute;
  646. left:201px;
  647. top:183px;
  648. width:200px;
  649. height:30px;
  650. display:flex;
  651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  652. font-weight:400;
  653. font-style:normal;
  654. font-size:12px;
  655. color:#CCCCCC;
  656. text-align:right;
  657. }
  658. #u79836 .text {
  659. position:absolute;
  660. align-self:center;
  661. padding:2px 8px 2px 8px;
  662. box-sizing:border-box;
  663. width:100%;
  664. }
  665. #u79836_text {
  666. border-width:0px;
  667. word-wrap:break-word;
  668. text-transform:none;
  669. visibility:hidden;
  670. }
  671. #u79837_input {
  672. position:absolute;
  673. left:0px;
  674. top:0px;
  675. width:180px;
  676. height:26px;
  677. padding:2px 2px 2px 2px;
  678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  679. font-weight:400;
  680. font-style:normal;
  681. font-size:12px;
  682. letter-spacing:normal;
  683. color:#7F7F7F;
  684. vertical-align:none;
  685. text-align:left;
  686. text-transform:none;
  687. background-color:transparent;
  688. border-color:transparent;
  689. }
  690. #u79837_input.disabled {
  691. position:absolute;
  692. left:0px;
  693. top:0px;
  694. width:180px;
  695. height:26px;
  696. padding:2px 2px 2px 2px;
  697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  698. font-weight:400;
  699. font-style:normal;
  700. font-size:12px;
  701. letter-spacing:normal;
  702. color:#7F7F7F;
  703. vertical-align:none;
  704. text-align:left;
  705. text-transform:none;
  706. background-color:transparent;
  707. border-color:transparent;
  708. }
  709. #u79837_div {
  710. border-width:0px;
  711. position:absolute;
  712. left:0px;
  713. top:0px;
  714. width:180px;
  715. height:26px;
  716. background:inherit;
  717. background-color:rgba(255, 255, 255, 1);
  718. border:none;
  719. border-radius:0px;
  720. -moz-box-shadow:none;
  721. -webkit-box-shadow:none;
  722. box-shadow:none;
  723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  724. font-weight:400;
  725. font-style:normal;
  726. font-size:12px;
  727. color:#7F7F7F;
  728. }
  729. #u79837 {
  730. border-width:0px;
  731. position:absolute;
  732. left:207px;
  733. top:184px;
  734. width:180px;
  735. height:26px;
  736. display:flex;
  737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  738. font-weight:400;
  739. font-style:normal;
  740. font-size:12px;
  741. color:#7F7F7F;
  742. }
  743. #u79837 .text {
  744. position:absolute;
  745. align-self:center;
  746. padding:2px 2px 2px 2px;
  747. box-sizing:border-box;
  748. width:100%;
  749. }
  750. #u79837_div.disabled {
  751. border-width:0px;
  752. position:absolute;
  753. left:0px;
  754. top:0px;
  755. width:180px;
  756. height:26px;
  757. background:inherit;
  758. background-color:rgba(240, 240, 240, 1);
  759. border:none;
  760. border-radius:0px;
  761. -moz-box-shadow:none;
  762. -webkit-box-shadow:none;
  763. box-shadow:none;
  764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  765. font-weight:400;
  766. font-style:normal;
  767. font-size:12px;
  768. color:#7F7F7F;
  769. }
  770. #u79837.disabled {
  771. }
  772. #u79838 {
  773. border-width:0px;
  774. position:absolute;
  775. left:0px;
  776. top:0px;
  777. width:0px;
  778. height:0px;
  779. }
  780. #u79839_div {
  781. border-width:0px;
  782. position:absolute;
  783. left:0px;
  784. top:0px;
  785. width:200px;
  786. height:30px;
  787. background:inherit;
  788. background-color:rgba(255, 255, 255, 1);
  789. box-sizing:border-box;
  790. border-width:1px;
  791. border-style:solid;
  792. border-color:rgba(215, 215, 215, 1);
  793. border-radius:4px;
  794. -moz-box-shadow:none;
  795. -webkit-box-shadow:none;
  796. box-shadow:none;
  797. font-size:12px;
  798. }
  799. #u79839 {
  800. border-width:0px;
  801. position:absolute;
  802. left:517px;
  803. top:183px;
  804. width:200px;
  805. height:30px;
  806. display:flex;
  807. font-size:12px;
  808. }
  809. #u79839 .text {
  810. position:absolute;
  811. align-self:center;
  812. padding:2px 2px 2px 2px;
  813. box-sizing:border-box;
  814. width:100%;
  815. }
  816. #u79839_text {
  817. border-width:0px;
  818. word-wrap:break-word;
  819. text-transform:none;
  820. visibility:hidden;
  821. }
  822. #u79840_input {
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:191px;
  827. height:23px;
  828. padding:2px 2px 2px 2px;
  829. font-family:'ArialMT', 'Arial', sans-serif;
  830. font-weight:400;
  831. font-style:normal;
  832. font-size:12px;
  833. letter-spacing:normal;
  834. color:#AAAAAA;
  835. vertical-align:none;
  836. text-align:left;
  837. text-transform:none;
  838. background-color:transparent;
  839. border-color:transparent;
  840. }
  841. #u79840_input.disabled {
  842. position:absolute;
  843. left:0px;
  844. top:0px;
  845. width:191px;
  846. height:23px;
  847. padding:2px 2px 2px 2px;
  848. font-family:'ArialMT', 'Arial', sans-serif;
  849. font-weight:400;
  850. font-style:normal;
  851. font-size:12px;
  852. letter-spacing:normal;
  853. color:#AAAAAA;
  854. vertical-align:none;
  855. text-align:left;
  856. text-transform:none;
  857. background-color:transparent;
  858. border-color:transparent;
  859. }
  860. #u79840_div {
  861. border-width:0px;
  862. position:absolute;
  863. left:0px;
  864. top:0px;
  865. width:191px;
  866. height:23px;
  867. background:inherit;
  868. background-color:rgba(255, 255, 255, 1);
  869. border:none;
  870. border-radius:0px;
  871. -moz-box-shadow:none;
  872. -webkit-box-shadow:none;
  873. box-shadow:none;
  874. font-size:12px;
  875. color:#AAAAAA;
  876. }
  877. #u79840 {
  878. border-width:0px;
  879. position:absolute;
  880. left:520px;
  881. top:185px;
  882. width:191px;
  883. height:23px;
  884. display:flex;
  885. font-size:12px;
  886. color:#AAAAAA;
  887. }
  888. #u79840 .text {
  889. position:absolute;
  890. align-self:flex-start;
  891. padding:2px 2px 2px 2px;
  892. box-sizing:border-box;
  893. width:100%;
  894. }
  895. #u79840_div.disabled {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:191px;
  901. height:23px;
  902. background:inherit;
  903. background-color:rgba(240, 240, 240, 1);
  904. border:none;
  905. border-radius:0px;
  906. -moz-box-shadow:none;
  907. -webkit-box-shadow:none;
  908. box-shadow:none;
  909. font-size:12px;
  910. color:#AAAAAA;
  911. }
  912. #u79840.disabled {
  913. }
  914. .u79840_input_option {
  915. font-size:12px;
  916. }
  917. #u79841_div {
  918. border-width:0px;
  919. position:absolute;
  920. left:0px;
  921. top:0px;
  922. width:100px;
  923. height:30px;
  924. background:inherit;
  925. background-color:rgba(255, 255, 255, 0);
  926. border:none;
  927. border-top:0px;
  928. border-right:0px;
  929. border-bottom:0px;
  930. border-radius:0px;
  931. border-top-left-radius:0px;
  932. border-bottom-left-radius:0px;
  933. -moz-box-shadow:none;
  934. -webkit-box-shadow:none;
  935. box-shadow:none;
  936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  937. font-weight:400;
  938. font-style:normal;
  939. font-size:14px;
  940. color:#7F7F7F;
  941. }
  942. #u79841 {
  943. border-width:0px;
  944. position:absolute;
  945. left:421px;
  946. top:183px;
  947. width:100px;
  948. height:30px;
  949. display:flex;
  950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  951. font-weight:400;
  952. font-style:normal;
  953. font-size:14px;
  954. color:#7F7F7F;
  955. }
  956. #u79841 .text {
  957. position:absolute;
  958. align-self:center;
  959. padding:5px 10px 5px 0px;
  960. box-sizing:border-box;
  961. width:100%;
  962. }
  963. #u79841_text {
  964. border-width:0px;
  965. word-wrap:break-word;
  966. text-transform:none;
  967. }
  968. #u79842_div {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:100px;
  974. height:30px;
  975. background:inherit;
  976. background-color:rgba(255, 255, 255, 0);
  977. border:none;
  978. border-top:0px;
  979. border-right:0px;
  980. border-bottom:0px;
  981. border-radius:0px;
  982. border-top-left-radius:0px;
  983. border-bottom-left-radius:0px;
  984. -moz-box-shadow:none;
  985. -webkit-box-shadow:none;
  986. box-shadow:none;
  987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  988. font-weight:400;
  989. font-style:normal;
  990. font-size:14px;
  991. color:#7F7F7F;
  992. }
  993. #u79842 {
  994. border-width:0px;
  995. position:absolute;
  996. left:747px;
  997. top:183px;
  998. width:100px;
  999. height:30px;
  1000. display:flex;
  1001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1002. font-weight:400;
  1003. font-style:normal;
  1004. font-size:14px;
  1005. color:#7F7F7F;
  1006. }
  1007. #u79842 .text {
  1008. position:absolute;
  1009. align-self:center;
  1010. padding:5px 10px 5px 0px;
  1011. box-sizing:border-box;
  1012. width:100%;
  1013. }
  1014. #u79842_text {
  1015. border-width:0px;
  1016. word-wrap:break-word;
  1017. text-transform:none;
  1018. }
  1019. #u79843 {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:0px;
  1025. height:0px;
  1026. }
  1027. #u79844_div {
  1028. border-width:0px;
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:200px;
  1033. height:30px;
  1034. background:inherit;
  1035. background-color:rgba(255, 255, 255, 1);
  1036. box-sizing:border-box;
  1037. border-width:1px;
  1038. border-style:solid;
  1039. border-color:rgba(201, 201, 201, 1);
  1040. border-radius:4px;
  1041. -moz-box-shadow:none;
  1042. -webkit-box-shadow:none;
  1043. box-shadow:none;
  1044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1045. font-weight:400;
  1046. font-style:normal;
  1047. font-size:12px;
  1048. color:#CCCCCC;
  1049. text-align:right;
  1050. }
  1051. #u79844 {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:843px;
  1055. top:183px;
  1056. width:200px;
  1057. height:30px;
  1058. display:flex;
  1059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1060. font-weight:400;
  1061. font-style:normal;
  1062. font-size:12px;
  1063. color:#CCCCCC;
  1064. text-align:right;
  1065. }
  1066. #u79844 .text {
  1067. position:absolute;
  1068. align-self:center;
  1069. padding:2px 8px 2px 8px;
  1070. box-sizing:border-box;
  1071. width:100%;
  1072. }
  1073. #u79844_text {
  1074. border-width:0px;
  1075. word-wrap:break-word;
  1076. text-transform:none;
  1077. visibility:hidden;
  1078. }
  1079. #u79845_input {
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:180px;
  1084. height:26px;
  1085. padding:2px 2px 2px 2px;
  1086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1087. font-weight:400;
  1088. font-style:normal;
  1089. font-size:12px;
  1090. letter-spacing:normal;
  1091. color:#7F7F7F;
  1092. vertical-align:none;
  1093. text-align:left;
  1094. text-transform:none;
  1095. background-color:transparent;
  1096. border-color:transparent;
  1097. }
  1098. #u79845_input.disabled {
  1099. position:absolute;
  1100. left:0px;
  1101. top:0px;
  1102. width:180px;
  1103. height:26px;
  1104. padding:2px 2px 2px 2px;
  1105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1106. font-weight:400;
  1107. font-style:normal;
  1108. font-size:12px;
  1109. letter-spacing:normal;
  1110. color:#7F7F7F;
  1111. vertical-align:none;
  1112. text-align:left;
  1113. text-transform:none;
  1114. background-color:transparent;
  1115. border-color:transparent;
  1116. }
  1117. #u79845_div {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:180px;
  1123. height:26px;
  1124. background:inherit;
  1125. background-color:rgba(255, 255, 255, 1);
  1126. border:none;
  1127. border-radius:0px;
  1128. -moz-box-shadow:none;
  1129. -webkit-box-shadow:none;
  1130. box-shadow:none;
  1131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1132. font-weight:400;
  1133. font-style:normal;
  1134. font-size:12px;
  1135. color:#7F7F7F;
  1136. }
  1137. #u79845 {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:849px;
  1141. top:184px;
  1142. width:180px;
  1143. height:26px;
  1144. display:flex;
  1145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1146. font-weight:400;
  1147. font-style:normal;
  1148. font-size:12px;
  1149. color:#7F7F7F;
  1150. }
  1151. #u79845 .text {
  1152. position:absolute;
  1153. align-self:center;
  1154. padding:2px 2px 2px 2px;
  1155. box-sizing:border-box;
  1156. width:100%;
  1157. }
  1158. #u79845_div.disabled {
  1159. border-width:0px;
  1160. position:absolute;
  1161. left:0px;
  1162. top:0px;
  1163. width:180px;
  1164. height:26px;
  1165. background:inherit;
  1166. background-color:rgba(240, 240, 240, 1);
  1167. border:none;
  1168. border-radius:0px;
  1169. -moz-box-shadow:none;
  1170. -webkit-box-shadow:none;
  1171. box-shadow:none;
  1172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1173. font-weight:400;
  1174. font-style:normal;
  1175. font-size:12px;
  1176. color:#7F7F7F;
  1177. }
  1178. #u79845.disabled {
  1179. }
  1180. #u79846_div {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:60px;
  1186. height:60px;
  1187. background:inherit;
  1188. background-color:rgba(255, 255, 255, 1);
  1189. box-sizing:border-box;
  1190. border-width:1px;
  1191. border-style:solid;
  1192. border-color:rgba(188, 188, 188, 1);
  1193. border-radius:4px;
  1194. -moz-box-shadow:none;
  1195. -webkit-box-shadow:none;
  1196. box-shadow:none;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:28px;
  1201. }
  1202. #u79846 {
  1203. border-width:0px;
  1204. position:absolute;
  1205. left:201px;
  1206. top:463px;
  1207. width:60px;
  1208. height:60px;
  1209. display:flex;
  1210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1211. font-weight:400;
  1212. font-style:normal;
  1213. font-size:28px;
  1214. }
  1215. #u79846 .text {
  1216. position:absolute;
  1217. align-self:center;
  1218. padding:8px 15px 8px 15px;
  1219. box-sizing:border-box;
  1220. width:100%;
  1221. }
  1222. #u79846_text {
  1223. border-width:0px;
  1224. word-wrap:break-word;
  1225. text-transform:none;
  1226. }
  1227. #u79847_div {
  1228. border-width:0px;
  1229. position:absolute;
  1230. left:0px;
  1231. top:0px;
  1232. width:100px;
  1233. height:27px;
  1234. background:inherit;
  1235. background-color:rgba(255, 255, 255, 0);
  1236. border:none;
  1237. border-top:0px;
  1238. border-right:0px;
  1239. border-bottom:0px;
  1240. border-radius:0px;
  1241. border-top-left-radius:0px;
  1242. border-bottom-left-radius:0px;
  1243. -moz-box-shadow:none;
  1244. -webkit-box-shadow:none;
  1245. box-shadow:none;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:12px;
  1250. color:#7F7F7F;
  1251. }
  1252. #u79847 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:105px;
  1256. top:465px;
  1257. width:100px;
  1258. height:27px;
  1259. display:flex;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:12px;
  1264. color:#7F7F7F;
  1265. }
  1266. #u79847 .text {
  1267. position:absolute;
  1268. align-self:center;
  1269. padding:5px 10px 5px 0px;
  1270. box-sizing:border-box;
  1271. width:100%;
  1272. }
  1273. #u79847_text {
  1274. border-width:0px;
  1275. word-wrap:break-word;
  1276. text-transform:none;
  1277. }
  1278. #u79848_div {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:407px;
  1284. height:35px;
  1285. background:inherit;
  1286. background-color:rgba(255, 255, 255, 0);
  1287. border:none;
  1288. border-top:0px;
  1289. border-right:0px;
  1290. border-bottom:0px;
  1291. border-radius:0px;
  1292. border-top-left-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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1298. font-weight:500;
  1299. font-style:normal;
  1300. font-size:18px;
  1301. }
  1302. #u79848 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:105px;
  1306. top:553px;
  1307. width:407px;
  1308. height:35px;
  1309. display:flex;
  1310. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1311. font-weight:500;
  1312. font-style:normal;
  1313. font-size:18px;
  1314. }
  1315. #u79848 .text {
  1316. position:absolute;
  1317. align-self:center;
  1318. padding:5px 10px 5px 0px;
  1319. box-sizing:border-box;
  1320. width:100%;
  1321. }
  1322. #u79848_text {
  1323. border-width:0px;
  1324. white-space:nowrap;
  1325. text-transform:none;
  1326. }
  1327. #u79849_div {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:100px;
  1333. height:30px;
  1334. background:inherit;
  1335. background-color:rgba(255, 255, 255, 0);
  1336. border:none;
  1337. border-top:0px;
  1338. border-right:0px;
  1339. border-bottom:0px;
  1340. border-radius:0px;
  1341. border-top-left-radius:0px;
  1342. border-bottom-left-radius:0px;
  1343. -moz-box-shadow:none;
  1344. -webkit-box-shadow:none;
  1345. box-shadow:none;
  1346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:14px;
  1350. color:#7F7F7F;
  1351. }
  1352. #u79849 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:105px;
  1356. top:223px;
  1357. width:100px;
  1358. height:30px;
  1359. display:flex;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. font-size:14px;
  1364. color:#7F7F7F;
  1365. }
  1366. #u79849 .text {
  1367. position:absolute;
  1368. align-self:center;
  1369. padding:5px 10px 5px 0px;
  1370. box-sizing:border-box;
  1371. width:100%;
  1372. }
  1373. #u79849_text {
  1374. border-width:0px;
  1375. word-wrap:break-word;
  1376. text-transform:none;
  1377. }
  1378. #u79850 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u79851_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:200px;
  1392. height:30px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 1);
  1395. box-sizing:border-box;
  1396. border-width:1px;
  1397. border-style:solid;
  1398. border-color:rgba(201, 201, 201, 1);
  1399. border-radius:4px;
  1400. -moz-box-shadow:none;
  1401. -webkit-box-shadow:none;
  1402. box-shadow:none;
  1403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1404. font-weight:400;
  1405. font-style:normal;
  1406. font-size:12px;
  1407. color:#CCCCCC;
  1408. text-align:right;
  1409. }
  1410. #u79851 {
  1411. border-width:0px;
  1412. position:absolute;
  1413. left:201px;
  1414. top:223px;
  1415. width:200px;
  1416. height:30px;
  1417. display:flex;
  1418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1419. font-weight:400;
  1420. font-style:normal;
  1421. font-size:12px;
  1422. color:#CCCCCC;
  1423. text-align:right;
  1424. }
  1425. #u79851 .text {
  1426. position:absolute;
  1427. align-self:center;
  1428. padding:2px 8px 2px 8px;
  1429. box-sizing:border-box;
  1430. width:100%;
  1431. }
  1432. #u79851_text {
  1433. border-width:0px;
  1434. word-wrap:break-word;
  1435. text-transform:none;
  1436. visibility:hidden;
  1437. }
  1438. #u79852_input {
  1439. position:absolute;
  1440. left:0px;
  1441. top:0px;
  1442. width:180px;
  1443. height:26px;
  1444. padding:2px 2px 2px 2px;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:12px;
  1449. letter-spacing:normal;
  1450. color:#7F7F7F;
  1451. vertical-align:none;
  1452. text-align:left;
  1453. text-transform:none;
  1454. background-color:transparent;
  1455. border-color:transparent;
  1456. }
  1457. #u79852_input.disabled {
  1458. position:absolute;
  1459. left:0px;
  1460. top:0px;
  1461. width:180px;
  1462. height:26px;
  1463. padding:2px 2px 2px 2px;
  1464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1465. font-weight:400;
  1466. font-style:normal;
  1467. font-size:12px;
  1468. letter-spacing:normal;
  1469. color:#7F7F7F;
  1470. vertical-align:none;
  1471. text-align:left;
  1472. text-transform:none;
  1473. background-color:transparent;
  1474. border-color:transparent;
  1475. }
  1476. #u79852_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:180px;
  1482. height:26px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 1);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. font-size:12px;
  1494. color:#7F7F7F;
  1495. }
  1496. #u79852 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:207px;
  1500. top:224px;
  1501. width:180px;
  1502. height:26px;
  1503. display:flex;
  1504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1505. font-weight:400;
  1506. font-style:normal;
  1507. font-size:12px;
  1508. color:#7F7F7F;
  1509. }
  1510. #u79852 .text {
  1511. position:absolute;
  1512. align-self:center;
  1513. padding:2px 2px 2px 2px;
  1514. box-sizing:border-box;
  1515. width:100%;
  1516. }
  1517. #u79852_div.disabled {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:0px;
  1521. top:0px;
  1522. width:180px;
  1523. height:26px;
  1524. background:inherit;
  1525. background-color:rgba(240, 240, 240, 1);
  1526. border:none;
  1527. border-radius:0px;
  1528. -moz-box-shadow:none;
  1529. -webkit-box-shadow:none;
  1530. box-shadow:none;
  1531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1532. font-weight:400;
  1533. font-style:normal;
  1534. font-size:12px;
  1535. color:#7F7F7F;
  1536. }
  1537. #u79852.disabled {
  1538. }
  1539. #u79853_div {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:0px;
  1543. top:0px;
  1544. width:100px;
  1545. height:30px;
  1546. background:inherit;
  1547. background-color:rgba(255, 255, 255, 0);
  1548. border:none;
  1549. border-top:0px;
  1550. border-right:0px;
  1551. border-bottom:0px;
  1552. border-radius:0px;
  1553. border-top-left-radius:0px;
  1554. border-bottom-left-radius:0px;
  1555. -moz-box-shadow:none;
  1556. -webkit-box-shadow:none;
  1557. box-shadow:none;
  1558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1559. font-weight:400;
  1560. font-style:normal;
  1561. font-size:14px;
  1562. color:#7F7F7F;
  1563. }
  1564. #u79853 {
  1565. border-width:0px;
  1566. position:absolute;
  1567. left:421px;
  1568. top:223px;
  1569. width:100px;
  1570. height:30px;
  1571. display:flex;
  1572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1573. font-weight:400;
  1574. font-style:normal;
  1575. font-size:14px;
  1576. color:#7F7F7F;
  1577. }
  1578. #u79853 .text {
  1579. position:absolute;
  1580. align-self:center;
  1581. padding:5px 10px 5px 0px;
  1582. box-sizing:border-box;
  1583. width:100%;
  1584. }
  1585. #u79853_text {
  1586. border-width:0px;
  1587. word-wrap:break-word;
  1588. text-transform:none;
  1589. }
  1590. #u79854 {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:0px;
  1596. height:0px;
  1597. }
  1598. #u79855_div {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:0px;
  1602. top:0px;
  1603. width:200px;
  1604. height:30px;
  1605. background:inherit;
  1606. background-color:rgba(255, 255, 255, 1);
  1607. box-sizing:border-box;
  1608. border-width:1px;
  1609. border-style:solid;
  1610. border-color:rgba(201, 201, 201, 1);
  1611. border-radius:4px;
  1612. -moz-box-shadow:none;
  1613. -webkit-box-shadow:none;
  1614. box-shadow:none;
  1615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1616. font-weight:400;
  1617. font-style:normal;
  1618. font-size:12px;
  1619. color:#CCCCCC;
  1620. text-align:right;
  1621. }
  1622. #u79855 {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:517px;
  1626. top:223px;
  1627. width:200px;
  1628. height:30px;
  1629. display:flex;
  1630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1631. font-weight:400;
  1632. font-style:normal;
  1633. font-size:12px;
  1634. color:#CCCCCC;
  1635. text-align:right;
  1636. }
  1637. #u79855 .text {
  1638. position:absolute;
  1639. align-self:center;
  1640. padding:2px 8px 2px 8px;
  1641. box-sizing:border-box;
  1642. width:100%;
  1643. }
  1644. #u79855_text {
  1645. border-width:0px;
  1646. word-wrap:break-word;
  1647. text-transform:none;
  1648. visibility:hidden;
  1649. }
  1650. #u79856_input {
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:180px;
  1655. height:26px;
  1656. padding:2px 2px 2px 2px;
  1657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1658. font-weight:400;
  1659. font-style:normal;
  1660. font-size:12px;
  1661. letter-spacing:normal;
  1662. color:#7F7F7F;
  1663. vertical-align:none;
  1664. text-align:left;
  1665. text-transform:none;
  1666. background-color:transparent;
  1667. border-color:transparent;
  1668. }
  1669. #u79856_input.disabled {
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:180px;
  1674. height:26px;
  1675. padding:2px 2px 2px 2px;
  1676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1677. font-weight:400;
  1678. font-style:normal;
  1679. font-size:12px;
  1680. letter-spacing:normal;
  1681. color:#7F7F7F;
  1682. vertical-align:none;
  1683. text-align:left;
  1684. text-transform:none;
  1685. background-color:transparent;
  1686. border-color:transparent;
  1687. }
  1688. #u79856_div {
  1689. border-width:0px;
  1690. position:absolute;
  1691. left:0px;
  1692. top:0px;
  1693. width:180px;
  1694. height:26px;
  1695. background:inherit;
  1696. background-color:rgba(255, 255, 255, 1);
  1697. border:none;
  1698. border-radius:0px;
  1699. -moz-box-shadow:none;
  1700. -webkit-box-shadow:none;
  1701. box-shadow:none;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:12px;
  1706. color:#7F7F7F;
  1707. }
  1708. #u79856 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:523px;
  1712. top:224px;
  1713. width:180px;
  1714. height:26px;
  1715. display:flex;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:12px;
  1720. color:#7F7F7F;
  1721. }
  1722. #u79856 .text {
  1723. position:absolute;
  1724. align-self:center;
  1725. padding:2px 2px 2px 2px;
  1726. box-sizing:border-box;
  1727. width:100%;
  1728. }
  1729. #u79856_div.disabled {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:180px;
  1735. height:26px;
  1736. background:inherit;
  1737. background-color:rgba(240, 240, 240, 1);
  1738. border:none;
  1739. border-radius:0px;
  1740. -moz-box-shadow:none;
  1741. -webkit-box-shadow:none;
  1742. box-shadow:none;
  1743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1744. font-weight:400;
  1745. font-style:normal;
  1746. font-size:12px;
  1747. color:#7F7F7F;
  1748. }
  1749. #u79856.disabled {
  1750. }
  1751. #u79857_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:100px;
  1757. height:30px;
  1758. background:inherit;
  1759. background-color:rgba(255, 255, 255, 0);
  1760. border:none;
  1761. border-top:0px;
  1762. border-right:0px;
  1763. border-bottom:0px;
  1764. border-radius:0px;
  1765. border-top-left-radius:0px;
  1766. border-bottom-left-radius:0px;
  1767. -moz-box-shadow:none;
  1768. -webkit-box-shadow:none;
  1769. box-shadow:none;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:14px;
  1774. color:#7F7F7F;
  1775. }
  1776. #u79857 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:747px;
  1780. top:223px;
  1781. width:100px;
  1782. height:30px;
  1783. display:flex;
  1784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1785. font-weight:400;
  1786. font-style:normal;
  1787. font-size:14px;
  1788. color:#7F7F7F;
  1789. }
  1790. #u79857 .text {
  1791. position:absolute;
  1792. align-self:center;
  1793. padding:5px 10px 5px 0px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u79857_text {
  1798. border-width:0px;
  1799. word-wrap:break-word;
  1800. text-transform:none;
  1801. }
  1802. #u79858 {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:0px;
  1808. height:0px;
  1809. }
  1810. #u79859_div {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:0px;
  1814. top:0px;
  1815. width:200px;
  1816. height:30px;
  1817. background:inherit;
  1818. background-color:rgba(255, 255, 255, 1);
  1819. box-sizing:border-box;
  1820. border-width:1px;
  1821. border-style:solid;
  1822. border-color:rgba(201, 201, 201, 1);
  1823. border-radius:4px;
  1824. -moz-box-shadow:none;
  1825. -webkit-box-shadow:none;
  1826. box-shadow:none;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:12px;
  1831. color:#CCCCCC;
  1832. text-align:right;
  1833. }
  1834. #u79859 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:843px;
  1838. top:223px;
  1839. width:200px;
  1840. height:30px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:12px;
  1846. color:#CCCCCC;
  1847. text-align:right;
  1848. }
  1849. #u79859 .text {
  1850. position:absolute;
  1851. align-self:center;
  1852. padding:2px 8px 2px 8px;
  1853. box-sizing:border-box;
  1854. width:100%;
  1855. }
  1856. #u79859_text {
  1857. border-width:0px;
  1858. word-wrap:break-word;
  1859. text-transform:none;
  1860. visibility:hidden;
  1861. }
  1862. #u79860_input {
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:180px;
  1867. height:26px;
  1868. padding:2px 2px 2px 2px;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. letter-spacing:normal;
  1874. color:#7F7F7F;
  1875. vertical-align:none;
  1876. text-align:left;
  1877. text-transform:none;
  1878. background-color:transparent;
  1879. border-color:transparent;
  1880. }
  1881. #u79860_input.disabled {
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:180px;
  1886. height:26px;
  1887. padding:2px 2px 2px 2px;
  1888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. font-size:12px;
  1892. letter-spacing:normal;
  1893. color:#7F7F7F;
  1894. vertical-align:none;
  1895. text-align:left;
  1896. text-transform:none;
  1897. background-color:transparent;
  1898. border-color:transparent;
  1899. }
  1900. #u79860_div {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:180px;
  1906. height:26px;
  1907. background:inherit;
  1908. background-color:rgba(255, 255, 255, 1);
  1909. border:none;
  1910. border-radius:0px;
  1911. -moz-box-shadow:none;
  1912. -webkit-box-shadow:none;
  1913. box-shadow:none;
  1914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:12px;
  1918. color:#7F7F7F;
  1919. }
  1920. #u79860 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:849px;
  1924. top:224px;
  1925. width:180px;
  1926. height:26px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:12px;
  1932. color:#7F7F7F;
  1933. }
  1934. #u79860 .text {
  1935. position:absolute;
  1936. align-self:center;
  1937. padding:2px 2px 2px 2px;
  1938. box-sizing:border-box;
  1939. width:100%;
  1940. }
  1941. #u79860_div.disabled {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:180px;
  1947. height:26px;
  1948. background:inherit;
  1949. background-color:rgba(240, 240, 240, 1);
  1950. border:none;
  1951. border-radius:0px;
  1952. -moz-box-shadow:none;
  1953. -webkit-box-shadow:none;
  1954. box-shadow:none;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:12px;
  1959. color:#7F7F7F;
  1960. }
  1961. #u79860.disabled {
  1962. }
  1963. #u79861_div {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:100px;
  1969. height:30px;
  1970. background:inherit;
  1971. background-color:rgba(255, 255, 255, 0);
  1972. border:none;
  1973. border-top:0px;
  1974. border-right:0px;
  1975. border-bottom:0px;
  1976. border-radius:0px;
  1977. border-top-left-radius:0px;
  1978. border-bottom-left-radius:0px;
  1979. -moz-box-shadow:none;
  1980. -webkit-box-shadow:none;
  1981. box-shadow:none;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:14px;
  1986. color:#7F7F7F;
  1987. }
  1988. #u79861 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:105px;
  1992. top:263px;
  1993. width:100px;
  1994. height:30px;
  1995. display:flex;
  1996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:14px;
  2000. color:#7F7F7F;
  2001. }
  2002. #u79861 .text {
  2003. position:absolute;
  2004. align-self:center;
  2005. padding:5px 10px 5px 0px;
  2006. box-sizing:border-box;
  2007. width:100%;
  2008. }
  2009. #u79861_text {
  2010. border-width:0px;
  2011. word-wrap:break-word;
  2012. text-transform:none;
  2013. }
  2014. #u79862 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:0px;
  2020. height:0px;
  2021. }
  2022. #u79863_div {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:200px;
  2028. height:30px;
  2029. background:inherit;
  2030. background-color:rgba(255, 255, 255, 1);
  2031. box-sizing:border-box;
  2032. border-width:1px;
  2033. border-style:solid;
  2034. border-color:rgba(201, 201, 201, 1);
  2035. border-radius:4px;
  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:12px;
  2043. color:#CCCCCC;
  2044. text-align:right;
  2045. }
  2046. #u79863 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:201px;
  2050. top:263px;
  2051. width:200px;
  2052. height:30px;
  2053. display:flex;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:12px;
  2058. color:#CCCCCC;
  2059. text-align:right;
  2060. }
  2061. #u79863 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 8px 2px 8px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u79863_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. visibility:hidden;
  2073. }
  2074. #u79864_input {
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:180px;
  2079. height:26px;
  2080. padding:2px 2px 2px 2px;
  2081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2082. font-weight:400;
  2083. font-style:normal;
  2084. font-size:12px;
  2085. letter-spacing:normal;
  2086. color:#7F7F7F;
  2087. vertical-align:none;
  2088. text-align:left;
  2089. text-transform:none;
  2090. background-color:transparent;
  2091. border-color:transparent;
  2092. }
  2093. #u79864_input.disabled {
  2094. position:absolute;
  2095. left:0px;
  2096. top:0px;
  2097. width:180px;
  2098. height:26px;
  2099. padding:2px 2px 2px 2px;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:12px;
  2104. letter-spacing:normal;
  2105. color:#7F7F7F;
  2106. vertical-align:none;
  2107. text-align:left;
  2108. text-transform:none;
  2109. background-color:transparent;
  2110. border-color:transparent;
  2111. }
  2112. #u79864_div {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:180px;
  2118. height:26px;
  2119. background:inherit;
  2120. background-color:rgba(255, 255, 255, 1);
  2121. border:none;
  2122. border-radius:0px;
  2123. -moz-box-shadow:none;
  2124. -webkit-box-shadow:none;
  2125. box-shadow:none;
  2126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:12px;
  2130. color:#7F7F7F;
  2131. }
  2132. #u79864 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:207px;
  2136. top:264px;
  2137. width:180px;
  2138. height:26px;
  2139. display:flex;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:12px;
  2144. color:#7F7F7F;
  2145. }
  2146. #u79864 .text {
  2147. position:absolute;
  2148. align-self:center;
  2149. padding:2px 2px 2px 2px;
  2150. box-sizing:border-box;
  2151. width:100%;
  2152. }
  2153. #u79864_div.disabled {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:180px;
  2159. height:26px;
  2160. background:inherit;
  2161. background-color:rgba(240, 240, 240, 1);
  2162. border:none;
  2163. border-radius:0px;
  2164. -moz-box-shadow:none;
  2165. -webkit-box-shadow:none;
  2166. box-shadow:none;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:12px;
  2171. color:#7F7F7F;
  2172. }
  2173. #u79864.disabled {
  2174. }
  2175. #u79865_div {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:100px;
  2181. height:30px;
  2182. background:inherit;
  2183. background-color:rgba(255, 255, 255, 0);
  2184. border:none;
  2185. border-top:0px;
  2186. border-right:0px;
  2187. border-bottom:0px;
  2188. border-radius:0px;
  2189. border-top-left-radius:0px;
  2190. border-bottom-left-radius:0px;
  2191. -moz-box-shadow:none;
  2192. -webkit-box-shadow:none;
  2193. box-shadow:none;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:14px;
  2198. color:#7F7F7F;
  2199. }
  2200. #u79865 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:421px;
  2204. top:263px;
  2205. width:100px;
  2206. height:30px;
  2207. display:flex;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:14px;
  2212. color:#7F7F7F;
  2213. }
  2214. #u79865 .text {
  2215. position:absolute;
  2216. align-self:center;
  2217. padding:5px 10px 5px 0px;
  2218. box-sizing:border-box;
  2219. width:100%;
  2220. }
  2221. #u79865_text {
  2222. border-width:0px;
  2223. word-wrap:break-word;
  2224. text-transform:none;
  2225. }
  2226. #u79866 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:0px;
  2232. height:0px;
  2233. }
  2234. #u79867_div {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:200px;
  2240. height:30px;
  2241. background:inherit;
  2242. background-color:rgba(255, 255, 255, 1);
  2243. box-sizing:border-box;
  2244. border-width:1px;
  2245. border-style:solid;
  2246. border-color:rgba(201, 201, 201, 1);
  2247. border-radius:4px;
  2248. -moz-box-shadow:none;
  2249. -webkit-box-shadow:none;
  2250. box-shadow:none;
  2251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2252. font-weight:400;
  2253. font-style:normal;
  2254. font-size:12px;
  2255. color:#CCCCCC;
  2256. text-align:right;
  2257. }
  2258. #u79867 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:517px;
  2262. top:263px;
  2263. width:200px;
  2264. height:30px;
  2265. display:flex;
  2266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2267. font-weight:400;
  2268. font-style:normal;
  2269. font-size:12px;
  2270. color:#CCCCCC;
  2271. text-align:right;
  2272. }
  2273. #u79867 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 8px 2px 8px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u79867_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u79868_input {
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:180px;
  2291. height:26px;
  2292. padding:2px 2px 2px 2px;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:12px;
  2297. letter-spacing:normal;
  2298. color:#7F7F7F;
  2299. vertical-align:none;
  2300. text-align:left;
  2301. text-transform:none;
  2302. background-color:transparent;
  2303. border-color:transparent;
  2304. }
  2305. #u79868_input.disabled {
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:180px;
  2310. height:26px;
  2311. padding:2px 2px 2px 2px;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:12px;
  2316. letter-spacing:normal;
  2317. color:#7F7F7F;
  2318. vertical-align:none;
  2319. text-align:left;
  2320. text-transform:none;
  2321. background-color:transparent;
  2322. border-color:transparent;
  2323. }
  2324. #u79868_div {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:180px;
  2330. height:26px;
  2331. background:inherit;
  2332. background-color:rgba(255, 255, 255, 1);
  2333. border:none;
  2334. border-radius:0px;
  2335. -moz-box-shadow:none;
  2336. -webkit-box-shadow:none;
  2337. box-shadow:none;
  2338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2339. font-weight:400;
  2340. font-style:normal;
  2341. font-size:12px;
  2342. color:#7F7F7F;
  2343. }
  2344. #u79868 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:523px;
  2348. top:264px;
  2349. width:180px;
  2350. height:26px;
  2351. display:flex;
  2352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:12px;
  2356. color:#7F7F7F;
  2357. }
  2358. #u79868 .text {
  2359. position:absolute;
  2360. align-self:center;
  2361. padding:2px 2px 2px 2px;
  2362. box-sizing:border-box;
  2363. width:100%;
  2364. }
  2365. #u79868_div.disabled {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:180px;
  2371. height:26px;
  2372. background:inherit;
  2373. background-color:rgba(240, 240, 240, 1);
  2374. border:none;
  2375. border-radius:0px;
  2376. -moz-box-shadow:none;
  2377. -webkit-box-shadow:none;
  2378. box-shadow:none;
  2379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2380. font-weight:400;
  2381. font-style:normal;
  2382. font-size:12px;
  2383. color:#7F7F7F;
  2384. }
  2385. #u79868.disabled {
  2386. }
  2387. #u79869_div {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:0px;
  2391. top:0px;
  2392. width:100px;
  2393. height:30px;
  2394. background:inherit;
  2395. background-color:rgba(255, 255, 255, 0);
  2396. border:none;
  2397. border-top:0px;
  2398. border-right:0px;
  2399. border-bottom:0px;
  2400. border-radius:0px;
  2401. border-top-left-radius:0px;
  2402. border-bottom-left-radius:0px;
  2403. -moz-box-shadow:none;
  2404. -webkit-box-shadow:none;
  2405. box-shadow:none;
  2406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2407. font-weight:400;
  2408. font-style:normal;
  2409. font-size:14px;
  2410. color:#7F7F7F;
  2411. }
  2412. #u79869 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:747px;
  2416. top:263px;
  2417. width:100px;
  2418. height:30px;
  2419. display:flex;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:14px;
  2424. color:#7F7F7F;
  2425. }
  2426. #u79869 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:5px 10px 5px 0px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u79869_text {
  2434. border-width:0px;
  2435. word-wrap:break-word;
  2436. text-transform:none;
  2437. }
  2438. #u79870 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:0px;
  2444. height:0px;
  2445. }
  2446. #u79871_div {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:200px;
  2452. height:30px;
  2453. background:inherit;
  2454. background-color:rgba(255, 255, 255, 1);
  2455. box-sizing:border-box;
  2456. border-width:1px;
  2457. border-style:solid;
  2458. border-color:rgba(215, 215, 215, 1);
  2459. border-radius:4px;
  2460. -moz-box-shadow:none;
  2461. -webkit-box-shadow:none;
  2462. box-shadow:none;
  2463. font-size:12px;
  2464. }
  2465. #u79871 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:843px;
  2469. top:263px;
  2470. width:200px;
  2471. height:30px;
  2472. display:flex;
  2473. font-size:12px;
  2474. }
  2475. #u79871 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 2px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u79871_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u79872_input {
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:191px;
  2493. height:23px;
  2494. padding:2px 2px 2px 2px;
  2495. font-family:'ArialMT', 'Arial', sans-serif;
  2496. font-weight:400;
  2497. font-style:normal;
  2498. font-size:12px;
  2499. letter-spacing:normal;
  2500. color:#AAAAAA;
  2501. vertical-align:none;
  2502. text-align:left;
  2503. text-transform:none;
  2504. background-color:transparent;
  2505. border-color:transparent;
  2506. }
  2507. #u79872_input.disabled {
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:191px;
  2512. height:23px;
  2513. padding:2px 2px 2px 2px;
  2514. font-family:'ArialMT', 'Arial', sans-serif;
  2515. font-weight:400;
  2516. font-style:normal;
  2517. font-size:12px;
  2518. letter-spacing:normal;
  2519. color:#AAAAAA;
  2520. vertical-align:none;
  2521. text-align:left;
  2522. text-transform:none;
  2523. background-color:transparent;
  2524. border-color:transparent;
  2525. }
  2526. #u79872_div {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:191px;
  2532. height:23px;
  2533. background:inherit;
  2534. background-color:rgba(255, 255, 255, 1);
  2535. border:none;
  2536. border-radius:0px;
  2537. -moz-box-shadow:none;
  2538. -webkit-box-shadow:none;
  2539. box-shadow:none;
  2540. font-size:12px;
  2541. color:#AAAAAA;
  2542. }
  2543. #u79872 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:846px;
  2547. top:265px;
  2548. width:191px;
  2549. height:23px;
  2550. display:flex;
  2551. font-size:12px;
  2552. color:#AAAAAA;
  2553. }
  2554. #u79872 .text {
  2555. position:absolute;
  2556. align-self:flex-start;
  2557. padding:2px 2px 2px 2px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u79872_div.disabled {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:191px;
  2567. height:23px;
  2568. background:inherit;
  2569. background-color:rgba(240, 240, 240, 1);
  2570. border:none;
  2571. border-radius:0px;
  2572. -moz-box-shadow:none;
  2573. -webkit-box-shadow:none;
  2574. box-shadow:none;
  2575. font-size:12px;
  2576. color:#AAAAAA;
  2577. }
  2578. #u79872.disabled {
  2579. }
  2580. .u79872_input_option {
  2581. font-size:12px;
  2582. }
  2583. #u79873_div {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:0px;
  2587. top:0px;
  2588. width:100px;
  2589. height:30px;
  2590. background:inherit;
  2591. background-color:rgba(255, 255, 255, 0);
  2592. border:none;
  2593. border-top:0px;
  2594. border-right:0px;
  2595. border-bottom:0px;
  2596. border-radius:0px;
  2597. border-top-left-radius:0px;
  2598. border-bottom-left-radius:0px;
  2599. -moz-box-shadow:none;
  2600. -webkit-box-shadow:none;
  2601. box-shadow:none;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:14px;
  2606. color:#7F7F7F;
  2607. }
  2608. #u79873 {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:105px;
  2612. top:303px;
  2613. width:100px;
  2614. height:30px;
  2615. display:flex;
  2616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2617. font-weight:400;
  2618. font-style:normal;
  2619. font-size:14px;
  2620. color:#7F7F7F;
  2621. }
  2622. #u79873 .text {
  2623. position:absolute;
  2624. align-self:center;
  2625. padding:5px 10px 5px 0px;
  2626. box-sizing:border-box;
  2627. width:100%;
  2628. }
  2629. #u79873_text {
  2630. border-width:0px;
  2631. word-wrap:break-word;
  2632. text-transform:none;
  2633. }
  2634. #u79874 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:0px;
  2640. height:0px;
  2641. }
  2642. #u79875_div {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:200px;
  2648. height:30px;
  2649. background:inherit;
  2650. background-color:rgba(255, 255, 255, 1);
  2651. box-sizing:border-box;
  2652. border-width:1px;
  2653. border-style:solid;
  2654. border-color:rgba(201, 201, 201, 1);
  2655. border-radius:4px;
  2656. -moz-box-shadow:none;
  2657. -webkit-box-shadow:none;
  2658. box-shadow:none;
  2659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2660. font-weight:400;
  2661. font-style:normal;
  2662. font-size:12px;
  2663. color:#CCCCCC;
  2664. text-align:right;
  2665. }
  2666. #u79875 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:201px;
  2670. top:303px;
  2671. width:200px;
  2672. height:30px;
  2673. display:flex;
  2674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2675. font-weight:400;
  2676. font-style:normal;
  2677. font-size:12px;
  2678. color:#CCCCCC;
  2679. text-align:right;
  2680. }
  2681. #u79875 .text {
  2682. position:absolute;
  2683. align-self:center;
  2684. padding:2px 8px 2px 8px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u79875_text {
  2689. border-width:0px;
  2690. word-wrap:break-word;
  2691. text-transform:none;
  2692. visibility:hidden;
  2693. }
  2694. #u79876_input {
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:180px;
  2699. height:26px;
  2700. padding:2px 2px 2px 2px;
  2701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:12px;
  2705. letter-spacing:normal;
  2706. color:#7F7F7F;
  2707. vertical-align:none;
  2708. text-align:left;
  2709. text-transform:none;
  2710. background-color:transparent;
  2711. border-color:transparent;
  2712. }
  2713. #u79876_input.disabled {
  2714. position:absolute;
  2715. left:0px;
  2716. top:0px;
  2717. width:180px;
  2718. height:26px;
  2719. padding:2px 2px 2px 2px;
  2720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2721. font-weight:400;
  2722. font-style:normal;
  2723. font-size:12px;
  2724. letter-spacing:normal;
  2725. color:#7F7F7F;
  2726. vertical-align:none;
  2727. text-align:left;
  2728. text-transform:none;
  2729. background-color:transparent;
  2730. border-color:transparent;
  2731. }
  2732. #u79876_div {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:180px;
  2738. height:26px;
  2739. background:inherit;
  2740. background-color:rgba(255, 255, 255, 1);
  2741. border:none;
  2742. border-radius:0px;
  2743. -moz-box-shadow:none;
  2744. -webkit-box-shadow:none;
  2745. box-shadow:none;
  2746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2747. font-weight:400;
  2748. font-style:normal;
  2749. font-size:12px;
  2750. color:#7F7F7F;
  2751. }
  2752. #u79876 {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:207px;
  2756. top:304px;
  2757. width:180px;
  2758. height:26px;
  2759. display:flex;
  2760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:12px;
  2764. color:#7F7F7F;
  2765. }
  2766. #u79876 .text {
  2767. position:absolute;
  2768. align-self:center;
  2769. padding:2px 2px 2px 2px;
  2770. box-sizing:border-box;
  2771. width:100%;
  2772. }
  2773. #u79876_div.disabled {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:180px;
  2779. height:26px;
  2780. background:inherit;
  2781. background-color:rgba(240, 240, 240, 1);
  2782. border:none;
  2783. border-radius:0px;
  2784. -moz-box-shadow:none;
  2785. -webkit-box-shadow:none;
  2786. box-shadow:none;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:12px;
  2791. color:#7F7F7F;
  2792. }
  2793. #u79876.disabled {
  2794. }
  2795. #u79877_div {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:100px;
  2801. height:30px;
  2802. background:inherit;
  2803. background-color:rgba(255, 255, 255, 0);
  2804. border:none;
  2805. border-top:0px;
  2806. border-right:0px;
  2807. border-bottom:0px;
  2808. border-radius:0px;
  2809. border-top-left-radius:0px;
  2810. border-bottom-left-radius:0px;
  2811. -moz-box-shadow:none;
  2812. -webkit-box-shadow:none;
  2813. box-shadow:none;
  2814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2815. font-weight:400;
  2816. font-style:normal;
  2817. font-size:14px;
  2818. color:#7F7F7F;
  2819. }
  2820. #u79877 {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:421px;
  2824. top:303px;
  2825. width:100px;
  2826. height:30px;
  2827. display:flex;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:14px;
  2832. color:#7F7F7F;
  2833. }
  2834. #u79877 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:5px 10px 5px 0px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u79877_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. }
  2846. #u79878 {
  2847. border-width:0px;
  2848. position:absolute;
  2849. left:0px;
  2850. top:0px;
  2851. width:0px;
  2852. height:0px;
  2853. }
  2854. #u79879_div {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:200px;
  2860. height:30px;
  2861. background:inherit;
  2862. background-color:rgba(255, 255, 255, 1);
  2863. box-sizing:border-box;
  2864. border-width:1px;
  2865. border-style:solid;
  2866. border-color:rgba(201, 201, 201, 1);
  2867. border-radius:4px;
  2868. -moz-box-shadow:none;
  2869. -webkit-box-shadow:none;
  2870. box-shadow:none;
  2871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2872. font-weight:400;
  2873. font-style:normal;
  2874. font-size:12px;
  2875. color:#CCCCCC;
  2876. text-align:right;
  2877. }
  2878. #u79879 {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:517px;
  2882. top:303px;
  2883. width:200px;
  2884. height:30px;
  2885. display:flex;
  2886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2887. font-weight:400;
  2888. font-style:normal;
  2889. font-size:12px;
  2890. color:#CCCCCC;
  2891. text-align:right;
  2892. }
  2893. #u79879 .text {
  2894. position:absolute;
  2895. align-self:center;
  2896. padding:2px 8px 2px 8px;
  2897. box-sizing:border-box;
  2898. width:100%;
  2899. }
  2900. #u79879_text {
  2901. border-width:0px;
  2902. word-wrap:break-word;
  2903. text-transform:none;
  2904. visibility:hidden;
  2905. }
  2906. #u79880_input {
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:180px;
  2911. height:26px;
  2912. padding:2px 2px 2px 2px;
  2913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2914. font-weight:400;
  2915. font-style:normal;
  2916. font-size:12px;
  2917. letter-spacing:normal;
  2918. color:#7F7F7F;
  2919. vertical-align:none;
  2920. text-align:left;
  2921. text-transform:none;
  2922. background-color:transparent;
  2923. border-color:transparent;
  2924. }
  2925. #u79880_input.disabled {
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:180px;
  2930. height:26px;
  2931. padding:2px 2px 2px 2px;
  2932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2933. font-weight:400;
  2934. font-style:normal;
  2935. font-size:12px;
  2936. letter-spacing:normal;
  2937. color:#7F7F7F;
  2938. vertical-align:none;
  2939. text-align:left;
  2940. text-transform:none;
  2941. background-color:transparent;
  2942. border-color:transparent;
  2943. }
  2944. #u79880_div {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:180px;
  2950. height:26px;
  2951. background:inherit;
  2952. background-color:rgba(255, 255, 255, 1);
  2953. border:none;
  2954. border-radius:0px;
  2955. -moz-box-shadow:none;
  2956. -webkit-box-shadow:none;
  2957. box-shadow:none;
  2958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2959. font-weight:400;
  2960. font-style:normal;
  2961. font-size:12px;
  2962. color:#7F7F7F;
  2963. }
  2964. #u79880 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:523px;
  2968. top:304px;
  2969. width:180px;
  2970. height:26px;
  2971. display:flex;
  2972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2973. font-weight:400;
  2974. font-style:normal;
  2975. font-size:12px;
  2976. color:#7F7F7F;
  2977. }
  2978. #u79880 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 2px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u79880_div.disabled {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:180px;
  2991. height:26px;
  2992. background:inherit;
  2993. background-color:rgba(240, 240, 240, 1);
  2994. border:none;
  2995. border-radius:0px;
  2996. -moz-box-shadow:none;
  2997. -webkit-box-shadow:none;
  2998. box-shadow:none;
  2999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3000. font-weight:400;
  3001. font-style:normal;
  3002. font-size:12px;
  3003. color:#7F7F7F;
  3004. }
  3005. #u79880.disabled {
  3006. }
  3007. #u79881_div {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:109px;
  3013. height:30px;
  3014. background:inherit;
  3015. background-color:rgba(255, 255, 255, 0);
  3016. border:none;
  3017. border-top:0px;
  3018. border-right:0px;
  3019. border-bottom:0px;
  3020. border-radius:0px;
  3021. border-top-left-radius:0px;
  3022. border-bottom-left-radius:0px;
  3023. -moz-box-shadow:none;
  3024. -webkit-box-shadow:none;
  3025. box-shadow:none;
  3026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3027. font-weight:400;
  3028. font-style:normal;
  3029. font-size:14px;
  3030. color:#7F7F7F;
  3031. }
  3032. #u79881 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:747px;
  3036. top:303px;
  3037. width:109px;
  3038. height:30px;
  3039. display:flex;
  3040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3041. font-weight:400;
  3042. font-style:normal;
  3043. font-size:14px;
  3044. color:#7F7F7F;
  3045. }
  3046. #u79881 .text {
  3047. position:absolute;
  3048. align-self:center;
  3049. padding:5px 10px 5px 0px;
  3050. box-sizing:border-box;
  3051. width:100%;
  3052. }
  3053. #u79881_text {
  3054. border-width:0px;
  3055. white-space:nowrap;
  3056. text-transform:none;
  3057. }
  3058. #u79882 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:0px;
  3064. height:0px;
  3065. }
  3066. #u79883_div {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:200px;
  3072. height:30px;
  3073. background:inherit;
  3074. background-color:rgba(255, 255, 255, 1);
  3075. box-sizing:border-box;
  3076. border-width:1px;
  3077. border-style:solid;
  3078. border-color:rgba(215, 215, 215, 1);
  3079. border-radius:4px;
  3080. -moz-box-shadow:none;
  3081. -webkit-box-shadow:none;
  3082. box-shadow:none;
  3083. font-size:12px;
  3084. }
  3085. #u79883 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:843px;
  3089. top:303px;
  3090. width:200px;
  3091. height:30px;
  3092. display:flex;
  3093. font-size:12px;
  3094. }
  3095. #u79883 .text {
  3096. position:absolute;
  3097. align-self:center;
  3098. padding:2px 2px 2px 2px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u79883_text {
  3103. border-width:0px;
  3104. word-wrap:break-word;
  3105. text-transform:none;
  3106. visibility:hidden;
  3107. }
  3108. #u79884_input {
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:191px;
  3113. height:23px;
  3114. padding:2px 2px 2px 2px;
  3115. font-family:'ArialMT', 'Arial', sans-serif;
  3116. font-weight:400;
  3117. font-style:normal;
  3118. font-size:12px;
  3119. letter-spacing:normal;
  3120. color:#AAAAAA;
  3121. vertical-align:none;
  3122. text-align:left;
  3123. text-transform:none;
  3124. background-color:transparent;
  3125. border-color:transparent;
  3126. }
  3127. #u79884_input.disabled {
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:191px;
  3132. height:23px;
  3133. padding:2px 2px 2px 2px;
  3134. font-family:'ArialMT', 'Arial', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:12px;
  3138. letter-spacing:normal;
  3139. color:#AAAAAA;
  3140. vertical-align:none;
  3141. text-align:left;
  3142. text-transform:none;
  3143. background-color:transparent;
  3144. border-color:transparent;
  3145. }
  3146. #u79884_div {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:191px;
  3152. height:23px;
  3153. background:inherit;
  3154. background-color:rgba(255, 255, 255, 1);
  3155. border:none;
  3156. border-radius:0px;
  3157. -moz-box-shadow:none;
  3158. -webkit-box-shadow:none;
  3159. box-shadow:none;
  3160. font-size:12px;
  3161. color:#AAAAAA;
  3162. }
  3163. #u79884 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:846px;
  3167. top:305px;
  3168. width:191px;
  3169. height:23px;
  3170. display:flex;
  3171. font-size:12px;
  3172. color:#AAAAAA;
  3173. }
  3174. #u79884 .text {
  3175. position:absolute;
  3176. align-self:flex-start;
  3177. padding:2px 2px 2px 2px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u79884_div.disabled {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:191px;
  3187. height:23px;
  3188. background:inherit;
  3189. background-color:rgba(240, 240, 240, 1);
  3190. border:none;
  3191. border-radius:0px;
  3192. -moz-box-shadow:none;
  3193. -webkit-box-shadow:none;
  3194. box-shadow:none;
  3195. font-size:12px;
  3196. color:#AAAAAA;
  3197. }
  3198. #u79884.disabled {
  3199. }
  3200. .u79884_input_option {
  3201. font-size:12px;
  3202. }
  3203. #u79885_div {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:0px;
  3207. top:0px;
  3208. width:100px;
  3209. height:30px;
  3210. background:inherit;
  3211. background-color:rgba(255, 255, 255, 0);
  3212. border:none;
  3213. border-top:0px;
  3214. border-right:0px;
  3215. border-bottom:0px;
  3216. border-radius:0px;
  3217. border-top-left-radius:0px;
  3218. border-bottom-left-radius:0px;
  3219. -moz-box-shadow:none;
  3220. -webkit-box-shadow:none;
  3221. box-shadow:none;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. color:#7F7F7F;
  3227. }
  3228. #u79885 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:105px;
  3232. top:343px;
  3233. width:100px;
  3234. height:30px;
  3235. display:flex;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:14px;
  3240. color:#7F7F7F;
  3241. }
  3242. #u79885 .text {
  3243. position:absolute;
  3244. align-self:center;
  3245. padding:5px 10px 5px 0px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u79885_text {
  3250. border-width:0px;
  3251. word-wrap:break-word;
  3252. text-transform:none;
  3253. }
  3254. #u79886 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:0px;
  3260. height:0px;
  3261. }
  3262. #u79887_div {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:200px;
  3268. height:30px;
  3269. background:inherit;
  3270. background-color:rgba(255, 255, 255, 1);
  3271. box-sizing:border-box;
  3272. border-width:1px;
  3273. border-style:solid;
  3274. border-color:rgba(201, 201, 201, 1);
  3275. border-radius:4px;
  3276. -moz-box-shadow:none;
  3277. -webkit-box-shadow:none;
  3278. box-shadow:none;
  3279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3280. font-weight:400;
  3281. font-style:normal;
  3282. font-size:12px;
  3283. color:#CCCCCC;
  3284. text-align:right;
  3285. }
  3286. #u79887 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:201px;
  3290. top:343px;
  3291. width:200px;
  3292. height:30px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:12px;
  3298. color:#CCCCCC;
  3299. text-align:right;
  3300. }
  3301. #u79887 .text {
  3302. position:absolute;
  3303. align-self:center;
  3304. padding:2px 8px 2px 8px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u79887_text {
  3309. border-width:0px;
  3310. word-wrap:break-word;
  3311. text-transform:none;
  3312. visibility:hidden;
  3313. }
  3314. #u79888_input {
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:180px;
  3319. height:26px;
  3320. padding:2px 2px 2px 2px;
  3321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3322. font-weight:400;
  3323. font-style:normal;
  3324. font-size:12px;
  3325. letter-spacing:normal;
  3326. color:#7F7F7F;
  3327. vertical-align:none;
  3328. text-align:left;
  3329. text-transform:none;
  3330. background-color:transparent;
  3331. border-color:transparent;
  3332. }
  3333. #u79888_input.disabled {
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:180px;
  3338. height:26px;
  3339. padding:2px 2px 2px 2px;
  3340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3341. font-weight:400;
  3342. font-style:normal;
  3343. font-size:12px;
  3344. letter-spacing:normal;
  3345. color:#7F7F7F;
  3346. vertical-align:none;
  3347. text-align:left;
  3348. text-transform:none;
  3349. background-color:transparent;
  3350. border-color:transparent;
  3351. }
  3352. #u79888_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:180px;
  3358. height:26px;
  3359. background:inherit;
  3360. background-color:rgba(255, 255, 255, 1);
  3361. border:none;
  3362. border-radius:0px;
  3363. -moz-box-shadow:none;
  3364. -webkit-box-shadow:none;
  3365. box-shadow:none;
  3366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:12px;
  3370. color:#7F7F7F;
  3371. }
  3372. #u79888 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:207px;
  3376. top:344px;
  3377. width:180px;
  3378. height:26px;
  3379. display:flex;
  3380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3381. font-weight:400;
  3382. font-style:normal;
  3383. font-size:12px;
  3384. color:#7F7F7F;
  3385. }
  3386. #u79888 .text {
  3387. position:absolute;
  3388. align-self:center;
  3389. padding:2px 2px 2px 2px;
  3390. box-sizing:border-box;
  3391. width:100%;
  3392. }
  3393. #u79888_div.disabled {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:180px;
  3399. height:26px;
  3400. background:inherit;
  3401. background-color:rgba(240, 240, 240, 1);
  3402. border:none;
  3403. border-radius:0px;
  3404. -moz-box-shadow:none;
  3405. -webkit-box-shadow:none;
  3406. box-shadow:none;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:12px;
  3411. color:#7F7F7F;
  3412. }
  3413. #u79888.disabled {
  3414. }
  3415. #u79889_div {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:100px;
  3421. height:42px;
  3422. background:inherit;
  3423. background-color:rgba(255, 255, 255, 0);
  3424. border:none;
  3425. border-top:0px;
  3426. border-right:0px;
  3427. border-bottom:0px;
  3428. border-radius:0px;
  3429. border-top-left-radius:0px;
  3430. border-bottom-left-radius:0px;
  3431. -moz-box-shadow:none;
  3432. -webkit-box-shadow:none;
  3433. box-shadow:none;
  3434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:11px;
  3438. color:#7F7F7F;
  3439. }
  3440. #u79889 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:421px;
  3444. top:342px;
  3445. width:100px;
  3446. height:42px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:11px;
  3452. color:#7F7F7F;
  3453. }
  3454. #u79889 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:5px 10px 5px 0px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u79889_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. }
  3466. #u79890_div {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:81px;
  3472. height:30px;
  3473. background:inherit;
  3474. background-color:rgba(255, 255, 255, 0);
  3475. border:none;
  3476. border-top:0px;
  3477. border-right:0px;
  3478. border-bottom:0px;
  3479. border-radius:0px;
  3480. border-top-left-radius:0px;
  3481. border-bottom-left-radius:0px;
  3482. -moz-box-shadow:none;
  3483. -webkit-box-shadow:none;
  3484. box-shadow:none;
  3485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:14px;
  3489. color:#7F7F7F;
  3490. }
  3491. #u79890 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:747px;
  3495. top:343px;
  3496. width:81px;
  3497. height:30px;
  3498. display:flex;
  3499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:14px;
  3503. color:#7F7F7F;
  3504. }
  3505. #u79890 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:5px 10px 5px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u79890_text {
  3513. border-width:0px;
  3514. white-space:nowrap;
  3515. text-transform:none;
  3516. }
  3517. #u79891 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:0px;
  3523. height:0px;
  3524. }
  3525. #u79892_div {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:200px;
  3531. height:30px;
  3532. background:inherit;
  3533. background-color:rgba(255, 255, 255, 1);
  3534. box-sizing:border-box;
  3535. border-width:1px;
  3536. border-style:solid;
  3537. border-color:rgba(215, 215, 215, 1);
  3538. border-radius:4px;
  3539. -moz-box-shadow:none;
  3540. -webkit-box-shadow:none;
  3541. box-shadow:none;
  3542. font-size:12px;
  3543. }
  3544. #u79892 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:843px;
  3548. top:343px;
  3549. width:200px;
  3550. height:30px;
  3551. display:flex;
  3552. font-size:12px;
  3553. }
  3554. #u79892 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 2px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u79892_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u79893_input {
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:191px;
  3572. height:23px;
  3573. padding:2px 2px 2px 2px;
  3574. font-family:'ArialMT', 'Arial', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. letter-spacing:normal;
  3579. color:#AAAAAA;
  3580. vertical-align:none;
  3581. text-align:left;
  3582. text-transform:none;
  3583. background-color:transparent;
  3584. border-color:transparent;
  3585. }
  3586. #u79893_input.disabled {
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:191px;
  3591. height:23px;
  3592. padding:2px 2px 2px 2px;
  3593. font-family:'ArialMT', 'Arial', sans-serif;
  3594. font-weight:400;
  3595. font-style:normal;
  3596. font-size:12px;
  3597. letter-spacing:normal;
  3598. color:#AAAAAA;
  3599. vertical-align:none;
  3600. text-align:left;
  3601. text-transform:none;
  3602. background-color:transparent;
  3603. border-color:transparent;
  3604. }
  3605. #u79893_div {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:191px;
  3611. height:23px;
  3612. background:inherit;
  3613. background-color:rgba(255, 255, 255, 1);
  3614. border:none;
  3615. border-radius:0px;
  3616. -moz-box-shadow:none;
  3617. -webkit-box-shadow:none;
  3618. box-shadow:none;
  3619. font-size:12px;
  3620. color:#AAAAAA;
  3621. }
  3622. #u79893 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:846px;
  3626. top:345px;
  3627. width:191px;
  3628. height:23px;
  3629. display:flex;
  3630. font-size:12px;
  3631. color:#AAAAAA;
  3632. }
  3633. #u79893 .text {
  3634. position:absolute;
  3635. align-self:flex-start;
  3636. padding:2px 2px 2px 2px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u79893_div.disabled {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:191px;
  3646. height:23px;
  3647. background:inherit;
  3648. background-color:rgba(240, 240, 240, 1);
  3649. border:none;
  3650. border-radius:0px;
  3651. -moz-box-shadow:none;
  3652. -webkit-box-shadow:none;
  3653. box-shadow:none;
  3654. font-size:12px;
  3655. color:#AAAAAA;
  3656. }
  3657. #u79893.disabled {
  3658. }
  3659. .u79893_input_option {
  3660. font-size:12px;
  3661. }
  3662. #u79894 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:0px;
  3668. height:0px;
  3669. }
  3670. #u79895_div {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:200px;
  3676. height:30px;
  3677. background:inherit;
  3678. background-color:rgba(255, 255, 255, 1);
  3679. box-sizing:border-box;
  3680. border-width:1px;
  3681. border-style:solid;
  3682. border-color:rgba(215, 215, 215, 1);
  3683. border-radius:4px;
  3684. -moz-box-shadow:none;
  3685. -webkit-box-shadow:none;
  3686. box-shadow:none;
  3687. font-size:12px;
  3688. }
  3689. #u79895 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:517px;
  3693. top:343px;
  3694. width:200px;
  3695. height:30px;
  3696. display:flex;
  3697. font-size:12px;
  3698. }
  3699. #u79895 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 2px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u79895_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. visibility:hidden;
  3711. }
  3712. #u79896_input {
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:191px;
  3717. height:23px;
  3718. padding:2px 2px 2px 2px;
  3719. font-family:'ArialMT', 'Arial', sans-serif;
  3720. font-weight:400;
  3721. font-style:normal;
  3722. font-size:12px;
  3723. letter-spacing:normal;
  3724. color:#AAAAAA;
  3725. vertical-align:none;
  3726. text-align:left;
  3727. text-transform:none;
  3728. background-color:transparent;
  3729. border-color:transparent;
  3730. }
  3731. #u79896_input.disabled {
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:191px;
  3736. height:23px;
  3737. padding:2px 2px 2px 2px;
  3738. font-family:'ArialMT', 'Arial', sans-serif;
  3739. font-weight:400;
  3740. font-style:normal;
  3741. font-size:12px;
  3742. letter-spacing:normal;
  3743. color:#AAAAAA;
  3744. vertical-align:none;
  3745. text-align:left;
  3746. text-transform:none;
  3747. background-color:transparent;
  3748. border-color:transparent;
  3749. }
  3750. #u79896_div {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:191px;
  3756. height:23px;
  3757. background:inherit;
  3758. background-color:rgba(255, 255, 255, 1);
  3759. border:none;
  3760. border-radius:0px;
  3761. -moz-box-shadow:none;
  3762. -webkit-box-shadow:none;
  3763. box-shadow:none;
  3764. font-size:12px;
  3765. color:#AAAAAA;
  3766. }
  3767. #u79896 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:520px;
  3771. top:345px;
  3772. width:191px;
  3773. height:23px;
  3774. display:flex;
  3775. font-size:12px;
  3776. color:#AAAAAA;
  3777. }
  3778. #u79896 .text {
  3779. position:absolute;
  3780. align-self:flex-start;
  3781. padding:2px 2px 2px 2px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u79896_div.disabled {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:191px;
  3791. height:23px;
  3792. background:inherit;
  3793. background-color:rgba(240, 240, 240, 1);
  3794. border:none;
  3795. border-radius:0px;
  3796. -moz-box-shadow:none;
  3797. -webkit-box-shadow:none;
  3798. box-shadow:none;
  3799. font-size:12px;
  3800. color:#AAAAAA;
  3801. }
  3802. #u79896.disabled {
  3803. }
  3804. .u79896_input_option {
  3805. font-size:12px;
  3806. }
  3807. #u79897_div {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:0px;
  3811. top:0px;
  3812. width:100px;
  3813. height:42px;
  3814. background:inherit;
  3815. background-color:rgba(255, 255, 255, 0);
  3816. border:none;
  3817. border-top:0px;
  3818. border-right:0px;
  3819. border-bottom:0px;
  3820. border-radius:0px;
  3821. border-top-left-radius:0px;
  3822. border-bottom-left-radius:0px;
  3823. -moz-box-shadow:none;
  3824. -webkit-box-shadow:none;
  3825. box-shadow:none;
  3826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3827. font-weight:400;
  3828. font-style:normal;
  3829. font-size:11px;
  3830. color:#7F7F7F;
  3831. }
  3832. #u79897 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:105px;
  3836. top:382px;
  3837. width:100px;
  3838. height:42px;
  3839. display:flex;
  3840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3841. font-weight:400;
  3842. font-style:normal;
  3843. font-size:11px;
  3844. color:#7F7F7F;
  3845. }
  3846. #u79897 .text {
  3847. position:absolute;
  3848. align-self:center;
  3849. padding:5px 10px 5px 0px;
  3850. box-sizing:border-box;
  3851. width:100%;
  3852. }
  3853. #u79897_text {
  3854. border-width:0px;
  3855. word-wrap:break-word;
  3856. text-transform:none;
  3857. }
  3858. #u79898_div {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:100px;
  3864. height:42px;
  3865. background:inherit;
  3866. background-color:rgba(255, 255, 255, 0);
  3867. border:none;
  3868. border-top:0px;
  3869. border-right:0px;
  3870. border-bottom:0px;
  3871. border-radius:0px;
  3872. border-top-left-radius:0px;
  3873. border-bottom-left-radius:0px;
  3874. -moz-box-shadow:none;
  3875. -webkit-box-shadow:none;
  3876. box-shadow:none;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:11px;
  3881. color:#7F7F7F;
  3882. }
  3883. #u79898 {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:421px;
  3887. top:382px;
  3888. width:100px;
  3889. height:42px;
  3890. display:flex;
  3891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3892. font-weight:400;
  3893. font-style:normal;
  3894. font-size:11px;
  3895. color:#7F7F7F;
  3896. }
  3897. #u79898 .text {
  3898. position:absolute;
  3899. align-self:center;
  3900. padding:5px 10px 5px 0px;
  3901. box-sizing:border-box;
  3902. width:100%;
  3903. }
  3904. #u79898_text {
  3905. border-width:0px;
  3906. word-wrap:break-word;
  3907. text-transform:none;
  3908. }
  3909. #u79899_div {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:0px;
  3914. width:81px;
  3915. height:30px;
  3916. background:inherit;
  3917. background-color:rgba(255, 255, 255, 0);
  3918. border:none;
  3919. border-top:0px;
  3920. border-right:0px;
  3921. border-bottom:0px;
  3922. border-radius:0px;
  3923. border-top-left-radius:0px;
  3924. border-bottom-left-radius:0px;
  3925. -moz-box-shadow:none;
  3926. -webkit-box-shadow:none;
  3927. box-shadow:none;
  3928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:14px;
  3932. color:#7F7F7F;
  3933. }
  3934. #u79899 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:747px;
  3938. top:383px;
  3939. width:81px;
  3940. height:30px;
  3941. display:flex;
  3942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:14px;
  3946. color:#7F7F7F;
  3947. }
  3948. #u79899 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:5px 10px 5px 0px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u79899_text {
  3956. border-width:0px;
  3957. white-space:nowrap;
  3958. text-transform:none;
  3959. }
  3960. #u79900 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:0px;
  3966. height:0px;
  3967. }
  3968. #u79901_div {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:200px;
  3974. height:30px;
  3975. background:inherit;
  3976. background-color:rgba(255, 255, 255, 1);
  3977. box-sizing:border-box;
  3978. border-width:1px;
  3979. border-style:solid;
  3980. border-color:rgba(215, 215, 215, 1);
  3981. border-radius:4px;
  3982. -moz-box-shadow:none;
  3983. -webkit-box-shadow:none;
  3984. box-shadow:none;
  3985. font-size:12px;
  3986. }
  3987. #u79901 {
  3988. border-width:0px;
  3989. position:absolute;
  3990. left:843px;
  3991. top:383px;
  3992. width:200px;
  3993. height:30px;
  3994. display:flex;
  3995. font-size:12px;
  3996. }
  3997. #u79901 .text {
  3998. position:absolute;
  3999. align-self:center;
  4000. padding:2px 2px 2px 2px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u79901_text {
  4005. border-width:0px;
  4006. word-wrap:break-word;
  4007. text-transform:none;
  4008. visibility:hidden;
  4009. }
  4010. #u79902_input {
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:191px;
  4015. height:23px;
  4016. padding:2px 2px 2px 2px;
  4017. font-family:'ArialMT', 'Arial', sans-serif;
  4018. font-weight:400;
  4019. font-style:normal;
  4020. font-size:12px;
  4021. letter-spacing:normal;
  4022. color:#AAAAAA;
  4023. vertical-align:none;
  4024. text-align:left;
  4025. text-transform:none;
  4026. background-color:transparent;
  4027. border-color:transparent;
  4028. }
  4029. #u79902_input.disabled {
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:191px;
  4034. height:23px;
  4035. padding:2px 2px 2px 2px;
  4036. font-family:'ArialMT', 'Arial', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:12px;
  4040. letter-spacing:normal;
  4041. color:#AAAAAA;
  4042. vertical-align:none;
  4043. text-align:left;
  4044. text-transform:none;
  4045. background-color:transparent;
  4046. border-color:transparent;
  4047. }
  4048. #u79902_div {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:191px;
  4054. height:23px;
  4055. background:inherit;
  4056. background-color:rgba(255, 255, 255, 1);
  4057. border:none;
  4058. border-radius:0px;
  4059. -moz-box-shadow:none;
  4060. -webkit-box-shadow:none;
  4061. box-shadow:none;
  4062. font-size:12px;
  4063. color:#AAAAAA;
  4064. }
  4065. #u79902 {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:846px;
  4069. top:385px;
  4070. width:191px;
  4071. height:23px;
  4072. display:flex;
  4073. font-size:12px;
  4074. color:#AAAAAA;
  4075. }
  4076. #u79902 .text {
  4077. position:absolute;
  4078. align-self:flex-start;
  4079. padding:2px 2px 2px 2px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u79902_div.disabled {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:191px;
  4089. height:23px;
  4090. background:inherit;
  4091. background-color:rgba(240, 240, 240, 1);
  4092. border:none;
  4093. border-radius:0px;
  4094. -moz-box-shadow:none;
  4095. -webkit-box-shadow:none;
  4096. box-shadow:none;
  4097. font-size:12px;
  4098. color:#AAAAAA;
  4099. }
  4100. #u79902.disabled {
  4101. }
  4102. .u79902_input_option {
  4103. font-size:12px;
  4104. }
  4105. #u79903 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:0px;
  4109. top:0px;
  4110. width:0px;
  4111. height:0px;
  4112. }
  4113. #u79904_div {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:0px;
  4117. top:0px;
  4118. width:200px;
  4119. height:30px;
  4120. background:inherit;
  4121. background-color:rgba(255, 255, 255, 1);
  4122. box-sizing:border-box;
  4123. border-width:1px;
  4124. border-style:solid;
  4125. border-color:rgba(215, 215, 215, 1);
  4126. border-radius:4px;
  4127. -moz-box-shadow:none;
  4128. -webkit-box-shadow:none;
  4129. box-shadow:none;
  4130. font-size:12px;
  4131. }
  4132. #u79904 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:517px;
  4136. top:383px;
  4137. width:200px;
  4138. height:30px;
  4139. display:flex;
  4140. font-size:12px;
  4141. }
  4142. #u79904 .text {
  4143. position:absolute;
  4144. align-self:center;
  4145. padding:2px 2px 2px 2px;
  4146. box-sizing:border-box;
  4147. width:100%;
  4148. }
  4149. #u79904_text {
  4150. border-width:0px;
  4151. word-wrap:break-word;
  4152. text-transform:none;
  4153. visibility:hidden;
  4154. }
  4155. #u79905_input {
  4156. position:absolute;
  4157. left:0px;
  4158. top:0px;
  4159. width:191px;
  4160. height:23px;
  4161. padding:2px 2px 2px 2px;
  4162. font-family:'ArialMT', 'Arial', sans-serif;
  4163. font-weight:400;
  4164. font-style:normal;
  4165. font-size:12px;
  4166. letter-spacing:normal;
  4167. color:#AAAAAA;
  4168. vertical-align:none;
  4169. text-align:left;
  4170. text-transform:none;
  4171. background-color:transparent;
  4172. border-color:transparent;
  4173. }
  4174. #u79905_input.disabled {
  4175. position:absolute;
  4176. left:0px;
  4177. top:0px;
  4178. width:191px;
  4179. height:23px;
  4180. padding:2px 2px 2px 2px;
  4181. font-family:'ArialMT', 'Arial', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. font-size:12px;
  4185. letter-spacing:normal;
  4186. color:#AAAAAA;
  4187. vertical-align:none;
  4188. text-align:left;
  4189. text-transform:none;
  4190. background-color:transparent;
  4191. border-color:transparent;
  4192. }
  4193. #u79905_div {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:191px;
  4199. height:23px;
  4200. background:inherit;
  4201. background-color:rgba(255, 255, 255, 1);
  4202. border:none;
  4203. border-radius:0px;
  4204. -moz-box-shadow:none;
  4205. -webkit-box-shadow:none;
  4206. box-shadow:none;
  4207. font-size:12px;
  4208. color:#AAAAAA;
  4209. }
  4210. #u79905 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:520px;
  4214. top:385px;
  4215. width:191px;
  4216. height:23px;
  4217. display:flex;
  4218. font-size:12px;
  4219. color:#AAAAAA;
  4220. }
  4221. #u79905 .text {
  4222. position:absolute;
  4223. align-self:flex-start;
  4224. padding:2px 2px 2px 2px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u79905_div.disabled {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:0px;
  4233. width:191px;
  4234. height:23px;
  4235. background:inherit;
  4236. background-color:rgba(240, 240, 240, 1);
  4237. border:none;
  4238. border-radius:0px;
  4239. -moz-box-shadow:none;
  4240. -webkit-box-shadow:none;
  4241. box-shadow:none;
  4242. font-size:12px;
  4243. color:#AAAAAA;
  4244. }
  4245. #u79905.disabled {
  4246. }
  4247. .u79905_input_option {
  4248. font-size:12px;
  4249. }
  4250. #u79906 {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:0px;
  4256. height:0px;
  4257. }
  4258. #u79907_div {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:200px;
  4264. height:30px;
  4265. background:inherit;
  4266. background-color:rgba(255, 255, 255, 1);
  4267. box-sizing:border-box;
  4268. border-width:1px;
  4269. border-style:solid;
  4270. border-color:rgba(215, 215, 215, 1);
  4271. border-radius:4px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. font-size:12px;
  4276. }
  4277. #u79907 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:201px;
  4281. top:383px;
  4282. width:200px;
  4283. height:30px;
  4284. display:flex;
  4285. font-size:12px;
  4286. }
  4287. #u79907 .text {
  4288. position:absolute;
  4289. align-self:center;
  4290. padding:2px 2px 2px 2px;
  4291. box-sizing:border-box;
  4292. width:100%;
  4293. }
  4294. #u79907_text {
  4295. border-width:0px;
  4296. word-wrap:break-word;
  4297. text-transform:none;
  4298. visibility:hidden;
  4299. }
  4300. #u79908_input {
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:191px;
  4305. height:23px;
  4306. padding:2px 2px 2px 2px;
  4307. font-family:'ArialMT', 'Arial', sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:12px;
  4311. letter-spacing:normal;
  4312. color:#AAAAAA;
  4313. vertical-align:none;
  4314. text-align:left;
  4315. text-transform:none;
  4316. background-color:transparent;
  4317. border-color:transparent;
  4318. }
  4319. #u79908_input.disabled {
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:191px;
  4324. height:23px;
  4325. padding:2px 2px 2px 2px;
  4326. font-family:'ArialMT', 'Arial', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:12px;
  4330. letter-spacing:normal;
  4331. color:#AAAAAA;
  4332. vertical-align:none;
  4333. text-align:left;
  4334. text-transform:none;
  4335. background-color:transparent;
  4336. border-color:transparent;
  4337. }
  4338. #u79908_div {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:191px;
  4344. height:23px;
  4345. background:inherit;
  4346. background-color:rgba(255, 255, 255, 1);
  4347. border:none;
  4348. border-radius:0px;
  4349. -moz-box-shadow:none;
  4350. -webkit-box-shadow:none;
  4351. box-shadow:none;
  4352. font-size:12px;
  4353. color:#AAAAAA;
  4354. }
  4355. #u79908 {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:204px;
  4359. top:385px;
  4360. width:191px;
  4361. height:23px;
  4362. display:flex;
  4363. font-size:12px;
  4364. color:#AAAAAA;
  4365. }
  4366. #u79908 .text {
  4367. position:absolute;
  4368. align-self:flex-start;
  4369. padding:2px 2px 2px 2px;
  4370. box-sizing:border-box;
  4371. width:100%;
  4372. }
  4373. #u79908_div.disabled {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:191px;
  4379. height:23px;
  4380. background:inherit;
  4381. background-color:rgba(240, 240, 240, 1);
  4382. border:none;
  4383. border-radius:0px;
  4384. -moz-box-shadow:none;
  4385. -webkit-box-shadow:none;
  4386. box-shadow:none;
  4387. font-size:12px;
  4388. color:#AAAAAA;
  4389. }
  4390. #u79908.disabled {
  4391. }
  4392. .u79908_input_option {
  4393. font-size:12px;
  4394. }
  4395. #u79909_div {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:100px;
  4401. height:30px;
  4402. background:inherit;
  4403. background-color:rgba(255, 255, 255, 0);
  4404. border:none;
  4405. border-top:0px;
  4406. border-right:0px;
  4407. border-bottom:0px;
  4408. border-radius:0px;
  4409. border-top-left-radius:0px;
  4410. border-bottom-left-radius:0px;
  4411. -moz-box-shadow:none;
  4412. -webkit-box-shadow:none;
  4413. box-shadow:none;
  4414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4415. font-weight:400;
  4416. font-style:normal;
  4417. font-size:14px;
  4418. color:#7F7F7F;
  4419. }
  4420. #u79909 {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:105px;
  4424. top:423px;
  4425. width:100px;
  4426. height:30px;
  4427. display:flex;
  4428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4429. font-weight:400;
  4430. font-style:normal;
  4431. font-size:14px;
  4432. color:#7F7F7F;
  4433. }
  4434. #u79909 .text {
  4435. position:absolute;
  4436. align-self:center;
  4437. padding:5px 10px 5px 0px;
  4438. box-sizing:border-box;
  4439. width:100%;
  4440. }
  4441. #u79909_text {
  4442. border-width:0px;
  4443. word-wrap:break-word;
  4444. text-transform:none;
  4445. }
  4446. #u79910 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:0px;
  4452. height:0px;
  4453. }
  4454. #u79911_div {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:200px;
  4460. height:30px;
  4461. background:inherit;
  4462. background-color:rgba(255, 255, 255, 1);
  4463. box-sizing:border-box;
  4464. border-width:1px;
  4465. border-style:solid;
  4466. border-color:rgba(201, 201, 201, 1);
  4467. border-radius:4px;
  4468. -moz-box-shadow:none;
  4469. -webkit-box-shadow:none;
  4470. box-shadow:none;
  4471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:12px;
  4475. color:#CCCCCC;
  4476. text-align:right;
  4477. }
  4478. #u79911 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:201px;
  4482. top:423px;
  4483. width:200px;
  4484. height:30px;
  4485. display:flex;
  4486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4487. font-weight:400;
  4488. font-style:normal;
  4489. font-size:12px;
  4490. color:#CCCCCC;
  4491. text-align:right;
  4492. }
  4493. #u79911 .text {
  4494. position:absolute;
  4495. align-self:center;
  4496. padding:2px 8px 2px 8px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u79911_text {
  4501. border-width:0px;
  4502. word-wrap:break-word;
  4503. text-transform:none;
  4504. visibility:hidden;
  4505. }
  4506. #u79912_input {
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:180px;
  4511. height:26px;
  4512. padding:2px 2px 2px 2px;
  4513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:12px;
  4517. letter-spacing:normal;
  4518. color:#7F7F7F;
  4519. vertical-align:none;
  4520. text-align:left;
  4521. text-transform:none;
  4522. background-color:transparent;
  4523. border-color:transparent;
  4524. }
  4525. #u79912_input.disabled {
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:180px;
  4530. height:26px;
  4531. padding:2px 2px 2px 2px;
  4532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:12px;
  4536. letter-spacing:normal;
  4537. color:#7F7F7F;
  4538. vertical-align:none;
  4539. text-align:left;
  4540. text-transform:none;
  4541. background-color:transparent;
  4542. border-color:transparent;
  4543. }
  4544. #u79912_div {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:180px;
  4550. height:26px;
  4551. background:inherit;
  4552. background-color:rgba(255, 255, 255, 1);
  4553. border:none;
  4554. border-radius:0px;
  4555. -moz-box-shadow:none;
  4556. -webkit-box-shadow:none;
  4557. box-shadow:none;
  4558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:12px;
  4562. color:#7F7F7F;
  4563. }
  4564. #u79912 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:207px;
  4568. top:424px;
  4569. width:180px;
  4570. height:26px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:12px;
  4576. color:#7F7F7F;
  4577. }
  4578. #u79912 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:2px 2px 2px 2px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u79912_div.disabled {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:180px;
  4591. height:26px;
  4592. background:inherit;
  4593. background-color:rgba(240, 240, 240, 1);
  4594. border:none;
  4595. border-radius:0px;
  4596. -moz-box-shadow:none;
  4597. -webkit-box-shadow:none;
  4598. box-shadow:none;
  4599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. font-size:12px;
  4603. color:#7F7F7F;
  4604. }
  4605. #u79912.disabled {
  4606. }
  4607. #u79913 label {
  4608. left:0px;
  4609. width:100%;
  4610. }
  4611. #u79913_img {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:3px;
  4616. width:12px;
  4617. height:12px;
  4618. }
  4619. #u79913 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:112px;
  4623. top:609px;
  4624. width:100px;
  4625. height:18px;
  4626. display:flex;
  4627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. }
  4631. #u79913 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:0px 2px 0px 2px;
  4635. box-sizing:border-box;
  4636. }
  4637. #u79913_img.selected {
  4638. }
  4639. #u79913.selected {
  4640. }
  4641. #u79913_img.disabled {
  4642. }
  4643. #u79913.disabled {
  4644. }
  4645. #u79913_img.selectedDisabled {
  4646. }
  4647. #u79913.selectedDisabled {
  4648. }
  4649. #u79913_text {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:14px;
  4653. top:0px;
  4654. width:84px;
  4655. word-wrap:break-word;
  4656. text-transform:none;
  4657. }
  4658. #u79913_input {
  4659. border-width:0px;
  4660. position:absolute;
  4661. left:0px;
  4662. top:0px;
  4663. width:0px;
  4664. height:0px;
  4665. opacity:0;
  4666. }
  4667. #u79914 label {
  4668. left:0px;
  4669. width:100%;
  4670. }
  4671. #u79914_img {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:3px;
  4676. width:12px;
  4677. height:12px;
  4678. }
  4679. #u79914 {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:221px;
  4683. top:609px;
  4684. width:100px;
  4685. height:18px;
  4686. display:flex;
  4687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. }
  4691. #u79914 .text {
  4692. position:absolute;
  4693. align-self:center;
  4694. padding:0px 2px 0px 2px;
  4695. box-sizing:border-box;
  4696. }
  4697. #u79914_img.selected {
  4698. }
  4699. #u79914.selected {
  4700. }
  4701. #u79914_img.disabled {
  4702. }
  4703. #u79914.disabled {
  4704. }
  4705. #u79914_img.selectedDisabled {
  4706. }
  4707. #u79914.selectedDisabled {
  4708. }
  4709. #u79914_text {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:14px;
  4713. top:0px;
  4714. width:84px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. }
  4718. #u79914_input {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:0px;
  4724. height:0px;
  4725. opacity:0;
  4726. }
  4727. #u79915 label {
  4728. left:0px;
  4729. width:100%;
  4730. }
  4731. #u79915_img {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:0px;
  4735. top:3px;
  4736. width:12px;
  4737. height:12px;
  4738. }
  4739. #u79915 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:361px;
  4743. top:609px;
  4744. width:100px;
  4745. height:18px;
  4746. display:flex;
  4747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. }
  4751. #u79915 .text {
  4752. position:absolute;
  4753. align-self:center;
  4754. padding:0px 2px 0px 2px;
  4755. box-sizing:border-box;
  4756. }
  4757. #u79915_img.selected {
  4758. }
  4759. #u79915.selected {
  4760. }
  4761. #u79915_img.disabled {
  4762. }
  4763. #u79915.disabled {
  4764. }
  4765. #u79915_img.selectedDisabled {
  4766. }
  4767. #u79915.selectedDisabled {
  4768. }
  4769. #u79915_text {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:14px;
  4773. top:0px;
  4774. width:84px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. }
  4778. #u79915_input {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:0px;
  4784. height:0px;
  4785. opacity:0;
  4786. }
  4787. #u79916_div {
  4788. border-width:0px;
  4789. position:absolute;
  4790. left:0px;
  4791. top:0px;
  4792. width:67px;
  4793. height:30px;
  4794. background:inherit;
  4795. background-color:rgba(255, 255, 255, 0);
  4796. border:none;
  4797. border-top:0px;
  4798. border-right:0px;
  4799. border-bottom:0px;
  4800. border-radius:0px;
  4801. border-top-left-radius:0px;
  4802. border-bottom-left-radius:0px;
  4803. -moz-box-shadow:none;
  4804. -webkit-box-shadow:none;
  4805. box-shadow:none;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:14px;
  4810. color:#7F7F7F;
  4811. }
  4812. #u79916 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:115px;
  4816. top:653px;
  4817. width:67px;
  4818. height:30px;
  4819. display:flex;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:14px;
  4824. color:#7F7F7F;
  4825. }
  4826. #u79916 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:5px 10px 5px 0px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u79916_text {
  4834. border-width:0px;
  4835. white-space:nowrap;
  4836. text-transform:none;
  4837. }
  4838. #u79917 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:0px;
  4844. height:0px;
  4845. }
  4846. #u79918_div {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:89px;
  4852. height:30px;
  4853. background:inherit;
  4854. background-color:rgba(255, 255, 255, 1);
  4855. box-sizing:border-box;
  4856. border-width:1px;
  4857. border-style:solid;
  4858. border-color:rgba(201, 201, 201, 1);
  4859. border-radius:4px;
  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:12px;
  4867. color:#CCCCCC;
  4868. text-align:right;
  4869. }
  4870. #u79918 {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:182px;
  4874. top:653px;
  4875. width:89px;
  4876. height:30px;
  4877. display:flex;
  4878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. font-size:12px;
  4882. color:#CCCCCC;
  4883. text-align:right;
  4884. }
  4885. #u79918 .text {
  4886. position:absolute;
  4887. align-self:center;
  4888. padding:2px 8px 2px 8px;
  4889. box-sizing:border-box;
  4890. width:100%;
  4891. }
  4892. #u79918_text {
  4893. border-width:0px;
  4894. word-wrap:break-word;
  4895. text-transform:none;
  4896. visibility:hidden;
  4897. }
  4898. #u79919_input {
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:80px;
  4903. height:26px;
  4904. padding:2px 2px 2px 2px;
  4905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4906. font-weight:400;
  4907. font-style:normal;
  4908. font-size:12px;
  4909. letter-spacing:normal;
  4910. color:#7F7F7F;
  4911. vertical-align:none;
  4912. text-align:left;
  4913. text-transform:none;
  4914. background-color:transparent;
  4915. border-color:transparent;
  4916. }
  4917. #u79919_input.disabled {
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:80px;
  4922. height:26px;
  4923. padding:2px 2px 2px 2px;
  4924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:12px;
  4928. letter-spacing:normal;
  4929. color:#7F7F7F;
  4930. vertical-align:none;
  4931. text-align:left;
  4932. text-transform:none;
  4933. background-color:transparent;
  4934. border-color:transparent;
  4935. }
  4936. #u79919_div {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:80px;
  4942. height:26px;
  4943. background:inherit;
  4944. background-color:rgba(255, 255, 255, 1);
  4945. border:none;
  4946. border-radius:0px;
  4947. -moz-box-shadow:none;
  4948. -webkit-box-shadow:none;
  4949. box-shadow:none;
  4950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4951. font-weight:400;
  4952. font-style:normal;
  4953. font-size:12px;
  4954. color:#7F7F7F;
  4955. }
  4956. #u79919 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:185px;
  4960. top:654px;
  4961. width:80px;
  4962. height:26px;
  4963. display:flex;
  4964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4965. font-weight:400;
  4966. font-style:normal;
  4967. font-size:12px;
  4968. color:#7F7F7F;
  4969. }
  4970. #u79919 .text {
  4971. position:absolute;
  4972. align-self:center;
  4973. padding:2px 2px 2px 2px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u79919_div.disabled {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:0px;
  4981. top:0px;
  4982. width:80px;
  4983. height:26px;
  4984. background:inherit;
  4985. background-color:rgba(240, 240, 240, 1);
  4986. border:none;
  4987. border-radius:0px;
  4988. -moz-box-shadow:none;
  4989. -webkit-box-shadow:none;
  4990. box-shadow:none;
  4991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:12px;
  4995. color:#7F7F7F;
  4996. }
  4997. #u79919.disabled {
  4998. }
  4999. #u79920_div {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:137px;
  5005. height:30px;
  5006. background:inherit;
  5007. background-color:rgba(255, 255, 255, 0);
  5008. border:none;
  5009. border-top:0px;
  5010. border-right:0px;
  5011. border-bottom:0px;
  5012. border-radius:0px;
  5013. border-top-left-radius:0px;
  5014. border-bottom-left-radius:0px;
  5015. -moz-box-shadow:none;
  5016. -webkit-box-shadow:none;
  5017. box-shadow:none;
  5018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5019. font-weight:400;
  5020. font-style:normal;
  5021. font-size:14px;
  5022. color:#7F7F7F;
  5023. }
  5024. #u79920 {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:284px;
  5028. top:653px;
  5029. width:137px;
  5030. height:30px;
  5031. display:flex;
  5032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5033. font-weight:400;
  5034. font-style:normal;
  5035. font-size:14px;
  5036. color:#7F7F7F;
  5037. }
  5038. #u79920 .text {
  5039. position:absolute;
  5040. align-self:center;
  5041. padding:5px 10px 5px 0px;
  5042. box-sizing:border-box;
  5043. width:100%;
  5044. }
  5045. #u79920_text {
  5046. border-width:0px;
  5047. white-space:nowrap;
  5048. text-transform:none;
  5049. }
  5050. #u79921 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:0px;
  5056. height:0px;
  5057. }
  5058. #u79922_div {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:0px;
  5063. width:89px;
  5064. height:30px;
  5065. background:inherit;
  5066. background-color:rgba(255, 255, 255, 1);
  5067. box-sizing:border-box;
  5068. border-width:1px;
  5069. border-style:solid;
  5070. border-color:rgba(201, 201, 201, 1);
  5071. border-radius:4px;
  5072. -moz-box-shadow:none;
  5073. -webkit-box-shadow:none;
  5074. box-shadow:none;
  5075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:12px;
  5079. color:#CCCCCC;
  5080. text-align:right;
  5081. }
  5082. #u79922 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:421px;
  5086. top:653px;
  5087. width:89px;
  5088. height:30px;
  5089. display:flex;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:12px;
  5094. color:#CCCCCC;
  5095. text-align:right;
  5096. }
  5097. #u79922 .text {
  5098. position:absolute;
  5099. align-self:center;
  5100. padding:2px 8px 2px 8px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u79922_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. visibility:hidden;
  5109. }
  5110. #u79923_input {
  5111. position:absolute;
  5112. left:0px;
  5113. top:0px;
  5114. width:80px;
  5115. height:26px;
  5116. padding:2px 2px 2px 2px;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:12px;
  5121. letter-spacing:normal;
  5122. color:#7F7F7F;
  5123. vertical-align:none;
  5124. text-align:left;
  5125. text-transform:none;
  5126. background-color:transparent;
  5127. border-color:transparent;
  5128. }
  5129. #u79923_input.disabled {
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:80px;
  5134. height:26px;
  5135. padding:2px 2px 2px 2px;
  5136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:12px;
  5140. letter-spacing:normal;
  5141. color:#7F7F7F;
  5142. vertical-align:none;
  5143. text-align:left;
  5144. text-transform:none;
  5145. background-color:transparent;
  5146. border-color:transparent;
  5147. }
  5148. #u79923_div {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:80px;
  5154. height:26px;
  5155. background:inherit;
  5156. background-color:rgba(255, 255, 255, 1);
  5157. border:none;
  5158. border-radius:0px;
  5159. -moz-box-shadow:none;
  5160. -webkit-box-shadow:none;
  5161. box-shadow:none;
  5162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:12px;
  5166. color:#7F7F7F;
  5167. }
  5168. #u79923 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:424px;
  5172. top:654px;
  5173. width:80px;
  5174. height:26px;
  5175. display:flex;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:12px;
  5180. color:#7F7F7F;
  5181. }
  5182. #u79923 .text {
  5183. position:absolute;
  5184. align-self:center;
  5185. padding:2px 2px 2px 2px;
  5186. box-sizing:border-box;
  5187. width:100%;
  5188. }
  5189. #u79923_div.disabled {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:80px;
  5195. height:26px;
  5196. background:inherit;
  5197. background-color:rgba(240, 240, 240, 1);
  5198. border:none;
  5199. border-radius:0px;
  5200. -moz-box-shadow:none;
  5201. -webkit-box-shadow:none;
  5202. box-shadow:none;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:12px;
  5207. color:#7F7F7F;
  5208. }
  5209. #u79923.disabled {
  5210. }
  5211. #u79924_div {
  5212. border-width:0px;
  5213. position:absolute;
  5214. left:0px;
  5215. top:0px;
  5216. width:109px;
  5217. height:30px;
  5218. background:inherit;
  5219. background-color:rgba(255, 255, 255, 0);
  5220. border:none;
  5221. border-top:0px;
  5222. border-right:0px;
  5223. border-bottom:0px;
  5224. border-radius:0px;
  5225. border-top-left-radius:0px;
  5226. border-bottom-left-radius:0px;
  5227. -moz-box-shadow:none;
  5228. -webkit-box-shadow:none;
  5229. box-shadow:none;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:14px;
  5234. color:#7F7F7F;
  5235. }
  5236. #u79924 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:520px;
  5240. top:653px;
  5241. width:109px;
  5242. height:30px;
  5243. display:flex;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:14px;
  5248. color:#7F7F7F;
  5249. }
  5250. #u79924 .text {
  5251. position:absolute;
  5252. align-self:center;
  5253. padding:5px 10px 5px 0px;
  5254. box-sizing:border-box;
  5255. width:100%;
  5256. }
  5257. #u79924_text {
  5258. border-width:0px;
  5259. white-space:nowrap;
  5260. text-transform:none;
  5261. }
  5262. #u79925 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:0px;
  5266. top:0px;
  5267. width:0px;
  5268. height:0px;
  5269. }
  5270. #u79926_div {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:1000px;
  5276. height:1201px;
  5277. background:inherit;
  5278. background-color:rgba(255, 255, 255, 1);
  5279. box-sizing:border-box;
  5280. border-width:1px;
  5281. border-style:solid;
  5282. border-color:rgba(215, 215, 215, 1);
  5283. border-radius:0px;
  5284. -moz-box-shadow:none;
  5285. -webkit-box-shadow:none;
  5286. box-shadow:none;
  5287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5288. font-weight:400;
  5289. font-style:normal;
  5290. font-size:14px;
  5291. color:#AAAAAA;
  5292. text-align:center;
  5293. line-height:30px;
  5294. }
  5295. #u79926 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:1123px;
  5299. top:44px;
  5300. width:1000px;
  5301. height:1201px;
  5302. display:flex;
  5303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:14px;
  5307. color:#AAAAAA;
  5308. text-align:center;
  5309. line-height:30px;
  5310. }
  5311. #u79926 .text {
  5312. position:absolute;
  5313. align-self:center;
  5314. padding:5px 10px 5px 10px;
  5315. box-sizing:border-box;
  5316. width:100%;
  5317. }
  5318. #u79926_text {
  5319. border-width:0px;
  5320. word-wrap:break-word;
  5321. text-transform:none;
  5322. visibility:hidden;
  5323. }
  5324. #u79927_div {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:83px;
  5330. height:35px;
  5331. background:inherit;
  5332. background-color:rgba(255, 255, 255, 0);
  5333. border:none;
  5334. border-top:0px;
  5335. border-right:0px;
  5336. border-bottom:0px;
  5337. border-radius:0px;
  5338. border-top-left-radius:0px;
  5339. border-bottom-left-radius:0px;
  5340. -moz-box-shadow:none;
  5341. -webkit-box-shadow:none;
  5342. box-shadow:none;
  5343. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5344. font-weight:500;
  5345. font-style:normal;
  5346. font-size:18px;
  5347. }
  5348. #u79927 {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:1143px;
  5352. top:62px;
  5353. width:83px;
  5354. height:35px;
  5355. display:flex;
  5356. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5357. font-weight:500;
  5358. font-style:normal;
  5359. font-size:18px;
  5360. }
  5361. #u79927 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:5px 10px 5px 0px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u79927_text {
  5369. border-width:0px;
  5370. white-space:nowrap;
  5371. text-transform:none;
  5372. }
  5373. #u79928 {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:0px;
  5379. height:0px;
  5380. }
  5381. #u79929_div {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:40px;
  5387. height:40px;
  5388. background:inherit;
  5389. background-color:rgba(255, 255, 255, 0);
  5390. border:none;
  5391. border-top:0px;
  5392. border-right:0px;
  5393. border-bottom:0px;
  5394. border-radius:0px;
  5395. border-top-left-radius:0px;
  5396. border-bottom-left-radius:0px;
  5397. -moz-box-shadow:none;
  5398. -webkit-box-shadow:none;
  5399. box-shadow:none;
  5400. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5401. font-weight:500;
  5402. font-style:normal;
  5403. font-size:14px;
  5404. text-align:center;
  5405. }
  5406. #u79929 {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:2083px;
  5410. top:44px;
  5411. width:40px;
  5412. height:40px;
  5413. display:flex;
  5414. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5415. font-weight:500;
  5416. font-style:normal;
  5417. font-size:14px;
  5418. text-align:center;
  5419. }
  5420. #u79929 .text {
  5421. position:absolute;
  5422. align-self:center;
  5423. padding:5px 10px 5px 0px;
  5424. box-sizing:border-box;
  5425. width:100%;
  5426. }
  5427. #u79929_text {
  5428. border-width:0px;
  5429. word-wrap:break-word;
  5430. text-transform:none;
  5431. }
  5432. #u79930_img {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:13px;
  5438. height:13px;
  5439. }
  5440. #u79930 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:2071px;
  5444. top:60px;
  5445. width:13px;
  5446. height:13px;
  5447. display:flex;
  5448. font-size:14px;
  5449. }
  5450. #u79930 .text {
  5451. position:absolute;
  5452. align-self:center;
  5453. padding:2px 2px 2px 2px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u79930_text {
  5458. border-width:0px;
  5459. word-wrap:break-word;
  5460. text-transform:none;
  5461. visibility:hidden;
  5462. }
  5463. #u79931 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:0px;
  5469. height:0px;
  5470. }
  5471. #u79932_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:1000px;
  5477. height:60px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 1);
  5480. box-sizing:border-box;
  5481. border-width:1px;
  5482. border-style:solid;
  5483. border-color:rgba(215, 215, 215, 1);
  5484. border-radius:0px;
  5485. -moz-box-shadow:none;
  5486. -webkit-box-shadow:none;
  5487. box-shadow:none;
  5488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5489. font-weight:400;
  5490. font-style:normal;
  5491. font-size:14px;
  5492. color:#AAAAAA;
  5493. text-align:center;
  5494. line-height:30px;
  5495. }
  5496. #u79932 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:1123px;
  5500. top:1185px;
  5501. width:1000px;
  5502. height:60px;
  5503. display:flex;
  5504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:14px;
  5508. color:#AAAAAA;
  5509. text-align:center;
  5510. line-height:30px;
  5511. }
  5512. #u79932 .text {
  5513. position:absolute;
  5514. align-self:center;
  5515. padding:5px 10px 5px 10px;
  5516. box-sizing:border-box;
  5517. width:100%;
  5518. }
  5519. #u79932_text {
  5520. border-width:0px;
  5521. word-wrap:break-word;
  5522. text-transform:none;
  5523. visibility:hidden;
  5524. }
  5525. #u79933_div {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:0px;
  5529. top:0px;
  5530. width:80px;
  5531. height:30px;
  5532. background:inherit;
  5533. background-color:rgba(255, 255, 255, 1);
  5534. box-sizing:border-box;
  5535. border-width:1px;
  5536. border-style:solid;
  5537. border-color:rgba(170, 170, 170, 1);
  5538. border-radius:4px;
  5539. -moz-box-shadow:none;
  5540. -webkit-box-shadow:none;
  5541. box-shadow:none;
  5542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5543. font-weight:400;
  5544. font-style:normal;
  5545. font-size:14px;
  5546. }
  5547. #u79933 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:1903px;
  5551. top:1200px;
  5552. width:80px;
  5553. height:30px;
  5554. display:flex;
  5555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:14px;
  5559. }
  5560. #u79933 .text {
  5561. position:absolute;
  5562. align-self:center;
  5563. padding:2px 2px 2px 2px;
  5564. box-sizing:border-box;
  5565. width:100%;
  5566. }
  5567. #u79933_text {
  5568. border-width:0px;
  5569. word-wrap:break-word;
  5570. text-transform:none;
  5571. }
  5572. #u79934_div {
  5573. border-width:0px;
  5574. position:absolute;
  5575. left:0px;
  5576. top:0px;
  5577. width:100px;
  5578. height:30px;
  5579. background:inherit;
  5580. background-color:rgba(24, 144, 255, 1);
  5581. border:none;
  5582. border-radius:4px;
  5583. -moz-box-shadow:none;
  5584. -webkit-box-shadow:none;
  5585. box-shadow:none;
  5586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5587. font-weight:400;
  5588. font-style:normal;
  5589. font-size:14px;
  5590. color:#FFFFFF;
  5591. }
  5592. #u79934 {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:1993px;
  5596. top:1200px;
  5597. width:100px;
  5598. height:30px;
  5599. display:flex;
  5600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5601. font-weight:400;
  5602. font-style:normal;
  5603. font-size:14px;
  5604. color:#FFFFFF;
  5605. }
  5606. #u79934 .text {
  5607. position:absolute;
  5608. align-self:center;
  5609. padding:2px 2px 2px 2px;
  5610. box-sizing:border-box;
  5611. width:100%;
  5612. }
  5613. #u79934_text {
  5614. border-width:0px;
  5615. word-wrap:break-word;
  5616. text-transform:none;
  5617. }
  5618. #u79935 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:0px;
  5623. width:0px;
  5624. height:0px;
  5625. }
  5626. #u79936_div {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:0px;
  5630. top:0px;
  5631. width:100px;
  5632. height:30px;
  5633. background:inherit;
  5634. background-color:rgba(255, 255, 255, 1);
  5635. box-sizing:border-box;
  5636. border-width:1px;
  5637. border-style:solid;
  5638. border-color:rgba(188, 188, 188, 1);
  5639. border-radius:4px;
  5640. -moz-box-shadow:none;
  5641. -webkit-box-shadow:none;
  5642. box-shadow:none;
  5643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5644. font-weight:400;
  5645. font-style:normal;
  5646. font-size:12px;
  5647. color:#FFFFFF;
  5648. }
  5649. #u79936 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:1680px;
  5653. top:758px;
  5654. width:100px;
  5655. height:30px;
  5656. display:flex;
  5657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5658. font-weight:400;
  5659. font-style:normal;
  5660. font-size:12px;
  5661. color:#FFFFFF;
  5662. }
  5663. #u79936 .text {
  5664. position:absolute;
  5665. align-self:center;
  5666. padding:8px 15px 8px 15px;
  5667. box-sizing:border-box;
  5668. width:100%;
  5669. }
  5670. #u79936_text {
  5671. border-width:0px;
  5672. word-wrap:break-word;
  5673. text-transform:none;
  5674. visibility:hidden;
  5675. }
  5676. #u79937_div {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:25px;
  5682. height:17px;
  5683. background:inherit;
  5684. background-color:rgba(255, 255, 255, 0);
  5685. border:none;
  5686. border-radius:0px;
  5687. -moz-box-shadow:none;
  5688. -webkit-box-shadow:none;
  5689. box-shadow:none;
  5690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:12px;
  5694. color:#BCBCBC;
  5695. }
  5696. #u79937 {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:1686px;
  5700. top:765px;
  5701. width:25px;
  5702. height:17px;
  5703. display:flex;
  5704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5705. font-weight:400;
  5706. font-style:normal;
  5707. font-size:12px;
  5708. color:#BCBCBC;
  5709. }
  5710. #u79937 .text {
  5711. position:absolute;
  5712. align-self:flex-start;
  5713. padding:0px 0px 0px 0px;
  5714. box-sizing:border-box;
  5715. width:100%;
  5716. }
  5717. #u79937_text {
  5718. border-width:0px;
  5719. white-space:nowrap;
  5720. text-transform:none;
  5721. }
  5722. #u79938_img {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:14px;
  5728. height:14px;
  5729. }
  5730. #u79938 {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:1759px;
  5734. top:766px;
  5735. width:14px;
  5736. height:14px;
  5737. display:flex;
  5738. opacity:0.5;
  5739. font-size:12px;
  5740. }
  5741. #u79938 .text {
  5742. position:absolute;
  5743. align-self:center;
  5744. padding:2px 2px 2px 2px;
  5745. box-sizing:border-box;
  5746. width:100%;
  5747. }
  5748. #u79938_text {
  5749. border-width:0px;
  5750. word-wrap:break-word;
  5751. text-transform:none;
  5752. visibility:hidden;
  5753. }
  5754. #u79939_div {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:0px;
  5758. top:0px;
  5759. width:83px;
  5760. height:35px;
  5761. background:inherit;
  5762. background-color:rgba(255, 255, 255, 0);
  5763. border:none;
  5764. border-top:0px;
  5765. border-right:0px;
  5766. border-bottom:0px;
  5767. border-radius:0px;
  5768. border-top-left-radius:0px;
  5769. border-bottom-left-radius:0px;
  5770. -moz-box-shadow:none;
  5771. -webkit-box-shadow:none;
  5772. box-shadow:none;
  5773. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5774. font-weight:500;
  5775. font-style:normal;
  5776. font-size:18px;
  5777. }
  5778. #u79939 {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:1156px;
  5782. top:128px;
  5783. width:83px;
  5784. height:35px;
  5785. display:flex;
  5786. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5787. font-weight:500;
  5788. font-style:normal;
  5789. font-size:18px;
  5790. }
  5791. #u79939 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:5px 10px 5px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u79939_text {
  5799. border-width:0px;
  5800. white-space:nowrap;
  5801. text-transform:none;
  5802. }
  5803. #u79940_div {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:100px;
  5809. height:30px;
  5810. background:inherit;
  5811. background-color:rgba(255, 255, 255, 0);
  5812. border:none;
  5813. border-top:0px;
  5814. border-right:0px;
  5815. border-bottom:0px;
  5816. border-radius:0px;
  5817. border-top-left-radius:0px;
  5818. border-bottom-left-radius:0px;
  5819. -moz-box-shadow:none;
  5820. -webkit-box-shadow:none;
  5821. box-shadow:none;
  5822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5823. font-weight:400;
  5824. font-style:normal;
  5825. font-size:14px;
  5826. color:#7F7F7F;
  5827. }
  5828. #u79940 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:1156px;
  5832. top:183px;
  5833. width:100px;
  5834. height:30px;
  5835. display:flex;
  5836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:14px;
  5840. color:#7F7F7F;
  5841. }
  5842. #u79940 .text {
  5843. position:absolute;
  5844. align-self:center;
  5845. padding:5px 10px 5px 0px;
  5846. box-sizing:border-box;
  5847. width:100%;
  5848. }
  5849. #u79940_text {
  5850. border-width:0px;
  5851. word-wrap:break-word;
  5852. text-transform:none;
  5853. }
  5854. #u79941 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:0px;
  5860. height:0px;
  5861. }
  5862. #u79942_div {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:0px;
  5866. top:0px;
  5867. width:200px;
  5868. height:30px;
  5869. background:inherit;
  5870. background-color:rgba(255, 255, 255, 1);
  5871. box-sizing:border-box;
  5872. border-width:1px;
  5873. border-style:solid;
  5874. border-color:rgba(201, 201, 201, 1);
  5875. border-radius:4px;
  5876. -moz-box-shadow:none;
  5877. -webkit-box-shadow:none;
  5878. box-shadow:none;
  5879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:12px;
  5883. color:#CCCCCC;
  5884. text-align:right;
  5885. }
  5886. #u79942 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:1252px;
  5890. top:183px;
  5891. width:200px;
  5892. height:30px;
  5893. display:flex;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:12px;
  5898. color:#CCCCCC;
  5899. text-align:right;
  5900. }
  5901. #u79942 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:2px 8px 2px 8px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u79942_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. visibility:hidden;
  5913. }
  5914. #u79943_input {
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:180px;
  5919. height:26px;
  5920. padding:2px 2px 2px 2px;
  5921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5922. font-weight:400;
  5923. font-style:normal;
  5924. font-size:12px;
  5925. letter-spacing:normal;
  5926. color:#7F7F7F;
  5927. vertical-align:none;
  5928. text-align:left;
  5929. text-transform:none;
  5930. background-color:transparent;
  5931. border-color:transparent;
  5932. }
  5933. #u79943_input.disabled {
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:180px;
  5938. height:26px;
  5939. padding:2px 2px 2px 2px;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:12px;
  5944. letter-spacing:normal;
  5945. color:#7F7F7F;
  5946. vertical-align:none;
  5947. text-align:left;
  5948. text-transform:none;
  5949. background-color:transparent;
  5950. border-color:transparent;
  5951. }
  5952. #u79943_div {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:180px;
  5958. height:26px;
  5959. background:inherit;
  5960. background-color:rgba(255, 255, 255, 1);
  5961. border:none;
  5962. border-radius:0px;
  5963. -moz-box-shadow:none;
  5964. -webkit-box-shadow:none;
  5965. box-shadow:none;
  5966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5967. font-weight:400;
  5968. font-style:normal;
  5969. font-size:12px;
  5970. color:#7F7F7F;
  5971. }
  5972. #u79943 {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:1258px;
  5976. top:184px;
  5977. width:180px;
  5978. height:26px;
  5979. display:flex;
  5980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5981. font-weight:400;
  5982. font-style:normal;
  5983. font-size:12px;
  5984. color:#7F7F7F;
  5985. }
  5986. #u79943 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:2px 2px 2px 2px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u79943_div.disabled {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:180px;
  5999. height:26px;
  6000. background:inherit;
  6001. background-color:rgba(240, 240, 240, 1);
  6002. border:none;
  6003. border-radius:0px;
  6004. -moz-box-shadow:none;
  6005. -webkit-box-shadow:none;
  6006. box-shadow:none;
  6007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:12px;
  6011. color:#7F7F7F;
  6012. }
  6013. #u79943.disabled {
  6014. }
  6015. #u79944 {
  6016. border-width:0px;
  6017. position:absolute;
  6018. left:0px;
  6019. top:0px;
  6020. width:0px;
  6021. height:0px;
  6022. }
  6023. #u79945_div {
  6024. border-width:0px;
  6025. position:absolute;
  6026. left:0px;
  6027. top:0px;
  6028. width:200px;
  6029. height:30px;
  6030. background:inherit;
  6031. background-color:rgba(255, 255, 255, 1);
  6032. box-sizing:border-box;
  6033. border-width:1px;
  6034. border-style:solid;
  6035. border-color:rgba(215, 215, 215, 1);
  6036. border-radius:4px;
  6037. -moz-box-shadow:none;
  6038. -webkit-box-shadow:none;
  6039. box-shadow:none;
  6040. font-size:12px;
  6041. }
  6042. #u79945 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:1568px;
  6046. top:183px;
  6047. width:200px;
  6048. height:30px;
  6049. display:flex;
  6050. font-size:12px;
  6051. }
  6052. #u79945 .text {
  6053. position:absolute;
  6054. align-self:center;
  6055. padding:2px 2px 2px 2px;
  6056. box-sizing:border-box;
  6057. width:100%;
  6058. }
  6059. #u79945_text {
  6060. border-width:0px;
  6061. word-wrap:break-word;
  6062. text-transform:none;
  6063. visibility:hidden;
  6064. }
  6065. #u79946_input {
  6066. position:absolute;
  6067. left:0px;
  6068. top:0px;
  6069. width:191px;
  6070. height:23px;
  6071. padding:2px 2px 2px 2px;
  6072. font-family:'ArialMT', 'Arial', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:12px;
  6076. letter-spacing:normal;
  6077. color:#AAAAAA;
  6078. vertical-align:none;
  6079. text-align:left;
  6080. text-transform:none;
  6081. background-color:transparent;
  6082. border-color:transparent;
  6083. }
  6084. #u79946_input.disabled {
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:191px;
  6089. height:23px;
  6090. padding:2px 2px 2px 2px;
  6091. font-family:'ArialMT', 'Arial', sans-serif;
  6092. font-weight:400;
  6093. font-style:normal;
  6094. font-size:12px;
  6095. letter-spacing:normal;
  6096. color:#AAAAAA;
  6097. vertical-align:none;
  6098. text-align:left;
  6099. text-transform:none;
  6100. background-color:transparent;
  6101. border-color:transparent;
  6102. }
  6103. #u79946_div {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:191px;
  6109. height:23px;
  6110. background:inherit;
  6111. background-color:rgba(255, 255, 255, 1);
  6112. border:none;
  6113. border-radius:0px;
  6114. -moz-box-shadow:none;
  6115. -webkit-box-shadow:none;
  6116. box-shadow:none;
  6117. font-size:12px;
  6118. color:#AAAAAA;
  6119. }
  6120. #u79946 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:1571px;
  6124. top:185px;
  6125. width:191px;
  6126. height:23px;
  6127. display:flex;
  6128. font-size:12px;
  6129. color:#AAAAAA;
  6130. }
  6131. #u79946 .text {
  6132. position:absolute;
  6133. align-self:flex-start;
  6134. padding:2px 2px 2px 2px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u79946_div.disabled {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:0px;
  6142. top:0px;
  6143. width:191px;
  6144. height:23px;
  6145. background:inherit;
  6146. background-color:rgba(240, 240, 240, 1);
  6147. border:none;
  6148. border-radius:0px;
  6149. -moz-box-shadow:none;
  6150. -webkit-box-shadow:none;
  6151. box-shadow:none;
  6152. font-size:12px;
  6153. color:#AAAAAA;
  6154. }
  6155. #u79946.disabled {
  6156. }
  6157. .u79946_input_option {
  6158. font-size:12px;
  6159. }
  6160. #u79947_div {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:100px;
  6166. height:30px;
  6167. background:inherit;
  6168. background-color:rgba(255, 255, 255, 0);
  6169. border:none;
  6170. border-top:0px;
  6171. border-right:0px;
  6172. border-bottom:0px;
  6173. border-radius:0px;
  6174. border-top-left-radius:0px;
  6175. border-bottom-left-radius:0px;
  6176. -moz-box-shadow:none;
  6177. -webkit-box-shadow:none;
  6178. box-shadow:none;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:14px;
  6183. color:#7F7F7F;
  6184. }
  6185. #u79947 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:1472px;
  6189. top:183px;
  6190. width:100px;
  6191. height:30px;
  6192. display:flex;
  6193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6194. font-weight:400;
  6195. font-style:normal;
  6196. font-size:14px;
  6197. color:#7F7F7F;
  6198. }
  6199. #u79947 .text {
  6200. position:absolute;
  6201. align-self:center;
  6202. padding:5px 10px 5px 0px;
  6203. box-sizing:border-box;
  6204. width:100%;
  6205. }
  6206. #u79947_text {
  6207. border-width:0px;
  6208. word-wrap:break-word;
  6209. text-transform:none;
  6210. }
  6211. #u79948_div {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:0px;
  6215. top:0px;
  6216. width:100px;
  6217. height:30px;
  6218. background:inherit;
  6219. background-color:rgba(255, 255, 255, 0);
  6220. border:none;
  6221. border-top:0px;
  6222. border-right:0px;
  6223. border-bottom:0px;
  6224. border-radius:0px;
  6225. border-top-left-radius:0px;
  6226. border-bottom-left-radius:0px;
  6227. -moz-box-shadow:none;
  6228. -webkit-box-shadow:none;
  6229. box-shadow:none;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:14px;
  6234. color:#7F7F7F;
  6235. }
  6236. #u79948 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:1798px;
  6240. top:183px;
  6241. width:100px;
  6242. height:30px;
  6243. display:flex;
  6244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6245. font-weight:400;
  6246. font-style:normal;
  6247. font-size:14px;
  6248. color:#7F7F7F;
  6249. }
  6250. #u79948 .text {
  6251. position:absolute;
  6252. align-self:center;
  6253. padding:5px 10px 5px 0px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u79948_text {
  6258. border-width:0px;
  6259. word-wrap:break-word;
  6260. text-transform:none;
  6261. }
  6262. #u79949 {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:0px;
  6268. height:0px;
  6269. }
  6270. #u79950_div {
  6271. border-width:0px;
  6272. position:absolute;
  6273. left:0px;
  6274. top:0px;
  6275. width:200px;
  6276. height:30px;
  6277. background:inherit;
  6278. background-color:rgba(255, 255, 255, 1);
  6279. box-sizing:border-box;
  6280. border-width:1px;
  6281. border-style:solid;
  6282. border-color:rgba(201, 201, 201, 1);
  6283. border-radius:4px;
  6284. -moz-box-shadow:none;
  6285. -webkit-box-shadow:none;
  6286. box-shadow:none;
  6287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:12px;
  6291. color:#CCCCCC;
  6292. text-align:right;
  6293. }
  6294. #u79950 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:1894px;
  6298. top:183px;
  6299. width:200px;
  6300. height:30px;
  6301. display:flex;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:12px;
  6306. color:#CCCCCC;
  6307. text-align:right;
  6308. }
  6309. #u79950 .text {
  6310. position:absolute;
  6311. align-self:center;
  6312. padding:2px 8px 2px 8px;
  6313. box-sizing:border-box;
  6314. width:100%;
  6315. }
  6316. #u79950_text {
  6317. border-width:0px;
  6318. word-wrap:break-word;
  6319. text-transform:none;
  6320. visibility:hidden;
  6321. }
  6322. #u79951_input {
  6323. position:absolute;
  6324. left:0px;
  6325. top:0px;
  6326. width:180px;
  6327. height:26px;
  6328. padding:2px 2px 2px 2px;
  6329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:12px;
  6333. letter-spacing:normal;
  6334. color:#7F7F7F;
  6335. vertical-align:none;
  6336. text-align:left;
  6337. text-transform:none;
  6338. background-color:transparent;
  6339. border-color:transparent;
  6340. }
  6341. #u79951_input.disabled {
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:180px;
  6346. height:26px;
  6347. padding:2px 2px 2px 2px;
  6348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:12px;
  6352. letter-spacing:normal;
  6353. color:#7F7F7F;
  6354. vertical-align:none;
  6355. text-align:left;
  6356. text-transform:none;
  6357. background-color:transparent;
  6358. border-color:transparent;
  6359. }
  6360. #u79951_div {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:0px;
  6364. top:0px;
  6365. width:180px;
  6366. height:26px;
  6367. background:inherit;
  6368. background-color:rgba(255, 255, 255, 1);
  6369. border:none;
  6370. border-radius:0px;
  6371. -moz-box-shadow:none;
  6372. -webkit-box-shadow:none;
  6373. box-shadow:none;
  6374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6375. font-weight:400;
  6376. font-style:normal;
  6377. font-size:12px;
  6378. color:#7F7F7F;
  6379. }
  6380. #u79951 {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:1900px;
  6384. top:184px;
  6385. width:180px;
  6386. height:26px;
  6387. display:flex;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:12px;
  6392. color:#7F7F7F;
  6393. }
  6394. #u79951 .text {
  6395. position:absolute;
  6396. align-self:center;
  6397. padding:2px 2px 2px 2px;
  6398. box-sizing:border-box;
  6399. width:100%;
  6400. }
  6401. #u79951_div.disabled {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:180px;
  6407. height:26px;
  6408. background:inherit;
  6409. background-color:rgba(240, 240, 240, 1);
  6410. border:none;
  6411. border-radius:0px;
  6412. -moz-box-shadow:none;
  6413. -webkit-box-shadow:none;
  6414. box-shadow:none;
  6415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:12px;
  6419. color:#7F7F7F;
  6420. }
  6421. #u79951.disabled {
  6422. }
  6423. #u79952_div {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:0px;
  6427. top:0px;
  6428. width:60px;
  6429. height:60px;
  6430. background:inherit;
  6431. background-color:rgba(255, 255, 255, 1);
  6432. box-sizing:border-box;
  6433. border-width:1px;
  6434. border-style:solid;
  6435. border-color:rgba(188, 188, 188, 1);
  6436. border-radius:4px;
  6437. -moz-box-shadow:none;
  6438. -webkit-box-shadow:none;
  6439. box-shadow:none;
  6440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6441. font-weight:400;
  6442. font-style:normal;
  6443. font-size:28px;
  6444. }
  6445. #u79952 {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:1252px;
  6449. top:463px;
  6450. width:60px;
  6451. height:60px;
  6452. display:flex;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:28px;
  6457. }
  6458. #u79952 .text {
  6459. position:absolute;
  6460. align-self:center;
  6461. padding:8px 15px 8px 15px;
  6462. box-sizing:border-box;
  6463. width:100%;
  6464. }
  6465. #u79952_text {
  6466. border-width:0px;
  6467. word-wrap:break-word;
  6468. text-transform:none;
  6469. }
  6470. #u79953_div {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:100px;
  6476. height:27px;
  6477. background:inherit;
  6478. background-color:rgba(255, 255, 255, 0);
  6479. border:none;
  6480. border-top:0px;
  6481. border-right:0px;
  6482. border-bottom:0px;
  6483. border-radius:0px;
  6484. border-top-left-radius:0px;
  6485. border-bottom-left-radius:0px;
  6486. -moz-box-shadow:none;
  6487. -webkit-box-shadow:none;
  6488. box-shadow:none;
  6489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6490. font-weight:400;
  6491. font-style:normal;
  6492. font-size:12px;
  6493. color:#7F7F7F;
  6494. }
  6495. #u79953 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:1156px;
  6499. top:465px;
  6500. width:100px;
  6501. height:27px;
  6502. display:flex;
  6503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6504. font-weight:400;
  6505. font-style:normal;
  6506. font-size:12px;
  6507. color:#7F7F7F;
  6508. }
  6509. #u79953 .text {
  6510. position:absolute;
  6511. align-self:center;
  6512. padding:5px 10px 5px 0px;
  6513. box-sizing:border-box;
  6514. width:100%;
  6515. }
  6516. #u79953_text {
  6517. border-width:0px;
  6518. word-wrap:break-word;
  6519. text-transform:none;
  6520. }
  6521. #u79954_div {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:407px;
  6527. height:35px;
  6528. background:inherit;
  6529. background-color:rgba(255, 255, 255, 0);
  6530. border:none;
  6531. border-top:0px;
  6532. border-right:0px;
  6533. border-bottom:0px;
  6534. border-radius:0px;
  6535. border-top-left-radius:0px;
  6536. border-bottom-left-radius:0px;
  6537. -moz-box-shadow:none;
  6538. -webkit-box-shadow:none;
  6539. box-shadow:none;
  6540. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6541. font-weight:500;
  6542. font-style:normal;
  6543. font-size:18px;
  6544. }
  6545. #u79954 {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:1156px;
  6549. top:658px;
  6550. width:407px;
  6551. height:35px;
  6552. display:flex;
  6553. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6554. font-weight:500;
  6555. font-style:normal;
  6556. font-size:18px;
  6557. }
  6558. #u79954 .text {
  6559. position:absolute;
  6560. align-self:center;
  6561. padding:5px 10px 5px 0px;
  6562. box-sizing:border-box;
  6563. width:100%;
  6564. }
  6565. #u79954_text {
  6566. border-width:0px;
  6567. white-space:nowrap;
  6568. text-transform:none;
  6569. }
  6570. #u79955_div {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:100px;
  6576. height:30px;
  6577. background:inherit;
  6578. background-color:rgba(255, 255, 255, 0);
  6579. border:none;
  6580. border-top:0px;
  6581. border-right:0px;
  6582. border-bottom:0px;
  6583. border-radius:0px;
  6584. border-top-left-radius:0px;
  6585. border-bottom-left-radius:0px;
  6586. -moz-box-shadow:none;
  6587. -webkit-box-shadow:none;
  6588. box-shadow:none;
  6589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:14px;
  6593. color:#7F7F7F;
  6594. }
  6595. #u79955 {
  6596. border-width:0px;
  6597. position:absolute;
  6598. left:1156px;
  6599. top:223px;
  6600. width:100px;
  6601. height:30px;
  6602. display:flex;
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:14px;
  6607. color:#7F7F7F;
  6608. }
  6609. #u79955 .text {
  6610. position:absolute;
  6611. align-self:center;
  6612. padding:5px 10px 5px 0px;
  6613. box-sizing:border-box;
  6614. width:100%;
  6615. }
  6616. #u79955_text {
  6617. border-width:0px;
  6618. word-wrap:break-word;
  6619. text-transform:none;
  6620. }
  6621. #u79956 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:0px;
  6625. top:0px;
  6626. width:0px;
  6627. height:0px;
  6628. }
  6629. #u79957_div {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:0px;
  6633. top:0px;
  6634. width:200px;
  6635. height:30px;
  6636. background:inherit;
  6637. background-color:rgba(255, 255, 255, 1);
  6638. box-sizing:border-box;
  6639. border-width:1px;
  6640. border-style:solid;
  6641. border-color:rgba(201, 201, 201, 1);
  6642. border-radius:4px;
  6643. -moz-box-shadow:none;
  6644. -webkit-box-shadow:none;
  6645. box-shadow:none;
  6646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6647. font-weight:400;
  6648. font-style:normal;
  6649. font-size:12px;
  6650. color:#CCCCCC;
  6651. text-align:right;
  6652. }
  6653. #u79957 {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:1252px;
  6657. top:223px;
  6658. width:200px;
  6659. height:30px;
  6660. display:flex;
  6661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. font-size:12px;
  6665. color:#CCCCCC;
  6666. text-align:right;
  6667. }
  6668. #u79957 .text {
  6669. position:absolute;
  6670. align-self:center;
  6671. padding:2px 8px 2px 8px;
  6672. box-sizing:border-box;
  6673. width:100%;
  6674. }
  6675. #u79957_text {
  6676. border-width:0px;
  6677. word-wrap:break-word;
  6678. text-transform:none;
  6679. visibility:hidden;
  6680. }
  6681. #u79958_input {
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:180px;
  6686. height:26px;
  6687. padding:2px 2px 2px 2px;
  6688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6689. font-weight:400;
  6690. font-style:normal;
  6691. font-size:12px;
  6692. letter-spacing:normal;
  6693. color:#7F7F7F;
  6694. vertical-align:none;
  6695. text-align:left;
  6696. text-transform:none;
  6697. background-color:transparent;
  6698. border-color:transparent;
  6699. }
  6700. #u79958_input.disabled {
  6701. position:absolute;
  6702. left:0px;
  6703. top:0px;
  6704. width:180px;
  6705. height:26px;
  6706. padding:2px 2px 2px 2px;
  6707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:12px;
  6711. letter-spacing:normal;
  6712. color:#7F7F7F;
  6713. vertical-align:none;
  6714. text-align:left;
  6715. text-transform:none;
  6716. background-color:transparent;
  6717. border-color:transparent;
  6718. }
  6719. #u79958_div {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:180px;
  6725. height:26px;
  6726. background:inherit;
  6727. background-color:rgba(255, 255, 255, 1);
  6728. border:none;
  6729. border-radius:0px;
  6730. -moz-box-shadow:none;
  6731. -webkit-box-shadow:none;
  6732. box-shadow:none;
  6733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. font-size:12px;
  6737. color:#7F7F7F;
  6738. }
  6739. #u79958 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:1258px;
  6743. top:224px;
  6744. width:180px;
  6745. height:26px;
  6746. display:flex;
  6747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:12px;
  6751. color:#7F7F7F;
  6752. }
  6753. #u79958 .text {
  6754. position:absolute;
  6755. align-self:center;
  6756. padding:2px 2px 2px 2px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u79958_div.disabled {
  6761. border-width:0px;
  6762. position:absolute;
  6763. left:0px;
  6764. top:0px;
  6765. width:180px;
  6766. height:26px;
  6767. background:inherit;
  6768. background-color:rgba(240, 240, 240, 1);
  6769. border:none;
  6770. border-radius:0px;
  6771. -moz-box-shadow:none;
  6772. -webkit-box-shadow:none;
  6773. box-shadow:none;
  6774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6775. font-weight:400;
  6776. font-style:normal;
  6777. font-size:12px;
  6778. color:#7F7F7F;
  6779. }
  6780. #u79958.disabled {
  6781. }
  6782. #u79959_div {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:0px;
  6786. top:0px;
  6787. width:100px;
  6788. height:30px;
  6789. background:inherit;
  6790. background-color:rgba(255, 255, 255, 0);
  6791. border:none;
  6792. border-top:0px;
  6793. border-right:0px;
  6794. border-bottom:0px;
  6795. border-radius:0px;
  6796. border-top-left-radius:0px;
  6797. border-bottom-left-radius:0px;
  6798. -moz-box-shadow:none;
  6799. -webkit-box-shadow:none;
  6800. box-shadow:none;
  6801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6802. font-weight:400;
  6803. font-style:normal;
  6804. font-size:14px;
  6805. color:#7F7F7F;
  6806. }
  6807. #u79959 {
  6808. border-width:0px;
  6809. position:absolute;
  6810. left:1472px;
  6811. top:223px;
  6812. width:100px;
  6813. height:30px;
  6814. display:flex;
  6815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6816. font-weight:400;
  6817. font-style:normal;
  6818. font-size:14px;
  6819. color:#7F7F7F;
  6820. }
  6821. #u79959 .text {
  6822. position:absolute;
  6823. align-self:center;
  6824. padding:5px 10px 5px 0px;
  6825. box-sizing:border-box;
  6826. width:100%;
  6827. }
  6828. #u79959_text {
  6829. border-width:0px;
  6830. word-wrap:break-word;
  6831. text-transform:none;
  6832. }
  6833. #u79960 {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:0px;
  6839. height:0px;
  6840. }
  6841. #u79961_div {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:200px;
  6847. height:30px;
  6848. background:inherit;
  6849. background-color:rgba(255, 255, 255, 1);
  6850. box-sizing:border-box;
  6851. border-width:1px;
  6852. border-style:solid;
  6853. border-color:rgba(201, 201, 201, 1);
  6854. border-radius:4px;
  6855. -moz-box-shadow:none;
  6856. -webkit-box-shadow:none;
  6857. box-shadow:none;
  6858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6859. font-weight:400;
  6860. font-style:normal;
  6861. font-size:12px;
  6862. color:#CCCCCC;
  6863. text-align:right;
  6864. }
  6865. #u79961 {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:1568px;
  6869. top:223px;
  6870. width:200px;
  6871. height:30px;
  6872. display:flex;
  6873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6874. font-weight:400;
  6875. font-style:normal;
  6876. font-size:12px;
  6877. color:#CCCCCC;
  6878. text-align:right;
  6879. }
  6880. #u79961 .text {
  6881. position:absolute;
  6882. align-self:center;
  6883. padding:2px 8px 2px 8px;
  6884. box-sizing:border-box;
  6885. width:100%;
  6886. }
  6887. #u79961_text {
  6888. border-width:0px;
  6889. word-wrap:break-word;
  6890. text-transform:none;
  6891. visibility:hidden;
  6892. }
  6893. #u79962_input {
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:180px;
  6898. height:26px;
  6899. padding:2px 2px 2px 2px;
  6900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6901. font-weight:400;
  6902. font-style:normal;
  6903. font-size:12px;
  6904. letter-spacing:normal;
  6905. color:#7F7F7F;
  6906. vertical-align:none;
  6907. text-align:left;
  6908. text-transform:none;
  6909. background-color:transparent;
  6910. border-color:transparent;
  6911. }
  6912. #u79962_input.disabled {
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:180px;
  6917. height:26px;
  6918. padding:2px 2px 2px 2px;
  6919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. font-size:12px;
  6923. letter-spacing:normal;
  6924. color:#7F7F7F;
  6925. vertical-align:none;
  6926. text-align:left;
  6927. text-transform:none;
  6928. background-color:transparent;
  6929. border-color:transparent;
  6930. }
  6931. #u79962_div {
  6932. border-width:0px;
  6933. position:absolute;
  6934. left:0px;
  6935. top:0px;
  6936. width:180px;
  6937. height:26px;
  6938. background:inherit;
  6939. background-color:rgba(255, 255, 255, 1);
  6940. border:none;
  6941. border-radius:0px;
  6942. -moz-box-shadow:none;
  6943. -webkit-box-shadow:none;
  6944. box-shadow:none;
  6945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6946. font-weight:400;
  6947. font-style:normal;
  6948. font-size:12px;
  6949. color:#7F7F7F;
  6950. }
  6951. #u79962 {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:1574px;
  6955. top:224px;
  6956. width:180px;
  6957. height:26px;
  6958. display:flex;
  6959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6960. font-weight:400;
  6961. font-style:normal;
  6962. font-size:12px;
  6963. color:#7F7F7F;
  6964. }
  6965. #u79962 .text {
  6966. position:absolute;
  6967. align-self:center;
  6968. padding:2px 2px 2px 2px;
  6969. box-sizing:border-box;
  6970. width:100%;
  6971. }
  6972. #u79962_div.disabled {
  6973. border-width:0px;
  6974. position:absolute;
  6975. left:0px;
  6976. top:0px;
  6977. width:180px;
  6978. height:26px;
  6979. background:inherit;
  6980. background-color:rgba(240, 240, 240, 1);
  6981. border:none;
  6982. border-radius:0px;
  6983. -moz-box-shadow:none;
  6984. -webkit-box-shadow:none;
  6985. box-shadow:none;
  6986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. font-size:12px;
  6990. color:#7F7F7F;
  6991. }
  6992. #u79962.disabled {
  6993. }
  6994. #u79963_div {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:0px;
  6998. top:0px;
  6999. width:100px;
  7000. height:30px;
  7001. background:inherit;
  7002. background-color:rgba(255, 255, 255, 0);
  7003. border:none;
  7004. border-top:0px;
  7005. border-right:0px;
  7006. border-bottom:0px;
  7007. border-radius:0px;
  7008. border-top-left-radius:0px;
  7009. border-bottom-left-radius:0px;
  7010. -moz-box-shadow:none;
  7011. -webkit-box-shadow:none;
  7012. box-shadow:none;
  7013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7014. font-weight:400;
  7015. font-style:normal;
  7016. font-size:14px;
  7017. color:#7F7F7F;
  7018. }
  7019. #u79963 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:1798px;
  7023. top:223px;
  7024. width:100px;
  7025. height:30px;
  7026. display:flex;
  7027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:14px;
  7031. color:#7F7F7F;
  7032. }
  7033. #u79963 .text {
  7034. position:absolute;
  7035. align-self:center;
  7036. padding:5px 10px 5px 0px;
  7037. box-sizing:border-box;
  7038. width:100%;
  7039. }
  7040. #u79963_text {
  7041. border-width:0px;
  7042. word-wrap:break-word;
  7043. text-transform:none;
  7044. }
  7045. #u79964 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:0px;
  7050. width:0px;
  7051. height:0px;
  7052. }
  7053. #u79965_div {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:200px;
  7059. height:30px;
  7060. background:inherit;
  7061. background-color:rgba(255, 255, 255, 1);
  7062. box-sizing:border-box;
  7063. border-width:1px;
  7064. border-style:solid;
  7065. border-color:rgba(201, 201, 201, 1);
  7066. border-radius:4px;
  7067. -moz-box-shadow:none;
  7068. -webkit-box-shadow:none;
  7069. box-shadow:none;
  7070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:12px;
  7074. color:#CCCCCC;
  7075. text-align:right;
  7076. }
  7077. #u79965 {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:1894px;
  7081. top:223px;
  7082. width:200px;
  7083. height:30px;
  7084. display:flex;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:12px;
  7089. color:#CCCCCC;
  7090. text-align:right;
  7091. }
  7092. #u79965 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:2px 8px 2px 8px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u79965_text {
  7100. border-width:0px;
  7101. word-wrap:break-word;
  7102. text-transform:none;
  7103. visibility:hidden;
  7104. }
  7105. #u79966_input {
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:180px;
  7110. height:26px;
  7111. padding:2px 2px 2px 2px;
  7112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7113. font-weight:400;
  7114. font-style:normal;
  7115. font-size:12px;
  7116. letter-spacing:normal;
  7117. color:#7F7F7F;
  7118. vertical-align:none;
  7119. text-align:left;
  7120. text-transform:none;
  7121. background-color:transparent;
  7122. border-color:transparent;
  7123. }
  7124. #u79966_input.disabled {
  7125. position:absolute;
  7126. left:0px;
  7127. top:0px;
  7128. width:180px;
  7129. height:26px;
  7130. padding:2px 2px 2px 2px;
  7131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7132. font-weight:400;
  7133. font-style:normal;
  7134. font-size:12px;
  7135. letter-spacing:normal;
  7136. color:#7F7F7F;
  7137. vertical-align:none;
  7138. text-align:left;
  7139. text-transform:none;
  7140. background-color:transparent;
  7141. border-color:transparent;
  7142. }
  7143. #u79966_div {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:180px;
  7149. height:26px;
  7150. background:inherit;
  7151. background-color:rgba(255, 255, 255, 1);
  7152. border:none;
  7153. border-radius:0px;
  7154. -moz-box-shadow:none;
  7155. -webkit-box-shadow:none;
  7156. box-shadow:none;
  7157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7158. font-weight:400;
  7159. font-style:normal;
  7160. font-size:12px;
  7161. color:#7F7F7F;
  7162. }
  7163. #u79966 {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:1900px;
  7167. top:224px;
  7168. width:180px;
  7169. height:26px;
  7170. display:flex;
  7171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7172. font-weight:400;
  7173. font-style:normal;
  7174. font-size:12px;
  7175. color:#7F7F7F;
  7176. }
  7177. #u79966 .text {
  7178. position:absolute;
  7179. align-self:center;
  7180. padding:2px 2px 2px 2px;
  7181. box-sizing:border-box;
  7182. width:100%;
  7183. }
  7184. #u79966_div.disabled {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:0px;
  7188. top:0px;
  7189. width:180px;
  7190. height:26px;
  7191. background:inherit;
  7192. background-color:rgba(240, 240, 240, 1);
  7193. border:none;
  7194. border-radius:0px;
  7195. -moz-box-shadow:none;
  7196. -webkit-box-shadow:none;
  7197. box-shadow:none;
  7198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7199. font-weight:400;
  7200. font-style:normal;
  7201. font-size:12px;
  7202. color:#7F7F7F;
  7203. }
  7204. #u79966.disabled {
  7205. }
  7206. #u79967_div {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:100px;
  7212. height:30px;
  7213. background:inherit;
  7214. background-color:rgba(255, 255, 255, 0);
  7215. border:none;
  7216. border-top:0px;
  7217. border-right:0px;
  7218. border-bottom:0px;
  7219. border-radius:0px;
  7220. border-top-left-radius:0px;
  7221. border-bottom-left-radius:0px;
  7222. -moz-box-shadow:none;
  7223. -webkit-box-shadow:none;
  7224. box-shadow:none;
  7225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7226. font-weight:400;
  7227. font-style:normal;
  7228. font-size:14px;
  7229. color:#7F7F7F;
  7230. }
  7231. #u79967 {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:1156px;
  7235. top:263px;
  7236. width:100px;
  7237. height:30px;
  7238. display:flex;
  7239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7240. font-weight:400;
  7241. font-style:normal;
  7242. font-size:14px;
  7243. color:#7F7F7F;
  7244. }
  7245. #u79967 .text {
  7246. position:absolute;
  7247. align-self:center;
  7248. padding:5px 10px 5px 0px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u79967_text {
  7253. border-width:0px;
  7254. word-wrap:break-word;
  7255. text-transform:none;
  7256. }
  7257. #u79968 {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:0px;
  7263. height:0px;
  7264. }
  7265. #u79969_div {
  7266. border-width:0px;
  7267. position:absolute;
  7268. left:0px;
  7269. top:0px;
  7270. width:200px;
  7271. height:30px;
  7272. background:inherit;
  7273. background-color:rgba(255, 255, 255, 1);
  7274. box-sizing:border-box;
  7275. border-width:1px;
  7276. border-style:solid;
  7277. border-color:rgba(201, 201, 201, 1);
  7278. border-radius:4px;
  7279. -moz-box-shadow:none;
  7280. -webkit-box-shadow:none;
  7281. box-shadow:none;
  7282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7283. font-weight:400;
  7284. font-style:normal;
  7285. font-size:12px;
  7286. color:#CCCCCC;
  7287. text-align:right;
  7288. }
  7289. #u79969 {
  7290. border-width:0px;
  7291. position:absolute;
  7292. left:1252px;
  7293. top:263px;
  7294. width:200px;
  7295. height:30px;
  7296. display:flex;
  7297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7298. font-weight:400;
  7299. font-style:normal;
  7300. font-size:12px;
  7301. color:#CCCCCC;
  7302. text-align:right;
  7303. }
  7304. #u79969 .text {
  7305. position:absolute;
  7306. align-self:center;
  7307. padding:2px 8px 2px 8px;
  7308. box-sizing:border-box;
  7309. width:100%;
  7310. }
  7311. #u79969_text {
  7312. border-width:0px;
  7313. word-wrap:break-word;
  7314. text-transform:none;
  7315. visibility:hidden;
  7316. }
  7317. #u79970_input {
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:180px;
  7322. height:26px;
  7323. padding:2px 2px 2px 2px;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:12px;
  7328. letter-spacing:normal;
  7329. color:#7F7F7F;
  7330. vertical-align:none;
  7331. text-align:left;
  7332. text-transform:none;
  7333. background-color:transparent;
  7334. border-color:transparent;
  7335. }
  7336. #u79970_input.disabled {
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:180px;
  7341. height:26px;
  7342. padding:2px 2px 2px 2px;
  7343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7344. font-weight:400;
  7345. font-style:normal;
  7346. font-size:12px;
  7347. letter-spacing:normal;
  7348. color:#7F7F7F;
  7349. vertical-align:none;
  7350. text-align:left;
  7351. text-transform:none;
  7352. background-color:transparent;
  7353. border-color:transparent;
  7354. }
  7355. #u79970_div {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:180px;
  7361. height:26px;
  7362. background:inherit;
  7363. background-color:rgba(255, 255, 255, 1);
  7364. border:none;
  7365. border-radius:0px;
  7366. -moz-box-shadow:none;
  7367. -webkit-box-shadow:none;
  7368. box-shadow:none;
  7369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7370. font-weight:400;
  7371. font-style:normal;
  7372. font-size:12px;
  7373. color:#7F7F7F;
  7374. }
  7375. #u79970 {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:1258px;
  7379. top:264px;
  7380. width:180px;
  7381. height:26px;
  7382. display:flex;
  7383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:12px;
  7387. color:#7F7F7F;
  7388. }
  7389. #u79970 .text {
  7390. position:absolute;
  7391. align-self:center;
  7392. padding:2px 2px 2px 2px;
  7393. box-sizing:border-box;
  7394. width:100%;
  7395. }
  7396. #u79970_div.disabled {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:0px;
  7400. top:0px;
  7401. width:180px;
  7402. height:26px;
  7403. background:inherit;
  7404. background-color:rgba(240, 240, 240, 1);
  7405. border:none;
  7406. border-radius:0px;
  7407. -moz-box-shadow:none;
  7408. -webkit-box-shadow:none;
  7409. box-shadow:none;
  7410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7411. font-weight:400;
  7412. font-style:normal;
  7413. font-size:12px;
  7414. color:#7F7F7F;
  7415. }
  7416. #u79970.disabled {
  7417. }
  7418. #u79971_div {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:100px;
  7424. height:30px;
  7425. background:inherit;
  7426. background-color:rgba(255, 255, 255, 0);
  7427. border:none;
  7428. border-top:0px;
  7429. border-right:0px;
  7430. border-bottom:0px;
  7431. border-radius:0px;
  7432. border-top-left-radius:0px;
  7433. border-bottom-left-radius:0px;
  7434. -moz-box-shadow:none;
  7435. -webkit-box-shadow:none;
  7436. box-shadow:none;
  7437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:14px;
  7441. color:#7F7F7F;
  7442. }
  7443. #u79971 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:1472px;
  7447. top:263px;
  7448. width:100px;
  7449. height:30px;
  7450. display:flex;
  7451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7452. font-weight:400;
  7453. font-style:normal;
  7454. font-size:14px;
  7455. color:#7F7F7F;
  7456. }
  7457. #u79971 .text {
  7458. position:absolute;
  7459. align-self:center;
  7460. padding:5px 10px 5px 0px;
  7461. box-sizing:border-box;
  7462. width:100%;
  7463. }
  7464. #u79971_text {
  7465. border-width:0px;
  7466. word-wrap:break-word;
  7467. text-transform:none;
  7468. }
  7469. #u79972 {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:0px;
  7473. top:0px;
  7474. width:0px;
  7475. height:0px;
  7476. }
  7477. #u79973_div {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:200px;
  7483. height:30px;
  7484. background:inherit;
  7485. background-color:rgba(255, 255, 255, 1);
  7486. box-sizing:border-box;
  7487. border-width:1px;
  7488. border-style:solid;
  7489. border-color:rgba(201, 201, 201, 1);
  7490. border-radius:4px;
  7491. -moz-box-shadow:none;
  7492. -webkit-box-shadow:none;
  7493. box-shadow:none;
  7494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:12px;
  7498. color:#CCCCCC;
  7499. text-align:right;
  7500. }
  7501. #u79973 {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:1568px;
  7505. top:263px;
  7506. width:200px;
  7507. height:30px;
  7508. display:flex;
  7509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7510. font-weight:400;
  7511. font-style:normal;
  7512. font-size:12px;
  7513. color:#CCCCCC;
  7514. text-align:right;
  7515. }
  7516. #u79973 .text {
  7517. position:absolute;
  7518. align-self:center;
  7519. padding:2px 8px 2px 8px;
  7520. box-sizing:border-box;
  7521. width:100%;
  7522. }
  7523. #u79973_text {
  7524. border-width:0px;
  7525. word-wrap:break-word;
  7526. text-transform:none;
  7527. visibility:hidden;
  7528. }
  7529. #u79974_input {
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:180px;
  7534. height:26px;
  7535. padding:2px 2px 2px 2px;
  7536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7537. font-weight:400;
  7538. font-style:normal;
  7539. font-size:12px;
  7540. letter-spacing:normal;
  7541. color:#7F7F7F;
  7542. vertical-align:none;
  7543. text-align:left;
  7544. text-transform:none;
  7545. background-color:transparent;
  7546. border-color:transparent;
  7547. }
  7548. #u79974_input.disabled {
  7549. position:absolute;
  7550. left:0px;
  7551. top:0px;
  7552. width:180px;
  7553. height:26px;
  7554. padding:2px 2px 2px 2px;
  7555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7556. font-weight:400;
  7557. font-style:normal;
  7558. font-size:12px;
  7559. letter-spacing:normal;
  7560. color:#7F7F7F;
  7561. vertical-align:none;
  7562. text-align:left;
  7563. text-transform:none;
  7564. background-color:transparent;
  7565. border-color:transparent;
  7566. }
  7567. #u79974_div {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:180px;
  7573. height:26px;
  7574. background:inherit;
  7575. background-color:rgba(255, 255, 255, 1);
  7576. border:none;
  7577. border-radius:0px;
  7578. -moz-box-shadow:none;
  7579. -webkit-box-shadow:none;
  7580. box-shadow:none;
  7581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:12px;
  7585. color:#7F7F7F;
  7586. }
  7587. #u79974 {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:1574px;
  7591. top:264px;
  7592. width:180px;
  7593. height:26px;
  7594. display:flex;
  7595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7596. font-weight:400;
  7597. font-style:normal;
  7598. font-size:12px;
  7599. color:#7F7F7F;
  7600. }
  7601. #u79974 .text {
  7602. position:absolute;
  7603. align-self:center;
  7604. padding:2px 2px 2px 2px;
  7605. box-sizing:border-box;
  7606. width:100%;
  7607. }
  7608. #u79974_div.disabled {
  7609. border-width:0px;
  7610. position:absolute;
  7611. left:0px;
  7612. top:0px;
  7613. width:180px;
  7614. height:26px;
  7615. background:inherit;
  7616. background-color:rgba(240, 240, 240, 1);
  7617. border:none;
  7618. border-radius:0px;
  7619. -moz-box-shadow:none;
  7620. -webkit-box-shadow:none;
  7621. box-shadow:none;
  7622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7623. font-weight:400;
  7624. font-style:normal;
  7625. font-size:12px;
  7626. color:#7F7F7F;
  7627. }
  7628. #u79974.disabled {
  7629. }
  7630. #u79975_div {
  7631. border-width:0px;
  7632. position:absolute;
  7633. left:0px;
  7634. top:0px;
  7635. width:100px;
  7636. height:30px;
  7637. background:inherit;
  7638. background-color:rgba(255, 255, 255, 0);
  7639. border:none;
  7640. border-top:0px;
  7641. border-right:0px;
  7642. border-bottom:0px;
  7643. border-radius:0px;
  7644. border-top-left-radius:0px;
  7645. border-bottom-left-radius:0px;
  7646. -moz-box-shadow:none;
  7647. -webkit-box-shadow:none;
  7648. box-shadow:none;
  7649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:14px;
  7653. color:#7F7F7F;
  7654. }
  7655. #u79975 {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:1798px;
  7659. top:263px;
  7660. width:100px;
  7661. height:30px;
  7662. display:flex;
  7663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7664. font-weight:400;
  7665. font-style:normal;
  7666. font-size:14px;
  7667. color:#7F7F7F;
  7668. }
  7669. #u79975 .text {
  7670. position:absolute;
  7671. align-self:center;
  7672. padding:5px 10px 5px 0px;
  7673. box-sizing:border-box;
  7674. width:100%;
  7675. }
  7676. #u79975_text {
  7677. border-width:0px;
  7678. word-wrap:break-word;
  7679. text-transform:none;
  7680. }
  7681. #u79976 {
  7682. border-width:0px;
  7683. position:absolute;
  7684. left:0px;
  7685. top:0px;
  7686. width:0px;
  7687. height:0px;
  7688. }
  7689. #u79977_div {
  7690. border-width:0px;
  7691. position:absolute;
  7692. left:0px;
  7693. top:0px;
  7694. width:200px;
  7695. height:30px;
  7696. background:inherit;
  7697. background-color:rgba(255, 255, 255, 1);
  7698. box-sizing:border-box;
  7699. border-width:1px;
  7700. border-style:solid;
  7701. border-color:rgba(215, 215, 215, 1);
  7702. border-radius:4px;
  7703. -moz-box-shadow:none;
  7704. -webkit-box-shadow:none;
  7705. box-shadow:none;
  7706. font-size:12px;
  7707. }
  7708. #u79977 {
  7709. border-width:0px;
  7710. position:absolute;
  7711. left:1894px;
  7712. top:263px;
  7713. width:200px;
  7714. height:30px;
  7715. display:flex;
  7716. font-size:12px;
  7717. }
  7718. #u79977 .text {
  7719. position:absolute;
  7720. align-self:center;
  7721. padding:2px 2px 2px 2px;
  7722. box-sizing:border-box;
  7723. width:100%;
  7724. }
  7725. #u79977_text {
  7726. border-width:0px;
  7727. word-wrap:break-word;
  7728. text-transform:none;
  7729. visibility:hidden;
  7730. }
  7731. #u79978_input {
  7732. position:absolute;
  7733. left:0px;
  7734. top:0px;
  7735. width:191px;
  7736. height:23px;
  7737. padding:2px 2px 2px 2px;
  7738. font-family:'ArialMT', 'Arial', sans-serif;
  7739. font-weight:400;
  7740. font-style:normal;
  7741. font-size:12px;
  7742. letter-spacing:normal;
  7743. color:#AAAAAA;
  7744. vertical-align:none;
  7745. text-align:left;
  7746. text-transform:none;
  7747. background-color:transparent;
  7748. border-color:transparent;
  7749. }
  7750. #u79978_input.disabled {
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:191px;
  7755. height:23px;
  7756. padding:2px 2px 2px 2px;
  7757. font-family:'ArialMT', 'Arial', sans-serif;
  7758. font-weight:400;
  7759. font-style:normal;
  7760. font-size:12px;
  7761. letter-spacing:normal;
  7762. color:#AAAAAA;
  7763. vertical-align:none;
  7764. text-align:left;
  7765. text-transform:none;
  7766. background-color:transparent;
  7767. border-color:transparent;
  7768. }
  7769. #u79978_div {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:0px;
  7773. top:0px;
  7774. width:191px;
  7775. height:23px;
  7776. background:inherit;
  7777. background-color:rgba(255, 255, 255, 1);
  7778. border:none;
  7779. border-radius:0px;
  7780. -moz-box-shadow:none;
  7781. -webkit-box-shadow:none;
  7782. box-shadow:none;
  7783. font-size:12px;
  7784. color:#AAAAAA;
  7785. }
  7786. #u79978 {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:1897px;
  7790. top:265px;
  7791. width:191px;
  7792. height:23px;
  7793. display:flex;
  7794. font-size:12px;
  7795. color:#AAAAAA;
  7796. }
  7797. #u79978 .text {
  7798. position:absolute;
  7799. align-self:flex-start;
  7800. padding:2px 2px 2px 2px;
  7801. box-sizing:border-box;
  7802. width:100%;
  7803. }
  7804. #u79978_div.disabled {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:0px;
  7808. top:0px;
  7809. width:191px;
  7810. height:23px;
  7811. background:inherit;
  7812. background-color:rgba(240, 240, 240, 1);
  7813. border:none;
  7814. border-radius:0px;
  7815. -moz-box-shadow:none;
  7816. -webkit-box-shadow:none;
  7817. box-shadow:none;
  7818. font-size:12px;
  7819. color:#AAAAAA;
  7820. }
  7821. #u79978.disabled {
  7822. }
  7823. .u79978_input_option {
  7824. font-size:12px;
  7825. }
  7826. #u79979_div {
  7827. border-width:0px;
  7828. position:absolute;
  7829. left:0px;
  7830. top:0px;
  7831. width:100px;
  7832. height:30px;
  7833. background:inherit;
  7834. background-color:rgba(255, 255, 255, 0);
  7835. border:none;
  7836. border-top:0px;
  7837. border-right:0px;
  7838. border-bottom:0px;
  7839. border-radius:0px;
  7840. border-top-left-radius:0px;
  7841. border-bottom-left-radius:0px;
  7842. -moz-box-shadow:none;
  7843. -webkit-box-shadow:none;
  7844. box-shadow:none;
  7845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7846. font-weight:400;
  7847. font-style:normal;
  7848. font-size:14px;
  7849. color:#7F7F7F;
  7850. }
  7851. #u79979 {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:1156px;
  7855. top:303px;
  7856. width:100px;
  7857. height:30px;
  7858. display:flex;
  7859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:14px;
  7863. color:#7F7F7F;
  7864. }
  7865. #u79979 .text {
  7866. position:absolute;
  7867. align-self:center;
  7868. padding:5px 10px 5px 0px;
  7869. box-sizing:border-box;
  7870. width:100%;
  7871. }
  7872. #u79979_text {
  7873. border-width:0px;
  7874. word-wrap:break-word;
  7875. text-transform:none;
  7876. }
  7877. #u79980 {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:0px;
  7881. top:0px;
  7882. width:0px;
  7883. height:0px;
  7884. }
  7885. #u79981_div {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:200px;
  7891. height:30px;
  7892. background:inherit;
  7893. background-color:rgba(255, 255, 255, 1);
  7894. box-sizing:border-box;
  7895. border-width:1px;
  7896. border-style:solid;
  7897. border-color:rgba(201, 201, 201, 1);
  7898. border-radius:4px;
  7899. -moz-box-shadow:none;
  7900. -webkit-box-shadow:none;
  7901. box-shadow:none;
  7902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7903. font-weight:400;
  7904. font-style:normal;
  7905. font-size:12px;
  7906. color:#CCCCCC;
  7907. text-align:right;
  7908. }
  7909. #u79981 {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:1252px;
  7913. top:303px;
  7914. width:200px;
  7915. height:30px;
  7916. display:flex;
  7917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7918. font-weight:400;
  7919. font-style:normal;
  7920. font-size:12px;
  7921. color:#CCCCCC;
  7922. text-align:right;
  7923. }
  7924. #u79981 .text {
  7925. position:absolute;
  7926. align-self:center;
  7927. padding:2px 8px 2px 8px;
  7928. box-sizing:border-box;
  7929. width:100%;
  7930. }
  7931. #u79981_text {
  7932. border-width:0px;
  7933. word-wrap:break-word;
  7934. text-transform:none;
  7935. visibility:hidden;
  7936. }
  7937. #u79982_input {
  7938. position:absolute;
  7939. left:0px;
  7940. top:0px;
  7941. width:180px;
  7942. height:26px;
  7943. padding:2px 2px 2px 2px;
  7944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7945. font-weight:400;
  7946. font-style:normal;
  7947. font-size:12px;
  7948. letter-spacing:normal;
  7949. color:#7F7F7F;
  7950. vertical-align:none;
  7951. text-align:left;
  7952. text-transform:none;
  7953. background-color:transparent;
  7954. border-color:transparent;
  7955. }
  7956. #u79982_input.disabled {
  7957. position:absolute;
  7958. left:0px;
  7959. top:0px;
  7960. width:180px;
  7961. height:26px;
  7962. padding:2px 2px 2px 2px;
  7963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7964. font-weight:400;
  7965. font-style:normal;
  7966. font-size:12px;
  7967. letter-spacing:normal;
  7968. color:#7F7F7F;
  7969. vertical-align:none;
  7970. text-align:left;
  7971. text-transform:none;
  7972. background-color:transparent;
  7973. border-color:transparent;
  7974. }
  7975. #u79982_div {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:0px;
  7979. top:0px;
  7980. width:180px;
  7981. height:26px;
  7982. background:inherit;
  7983. background-color:rgba(255, 255, 255, 1);
  7984. border:none;
  7985. border-radius:0px;
  7986. -moz-box-shadow:none;
  7987. -webkit-box-shadow:none;
  7988. box-shadow:none;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. font-size:12px;
  7993. color:#7F7F7F;
  7994. }
  7995. #u79982 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:1258px;
  7999. top:304px;
  8000. width:180px;
  8001. height:26px;
  8002. display:flex;
  8003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8004. font-weight:400;
  8005. font-style:normal;
  8006. font-size:12px;
  8007. color:#7F7F7F;
  8008. }
  8009. #u79982 .text {
  8010. position:absolute;
  8011. align-self:center;
  8012. padding:2px 2px 2px 2px;
  8013. box-sizing:border-box;
  8014. width:100%;
  8015. }
  8016. #u79982_div.disabled {
  8017. border-width:0px;
  8018. position:absolute;
  8019. left:0px;
  8020. top:0px;
  8021. width:180px;
  8022. height:26px;
  8023. background:inherit;
  8024. background-color:rgba(240, 240, 240, 1);
  8025. border:none;
  8026. border-radius:0px;
  8027. -moz-box-shadow:none;
  8028. -webkit-box-shadow:none;
  8029. box-shadow:none;
  8030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8031. font-weight:400;
  8032. font-style:normal;
  8033. font-size:12px;
  8034. color:#7F7F7F;
  8035. }
  8036. #u79982.disabled {
  8037. }
  8038. #u79983_div {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:0px;
  8042. top:0px;
  8043. width:100px;
  8044. height:30px;
  8045. background:inherit;
  8046. background-color:rgba(255, 255, 255, 0);
  8047. border:none;
  8048. border-top:0px;
  8049. border-right:0px;
  8050. border-bottom:0px;
  8051. border-radius:0px;
  8052. border-top-left-radius:0px;
  8053. border-bottom-left-radius:0px;
  8054. -moz-box-shadow:none;
  8055. -webkit-box-shadow:none;
  8056. box-shadow:none;
  8057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8058. font-weight:400;
  8059. font-style:normal;
  8060. font-size:14px;
  8061. color:#7F7F7F;
  8062. }
  8063. #u79983 {
  8064. border-width:0px;
  8065. position:absolute;
  8066. left:1472px;
  8067. top:303px;
  8068. width:100px;
  8069. height:30px;
  8070. display:flex;
  8071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8072. font-weight:400;
  8073. font-style:normal;
  8074. font-size:14px;
  8075. color:#7F7F7F;
  8076. }
  8077. #u79983 .text {
  8078. position:absolute;
  8079. align-self:center;
  8080. padding:5px 10px 5px 0px;
  8081. box-sizing:border-box;
  8082. width:100%;
  8083. }
  8084. #u79983_text {
  8085. border-width:0px;
  8086. word-wrap:break-word;
  8087. text-transform:none;
  8088. }
  8089. #u79984 {
  8090. border-width:0px;
  8091. position:absolute;
  8092. left:0px;
  8093. top:0px;
  8094. width:0px;
  8095. height:0px;
  8096. }
  8097. #u79985_div {
  8098. border-width:0px;
  8099. position:absolute;
  8100. left:0px;
  8101. top:0px;
  8102. width:200px;
  8103. height:30px;
  8104. background:inherit;
  8105. background-color:rgba(255, 255, 255, 1);
  8106. box-sizing:border-box;
  8107. border-width:1px;
  8108. border-style:solid;
  8109. border-color:rgba(201, 201, 201, 1);
  8110. border-radius:4px;
  8111. -moz-box-shadow:none;
  8112. -webkit-box-shadow:none;
  8113. box-shadow:none;
  8114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8115. font-weight:400;
  8116. font-style:normal;
  8117. font-size:12px;
  8118. color:#CCCCCC;
  8119. text-align:right;
  8120. }
  8121. #u79985 {
  8122. border-width:0px;
  8123. position:absolute;
  8124. left:1568px;
  8125. top:303px;
  8126. width:200px;
  8127. height:30px;
  8128. display:flex;
  8129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8130. font-weight:400;
  8131. font-style:normal;
  8132. font-size:12px;
  8133. color:#CCCCCC;
  8134. text-align:right;
  8135. }
  8136. #u79985 .text {
  8137. position:absolute;
  8138. align-self:center;
  8139. padding:2px 8px 2px 8px;
  8140. box-sizing:border-box;
  8141. width:100%;
  8142. }
  8143. #u79985_text {
  8144. border-width:0px;
  8145. word-wrap:break-word;
  8146. text-transform:none;
  8147. visibility:hidden;
  8148. }
  8149. #u79986_input {
  8150. position:absolute;
  8151. left:0px;
  8152. top:0px;
  8153. width:180px;
  8154. height:26px;
  8155. padding:2px 2px 2px 2px;
  8156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8157. font-weight:400;
  8158. font-style:normal;
  8159. font-size:12px;
  8160. letter-spacing:normal;
  8161. color:#7F7F7F;
  8162. vertical-align:none;
  8163. text-align:left;
  8164. text-transform:none;
  8165. background-color:transparent;
  8166. border-color:transparent;
  8167. }
  8168. #u79986_input.disabled {
  8169. position:absolute;
  8170. left:0px;
  8171. top:0px;
  8172. width:180px;
  8173. height:26px;
  8174. padding:2px 2px 2px 2px;
  8175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8176. font-weight:400;
  8177. font-style:normal;
  8178. font-size:12px;
  8179. letter-spacing:normal;
  8180. color:#7F7F7F;
  8181. vertical-align:none;
  8182. text-align:left;
  8183. text-transform:none;
  8184. background-color:transparent;
  8185. border-color:transparent;
  8186. }
  8187. #u79986_div {
  8188. border-width:0px;
  8189. position:absolute;
  8190. left:0px;
  8191. top:0px;
  8192. width:180px;
  8193. height:26px;
  8194. background:inherit;
  8195. background-color:rgba(255, 255, 255, 1);
  8196. border:none;
  8197. border-radius:0px;
  8198. -moz-box-shadow:none;
  8199. -webkit-box-shadow:none;
  8200. box-shadow:none;
  8201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8202. font-weight:400;
  8203. font-style:normal;
  8204. font-size:12px;
  8205. color:#7F7F7F;
  8206. }
  8207. #u79986 {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:1574px;
  8211. top:304px;
  8212. width:180px;
  8213. height:26px;
  8214. display:flex;
  8215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8216. font-weight:400;
  8217. font-style:normal;
  8218. font-size:12px;
  8219. color:#7F7F7F;
  8220. }
  8221. #u79986 .text {
  8222. position:absolute;
  8223. align-self:center;
  8224. padding:2px 2px 2px 2px;
  8225. box-sizing:border-box;
  8226. width:100%;
  8227. }
  8228. #u79986_div.disabled {
  8229. border-width:0px;
  8230. position:absolute;
  8231. left:0px;
  8232. top:0px;
  8233. width:180px;
  8234. height:26px;
  8235. background:inherit;
  8236. background-color:rgba(240, 240, 240, 1);
  8237. border:none;
  8238. border-radius:0px;
  8239. -moz-box-shadow:none;
  8240. -webkit-box-shadow:none;
  8241. box-shadow:none;
  8242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8243. font-weight:400;
  8244. font-style:normal;
  8245. font-size:12px;
  8246. color:#7F7F7F;
  8247. }
  8248. #u79986.disabled {
  8249. }
  8250. #u79987_div {
  8251. border-width:0px;
  8252. position:absolute;
  8253. left:0px;
  8254. top:0px;
  8255. width:109px;
  8256. height:30px;
  8257. background:inherit;
  8258. background-color:rgba(255, 255, 255, 0);
  8259. border:none;
  8260. border-top:0px;
  8261. border-right:0px;
  8262. border-bottom:0px;
  8263. border-radius:0px;
  8264. border-top-left-radius:0px;
  8265. border-bottom-left-radius:0px;
  8266. -moz-box-shadow:none;
  8267. -webkit-box-shadow:none;
  8268. box-shadow:none;
  8269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8270. font-weight:400;
  8271. font-style:normal;
  8272. font-size:14px;
  8273. color:#7F7F7F;
  8274. }
  8275. #u79987 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:1798px;
  8279. top:303px;
  8280. width:109px;
  8281. height:30px;
  8282. display:flex;
  8283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8284. font-weight:400;
  8285. font-style:normal;
  8286. font-size:14px;
  8287. color:#7F7F7F;
  8288. }
  8289. #u79987 .text {
  8290. position:absolute;
  8291. align-self:center;
  8292. padding:5px 10px 5px 0px;
  8293. box-sizing:border-box;
  8294. width:100%;
  8295. }
  8296. #u79987_text {
  8297. border-width:0px;
  8298. white-space:nowrap;
  8299. text-transform:none;
  8300. }
  8301. #u79988 {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:0px;
  8305. top:0px;
  8306. width:0px;
  8307. height:0px;
  8308. }
  8309. #u79989_div {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:200px;
  8315. height:30px;
  8316. background:inherit;
  8317. background-color:rgba(255, 255, 255, 1);
  8318. box-sizing:border-box;
  8319. border-width:1px;
  8320. border-style:solid;
  8321. border-color:rgba(215, 215, 215, 1);
  8322. border-radius:4px;
  8323. -moz-box-shadow:none;
  8324. -webkit-box-shadow:none;
  8325. box-shadow:none;
  8326. font-size:12px;
  8327. }
  8328. #u79989 {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:1894px;
  8332. top:303px;
  8333. width:200px;
  8334. height:30px;
  8335. display:flex;
  8336. font-size:12px;
  8337. }
  8338. #u79989 .text {
  8339. position:absolute;
  8340. align-self:center;
  8341. padding:2px 2px 2px 2px;
  8342. box-sizing:border-box;
  8343. width:100%;
  8344. }
  8345. #u79989_text {
  8346. border-width:0px;
  8347. word-wrap:break-word;
  8348. text-transform:none;
  8349. visibility:hidden;
  8350. }
  8351. #u79990_input {
  8352. position:absolute;
  8353. left:0px;
  8354. top:0px;
  8355. width:191px;
  8356. height:23px;
  8357. padding:2px 2px 2px 2px;
  8358. font-family:'ArialMT', 'Arial', sans-serif;
  8359. font-weight:400;
  8360. font-style:normal;
  8361. font-size:12px;
  8362. letter-spacing:normal;
  8363. color:#AAAAAA;
  8364. vertical-align:none;
  8365. text-align:left;
  8366. text-transform:none;
  8367. background-color:transparent;
  8368. border-color:transparent;
  8369. }
  8370. #u79990_input.disabled {
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:191px;
  8375. height:23px;
  8376. padding:2px 2px 2px 2px;
  8377. font-family:'ArialMT', 'Arial', sans-serif;
  8378. font-weight:400;
  8379. font-style:normal;
  8380. font-size:12px;
  8381. letter-spacing:normal;
  8382. color:#AAAAAA;
  8383. vertical-align:none;
  8384. text-align:left;
  8385. text-transform:none;
  8386. background-color:transparent;
  8387. border-color:transparent;
  8388. }
  8389. #u79990_div {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:191px;
  8395. height:23px;
  8396. background:inherit;
  8397. background-color:rgba(255, 255, 255, 1);
  8398. border:none;
  8399. border-radius:0px;
  8400. -moz-box-shadow:none;
  8401. -webkit-box-shadow:none;
  8402. box-shadow:none;
  8403. font-size:12px;
  8404. color:#AAAAAA;
  8405. }
  8406. #u79990 {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:1897px;
  8410. top:305px;
  8411. width:191px;
  8412. height:23px;
  8413. display:flex;
  8414. font-size:12px;
  8415. color:#AAAAAA;
  8416. }
  8417. #u79990 .text {
  8418. position:absolute;
  8419. align-self:flex-start;
  8420. padding:2px 2px 2px 2px;
  8421. box-sizing:border-box;
  8422. width:100%;
  8423. }
  8424. #u79990_div.disabled {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:191px;
  8430. height:23px;
  8431. background:inherit;
  8432. background-color:rgba(240, 240, 240, 1);
  8433. border:none;
  8434. border-radius:0px;
  8435. -moz-box-shadow:none;
  8436. -webkit-box-shadow:none;
  8437. box-shadow:none;
  8438. font-size:12px;
  8439. color:#AAAAAA;
  8440. }
  8441. #u79990.disabled {
  8442. }
  8443. .u79990_input_option {
  8444. font-size:12px;
  8445. }
  8446. #u79991_div {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:100px;
  8452. height:30px;
  8453. background:inherit;
  8454. background-color:rgba(255, 255, 255, 0);
  8455. border:none;
  8456. border-top:0px;
  8457. border-right:0px;
  8458. border-bottom:0px;
  8459. border-radius:0px;
  8460. border-top-left-radius:0px;
  8461. border-bottom-left-radius:0px;
  8462. -moz-box-shadow:none;
  8463. -webkit-box-shadow:none;
  8464. box-shadow:none;
  8465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8466. font-weight:400;
  8467. font-style:normal;
  8468. font-size:14px;
  8469. color:#7F7F7F;
  8470. }
  8471. #u79991 {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:1156px;
  8475. top:343px;
  8476. width:100px;
  8477. height:30px;
  8478. display:flex;
  8479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8480. font-weight:400;
  8481. font-style:normal;
  8482. font-size:14px;
  8483. color:#7F7F7F;
  8484. }
  8485. #u79991 .text {
  8486. position:absolute;
  8487. align-self:center;
  8488. padding:5px 10px 5px 0px;
  8489. box-sizing:border-box;
  8490. width:100%;
  8491. }
  8492. #u79991_text {
  8493. border-width:0px;
  8494. word-wrap:break-word;
  8495. text-transform:none;
  8496. }
  8497. #u79992 {
  8498. border-width:0px;
  8499. position:absolute;
  8500. left:0px;
  8501. top:0px;
  8502. width:0px;
  8503. height:0px;
  8504. }
  8505. #u79993_div {
  8506. border-width:0px;
  8507. position:absolute;
  8508. left:0px;
  8509. top:0px;
  8510. width:200px;
  8511. height:30px;
  8512. background:inherit;
  8513. background-color:rgba(255, 255, 255, 1);
  8514. box-sizing:border-box;
  8515. border-width:1px;
  8516. border-style:solid;
  8517. border-color:rgba(201, 201, 201, 1);
  8518. border-radius:4px;
  8519. -moz-box-shadow:none;
  8520. -webkit-box-shadow:none;
  8521. box-shadow:none;
  8522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8523. font-weight:400;
  8524. font-style:normal;
  8525. font-size:12px;
  8526. color:#CCCCCC;
  8527. text-align:right;
  8528. }
  8529. #u79993 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:1252px;
  8533. top:343px;
  8534. width:200px;
  8535. height:30px;
  8536. display:flex;
  8537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8538. font-weight:400;
  8539. font-style:normal;
  8540. font-size:12px;
  8541. color:#CCCCCC;
  8542. text-align:right;
  8543. }
  8544. #u79993 .text {
  8545. position:absolute;
  8546. align-self:center;
  8547. padding:2px 8px 2px 8px;
  8548. box-sizing:border-box;
  8549. width:100%;
  8550. }
  8551. #u79993_text {
  8552. border-width:0px;
  8553. word-wrap:break-word;
  8554. text-transform:none;
  8555. visibility:hidden;
  8556. }
  8557. #u79994_input {
  8558. position:absolute;
  8559. left:0px;
  8560. top:0px;
  8561. width:180px;
  8562. height:26px;
  8563. padding:2px 2px 2px 2px;
  8564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8565. font-weight:400;
  8566. font-style:normal;
  8567. font-size:12px;
  8568. letter-spacing:normal;
  8569. color:#7F7F7F;
  8570. vertical-align:none;
  8571. text-align:left;
  8572. text-transform:none;
  8573. background-color:transparent;
  8574. border-color:transparent;
  8575. }
  8576. #u79994_input.disabled {
  8577. position:absolute;
  8578. left:0px;
  8579. top:0px;
  8580. width:180px;
  8581. height:26px;
  8582. padding:2px 2px 2px 2px;
  8583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8584. font-weight:400;
  8585. font-style:normal;
  8586. font-size:12px;
  8587. letter-spacing:normal;
  8588. color:#7F7F7F;
  8589. vertical-align:none;
  8590. text-align:left;
  8591. text-transform:none;
  8592. background-color:transparent;
  8593. border-color:transparent;
  8594. }
  8595. #u79994_div {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:0px;
  8599. top:0px;
  8600. width:180px;
  8601. height:26px;
  8602. background:inherit;
  8603. background-color:rgba(255, 255, 255, 1);
  8604. border:none;
  8605. border-radius:0px;
  8606. -moz-box-shadow:none;
  8607. -webkit-box-shadow:none;
  8608. box-shadow:none;
  8609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:12px;
  8613. color:#7F7F7F;
  8614. }
  8615. #u79994 {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:1258px;
  8619. top:344px;
  8620. width:180px;
  8621. height:26px;
  8622. display:flex;
  8623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8624. font-weight:400;
  8625. font-style:normal;
  8626. font-size:12px;
  8627. color:#7F7F7F;
  8628. }
  8629. #u79994 .text {
  8630. position:absolute;
  8631. align-self:center;
  8632. padding:2px 2px 2px 2px;
  8633. box-sizing:border-box;
  8634. width:100%;
  8635. }
  8636. #u79994_div.disabled {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:0px;
  8640. top:0px;
  8641. width:180px;
  8642. height:26px;
  8643. background:inherit;
  8644. background-color:rgba(240, 240, 240, 1);
  8645. border:none;
  8646. border-radius:0px;
  8647. -moz-box-shadow:none;
  8648. -webkit-box-shadow:none;
  8649. box-shadow:none;
  8650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8651. font-weight:400;
  8652. font-style:normal;
  8653. font-size:12px;
  8654. color:#7F7F7F;
  8655. }
  8656. #u79994.disabled {
  8657. }
  8658. #u79995_div {
  8659. border-width:0px;
  8660. position:absolute;
  8661. left:0px;
  8662. top:0px;
  8663. width:100px;
  8664. height:42px;
  8665. background:inherit;
  8666. background-color:rgba(255, 255, 255, 0);
  8667. border:none;
  8668. border-top:0px;
  8669. border-right:0px;
  8670. border-bottom:0px;
  8671. border-radius:0px;
  8672. border-top-left-radius:0px;
  8673. border-bottom-left-radius:0px;
  8674. -moz-box-shadow:none;
  8675. -webkit-box-shadow:none;
  8676. box-shadow:none;
  8677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:11px;
  8681. color:#7F7F7F;
  8682. }
  8683. #u79995 {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:1472px;
  8687. top:342px;
  8688. width:100px;
  8689. height:42px;
  8690. display:flex;
  8691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8692. font-weight:400;
  8693. font-style:normal;
  8694. font-size:11px;
  8695. color:#7F7F7F;
  8696. }
  8697. #u79995 .text {
  8698. position:absolute;
  8699. align-self:center;
  8700. padding:5px 10px 5px 0px;
  8701. box-sizing:border-box;
  8702. width:100%;
  8703. }
  8704. #u79995_text {
  8705. border-width:0px;
  8706. word-wrap:break-word;
  8707. text-transform:none;
  8708. }
  8709. #u79996_div {
  8710. border-width:0px;
  8711. position:absolute;
  8712. left:0px;
  8713. top:0px;
  8714. width:81px;
  8715. height:30px;
  8716. background:inherit;
  8717. background-color:rgba(255, 255, 255, 0);
  8718. border:none;
  8719. border-top:0px;
  8720. border-right:0px;
  8721. border-bottom:0px;
  8722. border-radius:0px;
  8723. border-top-left-radius:0px;
  8724. border-bottom-left-radius:0px;
  8725. -moz-box-shadow:none;
  8726. -webkit-box-shadow:none;
  8727. box-shadow:none;
  8728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8729. font-weight:400;
  8730. font-style:normal;
  8731. font-size:14px;
  8732. color:#7F7F7F;
  8733. }
  8734. #u79996 {
  8735. border-width:0px;
  8736. position:absolute;
  8737. left:1798px;
  8738. top:343px;
  8739. width:81px;
  8740. height:30px;
  8741. display:flex;
  8742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8743. font-weight:400;
  8744. font-style:normal;
  8745. font-size:14px;
  8746. color:#7F7F7F;
  8747. }
  8748. #u79996 .text {
  8749. position:absolute;
  8750. align-self:center;
  8751. padding:5px 10px 5px 0px;
  8752. box-sizing:border-box;
  8753. width:100%;
  8754. }
  8755. #u79996_text {
  8756. border-width:0px;
  8757. white-space:nowrap;
  8758. text-transform:none;
  8759. }
  8760. #u79997 {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:0px;
  8766. height:0px;
  8767. }
  8768. #u79998_div {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:0px;
  8772. top:0px;
  8773. width:200px;
  8774. height:30px;
  8775. background:inherit;
  8776. background-color:rgba(255, 255, 255, 1);
  8777. box-sizing:border-box;
  8778. border-width:1px;
  8779. border-style:solid;
  8780. border-color:rgba(215, 215, 215, 1);
  8781. border-radius:4px;
  8782. -moz-box-shadow:none;
  8783. -webkit-box-shadow:none;
  8784. box-shadow:none;
  8785. font-size:12px;
  8786. }
  8787. #u79998 {
  8788. border-width:0px;
  8789. position:absolute;
  8790. left:1894px;
  8791. top:343px;
  8792. width:200px;
  8793. height:30px;
  8794. display:flex;
  8795. font-size:12px;
  8796. }
  8797. #u79998 .text {
  8798. position:absolute;
  8799. align-self:center;
  8800. padding:2px 2px 2px 2px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u79998_text {
  8805. border-width:0px;
  8806. word-wrap:break-word;
  8807. text-transform:none;
  8808. visibility:hidden;
  8809. }
  8810. #u79999_input {
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:191px;
  8815. height:23px;
  8816. padding:2px 2px 2px 2px;
  8817. font-family:'ArialMT', 'Arial', sans-serif;
  8818. font-weight:400;
  8819. font-style:normal;
  8820. font-size:12px;
  8821. letter-spacing:normal;
  8822. color:#AAAAAA;
  8823. vertical-align:none;
  8824. text-align:left;
  8825. text-transform:none;
  8826. background-color:transparent;
  8827. border-color:transparent;
  8828. }
  8829. #u79999_input.disabled {
  8830. position:absolute;
  8831. left:0px;
  8832. top:0px;
  8833. width:191px;
  8834. height:23px;
  8835. padding:2px 2px 2px 2px;
  8836. font-family:'ArialMT', 'Arial', sans-serif;
  8837. font-weight:400;
  8838. font-style:normal;
  8839. font-size:12px;
  8840. letter-spacing:normal;
  8841. color:#AAAAAA;
  8842. vertical-align:none;
  8843. text-align:left;
  8844. text-transform:none;
  8845. background-color:transparent;
  8846. border-color:transparent;
  8847. }
  8848. #u79999_div {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:0px;
  8852. top:0px;
  8853. width:191px;
  8854. height:23px;
  8855. background:inherit;
  8856. background-color:rgba(255, 255, 255, 1);
  8857. border:none;
  8858. border-radius:0px;
  8859. -moz-box-shadow:none;
  8860. -webkit-box-shadow:none;
  8861. box-shadow:none;
  8862. font-size:12px;
  8863. color:#AAAAAA;
  8864. }
  8865. #u79999 {
  8866. border-width:0px;
  8867. position:absolute;
  8868. left:1897px;
  8869. top:345px;
  8870. width:191px;
  8871. height:23px;
  8872. display:flex;
  8873. font-size:12px;
  8874. color:#AAAAAA;
  8875. }
  8876. #u79999 .text {
  8877. position:absolute;
  8878. align-self:flex-start;
  8879. padding:2px 2px 2px 2px;
  8880. box-sizing:border-box;
  8881. width:100%;
  8882. }
  8883. #u79999_div.disabled {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:0px;
  8887. top:0px;
  8888. width:191px;
  8889. height:23px;
  8890. background:inherit;
  8891. background-color:rgba(240, 240, 240, 1);
  8892. border:none;
  8893. border-radius:0px;
  8894. -moz-box-shadow:none;
  8895. -webkit-box-shadow:none;
  8896. box-shadow:none;
  8897. font-size:12px;
  8898. color:#AAAAAA;
  8899. }
  8900. #u79999.disabled {
  8901. }
  8902. .u79999_input_option {
  8903. font-size:12px;
  8904. }
  8905. #u80000 {
  8906. border-width:0px;
  8907. position:absolute;
  8908. left:0px;
  8909. top:0px;
  8910. width:0px;
  8911. height:0px;
  8912. }
  8913. #u80001_div {
  8914. border-width:0px;
  8915. position:absolute;
  8916. left:0px;
  8917. top:0px;
  8918. width:200px;
  8919. height:30px;
  8920. background:inherit;
  8921. background-color:rgba(255, 255, 255, 1);
  8922. box-sizing:border-box;
  8923. border-width:1px;
  8924. border-style:solid;
  8925. border-color:rgba(215, 215, 215, 1);
  8926. border-radius:4px;
  8927. -moz-box-shadow:none;
  8928. -webkit-box-shadow:none;
  8929. box-shadow:none;
  8930. font-size:12px;
  8931. }
  8932. #u80001 {
  8933. border-width:0px;
  8934. position:absolute;
  8935. left:1568px;
  8936. top:343px;
  8937. width:200px;
  8938. height:30px;
  8939. display:flex;
  8940. font-size:12px;
  8941. }
  8942. #u80001 .text {
  8943. position:absolute;
  8944. align-self:center;
  8945. padding:2px 2px 2px 2px;
  8946. box-sizing:border-box;
  8947. width:100%;
  8948. }
  8949. #u80001_text {
  8950. border-width:0px;
  8951. word-wrap:break-word;
  8952. text-transform:none;
  8953. visibility:hidden;
  8954. }
  8955. #u80002_input {
  8956. position:absolute;
  8957. left:0px;
  8958. top:0px;
  8959. width:191px;
  8960. height:23px;
  8961. padding:2px 2px 2px 2px;
  8962. font-family:'ArialMT', 'Arial', sans-serif;
  8963. font-weight:400;
  8964. font-style:normal;
  8965. font-size:12px;
  8966. letter-spacing:normal;
  8967. color:#AAAAAA;
  8968. vertical-align:none;
  8969. text-align:left;
  8970. text-transform:none;
  8971. background-color:transparent;
  8972. border-color:transparent;
  8973. }
  8974. #u80002_input.disabled {
  8975. position:absolute;
  8976. left:0px;
  8977. top:0px;
  8978. width:191px;
  8979. height:23px;
  8980. padding:2px 2px 2px 2px;
  8981. font-family:'ArialMT', 'Arial', sans-serif;
  8982. font-weight:400;
  8983. font-style:normal;
  8984. font-size:12px;
  8985. letter-spacing:normal;
  8986. color:#AAAAAA;
  8987. vertical-align:none;
  8988. text-align:left;
  8989. text-transform:none;
  8990. background-color:transparent;
  8991. border-color:transparent;
  8992. }
  8993. #u80002_div {
  8994. border-width:0px;
  8995. position:absolute;
  8996. left:0px;
  8997. top:0px;
  8998. width:191px;
  8999. height:23px;
  9000. background:inherit;
  9001. background-color:rgba(255, 255, 255, 1);
  9002. border:none;
  9003. border-radius:0px;
  9004. -moz-box-shadow:none;
  9005. -webkit-box-shadow:none;
  9006. box-shadow:none;
  9007. font-size:12px;
  9008. color:#AAAAAA;
  9009. }
  9010. #u80002 {
  9011. border-width:0px;
  9012. position:absolute;
  9013. left:1571px;
  9014. top:345px;
  9015. width:191px;
  9016. height:23px;
  9017. display:flex;
  9018. font-size:12px;
  9019. color:#AAAAAA;
  9020. }
  9021. #u80002 .text {
  9022. position:absolute;
  9023. align-self:flex-start;
  9024. padding:2px 2px 2px 2px;
  9025. box-sizing:border-box;
  9026. width:100%;
  9027. }
  9028. #u80002_div.disabled {
  9029. border-width:0px;
  9030. position:absolute;
  9031. left:0px;
  9032. top:0px;
  9033. width:191px;
  9034. height:23px;
  9035. background:inherit;
  9036. background-color:rgba(240, 240, 240, 1);
  9037. border:none;
  9038. border-radius:0px;
  9039. -moz-box-shadow:none;
  9040. -webkit-box-shadow:none;
  9041. box-shadow:none;
  9042. font-size:12px;
  9043. color:#AAAAAA;
  9044. }
  9045. #u80002.disabled {
  9046. }
  9047. .u80002_input_option {
  9048. font-size:12px;
  9049. }
  9050. #u80003_div {
  9051. border-width:0px;
  9052. position:absolute;
  9053. left:0px;
  9054. top:0px;
  9055. width:100px;
  9056. height:42px;
  9057. background:inherit;
  9058. background-color:rgba(255, 255, 255, 0);
  9059. border:none;
  9060. border-top:0px;
  9061. border-right:0px;
  9062. border-bottom:0px;
  9063. border-radius:0px;
  9064. border-top-left-radius:0px;
  9065. border-bottom-left-radius:0px;
  9066. -moz-box-shadow:none;
  9067. -webkit-box-shadow:none;
  9068. box-shadow:none;
  9069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9070. font-weight:400;
  9071. font-style:normal;
  9072. font-size:11px;
  9073. color:#7F7F7F;
  9074. }
  9075. #u80003 {
  9076. border-width:0px;
  9077. position:absolute;
  9078. left:1156px;
  9079. top:382px;
  9080. width:100px;
  9081. height:42px;
  9082. display:flex;
  9083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9084. font-weight:400;
  9085. font-style:normal;
  9086. font-size:11px;
  9087. color:#7F7F7F;
  9088. }
  9089. #u80003 .text {
  9090. position:absolute;
  9091. align-self:center;
  9092. padding:5px 10px 5px 0px;
  9093. box-sizing:border-box;
  9094. width:100%;
  9095. }
  9096. #u80003_text {
  9097. border-width:0px;
  9098. word-wrap:break-word;
  9099. text-transform:none;
  9100. }
  9101. #u80004_div {
  9102. border-width:0px;
  9103. position:absolute;
  9104. left:0px;
  9105. top:0px;
  9106. width:100px;
  9107. height:42px;
  9108. background:inherit;
  9109. background-color:rgba(255, 255, 255, 0);
  9110. border:none;
  9111. border-top:0px;
  9112. border-right:0px;
  9113. border-bottom:0px;
  9114. border-radius:0px;
  9115. border-top-left-radius:0px;
  9116. border-bottom-left-radius:0px;
  9117. -moz-box-shadow:none;
  9118. -webkit-box-shadow:none;
  9119. box-shadow:none;
  9120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9121. font-weight:400;
  9122. font-style:normal;
  9123. font-size:11px;
  9124. color:#7F7F7F;
  9125. }
  9126. #u80004 {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:1472px;
  9130. top:382px;
  9131. width:100px;
  9132. height:42px;
  9133. display:flex;
  9134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9135. font-weight:400;
  9136. font-style:normal;
  9137. font-size:11px;
  9138. color:#7F7F7F;
  9139. }
  9140. #u80004 .text {
  9141. position:absolute;
  9142. align-self:center;
  9143. padding:5px 10px 5px 0px;
  9144. box-sizing:border-box;
  9145. width:100%;
  9146. }
  9147. #u80004_text {
  9148. border-width:0px;
  9149. word-wrap:break-word;
  9150. text-transform:none;
  9151. }
  9152. #u80005_div {
  9153. border-width:0px;
  9154. position:absolute;
  9155. left:0px;
  9156. top:0px;
  9157. width:81px;
  9158. height:30px;
  9159. background:inherit;
  9160. background-color:rgba(255, 255, 255, 0);
  9161. border:none;
  9162. border-top:0px;
  9163. border-right:0px;
  9164. border-bottom:0px;
  9165. border-radius:0px;
  9166. border-top-left-radius:0px;
  9167. border-bottom-left-radius:0px;
  9168. -moz-box-shadow:none;
  9169. -webkit-box-shadow:none;
  9170. box-shadow:none;
  9171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9172. font-weight:400;
  9173. font-style:normal;
  9174. font-size:14px;
  9175. color:#7F7F7F;
  9176. }
  9177. #u80005 {
  9178. border-width:0px;
  9179. position:absolute;
  9180. left:1798px;
  9181. top:383px;
  9182. width:81px;
  9183. height:30px;
  9184. display:flex;
  9185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9186. font-weight:400;
  9187. font-style:normal;
  9188. font-size:14px;
  9189. color:#7F7F7F;
  9190. }
  9191. #u80005 .text {
  9192. position:absolute;
  9193. align-self:center;
  9194. padding:5px 10px 5px 0px;
  9195. box-sizing:border-box;
  9196. width:100%;
  9197. }
  9198. #u80005_text {
  9199. border-width:0px;
  9200. white-space:nowrap;
  9201. text-transform:none;
  9202. }
  9203. #u80006 {
  9204. border-width:0px;
  9205. position:absolute;
  9206. left:0px;
  9207. top:0px;
  9208. width:0px;
  9209. height:0px;
  9210. }
  9211. #u80007_div {
  9212. border-width:0px;
  9213. position:absolute;
  9214. left:0px;
  9215. top:0px;
  9216. width:200px;
  9217. height:30px;
  9218. background:inherit;
  9219. background-color:rgba(255, 255, 255, 1);
  9220. box-sizing:border-box;
  9221. border-width:1px;
  9222. border-style:solid;
  9223. border-color:rgba(215, 215, 215, 1);
  9224. border-radius:4px;
  9225. -moz-box-shadow:none;
  9226. -webkit-box-shadow:none;
  9227. box-shadow:none;
  9228. font-size:12px;
  9229. }
  9230. #u80007 {
  9231. border-width:0px;
  9232. position:absolute;
  9233. left:1894px;
  9234. top:383px;
  9235. width:200px;
  9236. height:30px;
  9237. display:flex;
  9238. font-size:12px;
  9239. }
  9240. #u80007 .text {
  9241. position:absolute;
  9242. align-self:center;
  9243. padding:2px 2px 2px 2px;
  9244. box-sizing:border-box;
  9245. width:100%;
  9246. }
  9247. #u80007_text {
  9248. border-width:0px;
  9249. word-wrap:break-word;
  9250. text-transform:none;
  9251. visibility:hidden;
  9252. }
  9253. #u80008_input {
  9254. position:absolute;
  9255. left:0px;
  9256. top:0px;
  9257. width:191px;
  9258. height:23px;
  9259. padding:2px 2px 2px 2px;
  9260. font-family:'ArialMT', 'Arial', sans-serif;
  9261. font-weight:400;
  9262. font-style:normal;
  9263. font-size:12px;
  9264. letter-spacing:normal;
  9265. color:#AAAAAA;
  9266. vertical-align:none;
  9267. text-align:left;
  9268. text-transform:none;
  9269. background-color:transparent;
  9270. border-color:transparent;
  9271. }
  9272. #u80008_input.disabled {
  9273. position:absolute;
  9274. left:0px;
  9275. top:0px;
  9276. width:191px;
  9277. height:23px;
  9278. padding:2px 2px 2px 2px;
  9279. font-family:'ArialMT', 'Arial', sans-serif;
  9280. font-weight:400;
  9281. font-style:normal;
  9282. font-size:12px;
  9283. letter-spacing:normal;
  9284. color:#AAAAAA;
  9285. vertical-align:none;
  9286. text-align:left;
  9287. text-transform:none;
  9288. background-color:transparent;
  9289. border-color:transparent;
  9290. }
  9291. #u80008_div {
  9292. border-width:0px;
  9293. position:absolute;
  9294. left:0px;
  9295. top:0px;
  9296. width:191px;
  9297. height:23px;
  9298. background:inherit;
  9299. background-color:rgba(255, 255, 255, 1);
  9300. border:none;
  9301. border-radius:0px;
  9302. -moz-box-shadow:none;
  9303. -webkit-box-shadow:none;
  9304. box-shadow:none;
  9305. font-size:12px;
  9306. color:#AAAAAA;
  9307. }
  9308. #u80008 {
  9309. border-width:0px;
  9310. position:absolute;
  9311. left:1897px;
  9312. top:385px;
  9313. width:191px;
  9314. height:23px;
  9315. display:flex;
  9316. font-size:12px;
  9317. color:#AAAAAA;
  9318. }
  9319. #u80008 .text {
  9320. position:absolute;
  9321. align-self:flex-start;
  9322. padding:2px 2px 2px 2px;
  9323. box-sizing:border-box;
  9324. width:100%;
  9325. }
  9326. #u80008_div.disabled {
  9327. border-width:0px;
  9328. position:absolute;
  9329. left:0px;
  9330. top:0px;
  9331. width:191px;
  9332. height:23px;
  9333. background:inherit;
  9334. background-color:rgba(240, 240, 240, 1);
  9335. border:none;
  9336. border-radius:0px;
  9337. -moz-box-shadow:none;
  9338. -webkit-box-shadow:none;
  9339. box-shadow:none;
  9340. font-size:12px;
  9341. color:#AAAAAA;
  9342. }
  9343. #u80008.disabled {
  9344. }
  9345. .u80008_input_option {
  9346. font-size:12px;
  9347. }
  9348. #u80009 {
  9349. border-width:0px;
  9350. position:absolute;
  9351. left:0px;
  9352. top:0px;
  9353. width:0px;
  9354. height:0px;
  9355. }
  9356. #u80010_div {
  9357. border-width:0px;
  9358. position:absolute;
  9359. left:0px;
  9360. top:0px;
  9361. width:200px;
  9362. height:30px;
  9363. background:inherit;
  9364. background-color:rgba(255, 255, 255, 1);
  9365. box-sizing:border-box;
  9366. border-width:1px;
  9367. border-style:solid;
  9368. border-color:rgba(215, 215, 215, 1);
  9369. border-radius:4px;
  9370. -moz-box-shadow:none;
  9371. -webkit-box-shadow:none;
  9372. box-shadow:none;
  9373. font-size:12px;
  9374. }
  9375. #u80010 {
  9376. border-width:0px;
  9377. position:absolute;
  9378. left:1568px;
  9379. top:383px;
  9380. width:200px;
  9381. height:30px;
  9382. display:flex;
  9383. font-size:12px;
  9384. }
  9385. #u80010 .text {
  9386. position:absolute;
  9387. align-self:center;
  9388. padding:2px 2px 2px 2px;
  9389. box-sizing:border-box;
  9390. width:100%;
  9391. }
  9392. #u80010_text {
  9393. border-width:0px;
  9394. word-wrap:break-word;
  9395. text-transform:none;
  9396. visibility:hidden;
  9397. }
  9398. #u80011_input {
  9399. position:absolute;
  9400. left:0px;
  9401. top:0px;
  9402. width:191px;
  9403. height:23px;
  9404. padding:2px 2px 2px 2px;
  9405. font-family:'ArialMT', 'Arial', sans-serif;
  9406. font-weight:400;
  9407. font-style:normal;
  9408. font-size:12px;
  9409. letter-spacing:normal;
  9410. color:#AAAAAA;
  9411. vertical-align:none;
  9412. text-align:left;
  9413. text-transform:none;
  9414. background-color:transparent;
  9415. border-color:transparent;
  9416. }
  9417. #u80011_input.disabled {
  9418. position:absolute;
  9419. left:0px;
  9420. top:0px;
  9421. width:191px;
  9422. height:23px;
  9423. padding:2px 2px 2px 2px;
  9424. font-family:'ArialMT', 'Arial', sans-serif;
  9425. font-weight:400;
  9426. font-style:normal;
  9427. font-size:12px;
  9428. letter-spacing:normal;
  9429. color:#AAAAAA;
  9430. vertical-align:none;
  9431. text-align:left;
  9432. text-transform:none;
  9433. background-color:transparent;
  9434. border-color:transparent;
  9435. }
  9436. #u80011_div {
  9437. border-width:0px;
  9438. position:absolute;
  9439. left:0px;
  9440. top:0px;
  9441. width:191px;
  9442. height:23px;
  9443. background:inherit;
  9444. background-color:rgba(255, 255, 255, 1);
  9445. border:none;
  9446. border-radius:0px;
  9447. -moz-box-shadow:none;
  9448. -webkit-box-shadow:none;
  9449. box-shadow:none;
  9450. font-size:12px;
  9451. color:#AAAAAA;
  9452. }
  9453. #u80011 {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:1571px;
  9457. top:385px;
  9458. width:191px;
  9459. height:23px;
  9460. display:flex;
  9461. font-size:12px;
  9462. color:#AAAAAA;
  9463. }
  9464. #u80011 .text {
  9465. position:absolute;
  9466. align-self:flex-start;
  9467. padding:2px 2px 2px 2px;
  9468. box-sizing:border-box;
  9469. width:100%;
  9470. }
  9471. #u80011_div.disabled {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:0px;
  9475. top:0px;
  9476. width:191px;
  9477. height:23px;
  9478. background:inherit;
  9479. background-color:rgba(240, 240, 240, 1);
  9480. border:none;
  9481. border-radius:0px;
  9482. -moz-box-shadow:none;
  9483. -webkit-box-shadow:none;
  9484. box-shadow:none;
  9485. font-size:12px;
  9486. color:#AAAAAA;
  9487. }
  9488. #u80011.disabled {
  9489. }
  9490. .u80011_input_option {
  9491. font-size:12px;
  9492. }
  9493. #u80012 {
  9494. border-width:0px;
  9495. position:absolute;
  9496. left:0px;
  9497. top:0px;
  9498. width:0px;
  9499. height:0px;
  9500. }
  9501. #u80013_div {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:0px;
  9505. top:0px;
  9506. width:200px;
  9507. height:30px;
  9508. background:inherit;
  9509. background-color:rgba(255, 255, 255, 1);
  9510. box-sizing:border-box;
  9511. border-width:1px;
  9512. border-style:solid;
  9513. border-color:rgba(215, 215, 215, 1);
  9514. border-radius:4px;
  9515. -moz-box-shadow:none;
  9516. -webkit-box-shadow:none;
  9517. box-shadow:none;
  9518. font-size:12px;
  9519. }
  9520. #u80013 {
  9521. border-width:0px;
  9522. position:absolute;
  9523. left:1252px;
  9524. top:383px;
  9525. width:200px;
  9526. height:30px;
  9527. display:flex;
  9528. font-size:12px;
  9529. }
  9530. #u80013 .text {
  9531. position:absolute;
  9532. align-self:center;
  9533. padding:2px 2px 2px 2px;
  9534. box-sizing:border-box;
  9535. width:100%;
  9536. }
  9537. #u80013_text {
  9538. border-width:0px;
  9539. word-wrap:break-word;
  9540. text-transform:none;
  9541. visibility:hidden;
  9542. }
  9543. #u80014_input {
  9544. position:absolute;
  9545. left:0px;
  9546. top:0px;
  9547. width:191px;
  9548. height:23px;
  9549. padding:2px 2px 2px 2px;
  9550. font-family:'ArialMT', 'Arial', sans-serif;
  9551. font-weight:400;
  9552. font-style:normal;
  9553. font-size:12px;
  9554. letter-spacing:normal;
  9555. color:#AAAAAA;
  9556. vertical-align:none;
  9557. text-align:left;
  9558. text-transform:none;
  9559. background-color:transparent;
  9560. border-color:transparent;
  9561. }
  9562. #u80014_input.disabled {
  9563. position:absolute;
  9564. left:0px;
  9565. top:0px;
  9566. width:191px;
  9567. height:23px;
  9568. padding:2px 2px 2px 2px;
  9569. font-family:'ArialMT', 'Arial', sans-serif;
  9570. font-weight:400;
  9571. font-style:normal;
  9572. font-size:12px;
  9573. letter-spacing:normal;
  9574. color:#AAAAAA;
  9575. vertical-align:none;
  9576. text-align:left;
  9577. text-transform:none;
  9578. background-color:transparent;
  9579. border-color:transparent;
  9580. }
  9581. #u80014_div {
  9582. border-width:0px;
  9583. position:absolute;
  9584. left:0px;
  9585. top:0px;
  9586. width:191px;
  9587. height:23px;
  9588. background:inherit;
  9589. background-color:rgba(255, 255, 255, 1);
  9590. border:none;
  9591. border-radius:0px;
  9592. -moz-box-shadow:none;
  9593. -webkit-box-shadow:none;
  9594. box-shadow:none;
  9595. font-size:12px;
  9596. color:#AAAAAA;
  9597. }
  9598. #u80014 {
  9599. border-width:0px;
  9600. position:absolute;
  9601. left:1255px;
  9602. top:385px;
  9603. width:191px;
  9604. height:23px;
  9605. display:flex;
  9606. font-size:12px;
  9607. color:#AAAAAA;
  9608. }
  9609. #u80014 .text {
  9610. position:absolute;
  9611. align-self:flex-start;
  9612. padding:2px 2px 2px 2px;
  9613. box-sizing:border-box;
  9614. width:100%;
  9615. }
  9616. #u80014_div.disabled {
  9617. border-width:0px;
  9618. position:absolute;
  9619. left:0px;
  9620. top:0px;
  9621. width:191px;
  9622. height:23px;
  9623. background:inherit;
  9624. background-color:rgba(240, 240, 240, 1);
  9625. border:none;
  9626. border-radius:0px;
  9627. -moz-box-shadow:none;
  9628. -webkit-box-shadow:none;
  9629. box-shadow:none;
  9630. font-size:12px;
  9631. color:#AAAAAA;
  9632. }
  9633. #u80014.disabled {
  9634. }
  9635. .u80014_input_option {
  9636. font-size:12px;
  9637. }
  9638. #u80015_div {
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:0px;
  9642. top:0px;
  9643. width:100px;
  9644. height:30px;
  9645. background:inherit;
  9646. background-color:rgba(255, 255, 255, 0);
  9647. border:none;
  9648. border-top:0px;
  9649. border-right:0px;
  9650. border-bottom:0px;
  9651. border-radius:0px;
  9652. border-top-left-radius:0px;
  9653. border-bottom-left-radius:0px;
  9654. -moz-box-shadow:none;
  9655. -webkit-box-shadow:none;
  9656. box-shadow:none;
  9657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9658. font-weight:400;
  9659. font-style:normal;
  9660. font-size:14px;
  9661. color:#7F7F7F;
  9662. }
  9663. #u80015 {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:1156px;
  9667. top:423px;
  9668. width:100px;
  9669. height:30px;
  9670. display:flex;
  9671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9672. font-weight:400;
  9673. font-style:normal;
  9674. font-size:14px;
  9675. color:#7F7F7F;
  9676. }
  9677. #u80015 .text {
  9678. position:absolute;
  9679. align-self:center;
  9680. padding:5px 10px 5px 0px;
  9681. box-sizing:border-box;
  9682. width:100%;
  9683. }
  9684. #u80015_text {
  9685. border-width:0px;
  9686. word-wrap:break-word;
  9687. text-transform:none;
  9688. }
  9689. #u80016 {
  9690. border-width:0px;
  9691. position:absolute;
  9692. left:0px;
  9693. top:0px;
  9694. width:0px;
  9695. height:0px;
  9696. }
  9697. #u80017_div {
  9698. border-width:0px;
  9699. position:absolute;
  9700. left:0px;
  9701. top:0px;
  9702. width:200px;
  9703. height:30px;
  9704. background:inherit;
  9705. background-color:rgba(255, 255, 255, 1);
  9706. box-sizing:border-box;
  9707. border-width:1px;
  9708. border-style:solid;
  9709. border-color:rgba(201, 201, 201, 1);
  9710. border-radius:4px;
  9711. -moz-box-shadow:none;
  9712. -webkit-box-shadow:none;
  9713. box-shadow:none;
  9714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9715. font-weight:400;
  9716. font-style:normal;
  9717. font-size:12px;
  9718. color:#CCCCCC;
  9719. text-align:right;
  9720. }
  9721. #u80017 {
  9722. border-width:0px;
  9723. position:absolute;
  9724. left:1252px;
  9725. top:423px;
  9726. width:200px;
  9727. height:30px;
  9728. display:flex;
  9729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9730. font-weight:400;
  9731. font-style:normal;
  9732. font-size:12px;
  9733. color:#CCCCCC;
  9734. text-align:right;
  9735. }
  9736. #u80017 .text {
  9737. position:absolute;
  9738. align-self:center;
  9739. padding:2px 8px 2px 8px;
  9740. box-sizing:border-box;
  9741. width:100%;
  9742. }
  9743. #u80017_text {
  9744. border-width:0px;
  9745. word-wrap:break-word;
  9746. text-transform:none;
  9747. visibility:hidden;
  9748. }
  9749. #u80018_input {
  9750. position:absolute;
  9751. left:0px;
  9752. top:0px;
  9753. width:180px;
  9754. height:26px;
  9755. padding:2px 2px 2px 2px;
  9756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9757. font-weight:400;
  9758. font-style:normal;
  9759. font-size:12px;
  9760. letter-spacing:normal;
  9761. color:#7F7F7F;
  9762. vertical-align:none;
  9763. text-align:left;
  9764. text-transform:none;
  9765. background-color:transparent;
  9766. border-color:transparent;
  9767. }
  9768. #u80018_input.disabled {
  9769. position:absolute;
  9770. left:0px;
  9771. top:0px;
  9772. width:180px;
  9773. height:26px;
  9774. padding:2px 2px 2px 2px;
  9775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9776. font-weight:400;
  9777. font-style:normal;
  9778. font-size:12px;
  9779. letter-spacing:normal;
  9780. color:#7F7F7F;
  9781. vertical-align:none;
  9782. text-align:left;
  9783. text-transform:none;
  9784. background-color:transparent;
  9785. border-color:transparent;
  9786. }
  9787. #u80018_div {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:0px;
  9791. top:0px;
  9792. width:180px;
  9793. height:26px;
  9794. background:inherit;
  9795. background-color:rgba(255, 255, 255, 1);
  9796. border:none;
  9797. border-radius:0px;
  9798. -moz-box-shadow:none;
  9799. -webkit-box-shadow:none;
  9800. box-shadow:none;
  9801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9802. font-weight:400;
  9803. font-style:normal;
  9804. font-size:12px;
  9805. color:#7F7F7F;
  9806. }
  9807. #u80018 {
  9808. border-width:0px;
  9809. position:absolute;
  9810. left:1258px;
  9811. top:424px;
  9812. width:180px;
  9813. height:26px;
  9814. display:flex;
  9815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9816. font-weight:400;
  9817. font-style:normal;
  9818. font-size:12px;
  9819. color:#7F7F7F;
  9820. }
  9821. #u80018 .text {
  9822. position:absolute;
  9823. align-self:center;
  9824. padding:2px 2px 2px 2px;
  9825. box-sizing:border-box;
  9826. width:100%;
  9827. }
  9828. #u80018_div.disabled {
  9829. border-width:0px;
  9830. position:absolute;
  9831. left:0px;
  9832. top:0px;
  9833. width:180px;
  9834. height:26px;
  9835. background:inherit;
  9836. background-color:rgba(240, 240, 240, 1);
  9837. border:none;
  9838. border-radius:0px;
  9839. -moz-box-shadow:none;
  9840. -webkit-box-shadow:none;
  9841. box-shadow:none;
  9842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9843. font-weight:400;
  9844. font-style:normal;
  9845. font-size:12px;
  9846. color:#7F7F7F;
  9847. }
  9848. #u80018.disabled {
  9849. }
  9850. #u80019 label {
  9851. left:0px;
  9852. width:100%;
  9853. }
  9854. #u80019_img {
  9855. border-width:0px;
  9856. position:absolute;
  9857. left:0px;
  9858. top:3px;
  9859. width:12px;
  9860. height:12px;
  9861. }
  9862. #u80019 {
  9863. border-width:0px;
  9864. position:absolute;
  9865. left:1163px;
  9866. top:714px;
  9867. width:100px;
  9868. height:18px;
  9869. display:flex;
  9870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9871. font-weight:400;
  9872. font-style:normal;
  9873. }
  9874. #u80019 .text {
  9875. position:absolute;
  9876. align-self:center;
  9877. padding:0px 2px 0px 2px;
  9878. box-sizing:border-box;
  9879. }
  9880. #u80019_img.selected {
  9881. }
  9882. #u80019.selected {
  9883. }
  9884. #u80019_img.disabled {
  9885. }
  9886. #u80019.disabled {
  9887. }
  9888. #u80019_img.selectedDisabled {
  9889. }
  9890. #u80019.selectedDisabled {
  9891. }
  9892. #u80019_text {
  9893. border-width:0px;
  9894. position:absolute;
  9895. left:14px;
  9896. top:0px;
  9897. width:84px;
  9898. word-wrap:break-word;
  9899. text-transform:none;
  9900. }
  9901. #u80019_input {
  9902. border-width:0px;
  9903. position:absolute;
  9904. left:0px;
  9905. top:0px;
  9906. width:0px;
  9907. height:0px;
  9908. opacity:0;
  9909. }
  9910. #u80020 label {
  9911. left:0px;
  9912. width:100%;
  9913. }
  9914. #u80020_img {
  9915. border-width:0px;
  9916. position:absolute;
  9917. left:0px;
  9918. top:3px;
  9919. width:12px;
  9920. height:12px;
  9921. }
  9922. #u80020 {
  9923. border-width:0px;
  9924. position:absolute;
  9925. left:1272px;
  9926. top:714px;
  9927. width:100px;
  9928. height:18px;
  9929. display:flex;
  9930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9931. font-weight:400;
  9932. font-style:normal;
  9933. }
  9934. #u80020 .text {
  9935. position:absolute;
  9936. align-self:center;
  9937. padding:0px 2px 0px 2px;
  9938. box-sizing:border-box;
  9939. }
  9940. #u80020_img.selected {
  9941. }
  9942. #u80020.selected {
  9943. }
  9944. #u80020_img.disabled {
  9945. }
  9946. #u80020.disabled {
  9947. }
  9948. #u80020_img.selectedDisabled {
  9949. }
  9950. #u80020.selectedDisabled {
  9951. }
  9952. #u80020_text {
  9953. border-width:0px;
  9954. position:absolute;
  9955. left:14px;
  9956. top:0px;
  9957. width:84px;
  9958. word-wrap:break-word;
  9959. text-transform:none;
  9960. }
  9961. #u80020_input {
  9962. border-width:0px;
  9963. position:absolute;
  9964. left:0px;
  9965. top:0px;
  9966. width:0px;
  9967. height:0px;
  9968. opacity:0;
  9969. }
  9970. #u80021 label {
  9971. left:0px;
  9972. width:100%;
  9973. }
  9974. #u80021_img {
  9975. border-width:0px;
  9976. position:absolute;
  9977. left:0px;
  9978. top:3px;
  9979. width:12px;
  9980. height:12px;
  9981. }
  9982. #u80021 {
  9983. border-width:0px;
  9984. position:absolute;
  9985. left:1412px;
  9986. top:714px;
  9987. width:100px;
  9988. height:18px;
  9989. display:flex;
  9990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9991. font-weight:400;
  9992. font-style:normal;
  9993. }
  9994. #u80021 .text {
  9995. position:absolute;
  9996. align-self:center;
  9997. padding:0px 2px 0px 2px;
  9998. box-sizing:border-box;
  9999. }
  10000. #u80021_img.selected {
  10001. }
  10002. #u80021.selected {
  10003. }
  10004. #u80021_img.disabled {
  10005. }
  10006. #u80021.disabled {
  10007. }
  10008. #u80021_img.selectedDisabled {
  10009. }
  10010. #u80021.selectedDisabled {
  10011. }
  10012. #u80021_text {
  10013. border-width:0px;
  10014. position:absolute;
  10015. left:14px;
  10016. top:0px;
  10017. width:84px;
  10018. word-wrap:break-word;
  10019. text-transform:none;
  10020. }
  10021. #u80021_input {
  10022. border-width:0px;
  10023. position:absolute;
  10024. left:0px;
  10025. top:0px;
  10026. width:0px;
  10027. height:0px;
  10028. opacity:0;
  10029. }
  10030. #u80022_div {
  10031. border-width:0px;
  10032. position:absolute;
  10033. left:0px;
  10034. top:0px;
  10035. width:67px;
  10036. height:30px;
  10037. background:inherit;
  10038. background-color:rgba(255, 255, 255, 0);
  10039. border:none;
  10040. border-top:0px;
  10041. border-right:0px;
  10042. border-bottom:0px;
  10043. border-radius:0px;
  10044. border-top-left-radius:0px;
  10045. border-bottom-left-radius:0px;
  10046. -moz-box-shadow:none;
  10047. -webkit-box-shadow:none;
  10048. box-shadow:none;
  10049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10050. font-weight:400;
  10051. font-style:normal;
  10052. font-size:14px;
  10053. color:#7F7F7F;
  10054. }
  10055. #u80022 {
  10056. border-width:0px;
  10057. position:absolute;
  10058. left:1166px;
  10059. top:758px;
  10060. width:67px;
  10061. height:30px;
  10062. display:flex;
  10063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10064. font-weight:400;
  10065. font-style:normal;
  10066. font-size:14px;
  10067. color:#7F7F7F;
  10068. }
  10069. #u80022 .text {
  10070. position:absolute;
  10071. align-self:center;
  10072. padding:5px 10px 5px 0px;
  10073. box-sizing:border-box;
  10074. width:100%;
  10075. }
  10076. #u80022_text {
  10077. border-width:0px;
  10078. white-space:nowrap;
  10079. text-transform:none;
  10080. }
  10081. #u80023 {
  10082. border-width:0px;
  10083. position:absolute;
  10084. left:0px;
  10085. top:0px;
  10086. width:0px;
  10087. height:0px;
  10088. }
  10089. #u80024_div {
  10090. border-width:0px;
  10091. position:absolute;
  10092. left:0px;
  10093. top:0px;
  10094. width:89px;
  10095. height:30px;
  10096. background:inherit;
  10097. background-color:rgba(255, 255, 255, 1);
  10098. box-sizing:border-box;
  10099. border-width:1px;
  10100. border-style:solid;
  10101. border-color:rgba(201, 201, 201, 1);
  10102. border-radius:4px;
  10103. -moz-box-shadow:none;
  10104. -webkit-box-shadow:none;
  10105. box-shadow:none;
  10106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10107. font-weight:400;
  10108. font-style:normal;
  10109. font-size:12px;
  10110. color:#CCCCCC;
  10111. text-align:right;
  10112. }
  10113. #u80024 {
  10114. border-width:0px;
  10115. position:absolute;
  10116. left:1233px;
  10117. top:758px;
  10118. width:89px;
  10119. height:30px;
  10120. display:flex;
  10121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10122. font-weight:400;
  10123. font-style:normal;
  10124. font-size:12px;
  10125. color:#CCCCCC;
  10126. text-align:right;
  10127. }
  10128. #u80024 .text {
  10129. position:absolute;
  10130. align-self:center;
  10131. padding:2px 8px 2px 8px;
  10132. box-sizing:border-box;
  10133. width:100%;
  10134. }
  10135. #u80024_text {
  10136. border-width:0px;
  10137. word-wrap:break-word;
  10138. text-transform:none;
  10139. visibility:hidden;
  10140. }
  10141. #u80025_input {
  10142. position:absolute;
  10143. left:0px;
  10144. top:0px;
  10145. width:80px;
  10146. height:26px;
  10147. padding:2px 2px 2px 2px;
  10148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10149. font-weight:400;
  10150. font-style:normal;
  10151. font-size:12px;
  10152. letter-spacing:normal;
  10153. color:#7F7F7F;
  10154. vertical-align:none;
  10155. text-align:left;
  10156. text-transform:none;
  10157. background-color:transparent;
  10158. border-color:transparent;
  10159. }
  10160. #u80025_input.disabled {
  10161. position:absolute;
  10162. left:0px;
  10163. top:0px;
  10164. width:80px;
  10165. height:26px;
  10166. padding:2px 2px 2px 2px;
  10167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10168. font-weight:400;
  10169. font-style:normal;
  10170. font-size:12px;
  10171. letter-spacing:normal;
  10172. color:#7F7F7F;
  10173. vertical-align:none;
  10174. text-align:left;
  10175. text-transform:none;
  10176. background-color:transparent;
  10177. border-color:transparent;
  10178. }
  10179. #u80025_div {
  10180. border-width:0px;
  10181. position:absolute;
  10182. left:0px;
  10183. top:0px;
  10184. width:80px;
  10185. height:26px;
  10186. background:inherit;
  10187. background-color:rgba(255, 255, 255, 1);
  10188. border:none;
  10189. border-radius:0px;
  10190. -moz-box-shadow:none;
  10191. -webkit-box-shadow:none;
  10192. box-shadow:none;
  10193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10194. font-weight:400;
  10195. font-style:normal;
  10196. font-size:12px;
  10197. color:#7F7F7F;
  10198. }
  10199. #u80025 {
  10200. border-width:0px;
  10201. position:absolute;
  10202. left:1236px;
  10203. top:759px;
  10204. width:80px;
  10205. height:26px;
  10206. display:flex;
  10207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10208. font-weight:400;
  10209. font-style:normal;
  10210. font-size:12px;
  10211. color:#7F7F7F;
  10212. }
  10213. #u80025 .text {
  10214. position:absolute;
  10215. align-self:center;
  10216. padding:2px 2px 2px 2px;
  10217. box-sizing:border-box;
  10218. width:100%;
  10219. }
  10220. #u80025_div.disabled {
  10221. border-width:0px;
  10222. position:absolute;
  10223. left:0px;
  10224. top:0px;
  10225. width:80px;
  10226. height:26px;
  10227. background:inherit;
  10228. background-color:rgba(240, 240, 240, 1);
  10229. border:none;
  10230. border-radius:0px;
  10231. -moz-box-shadow:none;
  10232. -webkit-box-shadow:none;
  10233. box-shadow:none;
  10234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10235. font-weight:400;
  10236. font-style:normal;
  10237. font-size:12px;
  10238. color:#7F7F7F;
  10239. }
  10240. #u80025.disabled {
  10241. }
  10242. #u80026_div {
  10243. border-width:0px;
  10244. position:absolute;
  10245. left:0px;
  10246. top:0px;
  10247. width:137px;
  10248. height:30px;
  10249. background:inherit;
  10250. background-color:rgba(255, 255, 255, 0);
  10251. border:none;
  10252. border-top:0px;
  10253. border-right:0px;
  10254. border-bottom:0px;
  10255. border-radius:0px;
  10256. border-top-left-radius:0px;
  10257. border-bottom-left-radius:0px;
  10258. -moz-box-shadow:none;
  10259. -webkit-box-shadow:none;
  10260. box-shadow:none;
  10261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10262. font-weight:400;
  10263. font-style:normal;
  10264. font-size:14px;
  10265. color:#7F7F7F;
  10266. }
  10267. #u80026 {
  10268. border-width:0px;
  10269. position:absolute;
  10270. left:1335px;
  10271. top:758px;
  10272. width:137px;
  10273. height:30px;
  10274. display:flex;
  10275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10276. font-weight:400;
  10277. font-style:normal;
  10278. font-size:14px;
  10279. color:#7F7F7F;
  10280. }
  10281. #u80026 .text {
  10282. position:absolute;
  10283. align-self:center;
  10284. padding:5px 10px 5px 0px;
  10285. box-sizing:border-box;
  10286. width:100%;
  10287. }
  10288. #u80026_text {
  10289. border-width:0px;
  10290. white-space:nowrap;
  10291. text-transform:none;
  10292. }
  10293. #u80027 {
  10294. border-width:0px;
  10295. position:absolute;
  10296. left:0px;
  10297. top:0px;
  10298. width:0px;
  10299. height:0px;
  10300. }
  10301. #u80028_div {
  10302. border-width:0px;
  10303. position:absolute;
  10304. left:0px;
  10305. top:0px;
  10306. width:89px;
  10307. height:30px;
  10308. background:inherit;
  10309. background-color:rgba(255, 255, 255, 1);
  10310. box-sizing:border-box;
  10311. border-width:1px;
  10312. border-style:solid;
  10313. border-color:rgba(201, 201, 201, 1);
  10314. border-radius:4px;
  10315. -moz-box-shadow:none;
  10316. -webkit-box-shadow:none;
  10317. box-shadow:none;
  10318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10319. font-weight:400;
  10320. font-style:normal;
  10321. font-size:12px;
  10322. color:#CCCCCC;
  10323. text-align:right;
  10324. }
  10325. #u80028 {
  10326. border-width:0px;
  10327. position:absolute;
  10328. left:1472px;
  10329. top:758px;
  10330. width:89px;
  10331. height:30px;
  10332. display:flex;
  10333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10334. font-weight:400;
  10335. font-style:normal;
  10336. font-size:12px;
  10337. color:#CCCCCC;
  10338. text-align:right;
  10339. }
  10340. #u80028 .text {
  10341. position:absolute;
  10342. align-self:center;
  10343. padding:2px 8px 2px 8px;
  10344. box-sizing:border-box;
  10345. width:100%;
  10346. }
  10347. #u80028_text {
  10348. border-width:0px;
  10349. word-wrap:break-word;
  10350. text-transform:none;
  10351. visibility:hidden;
  10352. }
  10353. #u80029_input {
  10354. position:absolute;
  10355. left:0px;
  10356. top:0px;
  10357. width:80px;
  10358. height:26px;
  10359. padding:2px 2px 2px 2px;
  10360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10361. font-weight:400;
  10362. font-style:normal;
  10363. font-size:12px;
  10364. letter-spacing:normal;
  10365. color:#7F7F7F;
  10366. vertical-align:none;
  10367. text-align:left;
  10368. text-transform:none;
  10369. background-color:transparent;
  10370. border-color:transparent;
  10371. }
  10372. #u80029_input.disabled {
  10373. position:absolute;
  10374. left:0px;
  10375. top:0px;
  10376. width:80px;
  10377. height:26px;
  10378. padding:2px 2px 2px 2px;
  10379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10380. font-weight:400;
  10381. font-style:normal;
  10382. font-size:12px;
  10383. letter-spacing:normal;
  10384. color:#7F7F7F;
  10385. vertical-align:none;
  10386. text-align:left;
  10387. text-transform:none;
  10388. background-color:transparent;
  10389. border-color:transparent;
  10390. }
  10391. #u80029_div {
  10392. border-width:0px;
  10393. position:absolute;
  10394. left:0px;
  10395. top:0px;
  10396. width:80px;
  10397. height:26px;
  10398. background:inherit;
  10399. background-color:rgba(255, 255, 255, 1);
  10400. border:none;
  10401. border-radius:0px;
  10402. -moz-box-shadow:none;
  10403. -webkit-box-shadow:none;
  10404. box-shadow:none;
  10405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10406. font-weight:400;
  10407. font-style:normal;
  10408. font-size:12px;
  10409. color:#7F7F7F;
  10410. }
  10411. #u80029 {
  10412. border-width:0px;
  10413. position:absolute;
  10414. left:1475px;
  10415. top:759px;
  10416. width:80px;
  10417. height:26px;
  10418. display:flex;
  10419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10420. font-weight:400;
  10421. font-style:normal;
  10422. font-size:12px;
  10423. color:#7F7F7F;
  10424. }
  10425. #u80029 .text {
  10426. position:absolute;
  10427. align-self:center;
  10428. padding:2px 2px 2px 2px;
  10429. box-sizing:border-box;
  10430. width:100%;
  10431. }
  10432. #u80029_div.disabled {
  10433. border-width:0px;
  10434. position:absolute;
  10435. left:0px;
  10436. top:0px;
  10437. width:80px;
  10438. height:26px;
  10439. background:inherit;
  10440. background-color:rgba(240, 240, 240, 1);
  10441. border:none;
  10442. border-radius:0px;
  10443. -moz-box-shadow:none;
  10444. -webkit-box-shadow:none;
  10445. box-shadow:none;
  10446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10447. font-weight:400;
  10448. font-style:normal;
  10449. font-size:12px;
  10450. color:#7F7F7F;
  10451. }
  10452. #u80029.disabled {
  10453. }
  10454. #u80030_div {
  10455. border-width:0px;
  10456. position:absolute;
  10457. left:0px;
  10458. top:0px;
  10459. width:109px;
  10460. height:30px;
  10461. background:inherit;
  10462. background-color:rgba(255, 255, 255, 0);
  10463. border:none;
  10464. border-top:0px;
  10465. border-right:0px;
  10466. border-bottom:0px;
  10467. border-radius:0px;
  10468. border-top-left-radius:0px;
  10469. border-bottom-left-radius:0px;
  10470. -moz-box-shadow:none;
  10471. -webkit-box-shadow:none;
  10472. box-shadow:none;
  10473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10474. font-weight:400;
  10475. font-style:normal;
  10476. font-size:14px;
  10477. color:#7F7F7F;
  10478. }
  10479. #u80030 {
  10480. border-width:0px;
  10481. position:absolute;
  10482. left:1571px;
  10483. top:758px;
  10484. width:109px;
  10485. height:30px;
  10486. display:flex;
  10487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10488. font-weight:400;
  10489. font-style:normal;
  10490. font-size:14px;
  10491. color:#7F7F7F;
  10492. }
  10493. #u80030 .text {
  10494. position:absolute;
  10495. align-self:center;
  10496. padding:5px 10px 5px 0px;
  10497. box-sizing:border-box;
  10498. width:100%;
  10499. }
  10500. #u80030_text {
  10501. border-width:0px;
  10502. white-space:nowrap;
  10503. text-transform:none;
  10504. }
  10505. #u80031_div {
  10506. border-width:0px;
  10507. position:absolute;
  10508. left:0px;
  10509. top:0px;
  10510. width:83px;
  10511. height:35px;
  10512. background:inherit;
  10513. background-color:rgba(255, 255, 255, 0);
  10514. border:none;
  10515. border-top:0px;
  10516. border-right:0px;
  10517. border-bottom:0px;
  10518. border-radius:0px;
  10519. border-top-left-radius:0px;
  10520. border-bottom-left-radius:0px;
  10521. -moz-box-shadow:none;
  10522. -webkit-box-shadow:none;
  10523. box-shadow:none;
  10524. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10525. font-weight:500;
  10526. font-style:normal;
  10527. font-size:18px;
  10528. }
  10529. #u80031 {
  10530. border-width:0px;
  10531. position:absolute;
  10532. left:1156px;
  10533. top:543px;
  10534. width:83px;
  10535. height:35px;
  10536. display:flex;
  10537. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10538. font-weight:500;
  10539. font-style:normal;
  10540. font-size:18px;
  10541. }
  10542. #u80031 .text {
  10543. position:absolute;
  10544. align-self:center;
  10545. padding:5px 10px 5px 0px;
  10546. box-sizing:border-box;
  10547. width:100%;
  10548. }
  10549. #u80031_text {
  10550. border-width:0px;
  10551. white-space:nowrap;
  10552. text-transform:none;
  10553. }
  10554. #u80032_div {
  10555. border-width:0px;
  10556. position:absolute;
  10557. left:0px;
  10558. top:0px;
  10559. width:100px;
  10560. height:30px;
  10561. background:inherit;
  10562. background-color:rgba(255, 255, 255, 0);
  10563. border:none;
  10564. border-top:0px;
  10565. border-right:0px;
  10566. border-bottom:0px;
  10567. border-radius:0px;
  10568. border-top-left-radius:0px;
  10569. border-bottom-left-radius:0px;
  10570. -moz-box-shadow:none;
  10571. -webkit-box-shadow:none;
  10572. box-shadow:none;
  10573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10574. font-weight:400;
  10575. font-style:normal;
  10576. font-size:14px;
  10577. color:#7F7F7F;
  10578. }
  10579. #u80032 {
  10580. border-width:0px;
  10581. position:absolute;
  10582. left:1156px;
  10583. top:598px;
  10584. width:100px;
  10585. height:30px;
  10586. display:flex;
  10587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10588. font-weight:400;
  10589. font-style:normal;
  10590. font-size:14px;
  10591. color:#7F7F7F;
  10592. }
  10593. #u80032 .text {
  10594. position:absolute;
  10595. align-self:center;
  10596. padding:5px 10px 5px 0px;
  10597. box-sizing:border-box;
  10598. width:100%;
  10599. }
  10600. #u80032_text {
  10601. border-width:0px;
  10602. word-wrap:break-word;
  10603. text-transform:none;
  10604. }
  10605. #u80033 {
  10606. border-width:0px;
  10607. position:absolute;
  10608. left:0px;
  10609. top:0px;
  10610. width:0px;
  10611. height:0px;
  10612. }
  10613. #u80034_div {
  10614. border-width:0px;
  10615. position:absolute;
  10616. left:0px;
  10617. top:0px;
  10618. width:200px;
  10619. height:30px;
  10620. background:inherit;
  10621. background-color:rgba(255, 255, 255, 1);
  10622. box-sizing:border-box;
  10623. border-width:1px;
  10624. border-style:solid;
  10625. border-color:rgba(201, 201, 201, 1);
  10626. border-radius:4px;
  10627. -moz-box-shadow:none;
  10628. -webkit-box-shadow:none;
  10629. box-shadow:none;
  10630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10631. font-weight:400;
  10632. font-style:normal;
  10633. font-size:12px;
  10634. color:#CCCCCC;
  10635. text-align:right;
  10636. }
  10637. #u80034 {
  10638. border-width:0px;
  10639. position:absolute;
  10640. left:1252px;
  10641. top:598px;
  10642. width:200px;
  10643. height:30px;
  10644. display:flex;
  10645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10646. font-weight:400;
  10647. font-style:normal;
  10648. font-size:12px;
  10649. color:#CCCCCC;
  10650. text-align:right;
  10651. }
  10652. #u80034 .text {
  10653. position:absolute;
  10654. align-self:center;
  10655. padding:2px 8px 2px 8px;
  10656. box-sizing:border-box;
  10657. width:100%;
  10658. }
  10659. #u80034_text {
  10660. border-width:0px;
  10661. word-wrap:break-word;
  10662. text-transform:none;
  10663. visibility:hidden;
  10664. }
  10665. #u80035_input {
  10666. position:absolute;
  10667. left:0px;
  10668. top:0px;
  10669. width:180px;
  10670. height:26px;
  10671. padding:2px 2px 2px 2px;
  10672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10673. font-weight:400;
  10674. font-style:normal;
  10675. font-size:12px;
  10676. letter-spacing:normal;
  10677. color:#7F7F7F;
  10678. vertical-align:none;
  10679. text-align:left;
  10680. text-transform:none;
  10681. background-color:transparent;
  10682. border-color:transparent;
  10683. }
  10684. #u80035_input.disabled {
  10685. position:absolute;
  10686. left:0px;
  10687. top:0px;
  10688. width:180px;
  10689. height:26px;
  10690. padding:2px 2px 2px 2px;
  10691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10692. font-weight:400;
  10693. font-style:normal;
  10694. font-size:12px;
  10695. letter-spacing:normal;
  10696. color:#7F7F7F;
  10697. vertical-align:none;
  10698. text-align:left;
  10699. text-transform:none;
  10700. background-color:transparent;
  10701. border-color:transparent;
  10702. }
  10703. #u80035_div {
  10704. border-width:0px;
  10705. position:absolute;
  10706. left:0px;
  10707. top:0px;
  10708. width:180px;
  10709. height:26px;
  10710. background:inherit;
  10711. background-color:rgba(255, 255, 255, 1);
  10712. border:none;
  10713. border-radius:0px;
  10714. -moz-box-shadow:none;
  10715. -webkit-box-shadow:none;
  10716. box-shadow:none;
  10717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10718. font-weight:400;
  10719. font-style:normal;
  10720. font-size:12px;
  10721. color:#7F7F7F;
  10722. }
  10723. #u80035 {
  10724. border-width:0px;
  10725. position:absolute;
  10726. left:1258px;
  10727. top:599px;
  10728. width:180px;
  10729. height:26px;
  10730. display:flex;
  10731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10732. font-weight:400;
  10733. font-style:normal;
  10734. font-size:12px;
  10735. color:#7F7F7F;
  10736. }
  10737. #u80035 .text {
  10738. position:absolute;
  10739. align-self:center;
  10740. padding:2px 2px 2px 2px;
  10741. box-sizing:border-box;
  10742. width:100%;
  10743. }
  10744. #u80035_div.disabled {
  10745. border-width:0px;
  10746. position:absolute;
  10747. left:0px;
  10748. top:0px;
  10749. width:180px;
  10750. height:26px;
  10751. background:inherit;
  10752. background-color:rgba(240, 240, 240, 1);
  10753. border:none;
  10754. border-radius:0px;
  10755. -moz-box-shadow:none;
  10756. -webkit-box-shadow:none;
  10757. box-shadow:none;
  10758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10759. font-weight:400;
  10760. font-style:normal;
  10761. font-size:12px;
  10762. color:#7F7F7F;
  10763. }
  10764. #u80035.disabled {
  10765. }