styles.css 218 KB

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