styles.css 253 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630
  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. #u21945 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u21946_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. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u21946 {
  52. border-width:0px;
  53. position:absolute;
  54. left:49px;
  55. top:48px;
  56. width:1000px;
  57. height:1200px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u21946 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u21946_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u21947_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:1000px;
  88. height:370px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 1);
  91. box-sizing:border-box;
  92. border-width:1px;
  93. border-style:solid;
  94. border-color:rgba(215, 215, 215, 1);
  95. border-radius:0px;
  96. filter:drop-shadow(none);
  97. transition: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. #u21947 {
  107. border-width:0px;
  108. position:absolute;
  109. left:49px;
  110. top:48px;
  111. width:1000px;
  112. height:370px;
  113. display:flex;
  114. transition:none;
  115. transform-origin:50% 50%;
  116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  117. font-weight:400;
  118. font-style:normal;
  119. font-size:14px;
  120. color:#AAAAAA;
  121. text-align:center;
  122. line-height:30px;
  123. }
  124. #u21947 .text {
  125. position:absolute;
  126. align-self:center;
  127. padding:5px 10px 5px 10px;
  128. box-sizing:border-box;
  129. width:100%;
  130. }
  131. #u21947_text {
  132. border-width:0px;
  133. word-wrap:break-word;
  134. text-transform:none;
  135. visibility:hidden;
  136. }
  137. #u21948_div {
  138. border-width:0px;
  139. position:absolute;
  140. left:0px;
  141. top:0px;
  142. width:1000px;
  143. height:820px;
  144. background:inherit;
  145. background-color:rgba(255, 255, 255, 1);
  146. box-sizing:border-box;
  147. border-width:1px;
  148. border-style:solid;
  149. border-color:rgba(215, 215, 215, 1);
  150. border-radius:0px;
  151. filter:drop-shadow(none);
  152. transition:none;
  153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  154. font-weight:400;
  155. font-style:normal;
  156. font-size:14px;
  157. color:#AAAAAA;
  158. text-align:center;
  159. line-height:30px;
  160. }
  161. #u21948 {
  162. border-width:0px;
  163. position:absolute;
  164. left:49px;
  165. top:428px;
  166. width:1000px;
  167. height:820px;
  168. display:flex;
  169. transition:none;
  170. transform-origin:50% 50%;
  171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  172. font-weight:400;
  173. font-style:normal;
  174. font-size:14px;
  175. color:#AAAAAA;
  176. text-align:center;
  177. line-height:30px;
  178. }
  179. #u21948 .text {
  180. position:absolute;
  181. align-self:center;
  182. padding:5px 10px 5px 10px;
  183. box-sizing:border-box;
  184. width:100%;
  185. }
  186. #u21948_text {
  187. border-width:0px;
  188. word-wrap:break-word;
  189. text-transform:none;
  190. visibility:hidden;
  191. }
  192. #u21949_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:119px;
  198. height:35px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 0);
  201. border-top:0px;
  202. border-right:0px;
  203. border-bottom:0px;
  204. border-radius:0px;
  205. border-top-left-radius:0px;
  206. border-bottom-left-radius:0px;
  207. filter:drop-shadow(none);
  208. transition:none;
  209. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  210. font-weight:500;
  211. font-style:normal;
  212. font-size:18px;
  213. }
  214. #u21949 {
  215. border-width:0px;
  216. position:absolute;
  217. left:69px;
  218. top:66px;
  219. width:119px;
  220. height:35px;
  221. display:flex;
  222. transition:none;
  223. transform-origin:50% 50%;
  224. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  225. font-weight:500;
  226. font-style:normal;
  227. font-size:18px;
  228. }
  229. #u21949 .text {
  230. position:absolute;
  231. align-self:center;
  232. padding:5px 10px 5px 0px;
  233. box-sizing:border-box;
  234. width:100%;
  235. }
  236. #u21949_text {
  237. border-width:0px;
  238. white-space:nowrap;
  239. text-transform:none;
  240. }
  241. #u21950 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:0px;
  246. width:0px;
  247. height:0px;
  248. }
  249. #u21951_div {
  250. border-width:0px;
  251. position:absolute;
  252. left:0px;
  253. top:0px;
  254. width:40px;
  255. height:40px;
  256. background:inherit;
  257. background-color:rgba(255, 255, 255, 0);
  258. border-top:0px;
  259. border-right:0px;
  260. border-bottom:0px;
  261. border-radius:0px;
  262. border-top-left-radius:0px;
  263. border-bottom-left-radius:0px;
  264. filter:drop-shadow(none);
  265. transition:none;
  266. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  267. font-weight:500;
  268. font-style:normal;
  269. font-size:14px;
  270. text-align:center;
  271. }
  272. #u21951 {
  273. border-width:0px;
  274. position:absolute;
  275. left:1009px;
  276. top:48px;
  277. width:40px;
  278. height:40px;
  279. display:flex;
  280. transition:none;
  281. transform-origin:50% 50%;
  282. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  283. font-weight:500;
  284. font-style:normal;
  285. font-size:14px;
  286. text-align:center;
  287. }
  288. #u21951 .text {
  289. position:absolute;
  290. align-self:center;
  291. padding:5px 10px 5px 0px;
  292. box-sizing:border-box;
  293. width:100%;
  294. }
  295. #u21951_text {
  296. border-width:0px;
  297. word-wrap:break-word;
  298. text-transform:none;
  299. }
  300. #u21952 {
  301. border-width:0px;
  302. position:absolute;
  303. left:997px;
  304. top:64px;
  305. width:13px;
  306. height:13px;
  307. display:flex;
  308. transition:none;
  309. font-size:14px;
  310. }
  311. #u21952 .text {
  312. position:absolute;
  313. align-self:center;
  314. padding:2px 2px 2px 2px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u21952_img {
  319. border-width:0px;
  320. position:absolute;
  321. left:0px;
  322. top:0px;
  323. width:13px;
  324. height:13px;
  325. }
  326. #u21952_text {
  327. border-width:0px;
  328. word-wrap:break-word;
  329. text-transform:none;
  330. visibility:hidden;
  331. }
  332. #u21953 {
  333. border-width:0px;
  334. position:absolute;
  335. left:0px;
  336. top:0px;
  337. width:0px;
  338. height:0px;
  339. }
  340. #u21954_div {
  341. border-width:0px;
  342. position:absolute;
  343. left:0px;
  344. top:0px;
  345. width:1000px;
  346. height:60px;
  347. background:inherit;
  348. background-color:rgba(255, 255, 255, 1);
  349. box-sizing:border-box;
  350. border-width:1px;
  351. border-style:solid;
  352. border-color:rgba(215, 215, 215, 1);
  353. border-radius:0px;
  354. filter:drop-shadow(none);
  355. transition:none;
  356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  357. font-weight:400;
  358. font-style:normal;
  359. font-size:14px;
  360. color:#AAAAAA;
  361. text-align:center;
  362. line-height:30px;
  363. }
  364. #u21954 {
  365. border-width:0px;
  366. position:absolute;
  367. left:49px;
  368. top:1188px;
  369. width:1000px;
  370. height:60px;
  371. display:flex;
  372. transition:none;
  373. transform-origin:50% 50%;
  374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  375. font-weight:400;
  376. font-style:normal;
  377. font-size:14px;
  378. color:#AAAAAA;
  379. text-align:center;
  380. line-height:30px;
  381. }
  382. #u21954 .text {
  383. position:absolute;
  384. align-self:center;
  385. padding:5px 10px 5px 10px;
  386. box-sizing:border-box;
  387. width:100%;
  388. }
  389. #u21954_text {
  390. border-width:0px;
  391. word-wrap:break-word;
  392. text-transform:none;
  393. visibility:hidden;
  394. }
  395. #u21955_div {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:80px;
  401. height:30px;
  402. background:inherit;
  403. background-color:rgba(24, 144, 255, 1);
  404. border-radius:4px;
  405. filter:drop-shadow(none);
  406. transition:none;
  407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  408. font-weight:400;
  409. font-style:normal;
  410. font-size:14px;
  411. color:#FFFFFF;
  412. }
  413. #u21955 {
  414. border-width:0px;
  415. position:absolute;
  416. left:929px;
  417. top:1203px;
  418. width:80px;
  419. height:30px;
  420. display:flex;
  421. transition:none;
  422. transform-origin:50% 50%;
  423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  424. font-weight:400;
  425. font-style:normal;
  426. font-size:14px;
  427. color:#FFFFFF;
  428. }
  429. #u21955 .text {
  430. position:absolute;
  431. align-self:center;
  432. padding:2px 2px 2px 2px;
  433. box-sizing:border-box;
  434. width:100%;
  435. }
  436. #u21955_text {
  437. border-width:0px;
  438. word-wrap:break-word;
  439. text-transform:none;
  440. }
  441. #u21956_div {
  442. border-width:0px;
  443. position:absolute;
  444. left:0px;
  445. top:0px;
  446. width:80px;
  447. height:30px;
  448. background:inherit;
  449. background-color:rgba(255, 255, 255, 1);
  450. box-sizing:border-box;
  451. border-width:1px;
  452. border-style:solid;
  453. border-color:rgba(170, 170, 170, 1);
  454. border-radius:4px;
  455. filter:drop-shadow(none);
  456. transition:none;
  457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  458. font-weight:400;
  459. font-style:normal;
  460. font-size:14px;
  461. }
  462. #u21956 {
  463. border-width:0px;
  464. position:absolute;
  465. left:839px;
  466. top:1203px;
  467. width:80px;
  468. height:30px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:14px;
  476. }
  477. #u21956 .text {
  478. position:absolute;
  479. align-self:center;
  480. padding:2px 2px 2px 2px;
  481. box-sizing:border-box;
  482. width:100%;
  483. }
  484. #u21956_text {
  485. border-width:0px;
  486. word-wrap:break-word;
  487. text-transform:none;
  488. }
  489. #u21957_div {
  490. border-width:0px;
  491. position:absolute;
  492. left:0px;
  493. top:0px;
  494. width:106px;
  495. height:40px;
  496. background:inherit;
  497. background-color:rgba(255, 255, 255, 0);
  498. border-top:0px;
  499. border-right:0px;
  500. border-bottom:0px;
  501. border-radius:0px;
  502. border-top-left-radius:0px;
  503. border-bottom-left-radius:0px;
  504. filter:drop-shadow(none);
  505. transition:none;
  506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  507. font-weight:400;
  508. font-style:normal;
  509. font-size:14px;
  510. color:#7F7F7F;
  511. text-align:right;
  512. }
  513. #u21957 {
  514. border-width:0px;
  515. position:absolute;
  516. left:89px;
  517. top:247px;
  518. width:106px;
  519. height:40px;
  520. display:flex;
  521. transition:none;
  522. transform-origin:50% 50%;
  523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  524. font-weight:400;
  525. font-style:normal;
  526. font-size:14px;
  527. color:#7F7F7F;
  528. text-align:right;
  529. }
  530. #u21957 .text {
  531. position:absolute;
  532. align-self:center;
  533. padding:5px 0px 5px 0px;
  534. box-sizing:border-box;
  535. width:100%;
  536. }
  537. #u21957_text {
  538. border-width:0px;
  539. white-space:nowrap;
  540. text-transform:none;
  541. }
  542. #u21958 {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:0px;
  548. height:0px;
  549. }
  550. #u21959_div {
  551. border-width:0px;
  552. position:absolute;
  553. left:0px;
  554. top:0px;
  555. width:300px;
  556. height:40px;
  557. background:inherit;
  558. background-color:rgba(255, 255, 255, 1);
  559. box-sizing:border-box;
  560. border-width:1px;
  561. border-style:solid;
  562. border-color:rgba(201, 201, 201, 1);
  563. border-radius:4px;
  564. filter:drop-shadow(none);
  565. transition:none;
  566. font-family:"Microsoft YaHei", sans-serif;
  567. font-weight:400;
  568. font-style:normal;
  569. font-size:14px;
  570. color:#CCCCCC;
  571. text-align:left;
  572. }
  573. #u21959 {
  574. border-width:0px;
  575. position:absolute;
  576. left:195px;
  577. top:248px;
  578. width:300px;
  579. height:40px;
  580. display:flex;
  581. transition:none;
  582. transform-origin:50% 50%;
  583. font-family:"Microsoft YaHei", sans-serif;
  584. font-weight:400;
  585. font-style:normal;
  586. font-size:14px;
  587. color:#CCCCCC;
  588. text-align:left;
  589. }
  590. #u21959 .text {
  591. position:absolute;
  592. align-self:center;
  593. padding:2px 8px 2px 8px;
  594. box-sizing:border-box;
  595. width:100%;
  596. }
  597. #u21959_text {
  598. border-width:0px;
  599. word-wrap:break-word;
  600. text-transform:none;
  601. visibility:hidden;
  602. }
  603. #u21960_input {
  604. position:absolute;
  605. left:0px;
  606. top:0px;
  607. width:280px;
  608. height:38px;
  609. padding:2px 2px 2px 2px;
  610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  611. font-weight:400;
  612. font-style:normal;
  613. font-size:14px;
  614. letter-spacing:normal;
  615. color:#000000;
  616. vertical-align:none;
  617. text-align:left;
  618. text-transform:none;
  619. background-color:transparent;
  620. border-color:transparent;
  621. }
  622. #u21960_input.hint {
  623. position:absolute;
  624. left:0px;
  625. top:0px;
  626. width:280px;
  627. height:38px;
  628. padding:2px 2px 2px 2px;
  629. font-family:"Microsoft YaHei", sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:12px;
  633. letter-spacing:normal;
  634. color:#AAAAAA;
  635. vertical-align:none;
  636. text-align:left;
  637. text-transform:none;
  638. background-color:transparent;
  639. border-color:transparent;
  640. }
  641. #u21960_input.disabled {
  642. position:absolute;
  643. left:0px;
  644. top:0px;
  645. width:280px;
  646. height:38px;
  647. padding:2px 2px 2px 2px;
  648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  649. font-weight:400;
  650. font-style:normal;
  651. font-size:14px;
  652. letter-spacing:normal;
  653. color:#000000;
  654. vertical-align:none;
  655. text-align:left;
  656. text-transform:none;
  657. background-color:transparent;
  658. border-color:transparent;
  659. }
  660. #u21960_input.hint.disabled {
  661. position:absolute;
  662. left:0px;
  663. top:0px;
  664. width:280px;
  665. height:38px;
  666. padding:2px 2px 2px 2px;
  667. font-family:"Microsoft YaHei", sans-serif;
  668. font-weight:400;
  669. font-style:normal;
  670. font-size:12px;
  671. letter-spacing:normal;
  672. color:#AAAAAA;
  673. vertical-align:none;
  674. text-align:left;
  675. text-transform:none;
  676. background-color:transparent;
  677. border-color:transparent;
  678. }
  679. #u21960_div {
  680. border-width:0px;
  681. position:absolute;
  682. left:0px;
  683. top:0px;
  684. width:280px;
  685. height:38px;
  686. background:inherit;
  687. background-color:rgba(255, 255, 255, 1);
  688. border-radius:0px;
  689. filter:drop-shadow(none);
  690. transition:none;
  691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  692. font-weight:400;
  693. font-style:normal;
  694. font-size:14px;
  695. }
  696. #u21960 {
  697. border-width:0px;
  698. position:absolute;
  699. left:206px;
  700. top:249px;
  701. width:280px;
  702. height:38px;
  703. display:flex;
  704. transition:none;
  705. transform-origin:50% 50%;
  706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  707. font-weight:400;
  708. font-style:normal;
  709. font-size:14px;
  710. }
  711. #u21960 .text {
  712. position:absolute;
  713. align-self:center;
  714. padding:2px 2px 2px 2px;
  715. box-sizing:border-box;
  716. width:100%;
  717. }
  718. #u21960_div.hint {
  719. border-width:0px;
  720. position:absolute;
  721. left:0px;
  722. top:0px;
  723. width:280px;
  724. height:38px;
  725. background:inherit;
  726. background-color:rgba(255, 255, 255, 1);
  727. border-radius:0px;
  728. filter:drop-shadow(none);
  729. transition:none;
  730. font-family:"Microsoft YaHei", sans-serif;
  731. font-weight:400;
  732. font-style:normal;
  733. font-size:14px;
  734. }
  735. #u21960.hint {
  736. }
  737. #u21960_div.disabled {
  738. border-width:0px;
  739. position:absolute;
  740. left:0px;
  741. top:0px;
  742. width:280px;
  743. height:38px;
  744. background:inherit;
  745. background-color:rgba(240, 240, 240, 1);
  746. border-radius:0px;
  747. filter:drop-shadow(none);
  748. transition:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:14px;
  753. }
  754. #u21960.disabled {
  755. }
  756. #u21960_div.hint.disabled {
  757. border-width:0px;
  758. position:absolute;
  759. left:0px;
  760. top:0px;
  761. width:280px;
  762. height:38px;
  763. background:inherit;
  764. background-color:rgba(240, 240, 240, 1);
  765. border-radius:0px;
  766. filter:drop-shadow(none);
  767. transition:none;
  768. font-family:"Microsoft YaHei", sans-serif;
  769. font-weight:400;
  770. font-style:normal;
  771. font-size:14px;
  772. }
  773. #u21960.hint.disabled {
  774. }
  775. #u21961 {
  776. border-width:0px;
  777. position:absolute;
  778. left:469px;
  779. top:261px;
  780. width:13px;
  781. height:15px;
  782. display:flex;
  783. transition:none;
  784. }
  785. #u21961 .text {
  786. position:absolute;
  787. align-self:center;
  788. padding:2px 2px 2px 2px;
  789. box-sizing:border-box;
  790. width:100%;
  791. }
  792. #u21961_img {
  793. border-width:0px;
  794. position:absolute;
  795. left:0px;
  796. top:0px;
  797. width:13px;
  798. height:15px;
  799. }
  800. #u21961_text {
  801. border-width:0px;
  802. word-wrap:break-word;
  803. text-transform:none;
  804. visibility:hidden;
  805. }
  806. #u21962_div {
  807. border-width:0px;
  808. position:absolute;
  809. left:0px;
  810. top:0px;
  811. width:92px;
  812. height:40px;
  813. background:inherit;
  814. background-color:rgba(255, 255, 255, 0);
  815. border-top:0px;
  816. border-right:0px;
  817. border-bottom:0px;
  818. border-radius:0px;
  819. border-top-left-radius:0px;
  820. border-bottom-left-radius:0px;
  821. filter:drop-shadow(none);
  822. transition:none;
  823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  824. font-weight:400;
  825. font-style:normal;
  826. font-size:14px;
  827. color:#7F7F7F;
  828. text-align:right;
  829. }
  830. #u21962 {
  831. border-width:0px;
  832. position:absolute;
  833. left:568px;
  834. top:247px;
  835. width:92px;
  836. height:40px;
  837. display:flex;
  838. transition:none;
  839. transform-origin:50% 50%;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:14px;
  844. color:#7F7F7F;
  845. text-align:right;
  846. }
  847. #u21962 .text {
  848. position:absolute;
  849. align-self:center;
  850. padding:5px 0px 5px 0px;
  851. box-sizing:border-box;
  852. width:100%;
  853. }
  854. #u21962_text {
  855. border-width:0px;
  856. white-space:nowrap;
  857. text-transform:none;
  858. }
  859. #u21963 {
  860. border-width:0px;
  861. position:absolute;
  862. left:0px;
  863. top:0px;
  864. width:0px;
  865. height:0px;
  866. }
  867. #u21964_div {
  868. border-width:0px;
  869. position:absolute;
  870. left:0px;
  871. top:0px;
  872. width:300px;
  873. height:40px;
  874. background:inherit;
  875. background-color:rgba(255, 255, 255, 1);
  876. box-sizing:border-box;
  877. border-width:1px;
  878. border-style:solid;
  879. border-color:rgba(201, 201, 201, 1);
  880. border-radius:4px;
  881. filter:drop-shadow(none);
  882. transition:none;
  883. font-family:"Microsoft YaHei", sans-serif;
  884. font-weight:400;
  885. font-style:normal;
  886. font-size:14px;
  887. color:#CCCCCC;
  888. text-align:left;
  889. }
  890. #u21964 {
  891. border-width:0px;
  892. position:absolute;
  893. left:660px;
  894. top:248px;
  895. width:300px;
  896. height:40px;
  897. display:flex;
  898. transition:none;
  899. transform-origin:50% 50%;
  900. font-family:"Microsoft YaHei", sans-serif;
  901. font-weight:400;
  902. font-style:normal;
  903. font-size:14px;
  904. color:#CCCCCC;
  905. text-align:left;
  906. }
  907. #u21964 .text {
  908. position:absolute;
  909. align-self:center;
  910. padding:2px 8px 2px 8px;
  911. box-sizing:border-box;
  912. width:100%;
  913. }
  914. #u21964_text {
  915. border-width:0px;
  916. word-wrap:break-word;
  917. text-transform:none;
  918. visibility:hidden;
  919. }
  920. #u21965_input {
  921. position:absolute;
  922. left:0px;
  923. top:0px;
  924. width:280px;
  925. height:38px;
  926. padding:2px 2px 2px 2px;
  927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  928. font-weight:400;
  929. font-style:normal;
  930. font-size:14px;
  931. letter-spacing:normal;
  932. color:#000000;
  933. vertical-align:none;
  934. text-align:left;
  935. text-transform:none;
  936. background-color:transparent;
  937. border-color:transparent;
  938. }
  939. #u21965_input.hint {
  940. position:absolute;
  941. left:0px;
  942. top:0px;
  943. width:280px;
  944. height:38px;
  945. padding:2px 2px 2px 2px;
  946. font-family:"Microsoft YaHei", sans-serif;
  947. font-weight:400;
  948. font-style:normal;
  949. font-size:12px;
  950. letter-spacing:normal;
  951. color:#AAAAAA;
  952. vertical-align:none;
  953. text-align:left;
  954. text-transform:none;
  955. background-color:transparent;
  956. border-color:transparent;
  957. }
  958. #u21965_input.disabled {
  959. position:absolute;
  960. left:0px;
  961. top:0px;
  962. width:280px;
  963. height:38px;
  964. padding:2px 2px 2px 2px;
  965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  966. font-weight:400;
  967. font-style:normal;
  968. font-size:14px;
  969. letter-spacing:normal;
  970. color:#000000;
  971. vertical-align:none;
  972. text-align:left;
  973. text-transform:none;
  974. background-color:transparent;
  975. border-color:transparent;
  976. }
  977. #u21965_input.hint.disabled {
  978. position:absolute;
  979. left:0px;
  980. top:0px;
  981. width:280px;
  982. height:38px;
  983. padding:2px 2px 2px 2px;
  984. font-family:"Microsoft YaHei", sans-serif;
  985. font-weight:400;
  986. font-style:normal;
  987. font-size:12px;
  988. letter-spacing:normal;
  989. color:#AAAAAA;
  990. vertical-align:none;
  991. text-align:left;
  992. text-transform:none;
  993. background-color:transparent;
  994. border-color:transparent;
  995. }
  996. #u21965_div {
  997. border-width:0px;
  998. position:absolute;
  999. left:0px;
  1000. top:0px;
  1001. width:280px;
  1002. height:38px;
  1003. background:inherit;
  1004. background-color:rgba(255, 255, 255, 1);
  1005. border-radius:0px;
  1006. filter:drop-shadow(none);
  1007. transition:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:14px;
  1012. }
  1013. #u21965 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:671px;
  1017. top:249px;
  1018. width:280px;
  1019. height:38px;
  1020. display:flex;
  1021. transition:none;
  1022. transform-origin:50% 50%;
  1023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1024. font-weight:400;
  1025. font-style:normal;
  1026. font-size:14px;
  1027. }
  1028. #u21965 .text {
  1029. position:absolute;
  1030. align-self:center;
  1031. padding:2px 2px 2px 2px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u21965_div.hint {
  1036. border-width:0px;
  1037. position:absolute;
  1038. left:0px;
  1039. top:0px;
  1040. width:280px;
  1041. height:38px;
  1042. background:inherit;
  1043. background-color:rgba(255, 255, 255, 1);
  1044. border-radius:0px;
  1045. filter:drop-shadow(none);
  1046. transition:none;
  1047. font-family:"Microsoft YaHei", sans-serif;
  1048. font-weight:400;
  1049. font-style:normal;
  1050. font-size:14px;
  1051. }
  1052. #u21965.hint {
  1053. }
  1054. #u21965_div.disabled {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:0px;
  1058. top:0px;
  1059. width:280px;
  1060. height:38px;
  1061. background:inherit;
  1062. background-color:rgba(240, 240, 240, 1);
  1063. border-radius:0px;
  1064. filter:drop-shadow(none);
  1065. transition:none;
  1066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1067. font-weight:400;
  1068. font-style:normal;
  1069. font-size:14px;
  1070. }
  1071. #u21965.disabled {
  1072. }
  1073. #u21965_div.hint.disabled {
  1074. border-width:0px;
  1075. position:absolute;
  1076. left:0px;
  1077. top:0px;
  1078. width:280px;
  1079. height:38px;
  1080. background:inherit;
  1081. background-color:rgba(240, 240, 240, 1);
  1082. border-radius:0px;
  1083. filter:drop-shadow(none);
  1084. transition:none;
  1085. font-family:"Microsoft YaHei", sans-serif;
  1086. font-weight:400;
  1087. font-style:normal;
  1088. font-size:14px;
  1089. }
  1090. #u21965.hint.disabled {
  1091. }
  1092. #u21966 {
  1093. border-width:0px;
  1094. position:absolute;
  1095. left:934px;
  1096. top:261px;
  1097. width:13px;
  1098. height:15px;
  1099. display:flex;
  1100. transition:none;
  1101. }
  1102. #u21966 .text {
  1103. position:absolute;
  1104. align-self:center;
  1105. padding:2px 2px 2px 2px;
  1106. box-sizing:border-box;
  1107. width:100%;
  1108. }
  1109. #u21966_img {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:13px;
  1115. height:15px;
  1116. }
  1117. #u21966_text {
  1118. border-width:0px;
  1119. word-wrap:break-word;
  1120. text-transform:none;
  1121. visibility:hidden;
  1122. }
  1123. #u21967_div {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:0px;
  1127. top:0px;
  1128. width:81px;
  1129. height:40px;
  1130. background:inherit;
  1131. background-color:rgba(255, 255, 255, 0);
  1132. border-top:0px;
  1133. border-right:0px;
  1134. border-bottom:0px;
  1135. border-radius:0px;
  1136. border-top-left-radius:0px;
  1137. border-bottom-left-radius:0px;
  1138. filter:drop-shadow(none);
  1139. transition:none;
  1140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1141. font-weight:400;
  1142. font-style:normal;
  1143. font-size:14px;
  1144. color:#7F7F7F;
  1145. text-align:right;
  1146. }
  1147. #u21967 {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:104px;
  1151. top:448px;
  1152. width:81px;
  1153. height:40px;
  1154. display:flex;
  1155. transition:none;
  1156. transform-origin:50% 50%;
  1157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1158. font-weight:400;
  1159. font-style:normal;
  1160. font-size:14px;
  1161. color:#7F7F7F;
  1162. text-align:right;
  1163. }
  1164. #u21967 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:5px 10px 5px 0px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u21967_text {
  1172. border-width:0px;
  1173. white-space:nowrap;
  1174. text-transform:none;
  1175. }
  1176. #u21968_div {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:53px;
  1182. height:40px;
  1183. background:inherit;
  1184. background-color:rgba(255, 255, 255, 0);
  1185. border-top:0px;
  1186. border-right:0px;
  1187. border-bottom:0px;
  1188. border-radius:0px;
  1189. border-top-left-radius:0px;
  1190. border-bottom-left-radius:0px;
  1191. filter:drop-shadow(none);
  1192. transition:none;
  1193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1194. font-weight:400;
  1195. font-style:normal;
  1196. font-size:14px;
  1197. color:#7F7F7F;
  1198. text-align:right;
  1199. }
  1200. #u21968 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:132px;
  1204. top:302px;
  1205. width:53px;
  1206. height:40px;
  1207. display:flex;
  1208. transition:none;
  1209. transform-origin:50% 50%;
  1210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1211. font-weight:400;
  1212. font-style:normal;
  1213. font-size:14px;
  1214. color:#7F7F7F;
  1215. text-align:right;
  1216. }
  1217. #u21968 .text {
  1218. position:absolute;
  1219. align-self:center;
  1220. padding:5px 10px 5px 0px;
  1221. box-sizing:border-box;
  1222. width:100%;
  1223. }
  1224. #u21968_text {
  1225. border-width:0px;
  1226. white-space:nowrap;
  1227. text-transform:none;
  1228. }
  1229. #u21969 {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:0px;
  1233. top:0px;
  1234. width:0px;
  1235. height:0px;
  1236. }
  1237. #u21970_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:765px;
  1243. height:80px;
  1244. background:inherit;
  1245. background-color:rgba(255, 255, 255, 1);
  1246. box-sizing:border-box;
  1247. border-width:1px;
  1248. border-style:solid;
  1249. border-color:rgba(201, 201, 201, 1);
  1250. border-radius:4px;
  1251. filter:drop-shadow(none);
  1252. transition:none;
  1253. font-family:"Microsoft YaHei", sans-serif;
  1254. font-weight:400;
  1255. font-style:normal;
  1256. font-size:14px;
  1257. color:#CCCCCC;
  1258. text-align:left;
  1259. }
  1260. #u21970 {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:195px;
  1264. top:298px;
  1265. width:765px;
  1266. height:80px;
  1267. display:flex;
  1268. transition:none;
  1269. transform-origin:50% 50%;
  1270. font-family:"Microsoft YaHei", sans-serif;
  1271. font-weight:400;
  1272. font-style:normal;
  1273. font-size:14px;
  1274. color:#CCCCCC;
  1275. text-align:left;
  1276. }
  1277. #u21970 .text {
  1278. position:absolute;
  1279. align-self:center;
  1280. padding:2px 8px 2px 8px;
  1281. box-sizing:border-box;
  1282. width:100%;
  1283. }
  1284. #u21970_text {
  1285. border-width:0px;
  1286. word-wrap:break-word;
  1287. text-transform:none;
  1288. visibility:hidden;
  1289. }
  1290. #u21971_input {
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:393px;
  1295. height:38px;
  1296. padding:2px 2px 2px 2px;
  1297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1298. font-weight:400;
  1299. font-style:normal;
  1300. font-size:14px;
  1301. letter-spacing:normal;
  1302. color:#000000;
  1303. vertical-align:none;
  1304. text-align:left;
  1305. text-transform:none;
  1306. background-color:transparent;
  1307. border-color:transparent;
  1308. }
  1309. #u21971_input.hint {
  1310. position:absolute;
  1311. left:0px;
  1312. top:0px;
  1313. width:393px;
  1314. height:38px;
  1315. padding:2px 2px 2px 2px;
  1316. font-family:"Microsoft YaHei", sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:12px;
  1320. letter-spacing:normal;
  1321. color:#AAAAAA;
  1322. vertical-align:none;
  1323. text-align:left;
  1324. text-transform:none;
  1325. background-color:transparent;
  1326. border-color:transparent;
  1327. }
  1328. #u21971_input.disabled {
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:393px;
  1333. height:38px;
  1334. padding:2px 2px 2px 2px;
  1335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1336. font-weight:400;
  1337. font-style:normal;
  1338. font-size:14px;
  1339. letter-spacing:normal;
  1340. color:#000000;
  1341. vertical-align:none;
  1342. text-align:left;
  1343. text-transform:none;
  1344. background-color:transparent;
  1345. border-color:transparent;
  1346. }
  1347. #u21971_input.hint.disabled {
  1348. position:absolute;
  1349. left:0px;
  1350. top:0px;
  1351. width:393px;
  1352. height:38px;
  1353. padding:2px 2px 2px 2px;
  1354. font-family:"Microsoft YaHei", sans-serif;
  1355. font-weight:400;
  1356. font-style:normal;
  1357. font-size:12px;
  1358. letter-spacing:normal;
  1359. color:#AAAAAA;
  1360. vertical-align:none;
  1361. text-align:left;
  1362. text-transform:none;
  1363. background-color:transparent;
  1364. border-color:transparent;
  1365. }
  1366. #u21971_div {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:393px;
  1372. height:38px;
  1373. background:inherit;
  1374. background-color:rgba(255, 255, 255, 1);
  1375. border-radius:0px;
  1376. filter:drop-shadow(none);
  1377. transition:none;
  1378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1379. font-weight:400;
  1380. font-style:normal;
  1381. font-size:14px;
  1382. }
  1383. #u21971 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:206px;
  1387. top:299px;
  1388. width:393px;
  1389. height:38px;
  1390. display:flex;
  1391. transition:none;
  1392. transform-origin:50% 50%;
  1393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1394. font-weight:400;
  1395. font-style:normal;
  1396. font-size:14px;
  1397. }
  1398. #u21971 .text {
  1399. position:absolute;
  1400. align-self:center;
  1401. padding:2px 2px 2px 2px;
  1402. box-sizing:border-box;
  1403. width:100%;
  1404. }
  1405. #u21971_div.hint {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:393px;
  1411. height:38px;
  1412. background:inherit;
  1413. background-color:rgba(255, 255, 255, 1);
  1414. border-radius:0px;
  1415. filter:drop-shadow(none);
  1416. transition:none;
  1417. font-family:"Microsoft YaHei", sans-serif;
  1418. font-weight:400;
  1419. font-style:normal;
  1420. font-size:14px;
  1421. }
  1422. #u21971.hint {
  1423. }
  1424. #u21971_div.disabled {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:0px;
  1428. top:0px;
  1429. width:393px;
  1430. height:38px;
  1431. background:inherit;
  1432. background-color:rgba(240, 240, 240, 1);
  1433. border-radius:0px;
  1434. filter:drop-shadow(none);
  1435. transition:none;
  1436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1437. font-weight:400;
  1438. font-style:normal;
  1439. font-size:14px;
  1440. }
  1441. #u21971.disabled {
  1442. }
  1443. #u21971_div.hint.disabled {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:393px;
  1449. height:38px;
  1450. background:inherit;
  1451. background-color:rgba(240, 240, 240, 1);
  1452. border-radius:0px;
  1453. filter:drop-shadow(none);
  1454. transition:none;
  1455. font-family:"Microsoft YaHei", sans-serif;
  1456. font-weight:400;
  1457. font-style:normal;
  1458. font-size:14px;
  1459. }
  1460. #u21971.hint.disabled {
  1461. }
  1462. #u21972_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:80px;
  1468. height:30px;
  1469. background:inherit;
  1470. background-color:rgba(24, 144, 255, 1);
  1471. border-radius:4px;
  1472. filter:drop-shadow(none);
  1473. transition:none;
  1474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1475. font-weight:400;
  1476. font-style:normal;
  1477. font-size:14px;
  1478. color:#FFFFFF;
  1479. }
  1480. #u21972 {
  1481. border-width:0px;
  1482. position:absolute;
  1483. left:195px;
  1484. top:453px;
  1485. width:80px;
  1486. height:30px;
  1487. display:flex;
  1488. transition:none;
  1489. transform-origin:50% 50%;
  1490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1491. font-weight:400;
  1492. font-style:normal;
  1493. font-size:14px;
  1494. color:#FFFFFF;
  1495. }
  1496. #u21972 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:2px 2px 2px 2px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u21972_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u21973_div {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:81px;
  1514. height:40px;
  1515. background:inherit;
  1516. background-color:rgba(255, 255, 255, 0);
  1517. border-top:0px;
  1518. border-right:0px;
  1519. border-bottom:0px;
  1520. border-radius:0px;
  1521. border-top-left-radius:0px;
  1522. border-bottom-left-radius:0px;
  1523. filter:drop-shadow(none);
  1524. transition:none;
  1525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1526. font-weight:400;
  1527. font-style:normal;
  1528. font-size:14px;
  1529. color:#7F7F7F;
  1530. text-align:right;
  1531. }
  1532. #u21973 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:104px;
  1536. top:649px;
  1537. width:81px;
  1538. height:40px;
  1539. display:flex;
  1540. transition:none;
  1541. transform-origin:50% 50%;
  1542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1543. font-weight:400;
  1544. font-style:normal;
  1545. font-size:14px;
  1546. color:#7F7F7F;
  1547. text-align:right;
  1548. }
  1549. #u21973 .text {
  1550. position:absolute;
  1551. align-self:center;
  1552. padding:5px 10px 5px 0px;
  1553. box-sizing:border-box;
  1554. width:100%;
  1555. }
  1556. #u21973_text {
  1557. border-width:0px;
  1558. white-space:nowrap;
  1559. text-transform:none;
  1560. }
  1561. #u21974_div {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:0px;
  1565. top:0px;
  1566. width:80px;
  1567. height:30px;
  1568. background:inherit;
  1569. background-color:rgba(24, 144, 255, 1);
  1570. border-radius:4px;
  1571. filter:drop-shadow(none);
  1572. transition:none;
  1573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1574. font-weight:400;
  1575. font-style:normal;
  1576. font-size:14px;
  1577. color:#FFFFFF;
  1578. }
  1579. #u21974 {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:195px;
  1583. top:654px;
  1584. width:80px;
  1585. height:30px;
  1586. display:flex;
  1587. transition:none;
  1588. transform-origin:50% 50%;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:14px;
  1593. color:#FFFFFF;
  1594. }
  1595. #u21974 .text {
  1596. position:absolute;
  1597. align-self:center;
  1598. padding:2px 2px 2px 2px;
  1599. box-sizing:border-box;
  1600. width:100%;
  1601. }
  1602. #u21974_text {
  1603. border-width:0px;
  1604. word-wrap:break-word;
  1605. text-transform:none;
  1606. }
  1607. #u21975_div {
  1608. border-width:0px;
  1609. position:absolute;
  1610. left:0px;
  1611. top:0px;
  1612. width:50px;
  1613. height:30px;
  1614. background:inherit;
  1615. background-color:rgba(255, 255, 255, 0);
  1616. border-top:0px;
  1617. border-right:0px;
  1618. border-bottom:0px;
  1619. border-radius:0px;
  1620. border-top-left-radius:0px;
  1621. border-bottom-left-radius:0px;
  1622. filter:drop-shadow(none);
  1623. transition:none;
  1624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1625. font-weight:400;
  1626. font-style:normal;
  1627. font-size:14px;
  1628. color:#7F7F7F;
  1629. text-align:right;
  1630. }
  1631. #u21975 {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:146px;
  1635. top:133px;
  1636. width:50px;
  1637. height:30px;
  1638. display:flex;
  1639. transition:none;
  1640. transform-origin:50% 50%;
  1641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1642. font-weight:400;
  1643. font-style:normal;
  1644. font-size:14px;
  1645. color:#7F7F7F;
  1646. text-align:right;
  1647. }
  1648. #u21975 .text {
  1649. position:absolute;
  1650. align-self:center;
  1651. padding:5px 0px 5px 0px;
  1652. box-sizing:border-box;
  1653. width:100%;
  1654. }
  1655. #u21975_text {
  1656. border-width:0px;
  1657. white-space:nowrap;
  1658. text-transform:none;
  1659. }
  1660. #u21976 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:0px;
  1664. top:0px;
  1665. width:0px;
  1666. height:0px;
  1667. }
  1668. #u21977_div {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:140px;
  1674. height:40px;
  1675. background:inherit;
  1676. background-color:rgba(255, 255, 255, 1);
  1677. box-sizing:border-box;
  1678. border-width:1px;
  1679. border-style:solid;
  1680. border-color:rgba(201, 201, 201, 1);
  1681. border-radius:4px;
  1682. filter:drop-shadow(none);
  1683. transition:none;
  1684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1685. font-weight:400;
  1686. font-style:normal;
  1687. font-size:14px;
  1688. text-align:right;
  1689. }
  1690. #u21977 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:196px;
  1694. top:128px;
  1695. width:140px;
  1696. height:40px;
  1697. display:flex;
  1698. opacity:0.9;
  1699. transition:none;
  1700. transform-origin:50% 50%;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:14px;
  1705. text-align:right;
  1706. }
  1707. #u21977 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 10px 2px 8px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u21977_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. visibility:hidden;
  1719. }
  1720. #u21978_input {
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:133px;
  1725. height:23px;
  1726. padding:2px 2px 2px 2px;
  1727. font-family:'ArialMT', 'Arial', sans-serif;
  1728. font-weight:400;
  1729. font-style:normal;
  1730. font-size:11px;
  1731. letter-spacing:normal;
  1732. color:#AAAAAA;
  1733. vertical-align:none;
  1734. text-align:left;
  1735. text-transform:none;
  1736. background-color:transparent;
  1737. border-color:transparent;
  1738. }
  1739. #u21978_input.disabled {
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:133px;
  1744. height:23px;
  1745. padding:2px 2px 2px 2px;
  1746. font-family:'ArialMT', 'Arial', sans-serif;
  1747. font-weight:400;
  1748. font-style:normal;
  1749. font-size:11px;
  1750. letter-spacing:normal;
  1751. color:#AAAAAA;
  1752. vertical-align:none;
  1753. text-align:left;
  1754. text-transform:none;
  1755. background-color:transparent;
  1756. border-color:transparent;
  1757. }
  1758. #u21978_div {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:133px;
  1764. height:23px;
  1765. background:inherit;
  1766. background-color:rgba(255, 255, 255, 1);
  1767. border-radius:0px;
  1768. filter:drop-shadow(none);
  1769. transition:none;
  1770. font-size:11px;
  1771. color:#AAAAAA;
  1772. }
  1773. #u21978 {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:200px;
  1777. top:137px;
  1778. width:133px;
  1779. height:23px;
  1780. display:flex;
  1781. opacity:0.9;
  1782. transition:none;
  1783. transform-origin:50% 50%;
  1784. font-size:11px;
  1785. color:#AAAAAA;
  1786. }
  1787. #u21978 .text {
  1788. position:absolute;
  1789. align-self:flex-start;
  1790. padding:2px 2px 2px 2px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u21978_div.disabled {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:0px;
  1798. top:0px;
  1799. width:133px;
  1800. height:23px;
  1801. background:inherit;
  1802. background-color:rgba(240, 240, 240, 1);
  1803. border-radius:0px;
  1804. filter:drop-shadow(none);
  1805. transition:none;
  1806. font-size:11px;
  1807. color:#AAAAAA;
  1808. }
  1809. #u21978.disabled {
  1810. }
  1811. .u21978_input_option {
  1812. font-size:11px;
  1813. }
  1814. #u21979_div {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:71px;
  1820. height:30px;
  1821. background:inherit;
  1822. background-color:rgba(255, 255, 255, 0);
  1823. border-top:0px;
  1824. border-right:0px;
  1825. border-bottom:0px;
  1826. border-radius:0px;
  1827. border-top-left-radius:0px;
  1828. border-bottom-left-radius:0px;
  1829. filter:drop-shadow(none);
  1830. transition:none;
  1831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1832. font-weight:400;
  1833. font-style:normal;
  1834. font-size:14px;
  1835. color:#7F7F7F;
  1836. text-align:right;
  1837. }
  1838. #u21979 {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:146px;
  1842. top:188px;
  1843. width:71px;
  1844. height:30px;
  1845. display:flex;
  1846. transition:none;
  1847. transform-origin:50% 50%;
  1848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1849. font-weight:400;
  1850. font-style:normal;
  1851. font-size:14px;
  1852. color:#7F7F7F;
  1853. text-align:right;
  1854. }
  1855. #u21979 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:5px 0px 5px 0px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u21979_text {
  1863. border-width:0px;
  1864. white-space:nowrap;
  1865. text-transform:none;
  1866. }
  1867. #u21980 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:0px;
  1873. height:0px;
  1874. }
  1875. #u21981_div {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:119px;
  1881. height:40px;
  1882. background:inherit;
  1883. background-color:rgba(242, 242, 242, 1);
  1884. box-sizing:border-box;
  1885. border-width:1px;
  1886. border-style:solid;
  1887. border-color:rgba(201, 201, 201, 1);
  1888. border-radius:4px;
  1889. filter:drop-shadow(none);
  1890. transition:none;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:12px;
  1895. color:#CCCCCC;
  1896. text-align:right;
  1897. }
  1898. #u21981 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:217px;
  1902. top:183px;
  1903. width:119px;
  1904. height:40px;
  1905. display:flex;
  1906. transition:none;
  1907. transform-origin:50% 50%;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:12px;
  1912. color:#CCCCCC;
  1913. text-align:right;
  1914. }
  1915. #u21981 .text {
  1916. position:absolute;
  1917. align-self:center;
  1918. padding:2px 8px 2px 8px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u21981_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. }
  1927. #u21982_input {
  1928. position:absolute;
  1929. left:0px;
  1930. top:0px;
  1931. width:67px;
  1932. height:38px;
  1933. padding:2px 2px 2px 2px;
  1934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1935. font-weight:400;
  1936. font-style:normal;
  1937. font-size:14px;
  1938. letter-spacing:normal;
  1939. color:#000000;
  1940. vertical-align:none;
  1941. text-align:left;
  1942. text-transform:none;
  1943. background-color:transparent;
  1944. border-color:transparent;
  1945. }
  1946. #u21982_input.hint {
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:67px;
  1951. height:38px;
  1952. padding:2px 2px 2px 2px;
  1953. font-family:"Microsoft YaHei", sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:12px;
  1957. letter-spacing:normal;
  1958. color:#AAAAAA;
  1959. vertical-align:none;
  1960. text-align:left;
  1961. text-transform:none;
  1962. background-color:transparent;
  1963. border-color:transparent;
  1964. }
  1965. #u21982_input.disabled {
  1966. position:absolute;
  1967. left:0px;
  1968. top:0px;
  1969. width:67px;
  1970. height:38px;
  1971. padding:2px 2px 2px 2px;
  1972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1973. font-weight:400;
  1974. font-style:normal;
  1975. font-size:14px;
  1976. letter-spacing:normal;
  1977. color:#000000;
  1978. vertical-align:none;
  1979. text-align:left;
  1980. text-transform:none;
  1981. background-color:transparent;
  1982. border-color:transparent;
  1983. }
  1984. #u21982_input.hint.disabled {
  1985. position:absolute;
  1986. left:0px;
  1987. top:0px;
  1988. width:67px;
  1989. height:38px;
  1990. padding:2px 2px 2px 2px;
  1991. font-family:"Microsoft YaHei", sans-serif;
  1992. font-weight:400;
  1993. font-style:normal;
  1994. font-size:12px;
  1995. letter-spacing:normal;
  1996. color:#AAAAAA;
  1997. vertical-align:none;
  1998. text-align:left;
  1999. text-transform:none;
  2000. background-color:transparent;
  2001. border-color:transparent;
  2002. }
  2003. #u21982_div {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:0px;
  2007. top:0px;
  2008. width:67px;
  2009. height:38px;
  2010. background:inherit;
  2011. background-color:rgba(242, 242, 242, 1);
  2012. border-radius:0px;
  2013. filter:drop-shadow(none);
  2014. transition:none;
  2015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2016. font-weight:400;
  2017. font-style:normal;
  2018. font-size:14px;
  2019. }
  2020. #u21982 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:220px;
  2024. top:184px;
  2025. width:67px;
  2026. height:38px;
  2027. display:flex;
  2028. transition:none;
  2029. transform-origin:50% 50%;
  2030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2031. font-weight:400;
  2032. font-style:normal;
  2033. font-size:14px;
  2034. }
  2035. #u21982 .text {
  2036. position:absolute;
  2037. align-self:center;
  2038. padding:2px 2px 2px 2px;
  2039. box-sizing:border-box;
  2040. width:100%;
  2041. }
  2042. #u21982_div.hint {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:67px;
  2048. height:38px;
  2049. background:inherit;
  2050. background-color:rgba(242, 242, 242, 1);
  2051. border-radius:0px;
  2052. filter:drop-shadow(none);
  2053. transition:none;
  2054. font-family:"Microsoft YaHei", sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:14px;
  2058. }
  2059. #u21982.hint {
  2060. }
  2061. #u21982_div.disabled {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:0px;
  2065. top:0px;
  2066. width:67px;
  2067. height:38px;
  2068. background:inherit;
  2069. background-color:rgba(240, 240, 240, 1);
  2070. border-radius:0px;
  2071. filter:drop-shadow(none);
  2072. transition:none;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:14px;
  2077. }
  2078. #u21982.disabled {
  2079. }
  2080. #u21982_div.hint.disabled {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:0px;
  2084. top:0px;
  2085. width:67px;
  2086. height:38px;
  2087. background:inherit;
  2088. background-color:rgba(240, 240, 240, 1);
  2089. border-radius:0px;
  2090. filter:drop-shadow(none);
  2091. transition:none;
  2092. font-family:"Microsoft YaHei", sans-serif;
  2093. font-weight:400;
  2094. font-style:normal;
  2095. font-size:14px;
  2096. }
  2097. #u21982.hint.disabled {
  2098. }
  2099. #u21983_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:71px;
  2105. height:30px;
  2106. background:inherit;
  2107. background-color:rgba(255, 255, 255, 0);
  2108. border-top:0px;
  2109. border-right:0px;
  2110. border-bottom:0px;
  2111. border-radius:0px;
  2112. border-top-left-radius:0px;
  2113. border-bottom-left-radius:0px;
  2114. filter:drop-shadow(none);
  2115. transition:none;
  2116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:14px;
  2120. color:#7F7F7F;
  2121. text-align:right;
  2122. }
  2123. #u21983 {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:753px;
  2127. top:188px;
  2128. width:71px;
  2129. height:30px;
  2130. display:flex;
  2131. transition:none;
  2132. transform-origin:50% 50%;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:14px;
  2137. color:#7F7F7F;
  2138. text-align:right;
  2139. }
  2140. #u21983 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:5px 0px 5px 0px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u21983_text {
  2148. border-width:0px;
  2149. white-space:nowrap;
  2150. text-transform:none;
  2151. }
  2152. #u21984 {
  2153. border-width:0px;
  2154. position:absolute;
  2155. left:0px;
  2156. top:0px;
  2157. width:0px;
  2158. height:0px;
  2159. }
  2160. #u21985_div {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:137px;
  2166. height:40px;
  2167. background:inherit;
  2168. background-color:rgba(242, 242, 242, 1);
  2169. box-sizing:border-box;
  2170. border-width:1px;
  2171. border-style:solid;
  2172. border-color:rgba(201, 201, 201, 1);
  2173. border-radius:4px;
  2174. filter:drop-shadow(none);
  2175. transition:none;
  2176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:12px;
  2180. color:#CCCCCC;
  2181. text-align:right;
  2182. }
  2183. #u21985 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:823px;
  2187. top:183px;
  2188. width:137px;
  2189. height:40px;
  2190. display:flex;
  2191. transition:none;
  2192. transform-origin:50% 50%;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:12px;
  2197. color:#CCCCCC;
  2198. text-align:right;
  2199. }
  2200. #u21985 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:2px 8px 2px 8px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u21985_text {
  2208. border-width:0px;
  2209. word-wrap:break-word;
  2210. text-transform:none;
  2211. visibility:hidden;
  2212. }
  2213. #u21986_input {
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:107px;
  2218. height:38px;
  2219. padding:2px 2px 2px 2px;
  2220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2221. font-weight:400;
  2222. font-style:normal;
  2223. font-size:14px;
  2224. letter-spacing:normal;
  2225. color:#000000;
  2226. vertical-align:none;
  2227. text-align:left;
  2228. text-transform:none;
  2229. background-color:transparent;
  2230. border-color:transparent;
  2231. }
  2232. #u21986_input.hint {
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:107px;
  2237. height:38px;
  2238. padding:2px 2px 2px 2px;
  2239. font-family:"Microsoft YaHei", sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. font-size:12px;
  2243. letter-spacing:normal;
  2244. color:#AAAAAA;
  2245. vertical-align:none;
  2246. text-align:left;
  2247. text-transform:none;
  2248. background-color:transparent;
  2249. border-color:transparent;
  2250. }
  2251. #u21986_input.disabled {
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:107px;
  2256. height:38px;
  2257. padding:2px 2px 2px 2px;
  2258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2259. font-weight:400;
  2260. font-style:normal;
  2261. font-size:14px;
  2262. letter-spacing:normal;
  2263. color:#000000;
  2264. vertical-align:none;
  2265. text-align:left;
  2266. text-transform:none;
  2267. background-color:transparent;
  2268. border-color:transparent;
  2269. }
  2270. #u21986_input.hint.disabled {
  2271. position:absolute;
  2272. left:0px;
  2273. top:0px;
  2274. width:107px;
  2275. height:38px;
  2276. padding:2px 2px 2px 2px;
  2277. font-family:"Microsoft YaHei", sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:12px;
  2281. letter-spacing:normal;
  2282. color:#AAAAAA;
  2283. vertical-align:none;
  2284. text-align:left;
  2285. text-transform:none;
  2286. background-color:transparent;
  2287. border-color:transparent;
  2288. }
  2289. #u21986_div {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:107px;
  2295. height:38px;
  2296. background:inherit;
  2297. background-color:rgba(242, 242, 242, 1);
  2298. border-radius:0px;
  2299. filter:drop-shadow(none);
  2300. transition:none;
  2301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2302. font-weight:400;
  2303. font-style:normal;
  2304. font-size:14px;
  2305. }
  2306. #u21986 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:827px;
  2310. top:184px;
  2311. width:107px;
  2312. height:38px;
  2313. display:flex;
  2314. transition:none;
  2315. transform-origin:50% 50%;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:14px;
  2320. }
  2321. #u21986 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 2px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u21986_div.hint {
  2329. border-width:0px;
  2330. position:absolute;
  2331. left:0px;
  2332. top:0px;
  2333. width:107px;
  2334. height:38px;
  2335. background:inherit;
  2336. background-color:rgba(242, 242, 242, 1);
  2337. border-radius:0px;
  2338. filter:drop-shadow(none);
  2339. transition:none;
  2340. font-family:"Microsoft YaHei", sans-serif;
  2341. font-weight:400;
  2342. font-style:normal;
  2343. font-size:14px;
  2344. }
  2345. #u21986.hint {
  2346. }
  2347. #u21986_div.disabled {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:107px;
  2353. height:38px;
  2354. background:inherit;
  2355. background-color:rgba(240, 240, 240, 1);
  2356. border-radius:0px;
  2357. filter:drop-shadow(none);
  2358. transition:none;
  2359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:14px;
  2363. }
  2364. #u21986.disabled {
  2365. }
  2366. #u21986_div.hint.disabled {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:107px;
  2372. height:38px;
  2373. background:inherit;
  2374. background-color:rgba(240, 240, 240, 1);
  2375. border-radius:0px;
  2376. filter:drop-shadow(none);
  2377. transition:none;
  2378. font-family:"Microsoft YaHei", sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:14px;
  2382. }
  2383. #u21986.hint.disabled {
  2384. }
  2385. #u21987_div {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:50px;
  2391. height:30px;
  2392. background:inherit;
  2393. background-color:rgba(255, 255, 255, 0);
  2394. border-top:0px;
  2395. border-right:0px;
  2396. border-bottom:0px;
  2397. border-radius:0px;
  2398. border-top-left-radius:0px;
  2399. border-bottom-left-radius:0px;
  2400. filter:drop-shadow(none);
  2401. transition:none;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:14px;
  2406. color:#7F7F7F;
  2407. text-align:right;
  2408. }
  2409. #u21987 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:353px;
  2413. top:133px;
  2414. width:50px;
  2415. height:30px;
  2416. display:flex;
  2417. transition:none;
  2418. transform-origin:50% 50%;
  2419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2420. font-weight:400;
  2421. font-style:normal;
  2422. font-size:14px;
  2423. color:#7F7F7F;
  2424. text-align:right;
  2425. }
  2426. #u21987 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:5px 0px 5px 0px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u21987_text {
  2434. border-width:0px;
  2435. white-space:nowrap;
  2436. text-transform:none;
  2437. }
  2438. #u21988 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:0px;
  2444. height:0px;
  2445. }
  2446. #u21989_div {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:0px;
  2450. top:0px;
  2451. width:140px;
  2452. height:40px;
  2453. background:inherit;
  2454. background-color:rgba(255, 255, 255, 1);
  2455. box-sizing:border-box;
  2456. border-width:1px;
  2457. border-style:solid;
  2458. border-color:rgba(201, 201, 201, 1);
  2459. border-radius:4px;
  2460. filter:drop-shadow(none);
  2461. transition:none;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:14px;
  2466. text-align:right;
  2467. }
  2468. #u21989 {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:403px;
  2472. top:128px;
  2473. width:140px;
  2474. height:40px;
  2475. display:flex;
  2476. opacity:0.9;
  2477. transition:none;
  2478. transform-origin:50% 50%;
  2479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2480. font-weight:400;
  2481. font-style:normal;
  2482. font-size:14px;
  2483. text-align:right;
  2484. }
  2485. #u21989 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 10px 2px 8px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u21989_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. visibility:hidden;
  2497. }
  2498. #u21990_input {
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:133px;
  2503. height:23px;
  2504. padding:2px 2px 2px 2px;
  2505. font-family:'ArialMT', 'Arial', sans-serif;
  2506. font-weight:400;
  2507. font-style:normal;
  2508. font-size:11px;
  2509. letter-spacing:normal;
  2510. color:#AAAAAA;
  2511. vertical-align:none;
  2512. text-align:left;
  2513. text-transform:none;
  2514. background-color:transparent;
  2515. border-color:transparent;
  2516. }
  2517. #u21990_input.disabled {
  2518. position:absolute;
  2519. left:0px;
  2520. top:0px;
  2521. width:133px;
  2522. height:23px;
  2523. padding:2px 2px 2px 2px;
  2524. font-family:'ArialMT', 'Arial', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:11px;
  2528. letter-spacing:normal;
  2529. color:#AAAAAA;
  2530. vertical-align:none;
  2531. text-align:left;
  2532. text-transform:none;
  2533. background-color:transparent;
  2534. border-color:transparent;
  2535. }
  2536. #u21990_div {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:133px;
  2542. height:23px;
  2543. background:inherit;
  2544. background-color:rgba(255, 255, 255, 1);
  2545. border-radius:0px;
  2546. filter:drop-shadow(none);
  2547. transition:none;
  2548. font-size:11px;
  2549. color:#AAAAAA;
  2550. }
  2551. #u21990 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:407px;
  2555. top:137px;
  2556. width:133px;
  2557. height:23px;
  2558. display:flex;
  2559. opacity:0.9;
  2560. transition:none;
  2561. transform-origin:50% 50%;
  2562. font-size:11px;
  2563. color:#AAAAAA;
  2564. }
  2565. #u21990 .text {
  2566. position:absolute;
  2567. align-self:flex-start;
  2568. padding:2px 2px 2px 2px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u21990_div.disabled {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:133px;
  2578. height:23px;
  2579. background:inherit;
  2580. background-color:rgba(240, 240, 240, 1);
  2581. border-radius:0px;
  2582. filter:drop-shadow(none);
  2583. transition:none;
  2584. font-size:11px;
  2585. color:#AAAAAA;
  2586. }
  2587. #u21990.disabled {
  2588. }
  2589. .u21990_input_option {
  2590. font-size:11px;
  2591. }
  2592. #u21991_div {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:43px;
  2598. height:30px;
  2599. background:inherit;
  2600. background-color:rgba(255, 255, 255, 0);
  2601. border-top:0px;
  2602. border-right:0px;
  2603. border-bottom:0px;
  2604. border-radius:0px;
  2605. border-top-left-radius:0px;
  2606. border-bottom-left-radius:0px;
  2607. filter:drop-shadow(none);
  2608. transition:none;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:14px;
  2613. color:#7F7F7F;
  2614. text-align:right;
  2615. }
  2616. #u21991 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:560px;
  2620. top:133px;
  2621. width:43px;
  2622. height:30px;
  2623. display:flex;
  2624. transition:none;
  2625. transform-origin:50% 50%;
  2626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2627. font-weight:400;
  2628. font-style:normal;
  2629. font-size:14px;
  2630. color:#7F7F7F;
  2631. text-align:right;
  2632. }
  2633. #u21991 .text {
  2634. position:absolute;
  2635. align-self:center;
  2636. padding:5px 0px 5px 0px;
  2637. box-sizing:border-box;
  2638. width:100%;
  2639. }
  2640. #u21991_text {
  2641. border-width:0px;
  2642. white-space:nowrap;
  2643. text-transform:none;
  2644. }
  2645. #u21992 {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:0px;
  2651. height:0px;
  2652. }
  2653. #u21993_div {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:140px;
  2659. height:40px;
  2660. background:inherit;
  2661. background-color:rgba(255, 255, 255, 1);
  2662. box-sizing:border-box;
  2663. border-width:1px;
  2664. border-style:solid;
  2665. border-color:rgba(201, 201, 201, 1);
  2666. border-radius:4px;
  2667. filter:drop-shadow(none);
  2668. transition:none;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:14px;
  2673. text-align:right;
  2674. }
  2675. #u21993 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:603px;
  2679. top:128px;
  2680. width:140px;
  2681. height:40px;
  2682. display:flex;
  2683. opacity:0.9;
  2684. transition:none;
  2685. transform-origin:50% 50%;
  2686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2687. font-weight:400;
  2688. font-style:normal;
  2689. font-size:14px;
  2690. text-align:right;
  2691. }
  2692. #u21993 .text {
  2693. position:absolute;
  2694. align-self:center;
  2695. padding:2px 10px 2px 8px;
  2696. box-sizing:border-box;
  2697. width:100%;
  2698. }
  2699. #u21993_text {
  2700. border-width:0px;
  2701. word-wrap:break-word;
  2702. text-transform:none;
  2703. visibility:hidden;
  2704. }
  2705. #u21994_input {
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:133px;
  2710. height:23px;
  2711. padding:2px 2px 2px 2px;
  2712. font-family:'ArialMT', 'Arial', sans-serif;
  2713. font-weight:400;
  2714. font-style:normal;
  2715. font-size:11px;
  2716. letter-spacing:normal;
  2717. color:#AAAAAA;
  2718. vertical-align:none;
  2719. text-align:left;
  2720. text-transform:none;
  2721. background-color:transparent;
  2722. border-color:transparent;
  2723. }
  2724. #u21994_input.disabled {
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:133px;
  2729. height:23px;
  2730. padding:2px 2px 2px 2px;
  2731. font-family:'ArialMT', 'Arial', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:11px;
  2735. letter-spacing:normal;
  2736. color:#AAAAAA;
  2737. vertical-align:none;
  2738. text-align:left;
  2739. text-transform:none;
  2740. background-color:transparent;
  2741. border-color:transparent;
  2742. }
  2743. #u21994_div {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:133px;
  2749. height:23px;
  2750. background:inherit;
  2751. background-color:rgba(255, 255, 255, 1);
  2752. border-radius:0px;
  2753. filter:drop-shadow(none);
  2754. transition:none;
  2755. font-size:11px;
  2756. color:#AAAAAA;
  2757. }
  2758. #u21994 {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:607px;
  2762. top:137px;
  2763. width:133px;
  2764. height:23px;
  2765. display:flex;
  2766. opacity:0.9;
  2767. transition:none;
  2768. transform-origin:50% 50%;
  2769. font-size:11px;
  2770. color:#AAAAAA;
  2771. }
  2772. #u21994 .text {
  2773. position:absolute;
  2774. align-self:flex-start;
  2775. padding:2px 2px 2px 2px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u21994_div.disabled {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:133px;
  2785. height:23px;
  2786. background:inherit;
  2787. background-color:rgba(240, 240, 240, 1);
  2788. border-radius:0px;
  2789. filter:drop-shadow(none);
  2790. transition:none;
  2791. font-size:11px;
  2792. color:#AAAAAA;
  2793. }
  2794. #u21994.disabled {
  2795. }
  2796. .u21994_input_option {
  2797. font-size:11px;
  2798. }
  2799. #u21995_div {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:50px;
  2805. height:30px;
  2806. background:inherit;
  2807. background-color:rgba(255, 255, 255, 0);
  2808. border-top:0px;
  2809. border-right:0px;
  2810. border-bottom:0px;
  2811. border-radius:0px;
  2812. border-top-left-radius:0px;
  2813. border-bottom-left-radius:0px;
  2814. filter:drop-shadow(none);
  2815. transition:none;
  2816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:14px;
  2820. color:#7F7F7F;
  2821. text-align:right;
  2822. }
  2823. #u21995 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:770px;
  2827. top:133px;
  2828. width:50px;
  2829. height:30px;
  2830. display:flex;
  2831. transition:none;
  2832. transform-origin:50% 50%;
  2833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. font-size:14px;
  2837. color:#7F7F7F;
  2838. text-align:right;
  2839. }
  2840. #u21995 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:5px 0px 5px 0px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u21995_text {
  2848. border-width:0px;
  2849. white-space:nowrap;
  2850. text-transform:none;
  2851. }
  2852. #u21996 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:0px;
  2857. width:0px;
  2858. height:0px;
  2859. }
  2860. #u21997_div {
  2861. border-width:0px;
  2862. position:absolute;
  2863. left:0px;
  2864. top:0px;
  2865. width:140px;
  2866. height:40px;
  2867. background:inherit;
  2868. background-color:rgba(255, 255, 255, 1);
  2869. box-sizing:border-box;
  2870. border-width:1px;
  2871. border-style:solid;
  2872. border-color:rgba(201, 201, 201, 1);
  2873. border-radius:4px;
  2874. filter:drop-shadow(none);
  2875. transition:none;
  2876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2877. font-weight:400;
  2878. font-style:normal;
  2879. font-size:14px;
  2880. text-align:right;
  2881. }
  2882. #u21997 {
  2883. border-width:0px;
  2884. position:absolute;
  2885. left:820px;
  2886. top:128px;
  2887. width:140px;
  2888. height:40px;
  2889. display:flex;
  2890. opacity:0.9;
  2891. transition:none;
  2892. transform-origin:50% 50%;
  2893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2894. font-weight:400;
  2895. font-style:normal;
  2896. font-size:14px;
  2897. text-align:right;
  2898. }
  2899. #u21997 .text {
  2900. position:absolute;
  2901. align-self:center;
  2902. padding:2px 10px 2px 8px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u21997_text {
  2907. border-width:0px;
  2908. word-wrap:break-word;
  2909. text-transform:none;
  2910. visibility:hidden;
  2911. }
  2912. #u21998_input {
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:133px;
  2917. height:23px;
  2918. padding:2px 2px 2px 2px;
  2919. font-family:'ArialMT', 'Arial', sans-serif;
  2920. font-weight:400;
  2921. font-style:normal;
  2922. font-size:11px;
  2923. letter-spacing:normal;
  2924. color:#AAAAAA;
  2925. vertical-align:none;
  2926. text-align:left;
  2927. text-transform:none;
  2928. background-color:transparent;
  2929. border-color:transparent;
  2930. }
  2931. #u21998_input.disabled {
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:133px;
  2936. height:23px;
  2937. padding:2px 2px 2px 2px;
  2938. font-family:'ArialMT', 'Arial', sans-serif;
  2939. font-weight:400;
  2940. font-style:normal;
  2941. font-size:11px;
  2942. letter-spacing:normal;
  2943. color:#AAAAAA;
  2944. vertical-align:none;
  2945. text-align:left;
  2946. text-transform:none;
  2947. background-color:transparent;
  2948. border-color:transparent;
  2949. }
  2950. #u21998_div {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:133px;
  2956. height:23px;
  2957. background:inherit;
  2958. background-color:rgba(255, 255, 255, 1);
  2959. border-radius:0px;
  2960. filter:drop-shadow(none);
  2961. transition:none;
  2962. font-size:11px;
  2963. color:#AAAAAA;
  2964. }
  2965. #u21998 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:824px;
  2969. top:137px;
  2970. width:133px;
  2971. height:23px;
  2972. display:flex;
  2973. opacity:0.9;
  2974. transition:none;
  2975. transform-origin:50% 50%;
  2976. font-size:11px;
  2977. color:#AAAAAA;
  2978. }
  2979. #u21998 .text {
  2980. position:absolute;
  2981. align-self:flex-start;
  2982. padding:2px 2px 2px 2px;
  2983. box-sizing:border-box;
  2984. width:100%;
  2985. }
  2986. #u21998_div.disabled {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:133px;
  2992. height:23px;
  2993. background:inherit;
  2994. background-color:rgba(240, 240, 240, 1);
  2995. border-radius:0px;
  2996. filter:drop-shadow(none);
  2997. transition:none;
  2998. font-size:11px;
  2999. color:#AAAAAA;
  3000. }
  3001. #u21998.disabled {
  3002. }
  3003. .u21998_input_option {
  3004. font-size:11px;
  3005. }
  3006. #u21999_div {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:71px;
  3012. height:30px;
  3013. background:inherit;
  3014. background-color:rgba(255, 255, 255, 0);
  3015. border-top:0px;
  3016. border-right:0px;
  3017. border-bottom:0px;
  3018. border-radius:0px;
  3019. border-top-left-radius:0px;
  3020. border-bottom-left-radius:0px;
  3021. filter:drop-shadow(none);
  3022. transition:none;
  3023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3024. font-weight:400;
  3025. font-style:normal;
  3026. font-size:14px;
  3027. color:#7F7F7F;
  3028. text-align:right;
  3029. }
  3030. #u21999 {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:350px;
  3034. top:188px;
  3035. width:71px;
  3036. height:30px;
  3037. display:flex;
  3038. transition:none;
  3039. transform-origin:50% 50%;
  3040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3041. font-weight:400;
  3042. font-style:normal;
  3043. font-size:14px;
  3044. color:#7F7F7F;
  3045. text-align:right;
  3046. }
  3047. #u21999 .text {
  3048. position:absolute;
  3049. align-self:center;
  3050. padding:5px 0px 5px 0px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u21999_text {
  3055. border-width:0px;
  3056. white-space:nowrap;
  3057. text-transform:none;
  3058. }
  3059. #u22000 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:0px;
  3065. height:0px;
  3066. }
  3067. #u22001_div {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:119px;
  3073. height:40px;
  3074. background:inherit;
  3075. background-color:rgba(242, 242, 242, 1);
  3076. box-sizing:border-box;
  3077. border-width:1px;
  3078. border-style:solid;
  3079. border-color:rgba(201, 201, 201, 1);
  3080. border-radius:4px;
  3081. filter:drop-shadow(none);
  3082. transition:none;
  3083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3084. font-weight:400;
  3085. font-style:normal;
  3086. font-size:12px;
  3087. color:#CCCCCC;
  3088. text-align:right;
  3089. }
  3090. #u22001 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:421px;
  3094. top:183px;
  3095. width:119px;
  3096. height:40px;
  3097. display:flex;
  3098. transition:none;
  3099. transform-origin:50% 50%;
  3100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3101. font-weight:400;
  3102. font-style:normal;
  3103. font-size:12px;
  3104. color:#CCCCCC;
  3105. text-align:right;
  3106. }
  3107. #u22001 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:2px 8px 2px 8px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u22001_text {
  3115. border-width:0px;
  3116. word-wrap:break-word;
  3117. text-transform:none;
  3118. }
  3119. #u22002_input {
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:68px;
  3124. height:38px;
  3125. padding:2px 2px 2px 2px;
  3126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3127. font-weight:400;
  3128. font-style:normal;
  3129. font-size:14px;
  3130. letter-spacing:normal;
  3131. color:#000000;
  3132. vertical-align:none;
  3133. text-align:left;
  3134. text-transform:none;
  3135. background-color:transparent;
  3136. border-color:transparent;
  3137. }
  3138. #u22002_input.hint {
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:68px;
  3143. height:38px;
  3144. padding:2px 2px 2px 2px;
  3145. font-family:"Microsoft YaHei", sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. font-size:12px;
  3149. letter-spacing:normal;
  3150. color:#AAAAAA;
  3151. vertical-align:none;
  3152. text-align:left;
  3153. text-transform:none;
  3154. background-color:transparent;
  3155. border-color:transparent;
  3156. }
  3157. #u22002_input.disabled {
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:68px;
  3162. height:38px;
  3163. padding:2px 2px 2px 2px;
  3164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. font-size:14px;
  3168. letter-spacing:normal;
  3169. color:#000000;
  3170. vertical-align:none;
  3171. text-align:left;
  3172. text-transform:none;
  3173. background-color:transparent;
  3174. border-color:transparent;
  3175. }
  3176. #u22002_input.hint.disabled {
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:68px;
  3181. height:38px;
  3182. padding:2px 2px 2px 2px;
  3183. font-family:"Microsoft YaHei", sans-serif;
  3184. font-weight:400;
  3185. font-style:normal;
  3186. font-size:12px;
  3187. letter-spacing:normal;
  3188. color:#AAAAAA;
  3189. vertical-align:none;
  3190. text-align:left;
  3191. text-transform:none;
  3192. background-color:transparent;
  3193. border-color:transparent;
  3194. }
  3195. #u22002_div {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:68px;
  3201. height:38px;
  3202. background:inherit;
  3203. background-color:rgba(242, 242, 242, 1);
  3204. border-radius:0px;
  3205. filter:drop-shadow(none);
  3206. transition:none;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:14px;
  3211. }
  3212. #u22002 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:424px;
  3216. top:184px;
  3217. width:68px;
  3218. height:38px;
  3219. display:flex;
  3220. transition:none;
  3221. transform-origin:50% 50%;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:14px;
  3226. }
  3227. #u22002 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 2px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u22002_div.hint {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:68px;
  3240. height:38px;
  3241. background:inherit;
  3242. background-color:rgba(242, 242, 242, 1);
  3243. border-radius:0px;
  3244. filter:drop-shadow(none);
  3245. transition:none;
  3246. font-family:"Microsoft YaHei", sans-serif;
  3247. font-weight:400;
  3248. font-style:normal;
  3249. font-size:14px;
  3250. }
  3251. #u22002.hint {
  3252. }
  3253. #u22002_div.disabled {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:0px;
  3257. top:0px;
  3258. width:68px;
  3259. height:38px;
  3260. background:inherit;
  3261. background-color:rgba(240, 240, 240, 1);
  3262. border-radius:0px;
  3263. filter:drop-shadow(none);
  3264. transition:none;
  3265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:14px;
  3269. }
  3270. #u22002.disabled {
  3271. }
  3272. #u22002_div.hint.disabled {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:68px;
  3278. height:38px;
  3279. background:inherit;
  3280. background-color:rgba(240, 240, 240, 1);
  3281. border-radius:0px;
  3282. filter:drop-shadow(none);
  3283. transition:none;
  3284. font-family:"Microsoft YaHei", sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:14px;
  3288. }
  3289. #u22002.hint.disabled {
  3290. }
  3291. #u22003_div {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:71px;
  3297. height:30px;
  3298. background:inherit;
  3299. background-color:rgba(255, 255, 255, 0);
  3300. border-top:0px;
  3301. border-right:0px;
  3302. border-bottom:0px;
  3303. border-radius:0px;
  3304. border-top-left-radius:0px;
  3305. border-bottom-left-radius:0px;
  3306. filter:drop-shadow(none);
  3307. transition:none;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:14px;
  3312. color:#7F7F7F;
  3313. text-align:right;
  3314. }
  3315. #u22003 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:553px;
  3319. top:188px;
  3320. width:71px;
  3321. height:30px;
  3322. display:flex;
  3323. transition:none;
  3324. transform-origin:50% 50%;
  3325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3326. font-weight:400;
  3327. font-style:normal;
  3328. font-size:14px;
  3329. color:#7F7F7F;
  3330. text-align:right;
  3331. }
  3332. #u22003 .text {
  3333. position:absolute;
  3334. align-self:center;
  3335. padding:5px 0px 5px 0px;
  3336. box-sizing:border-box;
  3337. width:100%;
  3338. }
  3339. #u22003_text {
  3340. border-width:0px;
  3341. white-space:nowrap;
  3342. text-transform:none;
  3343. }
  3344. #u22004 {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:0px;
  3350. height:0px;
  3351. }
  3352. #u22005_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:119px;
  3358. height:40px;
  3359. background:inherit;
  3360. background-color:rgba(242, 242, 242, 1);
  3361. box-sizing:border-box;
  3362. border-width:1px;
  3363. border-style:solid;
  3364. border-color:rgba(201, 201, 201, 1);
  3365. border-radius:4px;
  3366. filter:drop-shadow(none);
  3367. transition:none;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:12px;
  3372. color:#CCCCCC;
  3373. text-align:right;
  3374. }
  3375. #u22005 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:624px;
  3379. top:183px;
  3380. width:119px;
  3381. height:40px;
  3382. display:flex;
  3383. transition:none;
  3384. transform-origin:50% 50%;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:12px;
  3389. color:#CCCCCC;
  3390. text-align:right;
  3391. }
  3392. #u22005 .text {
  3393. position:absolute;
  3394. align-self:center;
  3395. padding:2px 8px 2px 8px;
  3396. box-sizing:border-box;
  3397. width:100%;
  3398. }
  3399. #u22005_text {
  3400. border-width:0px;
  3401. word-wrap:break-word;
  3402. text-transform:none;
  3403. }
  3404. #u22006_input {
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:67px;
  3409. height:38px;
  3410. padding:2px 2px 2px 2px;
  3411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3412. font-weight:400;
  3413. font-style:normal;
  3414. font-size:14px;
  3415. letter-spacing:normal;
  3416. color:#000000;
  3417. vertical-align:none;
  3418. text-align:left;
  3419. text-transform:none;
  3420. background-color:transparent;
  3421. border-color:transparent;
  3422. }
  3423. #u22006_input.hint {
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:67px;
  3428. height:38px;
  3429. padding:2px 2px 2px 2px;
  3430. font-family:"Microsoft YaHei", sans-serif;
  3431. font-weight:400;
  3432. font-style:normal;
  3433. font-size:12px;
  3434. letter-spacing:normal;
  3435. color:#AAAAAA;
  3436. vertical-align:none;
  3437. text-align:left;
  3438. text-transform:none;
  3439. background-color:transparent;
  3440. border-color:transparent;
  3441. }
  3442. #u22006_input.disabled {
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:67px;
  3447. height:38px;
  3448. padding:2px 2px 2px 2px;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:14px;
  3453. letter-spacing:normal;
  3454. color:#000000;
  3455. vertical-align:none;
  3456. text-align:left;
  3457. text-transform:none;
  3458. background-color:transparent;
  3459. border-color:transparent;
  3460. }
  3461. #u22006_input.hint.disabled {
  3462. position:absolute;
  3463. left:0px;
  3464. top:0px;
  3465. width:67px;
  3466. height:38px;
  3467. padding:2px 2px 2px 2px;
  3468. font-family:"Microsoft YaHei", sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:12px;
  3472. letter-spacing:normal;
  3473. color:#AAAAAA;
  3474. vertical-align:none;
  3475. text-align:left;
  3476. text-transform:none;
  3477. background-color:transparent;
  3478. border-color:transparent;
  3479. }
  3480. #u22006_div {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:67px;
  3486. height:38px;
  3487. background:inherit;
  3488. background-color:rgba(242, 242, 242, 1);
  3489. border-radius:0px;
  3490. filter:drop-shadow(none);
  3491. transition:none;
  3492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3493. font-weight:400;
  3494. font-style:normal;
  3495. font-size:14px;
  3496. }
  3497. #u22006 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:627px;
  3501. top:184px;
  3502. width:67px;
  3503. height:38px;
  3504. display:flex;
  3505. transition:none;
  3506. transform-origin:50% 50%;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:14px;
  3511. }
  3512. #u22006 .text {
  3513. position:absolute;
  3514. align-self:center;
  3515. padding:2px 2px 2px 2px;
  3516. box-sizing:border-box;
  3517. width:100%;
  3518. }
  3519. #u22006_div.hint {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:67px;
  3525. height:38px;
  3526. background:inherit;
  3527. background-color:rgba(242, 242, 242, 1);
  3528. border-radius:0px;
  3529. filter:drop-shadow(none);
  3530. transition:none;
  3531. font-family:"Microsoft YaHei", sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:14px;
  3535. }
  3536. #u22006.hint {
  3537. }
  3538. #u22006_div.disabled {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:67px;
  3544. height:38px;
  3545. background:inherit;
  3546. background-color:rgba(240, 240, 240, 1);
  3547. border-radius:0px;
  3548. filter:drop-shadow(none);
  3549. transition:none;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:14px;
  3554. }
  3555. #u22006.disabled {
  3556. }
  3557. #u22006_div.hint.disabled {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:67px;
  3563. height:38px;
  3564. background:inherit;
  3565. background-color:rgba(240, 240, 240, 1);
  3566. border-radius:0px;
  3567. filter:drop-shadow(none);
  3568. transition:none;
  3569. font-family:"Microsoft YaHei", sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:14px;
  3573. }
  3574. #u22006.hint.disabled {
  3575. }
  3576. #u22007 {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:0px;
  3582. height:0px;
  3583. }
  3584. #u22008 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:195px;
  3588. top:493px;
  3589. width:832px;
  3590. height:140px;
  3591. }
  3592. #u22009 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:39px;
  3598. height:40px;
  3599. display:flex;
  3600. transition:none;
  3601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:12px;
  3605. color:#FFFFFF;
  3606. }
  3607. #u22009 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 2px 2px 2px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u22009_img {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:39px;
  3620. height:40px;
  3621. }
  3622. #u22009_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. }
  3627. #u22010 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:39px;
  3631. top:0px;
  3632. width:80px;
  3633. height:40px;
  3634. display:flex;
  3635. transition:none;
  3636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3637. font-weight:400;
  3638. font-style:normal;
  3639. font-size:12px;
  3640. color:#FFFFFF;
  3641. }
  3642. #u22010 .text {
  3643. position:absolute;
  3644. align-self:center;
  3645. padding:2px 2px 2px 2px;
  3646. box-sizing:border-box;
  3647. width:100%;
  3648. }
  3649. #u22010_img {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:80px;
  3655. height:40px;
  3656. }
  3657. #u22010_text {
  3658. border-width:0px;
  3659. word-wrap:break-word;
  3660. text-transform:none;
  3661. }
  3662. #u22011 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:119px;
  3666. top:0px;
  3667. width:80px;
  3668. height:40px;
  3669. display:flex;
  3670. transition:none;
  3671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:12px;
  3675. color:#FFFFFF;
  3676. }
  3677. #u22011 .text {
  3678. position:absolute;
  3679. align-self:center;
  3680. padding:2px 2px 2px 2px;
  3681. box-sizing:border-box;
  3682. width:100%;
  3683. }
  3684. #u22011_img {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:80px;
  3690. height:40px;
  3691. }
  3692. #u22011_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. }
  3697. #u22012 {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:199px;
  3701. top:0px;
  3702. width:80px;
  3703. height:40px;
  3704. display:flex;
  3705. transition:none;
  3706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3707. font-weight:400;
  3708. font-style:normal;
  3709. font-size:12px;
  3710. color:#FFFFFF;
  3711. }
  3712. #u22012 .text {
  3713. position:absolute;
  3714. align-self:center;
  3715. padding:2px 2px 2px 2px;
  3716. box-sizing:border-box;
  3717. width:100%;
  3718. }
  3719. #u22012_img {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:0px;
  3724. width:80px;
  3725. height:40px;
  3726. }
  3727. #u22012_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. }
  3732. #u22013 {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:279px;
  3736. top:0px;
  3737. width:80px;
  3738. height:40px;
  3739. display:flex;
  3740. transition:none;
  3741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:12px;
  3745. color:#FFFFFF;
  3746. }
  3747. #u22013 .text {
  3748. position:absolute;
  3749. align-self:center;
  3750. padding:2px 2px 2px 2px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u22013_img {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:80px;
  3760. height:40px;
  3761. }
  3762. #u22013_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. }
  3767. #u22014 {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:359px;
  3771. top:0px;
  3772. width:76px;
  3773. height:40px;
  3774. display:flex;
  3775. transition:none;
  3776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. font-size:12px;
  3780. color:#FFFFFF;
  3781. }
  3782. #u22014 .text {
  3783. position:absolute;
  3784. align-self:center;
  3785. padding:2px 2px 2px 2px;
  3786. box-sizing:border-box;
  3787. width:100%;
  3788. }
  3789. #u22014_img {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:76px;
  3795. height:40px;
  3796. }
  3797. #u22014_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. }
  3802. #u22015 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:435px;
  3806. top:0px;
  3807. width:80px;
  3808. height:40px;
  3809. display:flex;
  3810. transition:none;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:12px;
  3815. color:#FFFFFF;
  3816. }
  3817. #u22015 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:2px 2px 2px 2px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u22015_img {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:80px;
  3830. height:40px;
  3831. }
  3832. #u22015_text {
  3833. border-width:0px;
  3834. word-wrap:break-word;
  3835. text-transform:none;
  3836. }
  3837. #u22016 {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:515px;
  3841. top:0px;
  3842. width:80px;
  3843. height:40px;
  3844. display:flex;
  3845. transition:none;
  3846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3847. font-weight:400;
  3848. font-style:normal;
  3849. font-size:12px;
  3850. color:#FFFFFF;
  3851. }
  3852. #u22016 .text {
  3853. position:absolute;
  3854. align-self:center;
  3855. padding:2px 2px 2px 2px;
  3856. box-sizing:border-box;
  3857. width:100%;
  3858. }
  3859. #u22016_img {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:80px;
  3865. height:40px;
  3866. }
  3867. #u22016_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. }
  3872. #u22017 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:595px;
  3876. top:0px;
  3877. width:83px;
  3878. height:40px;
  3879. display:flex;
  3880. transition:none;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:12px;
  3885. color:#FFFFFF;
  3886. }
  3887. #u22017 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:2px 2px 2px 2px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u22017_img {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:0px;
  3898. top:0px;
  3899. width:83px;
  3900. height:40px;
  3901. }
  3902. #u22017_text {
  3903. border-width:0px;
  3904. word-wrap:break-word;
  3905. text-transform:none;
  3906. }
  3907. #u22018 {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:678px;
  3911. top:0px;
  3912. width:83px;
  3913. height:40px;
  3914. display:flex;
  3915. transition:none;
  3916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3917. font-weight:400;
  3918. font-style:normal;
  3919. font-size:12px;
  3920. color:#FFFFFF;
  3921. }
  3922. #u22018 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 2px 2px 2px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u22018_img {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:83px;
  3935. height:40px;
  3936. }
  3937. #u22018_text {
  3938. border-width:0px;
  3939. word-wrap:break-word;
  3940. text-transform:none;
  3941. }
  3942. #u22019 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:761px;
  3946. top:0px;
  3947. width:71px;
  3948. height:40px;
  3949. display:flex;
  3950. transition:none;
  3951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3952. font-weight:400;
  3953. font-style:normal;
  3954. font-size:12px;
  3955. color:#FFFFFF;
  3956. }
  3957. #u22019 .text {
  3958. position:absolute;
  3959. align-self:center;
  3960. padding:2px 2px 2px 2px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u22019_img {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:0px;
  3968. top:0px;
  3969. width:71px;
  3970. height:40px;
  3971. }
  3972. #u22019_text {
  3973. border-width:0px;
  3974. word-wrap:break-word;
  3975. text-transform:none;
  3976. }
  3977. #u22020 {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:40px;
  3982. width:39px;
  3983. height:30px;
  3984. display:flex;
  3985. transition:none;
  3986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3987. font-weight:400;
  3988. font-style:normal;
  3989. font-size:12px;
  3990. }
  3991. #u22020 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 2px 2px 2px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u22020_img {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:39px;
  4004. height:30px;
  4005. }
  4006. #u22020_text {
  4007. border-width:0px;
  4008. word-wrap:break-word;
  4009. text-transform:none;
  4010. }
  4011. #u22021 {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:39px;
  4015. top:40px;
  4016. width:80px;
  4017. height:30px;
  4018. display:flex;
  4019. transition:none;
  4020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4021. font-weight:400;
  4022. font-style:normal;
  4023. font-size:12px;
  4024. }
  4025. #u22021 .text {
  4026. position:absolute;
  4027. align-self:center;
  4028. padding:2px 2px 2px 2px;
  4029. box-sizing:border-box;
  4030. width:100%;
  4031. }
  4032. #u22021_img {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:80px;
  4038. height:30px;
  4039. }
  4040. #u22021_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. visibility:hidden;
  4045. }
  4046. #u22022 {
  4047. border-width:0px;
  4048. position:absolute;
  4049. left:119px;
  4050. top:40px;
  4051. width:80px;
  4052. height:30px;
  4053. display:flex;
  4054. transition:none;
  4055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4056. font-weight:400;
  4057. font-style:normal;
  4058. font-size:12px;
  4059. }
  4060. #u22022 .text {
  4061. position:absolute;
  4062. align-self:center;
  4063. padding:2px 2px 2px 2px;
  4064. box-sizing:border-box;
  4065. width:100%;
  4066. }
  4067. #u22022_img {
  4068. border-width:0px;
  4069. position:absolute;
  4070. left:0px;
  4071. top:0px;
  4072. width:80px;
  4073. height:30px;
  4074. }
  4075. #u22022_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. visibility:hidden;
  4080. }
  4081. #u22023 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:199px;
  4085. top:40px;
  4086. width:80px;
  4087. height:30px;
  4088. display:flex;
  4089. transition:none;
  4090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:12px;
  4094. }
  4095. #u22023 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 2px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u22023_img {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:80px;
  4108. height:30px;
  4109. }
  4110. #u22023_text {
  4111. border-width:0px;
  4112. word-wrap:break-word;
  4113. text-transform:none;
  4114. visibility:hidden;
  4115. }
  4116. #u22024 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:279px;
  4120. top:40px;
  4121. width:80px;
  4122. height:30px;
  4123. display:flex;
  4124. transition:none;
  4125. font-size:12px;
  4126. }
  4127. #u22024 .text {
  4128. position:absolute;
  4129. align-self:center;
  4130. padding:2px 2px 2px 2px;
  4131. box-sizing:border-box;
  4132. width:100%;
  4133. }
  4134. #u22024_img {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:0px;
  4139. width:80px;
  4140. height:30px;
  4141. }
  4142. #u22024_text {
  4143. border-width:0px;
  4144. word-wrap:break-word;
  4145. text-transform:none;
  4146. visibility:hidden;
  4147. }
  4148. #u22025 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:359px;
  4152. top:40px;
  4153. width:76px;
  4154. height:30px;
  4155. display:flex;
  4156. transition:none;
  4157. font-size:12px;
  4158. }
  4159. #u22025 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:2px 2px 2px 2px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u22025_img {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:76px;
  4172. height:30px;
  4173. }
  4174. #u22025_text {
  4175. border-width:0px;
  4176. word-wrap:break-word;
  4177. text-transform:none;
  4178. visibility:hidden;
  4179. }
  4180. #u22026 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:435px;
  4184. top:40px;
  4185. width:80px;
  4186. height:30px;
  4187. display:flex;
  4188. transition:none;
  4189. font-size:12px;
  4190. }
  4191. #u22026 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 2px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u22026_img {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:0px;
  4202. top:0px;
  4203. width:80px;
  4204. height:30px;
  4205. }
  4206. #u22026_text {
  4207. border-width:0px;
  4208. word-wrap:break-word;
  4209. text-transform:none;
  4210. visibility:hidden;
  4211. }
  4212. #u22027 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:515px;
  4216. top:40px;
  4217. width:80px;
  4218. height:30px;
  4219. display:flex;
  4220. transition:none;
  4221. font-size:12px;
  4222. }
  4223. #u22027 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 2px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u22027_img {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:0px;
  4234. top:0px;
  4235. width:80px;
  4236. height:30px;
  4237. }
  4238. #u22027_text {
  4239. border-width:0px;
  4240. word-wrap:break-word;
  4241. text-transform:none;
  4242. visibility:hidden;
  4243. }
  4244. #u22028 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:595px;
  4248. top:40px;
  4249. width:83px;
  4250. height:30px;
  4251. display:flex;
  4252. transition:none;
  4253. font-size:12px;
  4254. }
  4255. #u22028 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:2px 2px 2px 2px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u22028_img {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:0px;
  4266. top:0px;
  4267. width:83px;
  4268. height:30px;
  4269. }
  4270. #u22028_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. visibility:hidden;
  4275. }
  4276. #u22029 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:678px;
  4280. top:40px;
  4281. width:83px;
  4282. height:30px;
  4283. display:flex;
  4284. transition:none;
  4285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4286. font-weight:400;
  4287. font-style:normal;
  4288. font-size:12px;
  4289. }
  4290. #u22029 .text {
  4291. position:absolute;
  4292. align-self:center;
  4293. padding:2px 2px 2px 2px;
  4294. box-sizing:border-box;
  4295. width:100%;
  4296. }
  4297. #u22029_img {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:0px;
  4301. top:0px;
  4302. width:83px;
  4303. height:30px;
  4304. }
  4305. #u22029_text {
  4306. border-width:0px;
  4307. word-wrap:break-word;
  4308. text-transform:none;
  4309. visibility:hidden;
  4310. }
  4311. #u22030 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:761px;
  4315. top:40px;
  4316. width:71px;
  4317. height:30px;
  4318. display:flex;
  4319. transition:none;
  4320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4321. font-weight:400;
  4322. font-style:normal;
  4323. font-size:12px;
  4324. color:#1890FF;
  4325. }
  4326. #u22030 .text {
  4327. position:absolute;
  4328. align-self:center;
  4329. padding:2px 2px 2px 2px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u22030_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:71px;
  4339. height:30px;
  4340. }
  4341. #u22030_text {
  4342. border-width:0px;
  4343. word-wrap:break-word;
  4344. text-transform:none;
  4345. }
  4346. #u22031 {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:70px;
  4351. width:39px;
  4352. height:40px;
  4353. display:flex;
  4354. transition:none;
  4355. font-size:12px;
  4356. }
  4357. #u22031 .text {
  4358. position:absolute;
  4359. align-self:center;
  4360. padding:2px 2px 2px 2px;
  4361. box-sizing:border-box;
  4362. width:100%;
  4363. }
  4364. #u22031_img {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:39px;
  4370. height:40px;
  4371. }
  4372. #u22031_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. }
  4377. #u22032 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:39px;
  4381. top:70px;
  4382. width:80px;
  4383. height:40px;
  4384. display:flex;
  4385. transition:none;
  4386. font-size:12px;
  4387. }
  4388. #u22032 .text {
  4389. position:absolute;
  4390. align-self:center;
  4391. padding:2px 2px 2px 2px;
  4392. box-sizing:border-box;
  4393. width:100%;
  4394. }
  4395. #u22032_img {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:80px;
  4401. height:40px;
  4402. }
  4403. #u22032_text {
  4404. border-width:0px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. visibility:hidden;
  4408. }
  4409. #u22033 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:119px;
  4413. top:70px;
  4414. width:80px;
  4415. height:40px;
  4416. display:flex;
  4417. transition:none;
  4418. font-size:12px;
  4419. }
  4420. #u22033 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 2px 2px 2px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u22033_img {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:80px;
  4433. height:40px;
  4434. }
  4435. #u22033_text {
  4436. border-width:0px;
  4437. word-wrap:break-word;
  4438. text-transform:none;
  4439. visibility:hidden;
  4440. }
  4441. #u22034 {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:199px;
  4445. top:70px;
  4446. width:80px;
  4447. height:40px;
  4448. display:flex;
  4449. transition:none;
  4450. font-size:12px;
  4451. }
  4452. #u22034 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 2px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u22034_img {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:0px;
  4463. top:0px;
  4464. width:80px;
  4465. height:40px;
  4466. }
  4467. #u22034_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u22035 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:279px;
  4477. top:70px;
  4478. width:80px;
  4479. height:40px;
  4480. display:flex;
  4481. transition:none;
  4482. font-size:12px;
  4483. }
  4484. #u22035 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 2px 2px 2px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u22035_img {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:80px;
  4497. height:40px;
  4498. }
  4499. #u22035_text {
  4500. border-width:0px;
  4501. word-wrap:break-word;
  4502. text-transform:none;
  4503. visibility:hidden;
  4504. }
  4505. #u22036 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:359px;
  4509. top:70px;
  4510. width:76px;
  4511. height:40px;
  4512. display:flex;
  4513. transition:none;
  4514. font-size:12px;
  4515. }
  4516. #u22036 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:2px 2px 2px 2px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u22036_img {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:0px;
  4527. top:0px;
  4528. width:76px;
  4529. height:40px;
  4530. }
  4531. #u22036_text {
  4532. border-width:0px;
  4533. word-wrap:break-word;
  4534. text-transform:none;
  4535. visibility:hidden;
  4536. }
  4537. #u22037 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:435px;
  4541. top:70px;
  4542. width:80px;
  4543. height:40px;
  4544. display:flex;
  4545. transition:none;
  4546. font-size:12px;
  4547. }
  4548. #u22037 .text {
  4549. position:absolute;
  4550. align-self:center;
  4551. padding:2px 2px 2px 2px;
  4552. box-sizing:border-box;
  4553. width:100%;
  4554. }
  4555. #u22037_img {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:80px;
  4561. height:40px;
  4562. }
  4563. #u22037_text {
  4564. border-width:0px;
  4565. word-wrap:break-word;
  4566. text-transform:none;
  4567. visibility:hidden;
  4568. }
  4569. #u22038 {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:515px;
  4573. top:70px;
  4574. width:80px;
  4575. height:40px;
  4576. display:flex;
  4577. transition:none;
  4578. font-size:12px;
  4579. }
  4580. #u22038 .text {
  4581. position:absolute;
  4582. align-self:center;
  4583. padding:2px 2px 2px 2px;
  4584. box-sizing:border-box;
  4585. width:100%;
  4586. }
  4587. #u22038_img {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:80px;
  4593. height:40px;
  4594. }
  4595. #u22038_text {
  4596. border-width:0px;
  4597. word-wrap:break-word;
  4598. text-transform:none;
  4599. visibility:hidden;
  4600. }
  4601. #u22039 {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:595px;
  4605. top:70px;
  4606. width:83px;
  4607. height:40px;
  4608. display:flex;
  4609. transition:none;
  4610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4611. font-weight:400;
  4612. font-style:normal;
  4613. font-size:12px;
  4614. }
  4615. #u22039 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:2px 2px 2px 2px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u22039_img {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:83px;
  4628. height:40px;
  4629. }
  4630. #u22039_text {
  4631. border-width:0px;
  4632. word-wrap:break-word;
  4633. text-transform:none;
  4634. }
  4635. #u22040 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:678px;
  4639. top:70px;
  4640. width:83px;
  4641. height:40px;
  4642. display:flex;
  4643. transition:none;
  4644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. font-size:12px;
  4648. }
  4649. #u22040 .text {
  4650. position:absolute;
  4651. align-self:center;
  4652. padding:2px 2px 2px 2px;
  4653. box-sizing:border-box;
  4654. width:100%;
  4655. }
  4656. #u22040_img {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:83px;
  4662. height:40px;
  4663. }
  4664. #u22040_text {
  4665. border-width:0px;
  4666. word-wrap:break-word;
  4667. text-transform:none;
  4668. }
  4669. #u22041 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:761px;
  4673. top:70px;
  4674. width:71px;
  4675. height:40px;
  4676. display:flex;
  4677. transition:none;
  4678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4679. font-weight:400;
  4680. font-style:normal;
  4681. font-size:12px;
  4682. color:#1890FF;
  4683. }
  4684. #u22041 .text {
  4685. position:absolute;
  4686. align-self:center;
  4687. padding:2px 2px 2px 2px;
  4688. box-sizing:border-box;
  4689. width:100%;
  4690. }
  4691. #u22041_img {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:71px;
  4697. height:40px;
  4698. }
  4699. #u22041_text {
  4700. border-width:0px;
  4701. word-wrap:break-word;
  4702. text-transform:none;
  4703. }
  4704. #u22042 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:0px;
  4708. top:110px;
  4709. width:39px;
  4710. height:30px;
  4711. display:flex;
  4712. transition:none;
  4713. font-size:12px;
  4714. }
  4715. #u22042 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:2px 2px 2px 2px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u22042_img {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:39px;
  4728. height:30px;
  4729. }
  4730. #u22042_text {
  4731. border-width:0px;
  4732. word-wrap:break-word;
  4733. text-transform:none;
  4734. }
  4735. #u22043 {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:39px;
  4739. top:110px;
  4740. width:80px;
  4741. height:30px;
  4742. display:flex;
  4743. transition:none;
  4744. font-size:12px;
  4745. }
  4746. #u22043 .text {
  4747. position:absolute;
  4748. align-self:center;
  4749. padding:2px 2px 2px 2px;
  4750. box-sizing:border-box;
  4751. width:100%;
  4752. }
  4753. #u22043_img {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:80px;
  4759. height:30px;
  4760. }
  4761. #u22043_text {
  4762. border-width:0px;
  4763. word-wrap:break-word;
  4764. text-transform:none;
  4765. visibility:hidden;
  4766. }
  4767. #u22044 {
  4768. border-width:0px;
  4769. position:absolute;
  4770. left:119px;
  4771. top:110px;
  4772. width:80px;
  4773. height:30px;
  4774. display:flex;
  4775. transition:none;
  4776. font-size:12px;
  4777. }
  4778. #u22044 .text {
  4779. position:absolute;
  4780. align-self:center;
  4781. padding:2px 2px 2px 2px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u22044_img {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:0px;
  4790. width:80px;
  4791. height:30px;
  4792. }
  4793. #u22044_text {
  4794. border-width:0px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. visibility:hidden;
  4798. }
  4799. #u22045 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:199px;
  4803. top:110px;
  4804. width:80px;
  4805. height:30px;
  4806. display:flex;
  4807. transition:none;
  4808. font-size:12px;
  4809. }
  4810. #u22045 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:2px 2px 2px 2px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u22045_img {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:80px;
  4823. height:30px;
  4824. }
  4825. #u22045_text {
  4826. border-width:0px;
  4827. word-wrap:break-word;
  4828. text-transform:none;
  4829. visibility:hidden;
  4830. }
  4831. #u22046 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:279px;
  4835. top:110px;
  4836. width:80px;
  4837. height:30px;
  4838. display:flex;
  4839. transition:none;
  4840. font-size:12px;
  4841. }
  4842. #u22046 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:2px 2px 2px 2px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u22046_img {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:80px;
  4855. height:30px;
  4856. }
  4857. #u22046_text {
  4858. border-width:0px;
  4859. word-wrap:break-word;
  4860. text-transform:none;
  4861. visibility:hidden;
  4862. }
  4863. #u22047 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:359px;
  4867. top:110px;
  4868. width:76px;
  4869. height:30px;
  4870. display:flex;
  4871. transition:none;
  4872. font-size:12px;
  4873. }
  4874. #u22047 .text {
  4875. position:absolute;
  4876. align-self:center;
  4877. padding:2px 2px 2px 2px;
  4878. box-sizing:border-box;
  4879. width:100%;
  4880. }
  4881. #u22047_img {
  4882. border-width:0px;
  4883. position:absolute;
  4884. left:0px;
  4885. top:0px;
  4886. width:76px;
  4887. height:30px;
  4888. }
  4889. #u22047_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. visibility:hidden;
  4894. }
  4895. #u22048 {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:435px;
  4899. top:110px;
  4900. width:80px;
  4901. height:30px;
  4902. display:flex;
  4903. transition:none;
  4904. font-size:12px;
  4905. }
  4906. #u22048 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:2px 2px 2px 2px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u22048_img {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:80px;
  4919. height:30px;
  4920. }
  4921. #u22048_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u22049 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:515px;
  4931. top:110px;
  4932. width:80px;
  4933. height:30px;
  4934. display:flex;
  4935. transition:none;
  4936. font-size:12px;
  4937. }
  4938. #u22049 .text {
  4939. position:absolute;
  4940. align-self:center;
  4941. padding:2px 2px 2px 2px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u22049_img {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:80px;
  4951. height:30px;
  4952. }
  4953. #u22049_text {
  4954. border-width:0px;
  4955. word-wrap:break-word;
  4956. text-transform:none;
  4957. visibility:hidden;
  4958. }
  4959. #u22050 {
  4960. border-width:0px;
  4961. position:absolute;
  4962. left:595px;
  4963. top:110px;
  4964. width:83px;
  4965. height:30px;
  4966. display:flex;
  4967. transition:none;
  4968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:12px;
  4972. }
  4973. #u22050 .text {
  4974. position:absolute;
  4975. align-self:center;
  4976. padding:2px 2px 2px 2px;
  4977. box-sizing:border-box;
  4978. width:100%;
  4979. }
  4980. #u22050_img {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:83px;
  4986. height:30px;
  4987. }
  4988. #u22050_text {
  4989. border-width:0px;
  4990. word-wrap:break-word;
  4991. text-transform:none;
  4992. }
  4993. #u22051 {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:678px;
  4997. top:110px;
  4998. width:83px;
  4999. height:30px;
  5000. display:flex;
  5001. transition:none;
  5002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5003. font-weight:400;
  5004. font-style:normal;
  5005. font-size:12px;
  5006. }
  5007. #u22051 .text {
  5008. position:absolute;
  5009. align-self:center;
  5010. padding:2px 2px 2px 2px;
  5011. box-sizing:border-box;
  5012. width:100%;
  5013. }
  5014. #u22051_img {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:83px;
  5020. height:30px;
  5021. }
  5022. #u22051_text {
  5023. border-width:0px;
  5024. word-wrap:break-word;
  5025. text-transform:none;
  5026. }
  5027. #u22052 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:761px;
  5031. top:110px;
  5032. width:71px;
  5033. height:30px;
  5034. display:flex;
  5035. transition:none;
  5036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. font-size:12px;
  5040. color:#1890FF;
  5041. }
  5042. #u22052 .text {
  5043. position:absolute;
  5044. align-self:center;
  5045. padding:2px 2px 2px 2px;
  5046. box-sizing:border-box;
  5047. width:100%;
  5048. }
  5049. #u22052_img {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:0px;
  5053. top:0px;
  5054. width:71px;
  5055. height:30px;
  5056. }
  5057. #u22052_text {
  5058. border-width:0px;
  5059. word-wrap:break-word;
  5060. text-transform:none;
  5061. }
  5062. #u22053_input {
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:69px;
  5067. height:23px;
  5068. padding:2px 2px 2px 2px;
  5069. font-family:'ArialMT', 'Arial', sans-serif;
  5070. font-weight:400;
  5071. font-style:normal;
  5072. font-size:11px;
  5073. letter-spacing:normal;
  5074. color:#AAAAAA;
  5075. vertical-align:none;
  5076. text-align:left;
  5077. text-transform:none;
  5078. background-color:transparent;
  5079. border-color:transparent;
  5080. }
  5081. #u22053_input.disabled {
  5082. position:absolute;
  5083. left:0px;
  5084. top:0px;
  5085. width:69px;
  5086. height:23px;
  5087. padding:2px 2px 2px 2px;
  5088. font-family:'ArialMT', 'Arial', sans-serif;
  5089. font-weight:400;
  5090. font-style:normal;
  5091. font-size:11px;
  5092. letter-spacing:normal;
  5093. color:#AAAAAA;
  5094. vertical-align:none;
  5095. text-align:left;
  5096. text-transform:none;
  5097. background-color:transparent;
  5098. border-color:transparent;
  5099. }
  5100. #u22053_div {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:69px;
  5106. height:23px;
  5107. background:inherit;
  5108. background-color:rgba(255, 255, 255, 1);
  5109. border-radius:0px;
  5110. filter:drop-shadow(none);
  5111. transition:none;
  5112. font-size:11px;
  5113. color:#AAAAAA;
  5114. }
  5115. #u22053 {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:242px;
  5119. top:537px;
  5120. width:69px;
  5121. height:23px;
  5122. display:flex;
  5123. opacity:0.9;
  5124. transition:none;
  5125. transform-origin:50% 50%;
  5126. font-size:11px;
  5127. color:#AAAAAA;
  5128. }
  5129. #u22053 .text {
  5130. position:absolute;
  5131. align-self:flex-start;
  5132. padding:2px 2px 2px 2px;
  5133. box-sizing:border-box;
  5134. width:100%;
  5135. }
  5136. #u22053_div.disabled {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:69px;
  5142. height:23px;
  5143. background:inherit;
  5144. background-color:rgba(240, 240, 240, 1);
  5145. border-radius:0px;
  5146. filter:drop-shadow(none);
  5147. transition:none;
  5148. font-size:11px;
  5149. color:#AAAAAA;
  5150. }
  5151. #u22053.disabled {
  5152. }
  5153. .u22053_input_option {
  5154. font-size:11px;
  5155. }
  5156. #u22054_input {
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:69px;
  5161. height:23px;
  5162. padding:2px 2px 2px 2px;
  5163. font-family:'ArialMT', 'Arial', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:11px;
  5167. letter-spacing:normal;
  5168. color:#AAAAAA;
  5169. vertical-align:none;
  5170. text-align:left;
  5171. text-transform:none;
  5172. background-color:transparent;
  5173. border-color:transparent;
  5174. }
  5175. #u22054_input.disabled {
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:69px;
  5180. height:23px;
  5181. padding:2px 2px 2px 2px;
  5182. font-family:'ArialMT', 'Arial', sans-serif;
  5183. font-weight:400;
  5184. font-style:normal;
  5185. font-size:11px;
  5186. letter-spacing:normal;
  5187. color:#AAAAAA;
  5188. vertical-align:none;
  5189. text-align:left;
  5190. text-transform:none;
  5191. background-color:transparent;
  5192. border-color:transparent;
  5193. }
  5194. #u22054_div {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:0px;
  5199. width:69px;
  5200. height:23px;
  5201. background:inherit;
  5202. background-color:rgba(255, 255, 255, 1);
  5203. border-radius:0px;
  5204. filter:drop-shadow(none);
  5205. transition:none;
  5206. font-size:11px;
  5207. color:#AAAAAA;
  5208. }
  5209. #u22054 {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:324px;
  5213. top:537px;
  5214. width:69px;
  5215. height:23px;
  5216. display:flex;
  5217. opacity:0.9;
  5218. transition:none;
  5219. transform-origin:50% 50%;
  5220. font-size:11px;
  5221. color:#AAAAAA;
  5222. }
  5223. #u22054 .text {
  5224. position:absolute;
  5225. align-self:flex-start;
  5226. padding:2px 2px 2px 2px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u22054_div.disabled {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:69px;
  5236. height:23px;
  5237. background:inherit;
  5238. background-color:rgba(240, 240, 240, 1);
  5239. border-radius:0px;
  5240. filter:drop-shadow(none);
  5241. transition:none;
  5242. font-size:11px;
  5243. color:#AAAAAA;
  5244. }
  5245. #u22054.disabled {
  5246. }
  5247. .u22054_input_option {
  5248. font-size:11px;
  5249. }
  5250. #u22055_input {
  5251. position:absolute;
  5252. left:0px;
  5253. top:0px;
  5254. width:69px;
  5255. height:23px;
  5256. padding:2px 2px 2px 2px;
  5257. font-family:'ArialMT', 'Arial', sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:11px;
  5261. letter-spacing:normal;
  5262. color:#AAAAAA;
  5263. vertical-align:none;
  5264. text-align:left;
  5265. text-transform:none;
  5266. background-color:transparent;
  5267. border-color:transparent;
  5268. }
  5269. #u22055_input.disabled {
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:69px;
  5274. height:23px;
  5275. padding:2px 2px 2px 2px;
  5276. font-family:'ArialMT', 'Arial', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:11px;
  5280. letter-spacing:normal;
  5281. color:#AAAAAA;
  5282. vertical-align:none;
  5283. text-align:left;
  5284. text-transform:none;
  5285. background-color:transparent;
  5286. border-color:transparent;
  5287. }
  5288. #u22055_div {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:69px;
  5294. height:23px;
  5295. background:inherit;
  5296. background-color:rgba(255, 255, 255, 1);
  5297. border-radius:0px;
  5298. filter:drop-shadow(none);
  5299. transition:none;
  5300. font-size:11px;
  5301. color:#AAAAAA;
  5302. }
  5303. #u22055 {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:403px;
  5307. top:537px;
  5308. width:69px;
  5309. height:23px;
  5310. display:flex;
  5311. opacity:0.9;
  5312. transition:none;
  5313. transform-origin:50% 50%;
  5314. font-size:11px;
  5315. color:#AAAAAA;
  5316. }
  5317. #u22055 .text {
  5318. position:absolute;
  5319. align-self:flex-start;
  5320. padding:2px 2px 2px 2px;
  5321. box-sizing:border-box;
  5322. width:100%;
  5323. }
  5324. #u22055_div.disabled {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:69px;
  5330. height:23px;
  5331. background:inherit;
  5332. background-color:rgba(240, 240, 240, 1);
  5333. border-radius:0px;
  5334. filter:drop-shadow(none);
  5335. transition:none;
  5336. font-size:11px;
  5337. color:#AAAAAA;
  5338. }
  5339. #u22055.disabled {
  5340. }
  5341. .u22055_input_option {
  5342. font-size:11px;
  5343. }
  5344. #u22056_input {
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:69px;
  5349. height:23px;
  5350. padding:2px 2px 2px 2px;
  5351. font-family:'ArialMT', 'Arial', sans-serif;
  5352. font-weight:400;
  5353. font-style:normal;
  5354. font-size:11px;
  5355. letter-spacing:normal;
  5356. color:#AAAAAA;
  5357. vertical-align:none;
  5358. text-align:left;
  5359. text-transform:none;
  5360. background-color:transparent;
  5361. border-color:transparent;
  5362. }
  5363. #u22056_input.disabled {
  5364. position:absolute;
  5365. left:0px;
  5366. top:0px;
  5367. width:69px;
  5368. height:23px;
  5369. padding:2px 2px 2px 2px;
  5370. font-family:'ArialMT', 'Arial', sans-serif;
  5371. font-weight:400;
  5372. font-style:normal;
  5373. font-size:11px;
  5374. letter-spacing:normal;
  5375. color:#AAAAAA;
  5376. vertical-align:none;
  5377. text-align:left;
  5378. text-transform:none;
  5379. background-color:transparent;
  5380. border-color:transparent;
  5381. }
  5382. #u22056_div {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:69px;
  5388. height:23px;
  5389. background:inherit;
  5390. background-color:rgba(255, 255, 255, 1);
  5391. border-radius:0px;
  5392. filter:drop-shadow(none);
  5393. transition:none;
  5394. font-size:11px;
  5395. color:#AAAAAA;
  5396. }
  5397. #u22056 {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:797px;
  5401. top:537px;
  5402. width:69px;
  5403. height:23px;
  5404. display:flex;
  5405. opacity:0.9;
  5406. transition:none;
  5407. transform-origin:50% 50%;
  5408. font-size:11px;
  5409. color:#AAAAAA;
  5410. }
  5411. #u22056 .text {
  5412. position:absolute;
  5413. align-self:flex-start;
  5414. padding:2px 2px 2px 2px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u22056_div.disabled {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:69px;
  5424. height:23px;
  5425. background:inherit;
  5426. background-color:rgba(240, 240, 240, 1);
  5427. border-radius:0px;
  5428. filter:drop-shadow(none);
  5429. transition:none;
  5430. font-size:11px;
  5431. color:#AAAAAA;
  5432. }
  5433. #u22056.disabled {
  5434. }
  5435. .u22056_input_option {
  5436. font-size:11px;
  5437. }
  5438. #u22057_input {
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:69px;
  5443. height:23px;
  5444. padding:2px 2px 2px 2px;
  5445. font-family:'ArialMT', 'Arial', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:11px;
  5449. letter-spacing:normal;
  5450. color:#AAAAAA;
  5451. vertical-align:none;
  5452. text-align:left;
  5453. text-transform:none;
  5454. background-color:transparent;
  5455. border-color:transparent;
  5456. }
  5457. #u22057_input.disabled {
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:69px;
  5462. height:23px;
  5463. padding:2px 2px 2px 2px;
  5464. font-family:'ArialMT', 'Arial', sans-serif;
  5465. font-weight:400;
  5466. font-style:normal;
  5467. font-size:11px;
  5468. letter-spacing:normal;
  5469. color:#AAAAAA;
  5470. vertical-align:none;
  5471. text-align:left;
  5472. text-transform:none;
  5473. background-color:transparent;
  5474. border-color:transparent;
  5475. }
  5476. #u22057_div {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:69px;
  5482. height:23px;
  5483. background:inherit;
  5484. background-color:rgba(255, 255, 255, 1);
  5485. border-radius:0px;
  5486. filter:drop-shadow(none);
  5487. transition:none;
  5488. font-size:11px;
  5489. color:#AAAAAA;
  5490. }
  5491. #u22057 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:880px;
  5495. top:537px;
  5496. width:69px;
  5497. height:23px;
  5498. display:flex;
  5499. opacity:0.9;
  5500. transition:none;
  5501. transform-origin:50% 50%;
  5502. font-size:11px;
  5503. color:#AAAAAA;
  5504. }
  5505. #u22057 .text {
  5506. position:absolute;
  5507. align-self:flex-start;
  5508. padding:2px 2px 2px 2px;
  5509. box-sizing:border-box;
  5510. width:100%;
  5511. }
  5512. #u22057_div.disabled {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:69px;
  5518. height:23px;
  5519. background:inherit;
  5520. background-color:rgba(240, 240, 240, 1);
  5521. border-radius:0px;
  5522. filter:drop-shadow(none);
  5523. transition:none;
  5524. font-size:11px;
  5525. color:#AAAAAA;
  5526. }
  5527. #u22057.disabled {
  5528. }
  5529. .u22057_input_option {
  5530. font-size:11px;
  5531. }
  5532. #u22058_input {
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:67px;
  5537. height:18px;
  5538. padding:2px 2px 2px 2px;
  5539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:14px;
  5543. letter-spacing:normal;
  5544. color:#000000;
  5545. vertical-align:none;
  5546. text-align:left;
  5547. text-transform:none;
  5548. background-color:transparent;
  5549. border-color:transparent;
  5550. }
  5551. #u22058_input.hint {
  5552. position:absolute;
  5553. left:0px;
  5554. top:0px;
  5555. width:67px;
  5556. height:18px;
  5557. padding:2px 2px 2px 2px;
  5558. font-family:"Microsoft YaHei", sans-serif;
  5559. font-weight:400;
  5560. font-style:normal;
  5561. font-size:12px;
  5562. letter-spacing:normal;
  5563. color:#AAAAAA;
  5564. vertical-align:none;
  5565. text-align:left;
  5566. text-transform:none;
  5567. background-color:transparent;
  5568. border-color:transparent;
  5569. }
  5570. #u22058_input.disabled {
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:67px;
  5575. height:18px;
  5576. padding:2px 2px 2px 2px;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:14px;
  5581. letter-spacing:normal;
  5582. color:#000000;
  5583. vertical-align:none;
  5584. text-align:left;
  5585. text-transform:none;
  5586. background-color:transparent;
  5587. border-color:transparent;
  5588. }
  5589. #u22058_input.hint.disabled {
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:67px;
  5594. height:18px;
  5595. padding:2px 2px 2px 2px;
  5596. font-family:"Microsoft YaHei", sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:12px;
  5600. letter-spacing:normal;
  5601. color:#AAAAAA;
  5602. vertical-align:none;
  5603. text-align:left;
  5604. text-transform:none;
  5605. background-color:transparent;
  5606. border-color:transparent;
  5607. }
  5608. #u22058_div {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:67px;
  5614. height:18px;
  5615. background:inherit;
  5616. background-color:rgba(242, 242, 242, 0);
  5617. border-radius:0px;
  5618. filter:drop-shadow(none);
  5619. transition:none;
  5620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. font-size:14px;
  5624. }
  5625. #u22058 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:482px;
  5629. top:540px;
  5630. width:67px;
  5631. height:18px;
  5632. display:flex;
  5633. transition:none;
  5634. transform-origin:50% 50%;
  5635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. font-size:14px;
  5639. }
  5640. #u22058 .text {
  5641. position:absolute;
  5642. align-self:center;
  5643. padding:2px 2px 2px 2px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u22058_div.hint {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:0px;
  5651. top:0px;
  5652. width:67px;
  5653. height:18px;
  5654. background:inherit;
  5655. background-color:rgba(242, 242, 242, 0);
  5656. border-radius:0px;
  5657. filter:drop-shadow(none);
  5658. transition:none;
  5659. font-family:"Microsoft YaHei", sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:14px;
  5663. }
  5664. #u22058.hint {
  5665. }
  5666. #u22058_div.disabled {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:0px;
  5670. top:0px;
  5671. width:67px;
  5672. height:18px;
  5673. background:inherit;
  5674. background-color:rgba(240, 240, 240, 1);
  5675. border-radius:0px;
  5676. filter:drop-shadow(none);
  5677. transition:none;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:14px;
  5682. }
  5683. #u22058.disabled {
  5684. }
  5685. #u22058_div.hint.disabled {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:67px;
  5691. height:18px;
  5692. background:inherit;
  5693. background-color:rgba(240, 240, 240, 1);
  5694. border-radius:0px;
  5695. filter:drop-shadow(none);
  5696. transition:none;
  5697. font-family:"Microsoft YaHei", sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. font-size:14px;
  5701. }
  5702. #u22058.hint.disabled {
  5703. }
  5704. #u22059_input {
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:67px;
  5709. height:18px;
  5710. padding:2px 2px 2px 2px;
  5711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5712. font-weight:400;
  5713. font-style:normal;
  5714. font-size:14px;
  5715. letter-spacing:normal;
  5716. color:#000000;
  5717. vertical-align:none;
  5718. text-align:left;
  5719. text-transform:none;
  5720. background-color:transparent;
  5721. border-color:transparent;
  5722. }
  5723. #u22059_input.hint {
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:67px;
  5728. height:18px;
  5729. padding:2px 2px 2px 2px;
  5730. font-family:"Microsoft YaHei", sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:12px;
  5734. letter-spacing:normal;
  5735. color:#AAAAAA;
  5736. vertical-align:none;
  5737. text-align:left;
  5738. text-transform:none;
  5739. background-color:transparent;
  5740. border-color:transparent;
  5741. }
  5742. #u22059_input.disabled {
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:67px;
  5747. height:18px;
  5748. padding:2px 2px 2px 2px;
  5749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5750. font-weight:400;
  5751. font-style:normal;
  5752. font-size:14px;
  5753. letter-spacing:normal;
  5754. color:#000000;
  5755. vertical-align:none;
  5756. text-align:left;
  5757. text-transform:none;
  5758. background-color:transparent;
  5759. border-color:transparent;
  5760. }
  5761. #u22059_input.hint.disabled {
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:67px;
  5766. height:18px;
  5767. padding:2px 2px 2px 2px;
  5768. font-family:"Microsoft YaHei", sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:12px;
  5772. letter-spacing:normal;
  5773. color:#AAAAAA;
  5774. vertical-align:none;
  5775. text-align:left;
  5776. text-transform:none;
  5777. background-color:transparent;
  5778. border-color:transparent;
  5779. }
  5780. #u22059_div {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:67px;
  5786. height:18px;
  5787. background:inherit;
  5788. background-color:rgba(242, 242, 242, 0);
  5789. border-radius:0px;
  5790. filter:drop-shadow(none);
  5791. transition:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:14px;
  5796. }
  5797. #u22059 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:565px;
  5801. top:540px;
  5802. width:67px;
  5803. height:18px;
  5804. display:flex;
  5805. transition:none;
  5806. transform-origin:50% 50%;
  5807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:14px;
  5811. }
  5812. #u22059 .text {
  5813. position:absolute;
  5814. align-self:center;
  5815. padding:2px 2px 2px 2px;
  5816. box-sizing:border-box;
  5817. width:100%;
  5818. }
  5819. #u22059_div.hint {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:0px;
  5823. top:0px;
  5824. width:67px;
  5825. height:18px;
  5826. background:inherit;
  5827. background-color:rgba(242, 242, 242, 0);
  5828. border-radius:0px;
  5829. filter:drop-shadow(none);
  5830. transition:none;
  5831. font-family:"Microsoft YaHei", sans-serif;
  5832. font-weight:400;
  5833. font-style:normal;
  5834. font-size:14px;
  5835. }
  5836. #u22059.hint {
  5837. }
  5838. #u22059_div.disabled {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:67px;
  5844. height:18px;
  5845. background:inherit;
  5846. background-color:rgba(240, 240, 240, 1);
  5847. border-radius:0px;
  5848. filter:drop-shadow(none);
  5849. transition:none;
  5850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5851. font-weight:400;
  5852. font-style:normal;
  5853. font-size:14px;
  5854. }
  5855. #u22059.disabled {
  5856. }
  5857. #u22059_div.hint.disabled {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:0px;
  5861. top:0px;
  5862. width:67px;
  5863. height:18px;
  5864. background:inherit;
  5865. background-color:rgba(240, 240, 240, 1);
  5866. border-radius:0px;
  5867. filter:drop-shadow(none);
  5868. transition:none;
  5869. font-family:"Microsoft YaHei", sans-serif;
  5870. font-weight:400;
  5871. font-style:normal;
  5872. font-size:14px;
  5873. }
  5874. #u22059.hint.disabled {
  5875. }
  5876. #u22060_input {
  5877. position:absolute;
  5878. left:0px;
  5879. top:0px;
  5880. width:67px;
  5881. height:18px;
  5882. padding:2px 2px 2px 2px;
  5883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5884. font-weight:400;
  5885. font-style:normal;
  5886. font-size:14px;
  5887. letter-spacing:normal;
  5888. color:#000000;
  5889. vertical-align:none;
  5890. text-align:left;
  5891. text-transform:none;
  5892. background-color:transparent;
  5893. border-color:transparent;
  5894. }
  5895. #u22060_input.hint {
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:67px;
  5900. height:18px;
  5901. padding:2px 2px 2px 2px;
  5902. font-family:"Microsoft YaHei", sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:12px;
  5906. letter-spacing:normal;
  5907. color:#AAAAAA;
  5908. vertical-align:none;
  5909. text-align:left;
  5910. text-transform:none;
  5911. background-color:transparent;
  5912. border-color:transparent;
  5913. }
  5914. #u22060_input.disabled {
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:67px;
  5919. height:18px;
  5920. padding:2px 2px 2px 2px;
  5921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5922. font-weight:400;
  5923. font-style:normal;
  5924. font-size:14px;
  5925. letter-spacing:normal;
  5926. color:#000000;
  5927. vertical-align:none;
  5928. text-align:left;
  5929. text-transform:none;
  5930. background-color:transparent;
  5931. border-color:transparent;
  5932. }
  5933. #u22060_input.hint.disabled {
  5934. position:absolute;
  5935. left:0px;
  5936. top:0px;
  5937. width:67px;
  5938. height:18px;
  5939. padding:2px 2px 2px 2px;
  5940. font-family:"Microsoft YaHei", sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:12px;
  5944. letter-spacing:normal;
  5945. color:#AAAAAA;
  5946. vertical-align:none;
  5947. text-align:left;
  5948. text-transform:none;
  5949. background-color:transparent;
  5950. border-color:transparent;
  5951. }
  5952. #u22060_div {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:0px;
  5956. top:0px;
  5957. width:67px;
  5958. height:18px;
  5959. background:inherit;
  5960. background-color:rgba(242, 242, 242, 0);
  5961. border-radius:0px;
  5962. filter:drop-shadow(none);
  5963. transition:none;
  5964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:14px;
  5968. }
  5969. #u22060 {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:640px;
  5973. top:540px;
  5974. width:67px;
  5975. height:18px;
  5976. display:flex;
  5977. transition:none;
  5978. transform-origin:50% 50%;
  5979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5980. font-weight:400;
  5981. font-style:normal;
  5982. font-size:14px;
  5983. }
  5984. #u22060 .text {
  5985. position:absolute;
  5986. align-self:center;
  5987. padding:2px 2px 2px 2px;
  5988. box-sizing:border-box;
  5989. width:100%;
  5990. }
  5991. #u22060_div.hint {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:67px;
  5997. height:18px;
  5998. background:inherit;
  5999. background-color:rgba(242, 242, 242, 0);
  6000. border-radius:0px;
  6001. filter:drop-shadow(none);
  6002. transition:none;
  6003. font-family:"Microsoft YaHei", sans-serif;
  6004. font-weight:400;
  6005. font-style:normal;
  6006. font-size:14px;
  6007. }
  6008. #u22060.hint {
  6009. }
  6010. #u22060_div.disabled {
  6011. border-width:0px;
  6012. position:absolute;
  6013. left:0px;
  6014. top:0px;
  6015. width:67px;
  6016. height:18px;
  6017. background:inherit;
  6018. background-color:rgba(240, 240, 240, 1);
  6019. border-radius:0px;
  6020. filter:drop-shadow(none);
  6021. transition:none;
  6022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:14px;
  6026. }
  6027. #u22060.disabled {
  6028. }
  6029. #u22060_div.hint.disabled {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:67px;
  6035. height:18px;
  6036. background:inherit;
  6037. background-color:rgba(240, 240, 240, 1);
  6038. border-radius:0px;
  6039. filter:drop-shadow(none);
  6040. transition:none;
  6041. font-family:"Microsoft YaHei", sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:14px;
  6045. }
  6046. #u22060.hint.disabled {
  6047. }
  6048. #u22061_input {
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:67px;
  6053. height:18px;
  6054. padding:2px 2px 2px 2px;
  6055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:14px;
  6059. letter-spacing:normal;
  6060. color:#000000;
  6061. vertical-align:none;
  6062. text-align:left;
  6063. text-transform:none;
  6064. background-color:transparent;
  6065. border-color:transparent;
  6066. }
  6067. #u22061_input.hint {
  6068. position:absolute;
  6069. left:0px;
  6070. top:0px;
  6071. width:67px;
  6072. height:18px;
  6073. padding:2px 2px 2px 2px;
  6074. font-family:"Microsoft YaHei", sans-serif;
  6075. font-weight:400;
  6076. font-style:normal;
  6077. font-size:12px;
  6078. letter-spacing:normal;
  6079. color:#AAAAAA;
  6080. vertical-align:none;
  6081. text-align:left;
  6082. text-transform:none;
  6083. background-color:transparent;
  6084. border-color:transparent;
  6085. }
  6086. #u22061_input.disabled {
  6087. position:absolute;
  6088. left:0px;
  6089. top:0px;
  6090. width:67px;
  6091. height:18px;
  6092. padding:2px 2px 2px 2px;
  6093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:14px;
  6097. letter-spacing:normal;
  6098. color:#000000;
  6099. vertical-align:none;
  6100. text-align:left;
  6101. text-transform:none;
  6102. background-color:transparent;
  6103. border-color:transparent;
  6104. }
  6105. #u22061_input.hint.disabled {
  6106. position:absolute;
  6107. left:0px;
  6108. top:0px;
  6109. width:67px;
  6110. height:18px;
  6111. padding:2px 2px 2px 2px;
  6112. font-family:"Microsoft YaHei", sans-serif;
  6113. font-weight:400;
  6114. font-style:normal;
  6115. font-size:12px;
  6116. letter-spacing:normal;
  6117. color:#AAAAAA;
  6118. vertical-align:none;
  6119. text-align:left;
  6120. text-transform:none;
  6121. background-color:transparent;
  6122. border-color:transparent;
  6123. }
  6124. #u22061_div {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:67px;
  6130. height:18px;
  6131. background:inherit;
  6132. background-color:rgba(242, 242, 242, 0);
  6133. border-radius:0px;
  6134. filter:drop-shadow(none);
  6135. transition:none;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:14px;
  6140. }
  6141. #u22061 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:717px;
  6145. top:540px;
  6146. width:67px;
  6147. height:18px;
  6148. display:flex;
  6149. transition:none;
  6150. transform-origin:50% 50%;
  6151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6152. font-weight:400;
  6153. font-style:normal;
  6154. font-size:14px;
  6155. }
  6156. #u22061 .text {
  6157. position:absolute;
  6158. align-self:center;
  6159. padding:2px 2px 2px 2px;
  6160. box-sizing:border-box;
  6161. width:100%;
  6162. }
  6163. #u22061_div.hint {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:67px;
  6169. height:18px;
  6170. background:inherit;
  6171. background-color:rgba(242, 242, 242, 0);
  6172. border-radius:0px;
  6173. filter:drop-shadow(none);
  6174. transition:none;
  6175. font-family:"Microsoft YaHei", sans-serif;
  6176. font-weight:400;
  6177. font-style:normal;
  6178. font-size:14px;
  6179. }
  6180. #u22061.hint {
  6181. }
  6182. #u22061_div.disabled {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:67px;
  6188. height:18px;
  6189. background:inherit;
  6190. background-color:rgba(240, 240, 240, 1);
  6191. border-radius:0px;
  6192. filter:drop-shadow(none);
  6193. transition:none;
  6194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6195. font-weight:400;
  6196. font-style:normal;
  6197. font-size:14px;
  6198. }
  6199. #u22061.disabled {
  6200. }
  6201. #u22061_div.hint.disabled {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:0px;
  6205. top:0px;
  6206. width:67px;
  6207. height:18px;
  6208. background:inherit;
  6209. background-color:rgba(240, 240, 240, 1);
  6210. border-radius:0px;
  6211. filter:drop-shadow(none);
  6212. transition:none;
  6213. font-family:"Microsoft YaHei", sans-serif;
  6214. font-weight:400;
  6215. font-style:normal;
  6216. font-size:14px;
  6217. }
  6218. #u22061.hint.disabled {
  6219. }
  6220. #u22062 {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:0px;
  6226. height:0px;
  6227. }
  6228. #u22063 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:283px;
  6232. top:663px;
  6233. width:12px;
  6234. height:12px;
  6235. display:flex;
  6236. transition:none;
  6237. }
  6238. #u22063 .text {
  6239. position:absolute;
  6240. align-self:center;
  6241. padding:2px 2px 2px 2px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u22063_img {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:12px;
  6251. height:12px;
  6252. }
  6253. #u22063_text {
  6254. border-width:0px;
  6255. word-wrap:break-word;
  6256. text-transform:none;
  6257. visibility:hidden;
  6258. }
  6259. #u22064_div {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:577px;
  6265. height:30px;
  6266. background:inherit;
  6267. background-color:rgba(255, 255, 255, 0);
  6268. border-top:0px;
  6269. border-right:0px;
  6270. border-bottom:0px;
  6271. border-radius:0px;
  6272. border-top-left-radius:0px;
  6273. border-bottom-left-radius:0px;
  6274. filter:drop-shadow(none);
  6275. transition:none;
  6276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6277. font-weight:400;
  6278. font-style:normal;
  6279. font-size:14px;
  6280. color:#D9001B;
  6281. }
  6282. #u22064 {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:242px;
  6286. top:71px;
  6287. width:577px;
  6288. height:30px;
  6289. display:flex;
  6290. transition:none;
  6291. transform-origin:50% 50%;
  6292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6293. font-weight:400;
  6294. font-style:normal;
  6295. font-size:14px;
  6296. color:#D9001B;
  6297. }
  6298. #u22064 .text {
  6299. position:absolute;
  6300. align-self:center;
  6301. padding:5px 10px 5px 0px;
  6302. box-sizing:border-box;
  6303. width:100%;
  6304. }
  6305. #u22064_text {
  6306. border-width:0px;
  6307. white-space:nowrap;
  6308. text-transform:none;
  6309. }
  6310. #u22065_div {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:0px;
  6314. top:0px;
  6315. width:596px;
  6316. height:119px;
  6317. background:inherit;
  6318. background-color:rgba(255, 255, 255, 0);
  6319. border-radius:0px;
  6320. filter:drop-shadow(none);
  6321. transition:none;
  6322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:12px;
  6326. color:#D9001B;
  6327. }
  6328. #u22065 {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:364px;
  6332. top:648px;
  6333. width:596px;
  6334. height:119px;
  6335. display:flex;
  6336. transition:none;
  6337. transform-origin:50% 50%;
  6338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:12px;
  6342. color:#D9001B;
  6343. }
  6344. #u22065 .text {
  6345. position:absolute;
  6346. align-self:flex-start;
  6347. padding:0px 0px 0px 0px;
  6348. box-sizing:border-box;
  6349. width:100%;
  6350. }
  6351. #u22065_text {
  6352. border-width:0px;
  6353. white-space:nowrap;
  6354. text-transform:none;
  6355. }
  6356. #u22066 {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:0px;
  6360. top:0px;
  6361. width:0px;
  6362. height:0px;
  6363. }
  6364. #u22067_div {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:1000px;
  6370. height:1200px;
  6371. background:inherit;
  6372. background-color:rgba(242, 242, 242, 1);
  6373. box-sizing:border-box;
  6374. border-width:1px;
  6375. border-style:solid;
  6376. border-color:rgba(215, 215, 215, 1);
  6377. border-radius:0px;
  6378. filter:drop-shadow(none);
  6379. transition:none;
  6380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6381. font-weight:400;
  6382. font-style:normal;
  6383. font-size:14px;
  6384. color:#AAAAAA;
  6385. text-align:center;
  6386. line-height:30px;
  6387. }
  6388. #u22067 {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:1062px;
  6392. top:48px;
  6393. width:1000px;
  6394. height:1200px;
  6395. display:flex;
  6396. transition:none;
  6397. transform-origin:50% 50%;
  6398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6399. font-weight:400;
  6400. font-style:normal;
  6401. font-size:14px;
  6402. color:#AAAAAA;
  6403. text-align:center;
  6404. line-height:30px;
  6405. }
  6406. #u22067 .text {
  6407. position:absolute;
  6408. align-self:center;
  6409. padding:5px 10px 5px 10px;
  6410. box-sizing:border-box;
  6411. width:100%;
  6412. }
  6413. #u22067_text {
  6414. border-width:0px;
  6415. word-wrap:break-word;
  6416. text-transform:none;
  6417. visibility:hidden;
  6418. }
  6419. #u22068_div {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:1000px;
  6425. height:370px;
  6426. background:inherit;
  6427. background-color:rgba(255, 255, 255, 1);
  6428. box-sizing:border-box;
  6429. border-width:1px;
  6430. border-style:solid;
  6431. border-color:rgba(215, 215, 215, 1);
  6432. border-radius:0px;
  6433. filter:drop-shadow(none);
  6434. transition:none;
  6435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6436. font-weight:400;
  6437. font-style:normal;
  6438. font-size:14px;
  6439. color:#AAAAAA;
  6440. text-align:center;
  6441. line-height:30px;
  6442. }
  6443. #u22068 {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:1062px;
  6447. top:48px;
  6448. width:1000px;
  6449. height:370px;
  6450. display:flex;
  6451. transition:none;
  6452. transform-origin:50% 50%;
  6453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6454. font-weight:400;
  6455. font-style:normal;
  6456. font-size:14px;
  6457. color:#AAAAAA;
  6458. text-align:center;
  6459. line-height:30px;
  6460. }
  6461. #u22068 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:5px 10px 5px 10px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u22068_text {
  6469. border-width:0px;
  6470. word-wrap:break-word;
  6471. text-transform:none;
  6472. visibility:hidden;
  6473. }
  6474. #u22069_div {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:0px;
  6478. top:0px;
  6479. width:1000px;
  6480. height:820px;
  6481. background:inherit;
  6482. background-color:rgba(255, 255, 255, 1);
  6483. box-sizing:border-box;
  6484. border-width:1px;
  6485. border-style:solid;
  6486. border-color:rgba(215, 215, 215, 1);
  6487. border-radius:0px;
  6488. filter:drop-shadow(none);
  6489. transition:none;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:14px;
  6494. color:#AAAAAA;
  6495. text-align:center;
  6496. line-height:30px;
  6497. }
  6498. #u22069 {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:1062px;
  6502. top:428px;
  6503. width:1000px;
  6504. height:820px;
  6505. display:flex;
  6506. transition:none;
  6507. transform-origin:50% 50%;
  6508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:14px;
  6512. color:#AAAAAA;
  6513. text-align:center;
  6514. line-height:30px;
  6515. }
  6516. #u22069 .text {
  6517. position:absolute;
  6518. align-self:center;
  6519. padding:5px 10px 5px 10px;
  6520. box-sizing:border-box;
  6521. width:100%;
  6522. }
  6523. #u22069_text {
  6524. border-width:0px;
  6525. word-wrap:break-word;
  6526. text-transform:none;
  6527. visibility:hidden;
  6528. }
  6529. #u22070_div {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:119px;
  6535. height:35px;
  6536. background:inherit;
  6537. background-color:rgba(255, 255, 255, 0);
  6538. border-top:0px;
  6539. border-right:0px;
  6540. border-bottom:0px;
  6541. border-radius:0px;
  6542. border-top-left-radius:0px;
  6543. border-bottom-left-radius:0px;
  6544. filter:drop-shadow(none);
  6545. transition:none;
  6546. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6547. font-weight:500;
  6548. font-style:normal;
  6549. font-size:18px;
  6550. }
  6551. #u22070 {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:1082px;
  6555. top:66px;
  6556. width:119px;
  6557. height:35px;
  6558. display:flex;
  6559. transition:none;
  6560. transform-origin:50% 50%;
  6561. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6562. font-weight:500;
  6563. font-style:normal;
  6564. font-size:18px;
  6565. }
  6566. #u22070 .text {
  6567. position:absolute;
  6568. align-self:center;
  6569. padding:5px 10px 5px 0px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u22070_text {
  6574. border-width:0px;
  6575. white-space:nowrap;
  6576. text-transform:none;
  6577. }
  6578. #u22071 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:0px;
  6584. height:0px;
  6585. }
  6586. #u22072_div {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:40px;
  6592. height:40px;
  6593. background:inherit;
  6594. background-color:rgba(255, 255, 255, 0);
  6595. border-top:0px;
  6596. border-right:0px;
  6597. border-bottom:0px;
  6598. border-radius:0px;
  6599. border-top-left-radius:0px;
  6600. border-bottom-left-radius:0px;
  6601. filter:drop-shadow(none);
  6602. transition:none;
  6603. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6604. font-weight:500;
  6605. font-style:normal;
  6606. font-size:14px;
  6607. text-align:center;
  6608. }
  6609. #u22072 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:2022px;
  6613. top:48px;
  6614. width:40px;
  6615. height:40px;
  6616. display:flex;
  6617. transition:none;
  6618. transform-origin:50% 50%;
  6619. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6620. font-weight:500;
  6621. font-style:normal;
  6622. font-size:14px;
  6623. text-align:center;
  6624. }
  6625. #u22072 .text {
  6626. position:absolute;
  6627. align-self:center;
  6628. padding:5px 10px 5px 0px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u22072_text {
  6633. border-width:0px;
  6634. word-wrap:break-word;
  6635. text-transform:none;
  6636. }
  6637. #u22073 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:2010px;
  6641. top:64px;
  6642. width:13px;
  6643. height:13px;
  6644. display:flex;
  6645. transition:none;
  6646. font-size:14px;
  6647. }
  6648. #u22073 .text {
  6649. position:absolute;
  6650. align-self:center;
  6651. padding:2px 2px 2px 2px;
  6652. box-sizing:border-box;
  6653. width:100%;
  6654. }
  6655. #u22073_img {
  6656. border-width:0px;
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:13px;
  6661. height:13px;
  6662. }
  6663. #u22073_text {
  6664. border-width:0px;
  6665. word-wrap:break-word;
  6666. text-transform:none;
  6667. visibility:hidden;
  6668. }
  6669. #u22074 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:0px;
  6673. top:0px;
  6674. width:0px;
  6675. height:0px;
  6676. }
  6677. #u22075_div {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:1000px;
  6683. height:60px;
  6684. background:inherit;
  6685. background-color:rgba(255, 255, 255, 1);
  6686. box-sizing:border-box;
  6687. border-width:1px;
  6688. border-style:solid;
  6689. border-color:rgba(215, 215, 215, 1);
  6690. border-radius:0px;
  6691. filter:drop-shadow(none);
  6692. transition:none;
  6693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6694. font-weight:400;
  6695. font-style:normal;
  6696. font-size:14px;
  6697. color:#AAAAAA;
  6698. text-align:center;
  6699. line-height:30px;
  6700. }
  6701. #u22075 {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:1062px;
  6705. top:1188px;
  6706. width:1000px;
  6707. height:60px;
  6708. display:flex;
  6709. transition:none;
  6710. transform-origin:50% 50%;
  6711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6712. font-weight:400;
  6713. font-style:normal;
  6714. font-size:14px;
  6715. color:#AAAAAA;
  6716. text-align:center;
  6717. line-height:30px;
  6718. }
  6719. #u22075 .text {
  6720. position:absolute;
  6721. align-self:center;
  6722. padding:5px 10px 5px 10px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u22075_text {
  6727. border-width:0px;
  6728. word-wrap:break-word;
  6729. text-transform:none;
  6730. visibility:hidden;
  6731. }
  6732. #u22076_div {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:80px;
  6738. height:30px;
  6739. background:inherit;
  6740. background-color:rgba(24, 144, 255, 1);
  6741. border-radius:4px;
  6742. filter:drop-shadow(none);
  6743. transition:none;
  6744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6745. font-weight:400;
  6746. font-style:normal;
  6747. font-size:14px;
  6748. color:#FFFFFF;
  6749. }
  6750. #u22076 {
  6751. border-width:0px;
  6752. position:absolute;
  6753. left:1942px;
  6754. top:1203px;
  6755. width:80px;
  6756. height:30px;
  6757. display:flex;
  6758. transition:none;
  6759. transform-origin:50% 50%;
  6760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6761. font-weight:400;
  6762. font-style:normal;
  6763. font-size:14px;
  6764. color:#FFFFFF;
  6765. }
  6766. #u22076 .text {
  6767. position:absolute;
  6768. align-self:center;
  6769. padding:2px 2px 2px 2px;
  6770. box-sizing:border-box;
  6771. width:100%;
  6772. }
  6773. #u22076_text {
  6774. border-width:0px;
  6775. word-wrap:break-word;
  6776. text-transform:none;
  6777. }
  6778. #u22077_div {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:80px;
  6784. height:30px;
  6785. background:inherit;
  6786. background-color:rgba(255, 255, 255, 1);
  6787. box-sizing:border-box;
  6788. border-width:1px;
  6789. border-style:solid;
  6790. border-color:rgba(170, 170, 170, 1);
  6791. border-radius:4px;
  6792. filter:drop-shadow(none);
  6793. transition:none;
  6794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6795. font-weight:400;
  6796. font-style:normal;
  6797. font-size:14px;
  6798. }
  6799. #u22077 {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:1852px;
  6803. top:1203px;
  6804. width:80px;
  6805. height:30px;
  6806. display:flex;
  6807. transition:none;
  6808. transform-origin:50% 50%;
  6809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:14px;
  6813. }
  6814. #u22077 .text {
  6815. position:absolute;
  6816. align-self:center;
  6817. padding:2px 2px 2px 2px;
  6818. box-sizing:border-box;
  6819. width:100%;
  6820. }
  6821. #u22077_text {
  6822. border-width:0px;
  6823. word-wrap:break-word;
  6824. text-transform:none;
  6825. }
  6826. #u22078_div {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:106px;
  6832. height:40px;
  6833. background:inherit;
  6834. background-color:rgba(255, 255, 255, 0);
  6835. border-top:0px;
  6836. border-right:0px;
  6837. border-bottom:0px;
  6838. border-radius:0px;
  6839. border-top-left-radius:0px;
  6840. border-bottom-left-radius:0px;
  6841. filter:drop-shadow(none);
  6842. transition:none;
  6843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6844. font-weight:400;
  6845. font-style:normal;
  6846. font-size:14px;
  6847. color:#7F7F7F;
  6848. text-align:right;
  6849. }
  6850. #u22078 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:1102px;
  6854. top:247px;
  6855. width:106px;
  6856. height:40px;
  6857. display:flex;
  6858. transition:none;
  6859. transform-origin:50% 50%;
  6860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6861. font-weight:400;
  6862. font-style:normal;
  6863. font-size:14px;
  6864. color:#7F7F7F;
  6865. text-align:right;
  6866. }
  6867. #u22078 .text {
  6868. position:absolute;
  6869. align-self:center;
  6870. padding:5px 0px 5px 0px;
  6871. box-sizing:border-box;
  6872. width:100%;
  6873. }
  6874. #u22078_text {
  6875. border-width:0px;
  6876. white-space:nowrap;
  6877. text-transform:none;
  6878. }
  6879. #u22079 {
  6880. border-width:0px;
  6881. position:absolute;
  6882. left:0px;
  6883. top:0px;
  6884. width:0px;
  6885. height:0px;
  6886. }
  6887. #u22080_div {
  6888. border-width:0px;
  6889. position:absolute;
  6890. left:0px;
  6891. top:0px;
  6892. width:300px;
  6893. height:40px;
  6894. background:inherit;
  6895. background-color:rgba(255, 255, 255, 1);
  6896. box-sizing:border-box;
  6897. border-width:1px;
  6898. border-style:solid;
  6899. border-color:rgba(201, 201, 201, 1);
  6900. border-radius:4px;
  6901. filter:drop-shadow(none);
  6902. transition:none;
  6903. font-family:"Microsoft YaHei", sans-serif;
  6904. font-weight:400;
  6905. font-style:normal;
  6906. font-size:14px;
  6907. color:#CCCCCC;
  6908. text-align:left;
  6909. }
  6910. #u22080 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:1208px;
  6914. top:248px;
  6915. width:300px;
  6916. height:40px;
  6917. display:flex;
  6918. transition:none;
  6919. transform-origin:50% 50%;
  6920. font-family:"Microsoft YaHei", sans-serif;
  6921. font-weight:400;
  6922. font-style:normal;
  6923. font-size:14px;
  6924. color:#CCCCCC;
  6925. text-align:left;
  6926. }
  6927. #u22080 .text {
  6928. position:absolute;
  6929. align-self:center;
  6930. padding:2px 8px 2px 8px;
  6931. box-sizing:border-box;
  6932. width:100%;
  6933. }
  6934. #u22080_text {
  6935. border-width:0px;
  6936. word-wrap:break-word;
  6937. text-transform:none;
  6938. visibility:hidden;
  6939. }
  6940. #u22081_input {
  6941. position:absolute;
  6942. left:0px;
  6943. top:0px;
  6944. width:280px;
  6945. height:38px;
  6946. padding:2px 2px 2px 2px;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:14px;
  6951. letter-spacing:normal;
  6952. color:#000000;
  6953. vertical-align:none;
  6954. text-align:left;
  6955. text-transform:none;
  6956. background-color:transparent;
  6957. border-color:transparent;
  6958. }
  6959. #u22081_input.hint {
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:280px;
  6964. height:38px;
  6965. padding:2px 2px 2px 2px;
  6966. font-family:"Microsoft YaHei", sans-serif;
  6967. font-weight:400;
  6968. font-style:normal;
  6969. font-size:12px;
  6970. letter-spacing:normal;
  6971. color:#AAAAAA;
  6972. vertical-align:none;
  6973. text-align:left;
  6974. text-transform:none;
  6975. background-color:transparent;
  6976. border-color:transparent;
  6977. }
  6978. #u22081_input.disabled {
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:280px;
  6983. height:38px;
  6984. padding:2px 2px 2px 2px;
  6985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6986. font-weight:400;
  6987. font-style:normal;
  6988. font-size:14px;
  6989. letter-spacing:normal;
  6990. color:#000000;
  6991. vertical-align:none;
  6992. text-align:left;
  6993. text-transform:none;
  6994. background-color:transparent;
  6995. border-color:transparent;
  6996. }
  6997. #u22081_input.hint.disabled {
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:280px;
  7002. height:38px;
  7003. padding:2px 2px 2px 2px;
  7004. font-family:"Microsoft YaHei", sans-serif;
  7005. font-weight:400;
  7006. font-style:normal;
  7007. font-size:12px;
  7008. letter-spacing:normal;
  7009. color:#AAAAAA;
  7010. vertical-align:none;
  7011. text-align:left;
  7012. text-transform:none;
  7013. background-color:transparent;
  7014. border-color:transparent;
  7015. }
  7016. #u22081_div {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:280px;
  7022. height:38px;
  7023. background:inherit;
  7024. background-color:rgba(255, 255, 255, 1);
  7025. border-radius:0px;
  7026. filter:drop-shadow(none);
  7027. transition:none;
  7028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7029. font-weight:400;
  7030. font-style:normal;
  7031. font-size:14px;
  7032. }
  7033. #u22081 {
  7034. border-width:0px;
  7035. position:absolute;
  7036. left:1219px;
  7037. top:249px;
  7038. width:280px;
  7039. height:38px;
  7040. display:flex;
  7041. transition:none;
  7042. transform-origin:50% 50%;
  7043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7044. font-weight:400;
  7045. font-style:normal;
  7046. font-size:14px;
  7047. }
  7048. #u22081 .text {
  7049. position:absolute;
  7050. align-self:center;
  7051. padding:2px 2px 2px 2px;
  7052. box-sizing:border-box;
  7053. width:100%;
  7054. }
  7055. #u22081_div.hint {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:280px;
  7061. height:38px;
  7062. background:inherit;
  7063. background-color:rgba(255, 255, 255, 1);
  7064. border-radius:0px;
  7065. filter:drop-shadow(none);
  7066. transition:none;
  7067. font-family:"Microsoft YaHei", sans-serif;
  7068. font-weight:400;
  7069. font-style:normal;
  7070. font-size:14px;
  7071. }
  7072. #u22081.hint {
  7073. }
  7074. #u22081_div.disabled {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:0px;
  7078. top:0px;
  7079. width:280px;
  7080. height:38px;
  7081. background:inherit;
  7082. background-color:rgba(240, 240, 240, 1);
  7083. border-radius:0px;
  7084. filter:drop-shadow(none);
  7085. transition:none;
  7086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7087. font-weight:400;
  7088. font-style:normal;
  7089. font-size:14px;
  7090. }
  7091. #u22081.disabled {
  7092. }
  7093. #u22081_div.hint.disabled {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:280px;
  7099. height:38px;
  7100. background:inherit;
  7101. background-color:rgba(240, 240, 240, 1);
  7102. border-radius:0px;
  7103. filter:drop-shadow(none);
  7104. transition:none;
  7105. font-family:"Microsoft YaHei", sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:14px;
  7109. }
  7110. #u22081.hint.disabled {
  7111. }
  7112. #u22082 {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:1482px;
  7116. top:261px;
  7117. width:13px;
  7118. height:15px;
  7119. display:flex;
  7120. transition:none;
  7121. }
  7122. #u22082 .text {
  7123. position:absolute;
  7124. align-self:center;
  7125. padding:2px 2px 2px 2px;
  7126. box-sizing:border-box;
  7127. width:100%;
  7128. }
  7129. #u22082_img {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:0px;
  7133. top:0px;
  7134. width:13px;
  7135. height:15px;
  7136. }
  7137. #u22082_text {
  7138. border-width:0px;
  7139. word-wrap:break-word;
  7140. text-transform:none;
  7141. visibility:hidden;
  7142. }
  7143. #u22083_div {
  7144. border-width:0px;
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:92px;
  7149. height:40px;
  7150. background:inherit;
  7151. background-color:rgba(255, 255, 255, 0);
  7152. border-top:0px;
  7153. border-right:0px;
  7154. border-bottom:0px;
  7155. border-radius:0px;
  7156. border-top-left-radius:0px;
  7157. border-bottom-left-radius:0px;
  7158. filter:drop-shadow(none);
  7159. transition:none;
  7160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7161. font-weight:400;
  7162. font-style:normal;
  7163. font-size:14px;
  7164. color:#7F7F7F;
  7165. text-align:right;
  7166. }
  7167. #u22083 {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:1571px;
  7171. top:247px;
  7172. width:92px;
  7173. height:40px;
  7174. display:flex;
  7175. transition:none;
  7176. transform-origin:50% 50%;
  7177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7178. font-weight:400;
  7179. font-style:normal;
  7180. font-size:14px;
  7181. color:#7F7F7F;
  7182. text-align:right;
  7183. }
  7184. #u22083 .text {
  7185. position:absolute;
  7186. align-self:center;
  7187. padding:5px 0px 5px 0px;
  7188. box-sizing:border-box;
  7189. width:100%;
  7190. }
  7191. #u22083_text {
  7192. border-width:0px;
  7193. white-space:nowrap;
  7194. text-transform:none;
  7195. }
  7196. #u22084 {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:0px;
  7202. height:0px;
  7203. }
  7204. #u22085_div {
  7205. border-width:0px;
  7206. position:absolute;
  7207. left:0px;
  7208. top:0px;
  7209. width:300px;
  7210. height:40px;
  7211. background:inherit;
  7212. background-color:rgba(255, 255, 255, 1);
  7213. box-sizing:border-box;
  7214. border-width:1px;
  7215. border-style:solid;
  7216. border-color:rgba(201, 201, 201, 1);
  7217. border-radius:4px;
  7218. filter:drop-shadow(none);
  7219. transition:none;
  7220. font-family:"Microsoft YaHei", sans-serif;
  7221. font-weight:400;
  7222. font-style:normal;
  7223. font-size:14px;
  7224. color:#CCCCCC;
  7225. text-align:left;
  7226. }
  7227. #u22085 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:1663px;
  7231. top:248px;
  7232. width:300px;
  7233. height:40px;
  7234. display:flex;
  7235. transition:none;
  7236. transform-origin:50% 50%;
  7237. font-family:"Microsoft YaHei", sans-serif;
  7238. font-weight:400;
  7239. font-style:normal;
  7240. font-size:14px;
  7241. color:#CCCCCC;
  7242. text-align:left;
  7243. }
  7244. #u22085 .text {
  7245. position:absolute;
  7246. align-self:center;
  7247. padding:2px 8px 2px 8px;
  7248. box-sizing:border-box;
  7249. width:100%;
  7250. }
  7251. #u22085_text {
  7252. border-width:0px;
  7253. word-wrap:break-word;
  7254. text-transform:none;
  7255. visibility:hidden;
  7256. }
  7257. #u22086_input {
  7258. position:absolute;
  7259. left:0px;
  7260. top:0px;
  7261. width:280px;
  7262. height:38px;
  7263. padding:2px 2px 2px 2px;
  7264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7265. font-weight:400;
  7266. font-style:normal;
  7267. font-size:14px;
  7268. letter-spacing:normal;
  7269. color:#000000;
  7270. vertical-align:none;
  7271. text-align:left;
  7272. text-transform:none;
  7273. background-color:transparent;
  7274. border-color:transparent;
  7275. }
  7276. #u22086_input.hint {
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:280px;
  7281. height:38px;
  7282. padding:2px 2px 2px 2px;
  7283. font-family:"Microsoft YaHei", sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:12px;
  7287. letter-spacing:normal;
  7288. color:#AAAAAA;
  7289. vertical-align:none;
  7290. text-align:left;
  7291. text-transform:none;
  7292. background-color:transparent;
  7293. border-color:transparent;
  7294. }
  7295. #u22086_input.disabled {
  7296. position:absolute;
  7297. left:0px;
  7298. top:0px;
  7299. width:280px;
  7300. height:38px;
  7301. padding:2px 2px 2px 2px;
  7302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7303. font-weight:400;
  7304. font-style:normal;
  7305. font-size:14px;
  7306. letter-spacing:normal;
  7307. color:#000000;
  7308. vertical-align:none;
  7309. text-align:left;
  7310. text-transform:none;
  7311. background-color:transparent;
  7312. border-color:transparent;
  7313. }
  7314. #u22086_input.hint.disabled {
  7315. position:absolute;
  7316. left:0px;
  7317. top:0px;
  7318. width:280px;
  7319. height:38px;
  7320. padding:2px 2px 2px 2px;
  7321. font-family:"Microsoft YaHei", sans-serif;
  7322. font-weight:400;
  7323. font-style:normal;
  7324. font-size:12px;
  7325. letter-spacing:normal;
  7326. color:#AAAAAA;
  7327. vertical-align:none;
  7328. text-align:left;
  7329. text-transform:none;
  7330. background-color:transparent;
  7331. border-color:transparent;
  7332. }
  7333. #u22086_div {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:280px;
  7339. height:38px;
  7340. background:inherit;
  7341. background-color:rgba(255, 255, 255, 1);
  7342. border-radius:0px;
  7343. filter:drop-shadow(none);
  7344. transition:none;
  7345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7346. font-weight:400;
  7347. font-style:normal;
  7348. font-size:14px;
  7349. }
  7350. #u22086 {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:1674px;
  7354. top:249px;
  7355. width:280px;
  7356. height:38px;
  7357. display:flex;
  7358. transition:none;
  7359. transform-origin:50% 50%;
  7360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7361. font-weight:400;
  7362. font-style:normal;
  7363. font-size:14px;
  7364. }
  7365. #u22086 .text {
  7366. position:absolute;
  7367. align-self:center;
  7368. padding:2px 2px 2px 2px;
  7369. box-sizing:border-box;
  7370. width:100%;
  7371. }
  7372. #u22086_div.hint {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:280px;
  7378. height:38px;
  7379. background:inherit;
  7380. background-color:rgba(255, 255, 255, 1);
  7381. border-radius:0px;
  7382. filter:drop-shadow(none);
  7383. transition:none;
  7384. font-family:"Microsoft YaHei", sans-serif;
  7385. font-weight:400;
  7386. font-style:normal;
  7387. font-size:14px;
  7388. }
  7389. #u22086.hint {
  7390. }
  7391. #u22086_div.disabled {
  7392. border-width:0px;
  7393. position:absolute;
  7394. left:0px;
  7395. top:0px;
  7396. width:280px;
  7397. height:38px;
  7398. background:inherit;
  7399. background-color:rgba(240, 240, 240, 1);
  7400. border-radius:0px;
  7401. filter:drop-shadow(none);
  7402. transition:none;
  7403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7404. font-weight:400;
  7405. font-style:normal;
  7406. font-size:14px;
  7407. }
  7408. #u22086.disabled {
  7409. }
  7410. #u22086_div.hint.disabled {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:280px;
  7416. height:38px;
  7417. background:inherit;
  7418. background-color:rgba(240, 240, 240, 1);
  7419. border-radius:0px;
  7420. filter:drop-shadow(none);
  7421. transition:none;
  7422. font-family:"Microsoft YaHei", sans-serif;
  7423. font-weight:400;
  7424. font-style:normal;
  7425. font-size:14px;
  7426. }
  7427. #u22086.hint.disabled {
  7428. }
  7429. #u22087 {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:1937px;
  7433. top:261px;
  7434. width:13px;
  7435. height:15px;
  7436. display:flex;
  7437. transition:none;
  7438. }
  7439. #u22087 .text {
  7440. position:absolute;
  7441. align-self:center;
  7442. padding:2px 2px 2px 2px;
  7443. box-sizing:border-box;
  7444. width:100%;
  7445. }
  7446. #u22087_img {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:0px;
  7450. top:0px;
  7451. width:13px;
  7452. height:15px;
  7453. }
  7454. #u22087_text {
  7455. border-width:0px;
  7456. word-wrap:break-word;
  7457. text-transform:none;
  7458. visibility:hidden;
  7459. }
  7460. #u22088_div {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:81px;
  7466. height:40px;
  7467. background:inherit;
  7468. background-color:rgba(255, 255, 255, 0);
  7469. border-top:0px;
  7470. border-right:0px;
  7471. border-bottom:0px;
  7472. border-radius:0px;
  7473. border-top-left-radius:0px;
  7474. border-bottom-left-radius:0px;
  7475. filter:drop-shadow(none);
  7476. transition:none;
  7477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7478. font-weight:400;
  7479. font-style:normal;
  7480. font-size:14px;
  7481. color:#7F7F7F;
  7482. text-align:right;
  7483. }
  7484. #u22088 {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:1117px;
  7488. top:448px;
  7489. width:81px;
  7490. height:40px;
  7491. display:flex;
  7492. transition:none;
  7493. transform-origin:50% 50%;
  7494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:14px;
  7498. color:#7F7F7F;
  7499. text-align:right;
  7500. }
  7501. #u22088 .text {
  7502. position:absolute;
  7503. align-self:center;
  7504. padding:5px 10px 5px 0px;
  7505. box-sizing:border-box;
  7506. width:100%;
  7507. }
  7508. #u22088_text {
  7509. border-width:0px;
  7510. white-space:nowrap;
  7511. text-transform:none;
  7512. }
  7513. #u22089_div {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:0px;
  7517. top:0px;
  7518. width:53px;
  7519. height:40px;
  7520. background:inherit;
  7521. background-color:rgba(255, 255, 255, 0);
  7522. border-top:0px;
  7523. border-right:0px;
  7524. border-bottom:0px;
  7525. border-radius:0px;
  7526. border-top-left-radius:0px;
  7527. border-bottom-left-radius:0px;
  7528. filter:drop-shadow(none);
  7529. transition:none;
  7530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:14px;
  7534. color:#7F7F7F;
  7535. text-align:right;
  7536. }
  7537. #u22089 {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:1145px;
  7541. top:302px;
  7542. width:53px;
  7543. height:40px;
  7544. display:flex;
  7545. transition:none;
  7546. transform-origin:50% 50%;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:14px;
  7551. color:#7F7F7F;
  7552. text-align:right;
  7553. }
  7554. #u22089 .text {
  7555. position:absolute;
  7556. align-self:center;
  7557. padding:5px 10px 5px 0px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u22089_text {
  7562. border-width:0px;
  7563. white-space:nowrap;
  7564. text-transform:none;
  7565. }
  7566. #u22090 {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:0px;
  7572. height:0px;
  7573. }
  7574. #u22091_div {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:755px;
  7580. height:80px;
  7581. background:inherit;
  7582. background-color:rgba(255, 255, 255, 1);
  7583. box-sizing:border-box;
  7584. border-width:1px;
  7585. border-style:solid;
  7586. border-color:rgba(201, 201, 201, 1);
  7587. border-radius:4px;
  7588. filter:drop-shadow(none);
  7589. transition:none;
  7590. font-family:"Microsoft YaHei", sans-serif;
  7591. font-weight:400;
  7592. font-style:normal;
  7593. font-size:14px;
  7594. color:#CCCCCC;
  7595. text-align:left;
  7596. }
  7597. #u22091 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:1208px;
  7601. top:298px;
  7602. width:755px;
  7603. height:80px;
  7604. display:flex;
  7605. transition:none;
  7606. transform-origin:50% 50%;
  7607. font-family:"Microsoft YaHei", sans-serif;
  7608. font-weight:400;
  7609. font-style:normal;
  7610. font-size:14px;
  7611. color:#CCCCCC;
  7612. text-align:left;
  7613. }
  7614. #u22091 .text {
  7615. position:absolute;
  7616. align-self:center;
  7617. padding:2px 8px 2px 8px;
  7618. box-sizing:border-box;
  7619. width:100%;
  7620. }
  7621. #u22091_text {
  7622. border-width:0px;
  7623. word-wrap:break-word;
  7624. text-transform:none;
  7625. visibility:hidden;
  7626. }
  7627. #u22092_input {
  7628. position:absolute;
  7629. left:0px;
  7630. top:0px;
  7631. width:388px;
  7632. height:38px;
  7633. padding:2px 2px 2px 2px;
  7634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:14px;
  7638. letter-spacing:normal;
  7639. color:#000000;
  7640. vertical-align:none;
  7641. text-align:left;
  7642. text-transform:none;
  7643. background-color:transparent;
  7644. border-color:transparent;
  7645. }
  7646. #u22092_input.hint {
  7647. position:absolute;
  7648. left:0px;
  7649. top:0px;
  7650. width:388px;
  7651. height:38px;
  7652. padding:2px 2px 2px 2px;
  7653. font-family:"Microsoft YaHei", sans-serif;
  7654. font-weight:400;
  7655. font-style:normal;
  7656. font-size:12px;
  7657. letter-spacing:normal;
  7658. color:#AAAAAA;
  7659. vertical-align:none;
  7660. text-align:left;
  7661. text-transform:none;
  7662. background-color:transparent;
  7663. border-color:transparent;
  7664. }
  7665. #u22092_input.disabled {
  7666. position:absolute;
  7667. left:0px;
  7668. top:0px;
  7669. width:388px;
  7670. height:38px;
  7671. padding:2px 2px 2px 2px;
  7672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7673. font-weight:400;
  7674. font-style:normal;
  7675. font-size:14px;
  7676. letter-spacing:normal;
  7677. color:#000000;
  7678. vertical-align:none;
  7679. text-align:left;
  7680. text-transform:none;
  7681. background-color:transparent;
  7682. border-color:transparent;
  7683. }
  7684. #u22092_input.hint.disabled {
  7685. position:absolute;
  7686. left:0px;
  7687. top:0px;
  7688. width:388px;
  7689. height:38px;
  7690. padding:2px 2px 2px 2px;
  7691. font-family:"Microsoft YaHei", sans-serif;
  7692. font-weight:400;
  7693. font-style:normal;
  7694. font-size:12px;
  7695. letter-spacing:normal;
  7696. color:#AAAAAA;
  7697. vertical-align:none;
  7698. text-align:left;
  7699. text-transform:none;
  7700. background-color:transparent;
  7701. border-color:transparent;
  7702. }
  7703. #u22092_div {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:388px;
  7709. height:38px;
  7710. background:inherit;
  7711. background-color:rgba(255, 255, 255, 1);
  7712. border-radius:0px;
  7713. filter:drop-shadow(none);
  7714. transition:none;
  7715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7716. font-weight:400;
  7717. font-style:normal;
  7718. font-size:14px;
  7719. }
  7720. #u22092 {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:1219px;
  7724. top:299px;
  7725. width:388px;
  7726. height:38px;
  7727. display:flex;
  7728. transition:none;
  7729. transform-origin:50% 50%;
  7730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7731. font-weight:400;
  7732. font-style:normal;
  7733. font-size:14px;
  7734. }
  7735. #u22092 .text {
  7736. position:absolute;
  7737. align-self:center;
  7738. padding:2px 2px 2px 2px;
  7739. box-sizing:border-box;
  7740. width:100%;
  7741. }
  7742. #u22092_div.hint {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:0px;
  7746. top:0px;
  7747. width:388px;
  7748. height:38px;
  7749. background:inherit;
  7750. background-color:rgba(255, 255, 255, 1);
  7751. border-radius:0px;
  7752. filter:drop-shadow(none);
  7753. transition:none;
  7754. font-family:"Microsoft YaHei", sans-serif;
  7755. font-weight:400;
  7756. font-style:normal;
  7757. font-size:14px;
  7758. }
  7759. #u22092.hint {
  7760. }
  7761. #u22092_div.disabled {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:0px;
  7765. top:0px;
  7766. width:388px;
  7767. height:38px;
  7768. background:inherit;
  7769. background-color:rgba(240, 240, 240, 1);
  7770. border-radius:0px;
  7771. filter:drop-shadow(none);
  7772. transition:none;
  7773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7774. font-weight:400;
  7775. font-style:normal;
  7776. font-size:14px;
  7777. }
  7778. #u22092.disabled {
  7779. }
  7780. #u22092_div.hint.disabled {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:388px;
  7786. height:38px;
  7787. background:inherit;
  7788. background-color:rgba(240, 240, 240, 1);
  7789. border-radius:0px;
  7790. filter:drop-shadow(none);
  7791. transition:none;
  7792. font-family:"Microsoft YaHei", sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:14px;
  7796. }
  7797. #u22092.hint.disabled {
  7798. }
  7799. #u22093_div {
  7800. border-width:0px;
  7801. position:absolute;
  7802. left:0px;
  7803. top:0px;
  7804. width:80px;
  7805. height:30px;
  7806. background:inherit;
  7807. background-color:rgba(24, 144, 255, 1);
  7808. border-radius:4px;
  7809. filter:drop-shadow(none);
  7810. transition:none;
  7811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7812. font-weight:400;
  7813. font-style:normal;
  7814. font-size:14px;
  7815. color:#FFFFFF;
  7816. }
  7817. #u22093 {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:1208px;
  7821. top:453px;
  7822. width:80px;
  7823. height:30px;
  7824. display:flex;
  7825. transition:none;
  7826. transform-origin:50% 50%;
  7827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:14px;
  7831. color:#FFFFFF;
  7832. }
  7833. #u22093 .text {
  7834. position:absolute;
  7835. align-self:center;
  7836. padding:2px 2px 2px 2px;
  7837. box-sizing:border-box;
  7838. width:100%;
  7839. }
  7840. #u22093_text {
  7841. border-width:0px;
  7842. word-wrap:break-word;
  7843. text-transform:none;
  7844. }
  7845. #u22094_div {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:81px;
  7851. height:40px;
  7852. background:inherit;
  7853. background-color:rgba(255, 255, 255, 0);
  7854. border-top:0px;
  7855. border-right:0px;
  7856. border-bottom:0px;
  7857. border-radius:0px;
  7858. border-top-left-radius:0px;
  7859. border-bottom-left-radius:0px;
  7860. filter:drop-shadow(none);
  7861. transition:none;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:14px;
  7866. color:#7F7F7F;
  7867. text-align:right;
  7868. }
  7869. #u22094 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:1117px;
  7873. top:648px;
  7874. width:81px;
  7875. height:40px;
  7876. display:flex;
  7877. transition:none;
  7878. transform-origin:50% 50%;
  7879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. font-size:14px;
  7883. color:#7F7F7F;
  7884. text-align:right;
  7885. }
  7886. #u22094 .text {
  7887. position:absolute;
  7888. align-self:center;
  7889. padding:5px 10px 5px 0px;
  7890. box-sizing:border-box;
  7891. width:100%;
  7892. }
  7893. #u22094_text {
  7894. border-width:0px;
  7895. white-space:nowrap;
  7896. text-transform:none;
  7897. }
  7898. #u22095_div {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:0px;
  7902. top:0px;
  7903. width:80px;
  7904. height:30px;
  7905. background:inherit;
  7906. background-color:rgba(24, 144, 255, 1);
  7907. border-radius:4px;
  7908. filter:drop-shadow(none);
  7909. transition:none;
  7910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7911. font-weight:400;
  7912. font-style:normal;
  7913. font-size:14px;
  7914. color:#FFFFFF;
  7915. }
  7916. #u22095 {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:1208px;
  7920. top:653px;
  7921. width:80px;
  7922. height:30px;
  7923. display:flex;
  7924. transition:none;
  7925. transform-origin:50% 50%;
  7926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7927. font-weight:400;
  7928. font-style:normal;
  7929. font-size:14px;
  7930. color:#FFFFFF;
  7931. }
  7932. #u22095 .text {
  7933. position:absolute;
  7934. align-self:center;
  7935. padding:2px 2px 2px 2px;
  7936. box-sizing:border-box;
  7937. width:100%;
  7938. }
  7939. #u22095_text {
  7940. border-width:0px;
  7941. word-wrap:break-word;
  7942. text-transform:none;
  7943. }
  7944. #u22096 {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:0px;
  7950. height:0px;
  7951. }
  7952. #u22097_div {
  7953. border-width:0px;
  7954. position:absolute;
  7955. left:0px;
  7956. top:0px;
  7957. width:129px;
  7958. height:40px;
  7959. background:inherit;
  7960. background-color:rgba(255, 255, 255, 0);
  7961. border-top:0px;
  7962. border-right:0px;
  7963. border-bottom:0px;
  7964. border-radius:0px;
  7965. border-top-left-radius:0px;
  7966. border-bottom-left-radius:0px;
  7967. filter:drop-shadow(none);
  7968. transition:none;
  7969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7970. font-weight:400;
  7971. font-style:normal;
  7972. font-size:14px;
  7973. color:#1890FF;
  7974. }
  7975. #u22097 {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:1208px;
  7979. top:693px;
  7980. width:129px;
  7981. height:40px;
  7982. display:flex;
  7983. transition:none;
  7984. transform-origin:50% 50%;
  7985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:14px;
  7989. color:#1890FF;
  7990. }
  7991. #u22097 .text {
  7992. position:absolute;
  7993. align-self:center;
  7994. padding:5px 10px 5px 0px;
  7995. box-sizing:border-box;
  7996. width:100%;
  7997. }
  7998. #u22097_text {
  7999. border-width:0px;
  8000. white-space:nowrap;
  8001. text-transform:none;
  8002. }
  8003. #u22098 {
  8004. border-width:0px;
  8005. position:absolute;
  8006. left:1337px;
  8007. top:709px;
  8008. width:9px;
  8009. height:9px;
  8010. display:flex;
  8011. transition:none;
  8012. }
  8013. #u22098 .text {
  8014. position:absolute;
  8015. align-self:center;
  8016. padding:2px 2px 2px 2px;
  8017. box-sizing:border-box;
  8018. width:100%;
  8019. }
  8020. #u22098_img {
  8021. border-width:0px;
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:9px;
  8026. height:9px;
  8027. }
  8028. #u22098_text {
  8029. border-width:0px;
  8030. word-wrap:break-word;
  8031. text-transform:none;
  8032. visibility:hidden;
  8033. }
  8034. #u22099 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:0px;
  8040. height:0px;
  8041. }
  8042. #u22100_div {
  8043. border-width:0px;
  8044. position:absolute;
  8045. left:0px;
  8046. top:0px;
  8047. width:129px;
  8048. height:40px;
  8049. background:inherit;
  8050. background-color:rgba(255, 255, 255, 0);
  8051. border-top:0px;
  8052. border-right:0px;
  8053. border-bottom:0px;
  8054. border-radius:0px;
  8055. border-top-left-radius:0px;
  8056. border-bottom-left-radius:0px;
  8057. filter:drop-shadow(none);
  8058. transition:none;
  8059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8060. font-weight:400;
  8061. font-style:normal;
  8062. font-size:14px;
  8063. color:#1890FF;
  8064. }
  8065. #u22100 {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:1208px;
  8069. top:733px;
  8070. width:129px;
  8071. height:40px;
  8072. display:flex;
  8073. transition:none;
  8074. transform-origin:50% 50%;
  8075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8076. font-weight:400;
  8077. font-style:normal;
  8078. font-size:14px;
  8079. color:#1890FF;
  8080. }
  8081. #u22100 .text {
  8082. position:absolute;
  8083. align-self:center;
  8084. padding:5px 10px 5px 0px;
  8085. box-sizing:border-box;
  8086. width:100%;
  8087. }
  8088. #u22100_text {
  8089. border-width:0px;
  8090. white-space:nowrap;
  8091. text-transform:none;
  8092. }
  8093. #u22101 {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:1337px;
  8097. top:749px;
  8098. width:9px;
  8099. height:9px;
  8100. display:flex;
  8101. transition:none;
  8102. }
  8103. #u22101 .text {
  8104. position:absolute;
  8105. align-self:center;
  8106. padding:2px 2px 2px 2px;
  8107. box-sizing:border-box;
  8108. width:100%;
  8109. }
  8110. #u22101_img {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:0px;
  8114. top:0px;
  8115. width:9px;
  8116. height:9px;
  8117. }
  8118. #u22101_text {
  8119. border-width:0px;
  8120. word-wrap:break-word;
  8121. text-transform:none;
  8122. visibility:hidden;
  8123. }
  8124. #u22102_div {
  8125. border-width:0px;
  8126. position:absolute;
  8127. left:0px;
  8128. top:0px;
  8129. width:50px;
  8130. height:30px;
  8131. background:inherit;
  8132. background-color:rgba(255, 255, 255, 0);
  8133. border-top:0px;
  8134. border-right:0px;
  8135. border-bottom:0px;
  8136. border-radius:0px;
  8137. border-top-left-radius:0px;
  8138. border-bottom-left-radius:0px;
  8139. filter:drop-shadow(none);
  8140. transition:none;
  8141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8142. font-weight:400;
  8143. font-style:normal;
  8144. font-size:14px;
  8145. color:#7F7F7F;
  8146. text-align:right;
  8147. }
  8148. #u22102 {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:1159px;
  8152. top:133px;
  8153. width:50px;
  8154. height:30px;
  8155. display:flex;
  8156. transition:none;
  8157. transform-origin:50% 50%;
  8158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8159. font-weight:400;
  8160. font-style:normal;
  8161. font-size:14px;
  8162. color:#7F7F7F;
  8163. text-align:right;
  8164. }
  8165. #u22102 .text {
  8166. position:absolute;
  8167. align-self:center;
  8168. padding:5px 0px 5px 0px;
  8169. box-sizing:border-box;
  8170. width:100%;
  8171. }
  8172. #u22102_text {
  8173. border-width:0px;
  8174. white-space:nowrap;
  8175. text-transform:none;
  8176. }
  8177. #u22103 {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:0px;
  8181. top:0px;
  8182. width:0px;
  8183. height:0px;
  8184. }
  8185. #u22104_div {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:0px;
  8189. top:0px;
  8190. width:140px;
  8191. height:40px;
  8192. background:inherit;
  8193. background-color:rgba(242, 242, 242, 1);
  8194. box-sizing:border-box;
  8195. border-width:1px;
  8196. border-style:solid;
  8197. border-color:rgba(201, 201, 201, 1);
  8198. border-radius:4px;
  8199. filter:drop-shadow(none);
  8200. transition:none;
  8201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8202. font-weight:400;
  8203. font-style:normal;
  8204. font-size:14px;
  8205. text-align:right;
  8206. }
  8207. #u22104 {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:1209px;
  8211. top:128px;
  8212. width:140px;
  8213. height:40px;
  8214. display:flex;
  8215. opacity:0.9;
  8216. transition:none;
  8217. transform-origin:50% 50%;
  8218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8219. font-weight:400;
  8220. font-style:normal;
  8221. font-size:14px;
  8222. text-align:right;
  8223. }
  8224. #u22104 .text {
  8225. position:absolute;
  8226. align-self:center;
  8227. padding:2px 10px 2px 8px;
  8228. box-sizing:border-box;
  8229. width:100%;
  8230. }
  8231. #u22104_text {
  8232. border-width:0px;
  8233. word-wrap:break-word;
  8234. text-transform:none;
  8235. visibility:hidden;
  8236. }
  8237. #u22105_input {
  8238. position:absolute;
  8239. left:0px;
  8240. top:0px;
  8241. width:133px;
  8242. height:23px;
  8243. padding:2px 2px 2px 2px;
  8244. font-family:'ArialMT', 'Arial', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:11px;
  8248. letter-spacing:normal;
  8249. color:#AAAAAA;
  8250. vertical-align:none;
  8251. text-align:left;
  8252. text-transform:none;
  8253. background-color:transparent;
  8254. border-color:transparent;
  8255. }
  8256. #u22105_input.disabled {
  8257. position:absolute;
  8258. left:0px;
  8259. top:0px;
  8260. width:133px;
  8261. height:23px;
  8262. padding:2px 2px 2px 2px;
  8263. font-family:'ArialMT', 'Arial', sans-serif;
  8264. font-weight:400;
  8265. font-style:normal;
  8266. font-size:11px;
  8267. letter-spacing:normal;
  8268. color:#AAAAAA;
  8269. vertical-align:none;
  8270. text-align:left;
  8271. text-transform:none;
  8272. background-color:transparent;
  8273. border-color:transparent;
  8274. }
  8275. #u22105_div {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:133px;
  8281. height:23px;
  8282. background:inherit;
  8283. background-color:rgba(242, 242, 242, 1);
  8284. border-radius:0px;
  8285. filter:drop-shadow(none);
  8286. transition:none;
  8287. font-size:11px;
  8288. color:#AAAAAA;
  8289. }
  8290. #u22105 {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:1213px;
  8294. top:137px;
  8295. width:133px;
  8296. height:23px;
  8297. display:flex;
  8298. opacity:0.9;
  8299. transition:none;
  8300. transform-origin:50% 50%;
  8301. font-size:11px;
  8302. color:#AAAAAA;
  8303. }
  8304. #u22105 .text {
  8305. position:absolute;
  8306. align-self:flex-start;
  8307. padding:2px 2px 2px 2px;
  8308. box-sizing:border-box;
  8309. width:100%;
  8310. }
  8311. #u22105_div.disabled {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:133px;
  8317. height:23px;
  8318. background:inherit;
  8319. background-color:rgba(240, 240, 240, 1);
  8320. border-radius:0px;
  8321. filter:drop-shadow(none);
  8322. transition:none;
  8323. font-size:11px;
  8324. color:#AAAAAA;
  8325. }
  8326. #u22105.disabled {
  8327. }
  8328. .u22105_input_option {
  8329. font-size:11px;
  8330. }
  8331. #u22106_div {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:0px;
  8335. top:0px;
  8336. width:71px;
  8337. height:30px;
  8338. background:inherit;
  8339. background-color:rgba(255, 255, 255, 0);
  8340. border-top:0px;
  8341. border-right:0px;
  8342. border-bottom:0px;
  8343. border-radius:0px;
  8344. border-top-left-radius:0px;
  8345. border-bottom-left-radius:0px;
  8346. filter:drop-shadow(none);
  8347. transition:none;
  8348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8349. font-weight:400;
  8350. font-style:normal;
  8351. font-size:14px;
  8352. color:#7F7F7F;
  8353. text-align:right;
  8354. }
  8355. #u22106 {
  8356. border-width:0px;
  8357. position:absolute;
  8358. left:1159px;
  8359. top:193px;
  8360. width:71px;
  8361. height:30px;
  8362. display:flex;
  8363. transition:none;
  8364. transform-origin:50% 50%;
  8365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8366. font-weight:400;
  8367. font-style:normal;
  8368. font-size:14px;
  8369. color:#7F7F7F;
  8370. text-align:right;
  8371. }
  8372. #u22106 .text {
  8373. position:absolute;
  8374. align-self:center;
  8375. padding:5px 0px 5px 0px;
  8376. box-sizing:border-box;
  8377. width:100%;
  8378. }
  8379. #u22106_text {
  8380. border-width:0px;
  8381. white-space:nowrap;
  8382. text-transform:none;
  8383. }
  8384. #u22107 {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:0px;
  8388. top:0px;
  8389. width:0px;
  8390. height:0px;
  8391. }
  8392. #u22108_div {
  8393. border-width:0px;
  8394. position:absolute;
  8395. left:0px;
  8396. top:0px;
  8397. width:119px;
  8398. height:40px;
  8399. background:inherit;
  8400. background-color:rgba(242, 242, 242, 1);
  8401. box-sizing:border-box;
  8402. border-width:1px;
  8403. border-style:solid;
  8404. border-color:rgba(201, 201, 201, 1);
  8405. border-radius:4px;
  8406. filter:drop-shadow(none);
  8407. transition:none;
  8408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8409. font-weight:400;
  8410. font-style:normal;
  8411. font-size:12px;
  8412. color:#CCCCCC;
  8413. text-align:right;
  8414. }
  8415. #u22108 {
  8416. border-width:0px;
  8417. position:absolute;
  8418. left:1230px;
  8419. top:188px;
  8420. width:119px;
  8421. height:40px;
  8422. display:flex;
  8423. transition:none;
  8424. transform-origin:50% 50%;
  8425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8426. font-weight:400;
  8427. font-style:normal;
  8428. font-size:12px;
  8429. color:#CCCCCC;
  8430. text-align:right;
  8431. }
  8432. #u22108 .text {
  8433. position:absolute;
  8434. align-self:center;
  8435. padding:2px 8px 2px 8px;
  8436. box-sizing:border-box;
  8437. width:100%;
  8438. }
  8439. #u22108_text {
  8440. border-width:0px;
  8441. word-wrap:break-word;
  8442. text-transform:none;
  8443. }
  8444. #u22109_input {
  8445. position:absolute;
  8446. left:0px;
  8447. top:0px;
  8448. width:67px;
  8449. height:38px;
  8450. padding:2px 2px 2px 2px;
  8451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:14px;
  8455. letter-spacing:normal;
  8456. color:#000000;
  8457. vertical-align:none;
  8458. text-align:left;
  8459. text-transform:none;
  8460. background-color:transparent;
  8461. border-color:transparent;
  8462. }
  8463. #u22109_input.hint {
  8464. position:absolute;
  8465. left:0px;
  8466. top:0px;
  8467. width:67px;
  8468. height:38px;
  8469. padding:2px 2px 2px 2px;
  8470. font-family:"Microsoft YaHei", sans-serif;
  8471. font-weight:400;
  8472. font-style:normal;
  8473. font-size:12px;
  8474. letter-spacing:normal;
  8475. color:#AAAAAA;
  8476. vertical-align:none;
  8477. text-align:left;
  8478. text-transform:none;
  8479. background-color:transparent;
  8480. border-color:transparent;
  8481. }
  8482. #u22109_input.disabled {
  8483. position:absolute;
  8484. left:0px;
  8485. top:0px;
  8486. width:67px;
  8487. height:38px;
  8488. padding:2px 2px 2px 2px;
  8489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8490. font-weight:400;
  8491. font-style:normal;
  8492. font-size:14px;
  8493. letter-spacing:normal;
  8494. color:#000000;
  8495. vertical-align:none;
  8496. text-align:left;
  8497. text-transform:none;
  8498. background-color:transparent;
  8499. border-color:transparent;
  8500. }
  8501. #u22109_input.hint.disabled {
  8502. position:absolute;
  8503. left:0px;
  8504. top:0px;
  8505. width:67px;
  8506. height:38px;
  8507. padding:2px 2px 2px 2px;
  8508. font-family:"Microsoft YaHei", sans-serif;
  8509. font-weight:400;
  8510. font-style:normal;
  8511. font-size:12px;
  8512. letter-spacing:normal;
  8513. color:#AAAAAA;
  8514. vertical-align:none;
  8515. text-align:left;
  8516. text-transform:none;
  8517. background-color:transparent;
  8518. border-color:transparent;
  8519. }
  8520. #u22109_div {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:0px;
  8524. top:0px;
  8525. width:67px;
  8526. height:38px;
  8527. background:inherit;
  8528. background-color:rgba(242, 242, 242, 1);
  8529. border-radius:0px;
  8530. filter:drop-shadow(none);
  8531. transition:none;
  8532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8533. font-weight:400;
  8534. font-style:normal;
  8535. font-size:14px;
  8536. }
  8537. #u22109 {
  8538. border-width:0px;
  8539. position:absolute;
  8540. left:1233px;
  8541. top:189px;
  8542. width:67px;
  8543. height:38px;
  8544. display:flex;
  8545. transition:none;
  8546. transform-origin:50% 50%;
  8547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8548. font-weight:400;
  8549. font-style:normal;
  8550. font-size:14px;
  8551. }
  8552. #u22109 .text {
  8553. position:absolute;
  8554. align-self:center;
  8555. padding:2px 2px 2px 2px;
  8556. box-sizing:border-box;
  8557. width:100%;
  8558. }
  8559. #u22109_div.hint {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:67px;
  8565. height:38px;
  8566. background:inherit;
  8567. background-color:rgba(242, 242, 242, 1);
  8568. border-radius:0px;
  8569. filter:drop-shadow(none);
  8570. transition:none;
  8571. font-family:"Microsoft YaHei", sans-serif;
  8572. font-weight:400;
  8573. font-style:normal;
  8574. font-size:14px;
  8575. }
  8576. #u22109.hint {
  8577. }
  8578. #u22109_div.disabled {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:67px;
  8584. height:38px;
  8585. background:inherit;
  8586. background-color:rgba(240, 240, 240, 1);
  8587. border-radius:0px;
  8588. filter:drop-shadow(none);
  8589. transition:none;
  8590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8591. font-weight:400;
  8592. font-style:normal;
  8593. font-size:14px;
  8594. }
  8595. #u22109.disabled {
  8596. }
  8597. #u22109_div.hint.disabled {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:0px;
  8601. top:0px;
  8602. width:67px;
  8603. height:38px;
  8604. background:inherit;
  8605. background-color:rgba(240, 240, 240, 1);
  8606. border-radius:0px;
  8607. filter:drop-shadow(none);
  8608. transition:none;
  8609. font-family:"Microsoft YaHei", sans-serif;
  8610. font-weight:400;
  8611. font-style:normal;
  8612. font-size:14px;
  8613. }
  8614. #u22109.hint.disabled {
  8615. }
  8616. #u22110_div {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:43px;
  8622. height:30px;
  8623. background:inherit;
  8624. background-color:rgba(255, 255, 255, 0);
  8625. border-top:0px;
  8626. border-right:0px;
  8627. border-bottom:0px;
  8628. border-radius:0px;
  8629. border-top-left-radius:0px;
  8630. border-bottom-left-radius:0px;
  8631. filter:drop-shadow(none);
  8632. transition:none;
  8633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8634. font-weight:400;
  8635. font-style:normal;
  8636. font-size:14px;
  8637. color:#7F7F7F;
  8638. text-align:right;
  8639. }
  8640. #u22110 {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:1773px;
  8644. top:188px;
  8645. width:43px;
  8646. height:30px;
  8647. display:flex;
  8648. transition:none;
  8649. transform-origin:50% 50%;
  8650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8651. font-weight:400;
  8652. font-style:normal;
  8653. font-size:14px;
  8654. color:#7F7F7F;
  8655. text-align:right;
  8656. }
  8657. #u22110 .text {
  8658. position:absolute;
  8659. align-self:center;
  8660. padding:5px 0px 5px 0px;
  8661. box-sizing:border-box;
  8662. width:100%;
  8663. }
  8664. #u22110_text {
  8665. border-width:0px;
  8666. white-space:nowrap;
  8667. text-transform:none;
  8668. }
  8669. #u22111 {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:0px;
  8673. top:0px;
  8674. width:0px;
  8675. height:0px;
  8676. }
  8677. #u22112_div {
  8678. border-width:0px;
  8679. position:absolute;
  8680. left:0px;
  8681. top:0px;
  8682. width:137px;
  8683. height:40px;
  8684. background:inherit;
  8685. background-color:rgba(242, 242, 242, 1);
  8686. box-sizing:border-box;
  8687. border-width:1px;
  8688. border-style:solid;
  8689. border-color:rgba(201, 201, 201, 1);
  8690. border-radius:4px;
  8691. filter:drop-shadow(none);
  8692. transition:none;
  8693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8694. font-weight:400;
  8695. font-style:normal;
  8696. font-size:12px;
  8697. color:#CCCCCC;
  8698. text-align:right;
  8699. }
  8700. #u22112 {
  8701. border-width:0px;
  8702. position:absolute;
  8703. left:1826px;
  8704. top:183px;
  8705. width:137px;
  8706. height:40px;
  8707. display:flex;
  8708. transition:none;
  8709. transform-origin:50% 50%;
  8710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8711. font-weight:400;
  8712. font-style:normal;
  8713. font-size:12px;
  8714. color:#CCCCCC;
  8715. text-align:right;
  8716. }
  8717. #u22112 .text {
  8718. position:absolute;
  8719. align-self:center;
  8720. padding:2px 8px 2px 8px;
  8721. box-sizing:border-box;
  8722. width:100%;
  8723. }
  8724. #u22112_text {
  8725. border-width:0px;
  8726. word-wrap:break-word;
  8727. text-transform:none;
  8728. visibility:hidden;
  8729. }
  8730. #u22113_input {
  8731. position:absolute;
  8732. left:0px;
  8733. top:0px;
  8734. width:107px;
  8735. height:38px;
  8736. padding:2px 2px 2px 2px;
  8737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8738. font-weight:400;
  8739. font-style:normal;
  8740. font-size:14px;
  8741. letter-spacing:normal;
  8742. color:#000000;
  8743. vertical-align:none;
  8744. text-align:left;
  8745. text-transform:none;
  8746. background-color:transparent;
  8747. border-color:transparent;
  8748. }
  8749. #u22113_input.hint {
  8750. position:absolute;
  8751. left:0px;
  8752. top:0px;
  8753. width:107px;
  8754. height:38px;
  8755. padding:2px 2px 2px 2px;
  8756. font-family:"Microsoft YaHei", sans-serif;
  8757. font-weight:400;
  8758. font-style:normal;
  8759. font-size:12px;
  8760. letter-spacing:normal;
  8761. color:#AAAAAA;
  8762. vertical-align:none;
  8763. text-align:left;
  8764. text-transform:none;
  8765. background-color:transparent;
  8766. border-color:transparent;
  8767. }
  8768. #u22113_input.disabled {
  8769. position:absolute;
  8770. left:0px;
  8771. top:0px;
  8772. width:107px;
  8773. height:38px;
  8774. padding:2px 2px 2px 2px;
  8775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:14px;
  8779. letter-spacing:normal;
  8780. color:#000000;
  8781. vertical-align:none;
  8782. text-align:left;
  8783. text-transform:none;
  8784. background-color:transparent;
  8785. border-color:transparent;
  8786. }
  8787. #u22113_input.hint.disabled {
  8788. position:absolute;
  8789. left:0px;
  8790. top:0px;
  8791. width:107px;
  8792. height:38px;
  8793. padding:2px 2px 2px 2px;
  8794. font-family:"Microsoft YaHei", sans-serif;
  8795. font-weight:400;
  8796. font-style:normal;
  8797. font-size:12px;
  8798. letter-spacing:normal;
  8799. color:#AAAAAA;
  8800. vertical-align:none;
  8801. text-align:left;
  8802. text-transform:none;
  8803. background-color:transparent;
  8804. border-color:transparent;
  8805. }
  8806. #u22113_div {
  8807. border-width:0px;
  8808. position:absolute;
  8809. left:0px;
  8810. top:0px;
  8811. width:107px;
  8812. height:38px;
  8813. background:inherit;
  8814. background-color:rgba(242, 242, 242, 1);
  8815. border-radius:0px;
  8816. filter:drop-shadow(none);
  8817. transition:none;
  8818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8819. font-weight:400;
  8820. font-style:normal;
  8821. font-size:14px;
  8822. }
  8823. #u22113 {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:1830px;
  8827. top:184px;
  8828. width:107px;
  8829. height:38px;
  8830. display:flex;
  8831. transition:none;
  8832. transform-origin:50% 50%;
  8833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8834. font-weight:400;
  8835. font-style:normal;
  8836. font-size:14px;
  8837. }
  8838. #u22113 .text {
  8839. position:absolute;
  8840. align-self:center;
  8841. padding:2px 2px 2px 2px;
  8842. box-sizing:border-box;
  8843. width:100%;
  8844. }
  8845. #u22113_div.hint {
  8846. border-width:0px;
  8847. position:absolute;
  8848. left:0px;
  8849. top:0px;
  8850. width:107px;
  8851. height:38px;
  8852. background:inherit;
  8853. background-color:rgba(242, 242, 242, 1);
  8854. border-radius:0px;
  8855. filter:drop-shadow(none);
  8856. transition:none;
  8857. font-family:"Microsoft YaHei", sans-serif;
  8858. font-weight:400;
  8859. font-style:normal;
  8860. font-size:14px;
  8861. }
  8862. #u22113.hint {
  8863. }
  8864. #u22113_div.disabled {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:107px;
  8870. height:38px;
  8871. background:inherit;
  8872. background-color:rgba(240, 240, 240, 1);
  8873. border-radius:0px;
  8874. filter:drop-shadow(none);
  8875. transition:none;
  8876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8877. font-weight:400;
  8878. font-style:normal;
  8879. font-size:14px;
  8880. }
  8881. #u22113.disabled {
  8882. }
  8883. #u22113_div.hint.disabled {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:0px;
  8887. top:0px;
  8888. width:107px;
  8889. height:38px;
  8890. background:inherit;
  8891. background-color:rgba(240, 240, 240, 1);
  8892. border-radius:0px;
  8893. filter:drop-shadow(none);
  8894. transition:none;
  8895. font-family:"Microsoft YaHei", sans-serif;
  8896. font-weight:400;
  8897. font-style:normal;
  8898. font-size:14px;
  8899. }
  8900. #u22113.hint.disabled {
  8901. }
  8902. #u22114_div {
  8903. border-width:0px;
  8904. position:absolute;
  8905. left:0px;
  8906. top:0px;
  8907. width:50px;
  8908. height:30px;
  8909. background:inherit;
  8910. background-color:rgba(255, 255, 255, 0);
  8911. border-top:0px;
  8912. border-right:0px;
  8913. border-bottom:0px;
  8914. border-radius:0px;
  8915. border-top-left-radius:0px;
  8916. border-bottom-left-radius:0px;
  8917. filter:drop-shadow(none);
  8918. transition:none;
  8919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8920. font-weight:400;
  8921. font-style:normal;
  8922. font-size:14px;
  8923. color:#7F7F7F;
  8924. text-align:right;
  8925. }
  8926. #u22114 {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:1366px;
  8930. top:133px;
  8931. width:50px;
  8932. height:30px;
  8933. display:flex;
  8934. transition:none;
  8935. transform-origin:50% 50%;
  8936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8937. font-weight:400;
  8938. font-style:normal;
  8939. font-size:14px;
  8940. color:#7F7F7F;
  8941. text-align:right;
  8942. }
  8943. #u22114 .text {
  8944. position:absolute;
  8945. align-self:center;
  8946. padding:5px 0px 5px 0px;
  8947. box-sizing:border-box;
  8948. width:100%;
  8949. }
  8950. #u22114_text {
  8951. border-width:0px;
  8952. white-space:nowrap;
  8953. text-transform:none;
  8954. }
  8955. #u22115 {
  8956. border-width:0px;
  8957. position:absolute;
  8958. left:0px;
  8959. top:0px;
  8960. width:0px;
  8961. height:0px;
  8962. }
  8963. #u22116_div {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:140px;
  8969. height:40px;
  8970. background:inherit;
  8971. background-color:rgba(242, 242, 242, 1);
  8972. box-sizing:border-box;
  8973. border-width:1px;
  8974. border-style:solid;
  8975. border-color:rgba(201, 201, 201, 1);
  8976. border-radius:4px;
  8977. filter:drop-shadow(none);
  8978. transition:none;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:14px;
  8983. text-align:right;
  8984. }
  8985. #u22116 {
  8986. border-width:0px;
  8987. position:absolute;
  8988. left:1416px;
  8989. top:128px;
  8990. width:140px;
  8991. height:40px;
  8992. display:flex;
  8993. opacity:0.9;
  8994. transition:none;
  8995. transform-origin:50% 50%;
  8996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8997. font-weight:400;
  8998. font-style:normal;
  8999. font-size:14px;
  9000. text-align:right;
  9001. }
  9002. #u22116 .text {
  9003. position:absolute;
  9004. align-self:center;
  9005. padding:2px 10px 2px 8px;
  9006. box-sizing:border-box;
  9007. width:100%;
  9008. }
  9009. #u22116_text {
  9010. border-width:0px;
  9011. word-wrap:break-word;
  9012. text-transform:none;
  9013. visibility:hidden;
  9014. }
  9015. #u22117_input {
  9016. position:absolute;
  9017. left:0px;
  9018. top:0px;
  9019. width:133px;
  9020. height:23px;
  9021. padding:2px 2px 2px 2px;
  9022. font-family:'ArialMT', 'Arial', sans-serif;
  9023. font-weight:400;
  9024. font-style:normal;
  9025. font-size:11px;
  9026. letter-spacing:normal;
  9027. color:#AAAAAA;
  9028. vertical-align:none;
  9029. text-align:left;
  9030. text-transform:none;
  9031. background-color:transparent;
  9032. border-color:transparent;
  9033. }
  9034. #u22117_input.disabled {
  9035. position:absolute;
  9036. left:0px;
  9037. top:0px;
  9038. width:133px;
  9039. height:23px;
  9040. padding:2px 2px 2px 2px;
  9041. font-family:'ArialMT', 'Arial', sans-serif;
  9042. font-weight:400;
  9043. font-style:normal;
  9044. font-size:11px;
  9045. letter-spacing:normal;
  9046. color:#AAAAAA;
  9047. vertical-align:none;
  9048. text-align:left;
  9049. text-transform:none;
  9050. background-color:transparent;
  9051. border-color:transparent;
  9052. }
  9053. #u22117_div {
  9054. border-width:0px;
  9055. position:absolute;
  9056. left:0px;
  9057. top:0px;
  9058. width:133px;
  9059. height:23px;
  9060. background:inherit;
  9061. background-color:rgba(242, 242, 242, 1);
  9062. border-radius:0px;
  9063. filter:drop-shadow(none);
  9064. transition:none;
  9065. font-size:11px;
  9066. color:#AAAAAA;
  9067. }
  9068. #u22117 {
  9069. border-width:0px;
  9070. position:absolute;
  9071. left:1420px;
  9072. top:137px;
  9073. width:133px;
  9074. height:23px;
  9075. display:flex;
  9076. opacity:0.9;
  9077. transition:none;
  9078. transform-origin:50% 50%;
  9079. font-size:11px;
  9080. color:#AAAAAA;
  9081. }
  9082. #u22117 .text {
  9083. position:absolute;
  9084. align-self:flex-start;
  9085. padding:2px 2px 2px 2px;
  9086. box-sizing:border-box;
  9087. width:100%;
  9088. }
  9089. #u22117_div.disabled {
  9090. border-width:0px;
  9091. position:absolute;
  9092. left:0px;
  9093. top:0px;
  9094. width:133px;
  9095. height:23px;
  9096. background:inherit;
  9097. background-color:rgba(240, 240, 240, 1);
  9098. border-radius:0px;
  9099. filter:drop-shadow(none);
  9100. transition:none;
  9101. font-size:11px;
  9102. color:#AAAAAA;
  9103. }
  9104. #u22117.disabled {
  9105. }
  9106. .u22117_input_option {
  9107. font-size:11px;
  9108. }
  9109. #u22118_div {
  9110. border-width:0px;
  9111. position:absolute;
  9112. left:0px;
  9113. top:0px;
  9114. width:43px;
  9115. height:30px;
  9116. background:inherit;
  9117. background-color:rgba(255, 255, 255, 0);
  9118. border-top:0px;
  9119. border-right:0px;
  9120. border-bottom:0px;
  9121. border-radius:0px;
  9122. border-top-left-radius:0px;
  9123. border-bottom-left-radius:0px;
  9124. filter:drop-shadow(none);
  9125. transition:none;
  9126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9127. font-weight:400;
  9128. font-style:normal;
  9129. font-size:14px;
  9130. color:#7F7F7F;
  9131. text-align:right;
  9132. }
  9133. #u22118 {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:1573px;
  9137. top:133px;
  9138. width:43px;
  9139. height:30px;
  9140. display:flex;
  9141. transition:none;
  9142. transform-origin:50% 50%;
  9143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9144. font-weight:400;
  9145. font-style:normal;
  9146. font-size:14px;
  9147. color:#7F7F7F;
  9148. text-align:right;
  9149. }
  9150. #u22118 .text {
  9151. position:absolute;
  9152. align-self:center;
  9153. padding:5px 0px 5px 0px;
  9154. box-sizing:border-box;
  9155. width:100%;
  9156. }
  9157. #u22118_text {
  9158. border-width:0px;
  9159. white-space:nowrap;
  9160. text-transform:none;
  9161. }
  9162. #u22119 {
  9163. border-width:0px;
  9164. position:absolute;
  9165. left:0px;
  9166. top:0px;
  9167. width:0px;
  9168. height:0px;
  9169. }
  9170. #u22120_div {
  9171. border-width:0px;
  9172. position:absolute;
  9173. left:0px;
  9174. top:0px;
  9175. width:140px;
  9176. height:40px;
  9177. background:inherit;
  9178. background-color:rgba(242, 242, 242, 1);
  9179. box-sizing:border-box;
  9180. border-width:1px;
  9181. border-style:solid;
  9182. border-color:rgba(201, 201, 201, 1);
  9183. border-radius:4px;
  9184. filter:drop-shadow(none);
  9185. transition:none;
  9186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9187. font-weight:400;
  9188. font-style:normal;
  9189. font-size:14px;
  9190. text-align:right;
  9191. }
  9192. #u22120 {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:1616px;
  9196. top:128px;
  9197. width:140px;
  9198. height:40px;
  9199. display:flex;
  9200. opacity:0.9;
  9201. transition:none;
  9202. transform-origin:50% 50%;
  9203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9204. font-weight:400;
  9205. font-style:normal;
  9206. font-size:14px;
  9207. text-align:right;
  9208. }
  9209. #u22120 .text {
  9210. position:absolute;
  9211. align-self:center;
  9212. padding:2px 10px 2px 8px;
  9213. box-sizing:border-box;
  9214. width:100%;
  9215. }
  9216. #u22120_text {
  9217. border-width:0px;
  9218. word-wrap:break-word;
  9219. text-transform:none;
  9220. visibility:hidden;
  9221. }
  9222. #u22121_input {
  9223. position:absolute;
  9224. left:0px;
  9225. top:0px;
  9226. width:133px;
  9227. height:23px;
  9228. padding:2px 2px 2px 2px;
  9229. font-family:'ArialMT', 'Arial', sans-serif;
  9230. font-weight:400;
  9231. font-style:normal;
  9232. font-size:11px;
  9233. letter-spacing:normal;
  9234. color:#AAAAAA;
  9235. vertical-align:none;
  9236. text-align:left;
  9237. text-transform:none;
  9238. background-color:transparent;
  9239. border-color:transparent;
  9240. }
  9241. #u22121_input.disabled {
  9242. position:absolute;
  9243. left:0px;
  9244. top:0px;
  9245. width:133px;
  9246. height:23px;
  9247. padding:2px 2px 2px 2px;
  9248. font-family:'ArialMT', 'Arial', sans-serif;
  9249. font-weight:400;
  9250. font-style:normal;
  9251. font-size:11px;
  9252. letter-spacing:normal;
  9253. color:#AAAAAA;
  9254. vertical-align:none;
  9255. text-align:left;
  9256. text-transform:none;
  9257. background-color:transparent;
  9258. border-color:transparent;
  9259. }
  9260. #u22121_div {
  9261. border-width:0px;
  9262. position:absolute;
  9263. left:0px;
  9264. top:0px;
  9265. width:133px;
  9266. height:23px;
  9267. background:inherit;
  9268. background-color:rgba(242, 242, 242, 1);
  9269. border-radius:0px;
  9270. filter:drop-shadow(none);
  9271. transition:none;
  9272. font-size:11px;
  9273. color:#AAAAAA;
  9274. }
  9275. #u22121 {
  9276. border-width:0px;
  9277. position:absolute;
  9278. left:1620px;
  9279. top:137px;
  9280. width:133px;
  9281. height:23px;
  9282. display:flex;
  9283. opacity:0.9;
  9284. transition:none;
  9285. transform-origin:50% 50%;
  9286. font-size:11px;
  9287. color:#AAAAAA;
  9288. }
  9289. #u22121 .text {
  9290. position:absolute;
  9291. align-self:flex-start;
  9292. padding:2px 2px 2px 2px;
  9293. box-sizing:border-box;
  9294. width:100%;
  9295. }
  9296. #u22121_div.disabled {
  9297. border-width:0px;
  9298. position:absolute;
  9299. left:0px;
  9300. top:0px;
  9301. width:133px;
  9302. height:23px;
  9303. background:inherit;
  9304. background-color:rgba(240, 240, 240, 1);
  9305. border-radius:0px;
  9306. filter:drop-shadow(none);
  9307. transition:none;
  9308. font-size:11px;
  9309. color:#AAAAAA;
  9310. }
  9311. #u22121.disabled {
  9312. }
  9313. .u22121_input_option {
  9314. font-size:11px;
  9315. }
  9316. #u22122_div {
  9317. border-width:0px;
  9318. position:absolute;
  9319. left:0px;
  9320. top:0px;
  9321. width:50px;
  9322. height:30px;
  9323. background:inherit;
  9324. background-color:rgba(255, 255, 255, 0);
  9325. border-top:0px;
  9326. border-right:0px;
  9327. border-bottom:0px;
  9328. border-radius:0px;
  9329. border-top-left-radius:0px;
  9330. border-bottom-left-radius:0px;
  9331. filter:drop-shadow(none);
  9332. transition:none;
  9333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9334. font-weight:400;
  9335. font-style:normal;
  9336. font-size:14px;
  9337. color:#7F7F7F;
  9338. text-align:right;
  9339. }
  9340. #u22122 {
  9341. border-width:0px;
  9342. position:absolute;
  9343. left:1773px;
  9344. top:133px;
  9345. width:50px;
  9346. height:30px;
  9347. display:flex;
  9348. transition:none;
  9349. transform-origin:50% 50%;
  9350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9351. font-weight:400;
  9352. font-style:normal;
  9353. font-size:14px;
  9354. color:#7F7F7F;
  9355. text-align:right;
  9356. }
  9357. #u22122 .text {
  9358. position:absolute;
  9359. align-self:center;
  9360. padding:5px 0px 5px 0px;
  9361. box-sizing:border-box;
  9362. width:100%;
  9363. }
  9364. #u22122_text {
  9365. border-width:0px;
  9366. white-space:nowrap;
  9367. text-transform:none;
  9368. }
  9369. #u22123 {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:0px;
  9373. top:0px;
  9374. width:0px;
  9375. height:0px;
  9376. }
  9377. #u22124_div {
  9378. border-width:0px;
  9379. position:absolute;
  9380. left:0px;
  9381. top:0px;
  9382. width:140px;
  9383. height:40px;
  9384. background:inherit;
  9385. background-color:rgba(242, 242, 242, 1);
  9386. box-sizing:border-box;
  9387. border-width:1px;
  9388. border-style:solid;
  9389. border-color:rgba(201, 201, 201, 1);
  9390. border-radius:4px;
  9391. filter:drop-shadow(none);
  9392. transition:none;
  9393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9394. font-weight:400;
  9395. font-style:normal;
  9396. font-size:14px;
  9397. text-align:right;
  9398. }
  9399. #u22124 {
  9400. border-width:0px;
  9401. position:absolute;
  9402. left:1823px;
  9403. top:128px;
  9404. width:140px;
  9405. height:40px;
  9406. display:flex;
  9407. opacity:0.9;
  9408. transition:none;
  9409. transform-origin:50% 50%;
  9410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9411. font-weight:400;
  9412. font-style:normal;
  9413. font-size:14px;
  9414. text-align:right;
  9415. }
  9416. #u22124 .text {
  9417. position:absolute;
  9418. align-self:center;
  9419. padding:2px 10px 2px 8px;
  9420. box-sizing:border-box;
  9421. width:100%;
  9422. }
  9423. #u22124_text {
  9424. border-width:0px;
  9425. word-wrap:break-word;
  9426. text-transform:none;
  9427. visibility:hidden;
  9428. }
  9429. #u22125_input {
  9430. position:absolute;
  9431. left:0px;
  9432. top:0px;
  9433. width:133px;
  9434. height:23px;
  9435. padding:2px 2px 2px 2px;
  9436. font-family:'ArialMT', 'Arial', sans-serif;
  9437. font-weight:400;
  9438. font-style:normal;
  9439. font-size:11px;
  9440. letter-spacing:normal;
  9441. color:#AAAAAA;
  9442. vertical-align:none;
  9443. text-align:left;
  9444. text-transform:none;
  9445. background-color:transparent;
  9446. border-color:transparent;
  9447. }
  9448. #u22125_input.disabled {
  9449. position:absolute;
  9450. left:0px;
  9451. top:0px;
  9452. width:133px;
  9453. height:23px;
  9454. padding:2px 2px 2px 2px;
  9455. font-family:'ArialMT', 'Arial', sans-serif;
  9456. font-weight:400;
  9457. font-style:normal;
  9458. font-size:11px;
  9459. letter-spacing:normal;
  9460. color:#AAAAAA;
  9461. vertical-align:none;
  9462. text-align:left;
  9463. text-transform:none;
  9464. background-color:transparent;
  9465. border-color:transparent;
  9466. }
  9467. #u22125_div {
  9468. border-width:0px;
  9469. position:absolute;
  9470. left:0px;
  9471. top:0px;
  9472. width:133px;
  9473. height:23px;
  9474. background:inherit;
  9475. background-color:rgba(242, 242, 242, 1);
  9476. border-radius:0px;
  9477. filter:drop-shadow(none);
  9478. transition:none;
  9479. font-size:11px;
  9480. color:#AAAAAA;
  9481. }
  9482. #u22125 {
  9483. border-width:0px;
  9484. position:absolute;
  9485. left:1827px;
  9486. top:137px;
  9487. width:133px;
  9488. height:23px;
  9489. display:flex;
  9490. opacity:0.9;
  9491. transition:none;
  9492. transform-origin:50% 50%;
  9493. font-size:11px;
  9494. color:#AAAAAA;
  9495. }
  9496. #u22125 .text {
  9497. position:absolute;
  9498. align-self:flex-start;
  9499. padding:2px 2px 2px 2px;
  9500. box-sizing:border-box;
  9501. width:100%;
  9502. }
  9503. #u22125_div.disabled {
  9504. border-width:0px;
  9505. position:absolute;
  9506. left:0px;
  9507. top:0px;
  9508. width:133px;
  9509. height:23px;
  9510. background:inherit;
  9511. background-color:rgba(240, 240, 240, 1);
  9512. border-radius:0px;
  9513. filter:drop-shadow(none);
  9514. transition:none;
  9515. font-size:11px;
  9516. color:#AAAAAA;
  9517. }
  9518. #u22125.disabled {
  9519. }
  9520. .u22125_input_option {
  9521. font-size:11px;
  9522. }
  9523. #u22126_div {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:0px;
  9527. top:0px;
  9528. width:71px;
  9529. height:30px;
  9530. background:inherit;
  9531. background-color:rgba(255, 255, 255, 0);
  9532. border-top:0px;
  9533. border-right:0px;
  9534. border-bottom:0px;
  9535. border-radius:0px;
  9536. border-top-left-radius:0px;
  9537. border-bottom-left-radius:0px;
  9538. filter:drop-shadow(none);
  9539. transition:none;
  9540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9541. font-weight:400;
  9542. font-style:normal;
  9543. font-size:14px;
  9544. color:#7F7F7F;
  9545. text-align:right;
  9546. }
  9547. #u22126 {
  9548. border-width:0px;
  9549. position:absolute;
  9550. left:1363px;
  9551. top:193px;
  9552. width:71px;
  9553. height:30px;
  9554. display:flex;
  9555. transition:none;
  9556. transform-origin:50% 50%;
  9557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9558. font-weight:400;
  9559. font-style:normal;
  9560. font-size:14px;
  9561. color:#7F7F7F;
  9562. text-align:right;
  9563. }
  9564. #u22126 .text {
  9565. position:absolute;
  9566. align-self:center;
  9567. padding:5px 0px 5px 0px;
  9568. box-sizing:border-box;
  9569. width:100%;
  9570. }
  9571. #u22126_text {
  9572. border-width:0px;
  9573. white-space:nowrap;
  9574. text-transform:none;
  9575. }
  9576. #u22127 {
  9577. border-width:0px;
  9578. position:absolute;
  9579. left:0px;
  9580. top:0px;
  9581. width:0px;
  9582. height:0px;
  9583. }
  9584. #u22128_div {
  9585. border-width:0px;
  9586. position:absolute;
  9587. left:0px;
  9588. top:0px;
  9589. width:119px;
  9590. height:40px;
  9591. background:inherit;
  9592. background-color:rgba(242, 242, 242, 1);
  9593. box-sizing:border-box;
  9594. border-width:1px;
  9595. border-style:solid;
  9596. border-color:rgba(201, 201, 201, 1);
  9597. border-radius:4px;
  9598. filter:drop-shadow(none);
  9599. transition:none;
  9600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9601. font-weight:400;
  9602. font-style:normal;
  9603. font-size:12px;
  9604. color:#CCCCCC;
  9605. text-align:right;
  9606. }
  9607. #u22128 {
  9608. border-width:0px;
  9609. position:absolute;
  9610. left:1434px;
  9611. top:188px;
  9612. width:119px;
  9613. height:40px;
  9614. display:flex;
  9615. transition:none;
  9616. transform-origin:50% 50%;
  9617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9618. font-weight:400;
  9619. font-style:normal;
  9620. font-size:12px;
  9621. color:#CCCCCC;
  9622. text-align:right;
  9623. }
  9624. #u22128 .text {
  9625. position:absolute;
  9626. align-self:center;
  9627. padding:2px 8px 2px 8px;
  9628. box-sizing:border-box;
  9629. width:100%;
  9630. }
  9631. #u22128_text {
  9632. border-width:0px;
  9633. word-wrap:break-word;
  9634. text-transform:none;
  9635. }
  9636. #u22129_input {
  9637. position:absolute;
  9638. left:0px;
  9639. top:0px;
  9640. width:68px;
  9641. height:38px;
  9642. padding:2px 2px 2px 2px;
  9643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9644. font-weight:400;
  9645. font-style:normal;
  9646. font-size:14px;
  9647. letter-spacing:normal;
  9648. color:#000000;
  9649. vertical-align:none;
  9650. text-align:left;
  9651. text-transform:none;
  9652. background-color:transparent;
  9653. border-color:transparent;
  9654. }
  9655. #u22129_input.hint {
  9656. position:absolute;
  9657. left:0px;
  9658. top:0px;
  9659. width:68px;
  9660. height:38px;
  9661. padding:2px 2px 2px 2px;
  9662. font-family:"Microsoft YaHei", sans-serif;
  9663. font-weight:400;
  9664. font-style:normal;
  9665. font-size:12px;
  9666. letter-spacing:normal;
  9667. color:#AAAAAA;
  9668. vertical-align:none;
  9669. text-align:left;
  9670. text-transform:none;
  9671. background-color:transparent;
  9672. border-color:transparent;
  9673. }
  9674. #u22129_input.disabled {
  9675. position:absolute;
  9676. left:0px;
  9677. top:0px;
  9678. width:68px;
  9679. height:38px;
  9680. padding:2px 2px 2px 2px;
  9681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9682. font-weight:400;
  9683. font-style:normal;
  9684. font-size:14px;
  9685. letter-spacing:normal;
  9686. color:#000000;
  9687. vertical-align:none;
  9688. text-align:left;
  9689. text-transform:none;
  9690. background-color:transparent;
  9691. border-color:transparent;
  9692. }
  9693. #u22129_input.hint.disabled {
  9694. position:absolute;
  9695. left:0px;
  9696. top:0px;
  9697. width:68px;
  9698. height:38px;
  9699. padding:2px 2px 2px 2px;
  9700. font-family:"Microsoft YaHei", sans-serif;
  9701. font-weight:400;
  9702. font-style:normal;
  9703. font-size:12px;
  9704. letter-spacing:normal;
  9705. color:#AAAAAA;
  9706. vertical-align:none;
  9707. text-align:left;
  9708. text-transform:none;
  9709. background-color:transparent;
  9710. border-color:transparent;
  9711. }
  9712. #u22129_div {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:0px;
  9716. top:0px;
  9717. width:68px;
  9718. height:38px;
  9719. background:inherit;
  9720. background-color:rgba(242, 242, 242, 1);
  9721. border-radius:0px;
  9722. filter:drop-shadow(none);
  9723. transition:none;
  9724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9725. font-weight:400;
  9726. font-style:normal;
  9727. font-size:14px;
  9728. }
  9729. #u22129 {
  9730. border-width:0px;
  9731. position:absolute;
  9732. left:1437px;
  9733. top:189px;
  9734. width:68px;
  9735. height:38px;
  9736. display:flex;
  9737. transition:none;
  9738. transform-origin:50% 50%;
  9739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9740. font-weight:400;
  9741. font-style:normal;
  9742. font-size:14px;
  9743. }
  9744. #u22129 .text {
  9745. position:absolute;
  9746. align-self:center;
  9747. padding:2px 2px 2px 2px;
  9748. box-sizing:border-box;
  9749. width:100%;
  9750. }
  9751. #u22129_div.hint {
  9752. border-width:0px;
  9753. position:absolute;
  9754. left:0px;
  9755. top:0px;
  9756. width:68px;
  9757. height:38px;
  9758. background:inherit;
  9759. background-color:rgba(242, 242, 242, 1);
  9760. border-radius:0px;
  9761. filter:drop-shadow(none);
  9762. transition:none;
  9763. font-family:"Microsoft YaHei", sans-serif;
  9764. font-weight:400;
  9765. font-style:normal;
  9766. font-size:14px;
  9767. }
  9768. #u22129.hint {
  9769. }
  9770. #u22129_div.disabled {
  9771. border-width:0px;
  9772. position:absolute;
  9773. left:0px;
  9774. top:0px;
  9775. width:68px;
  9776. height:38px;
  9777. background:inherit;
  9778. background-color:rgba(240, 240, 240, 1);
  9779. border-radius:0px;
  9780. filter:drop-shadow(none);
  9781. transition:none;
  9782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9783. font-weight:400;
  9784. font-style:normal;
  9785. font-size:14px;
  9786. }
  9787. #u22129.disabled {
  9788. }
  9789. #u22129_div.hint.disabled {
  9790. border-width:0px;
  9791. position:absolute;
  9792. left:0px;
  9793. top:0px;
  9794. width:68px;
  9795. height:38px;
  9796. background:inherit;
  9797. background-color:rgba(240, 240, 240, 1);
  9798. border-radius:0px;
  9799. filter:drop-shadow(none);
  9800. transition:none;
  9801. font-family:"Microsoft YaHei", sans-serif;
  9802. font-weight:400;
  9803. font-style:normal;
  9804. font-size:14px;
  9805. }
  9806. #u22129.hint.disabled {
  9807. }
  9808. #u22130_div {
  9809. border-width:0px;
  9810. position:absolute;
  9811. left:0px;
  9812. top:0px;
  9813. width:71px;
  9814. height:30px;
  9815. background:inherit;
  9816. background-color:rgba(255, 255, 255, 0);
  9817. border-top:0px;
  9818. border-right:0px;
  9819. border-bottom:0px;
  9820. border-radius:0px;
  9821. border-top-left-radius:0px;
  9822. border-bottom-left-radius:0px;
  9823. filter:drop-shadow(none);
  9824. transition:none;
  9825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9826. font-weight:400;
  9827. font-style:normal;
  9828. font-size:14px;
  9829. color:#7F7F7F;
  9830. text-align:right;
  9831. }
  9832. #u22130 {
  9833. border-width:0px;
  9834. position:absolute;
  9835. left:1566px;
  9836. top:193px;
  9837. width:71px;
  9838. height:30px;
  9839. display:flex;
  9840. transition:none;
  9841. transform-origin:50% 50%;
  9842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9843. font-weight:400;
  9844. font-style:normal;
  9845. font-size:14px;
  9846. color:#7F7F7F;
  9847. text-align:right;
  9848. }
  9849. #u22130 .text {
  9850. position:absolute;
  9851. align-self:center;
  9852. padding:5px 0px 5px 0px;
  9853. box-sizing:border-box;
  9854. width:100%;
  9855. }
  9856. #u22130_text {
  9857. border-width:0px;
  9858. white-space:nowrap;
  9859. text-transform:none;
  9860. }
  9861. #u22131 {
  9862. border-width:0px;
  9863. position:absolute;
  9864. left:0px;
  9865. top:0px;
  9866. width:0px;
  9867. height:0px;
  9868. }
  9869. #u22132_div {
  9870. border-width:0px;
  9871. position:absolute;
  9872. left:0px;
  9873. top:0px;
  9874. width:119px;
  9875. height:40px;
  9876. background:inherit;
  9877. background-color:rgba(242, 242, 242, 1);
  9878. box-sizing:border-box;
  9879. border-width:1px;
  9880. border-style:solid;
  9881. border-color:rgba(201, 201, 201, 1);
  9882. border-radius:4px;
  9883. filter:drop-shadow(none);
  9884. transition:none;
  9885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9886. font-weight:400;
  9887. font-style:normal;
  9888. font-size:12px;
  9889. color:#CCCCCC;
  9890. text-align:right;
  9891. }
  9892. #u22132 {
  9893. border-width:0px;
  9894. position:absolute;
  9895. left:1637px;
  9896. top:188px;
  9897. width:119px;
  9898. height:40px;
  9899. display:flex;
  9900. transition:none;
  9901. transform-origin:50% 50%;
  9902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9903. font-weight:400;
  9904. font-style:normal;
  9905. font-size:12px;
  9906. color:#CCCCCC;
  9907. text-align:right;
  9908. }
  9909. #u22132 .text {
  9910. position:absolute;
  9911. align-self:center;
  9912. padding:2px 8px 2px 8px;
  9913. box-sizing:border-box;
  9914. width:100%;
  9915. }
  9916. #u22132_text {
  9917. border-width:0px;
  9918. word-wrap:break-word;
  9919. text-transform:none;
  9920. }
  9921. #u22133_input {
  9922. position:absolute;
  9923. left:0px;
  9924. top:0px;
  9925. width:67px;
  9926. height:38px;
  9927. padding:2px 2px 2px 2px;
  9928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9929. font-weight:400;
  9930. font-style:normal;
  9931. font-size:14px;
  9932. letter-spacing:normal;
  9933. color:#000000;
  9934. vertical-align:none;
  9935. text-align:left;
  9936. text-transform:none;
  9937. background-color:transparent;
  9938. border-color:transparent;
  9939. }
  9940. #u22133_input.hint {
  9941. position:absolute;
  9942. left:0px;
  9943. top:0px;
  9944. width:67px;
  9945. height:38px;
  9946. padding:2px 2px 2px 2px;
  9947. font-family:"Microsoft YaHei", sans-serif;
  9948. font-weight:400;
  9949. font-style:normal;
  9950. font-size:12px;
  9951. letter-spacing:normal;
  9952. color:#AAAAAA;
  9953. vertical-align:none;
  9954. text-align:left;
  9955. text-transform:none;
  9956. background-color:transparent;
  9957. border-color:transparent;
  9958. }
  9959. #u22133_input.disabled {
  9960. position:absolute;
  9961. left:0px;
  9962. top:0px;
  9963. width:67px;
  9964. height:38px;
  9965. padding:2px 2px 2px 2px;
  9966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9967. font-weight:400;
  9968. font-style:normal;
  9969. font-size:14px;
  9970. letter-spacing:normal;
  9971. color:#000000;
  9972. vertical-align:none;
  9973. text-align:left;
  9974. text-transform:none;
  9975. background-color:transparent;
  9976. border-color:transparent;
  9977. }
  9978. #u22133_input.hint.disabled {
  9979. position:absolute;
  9980. left:0px;
  9981. top:0px;
  9982. width:67px;
  9983. height:38px;
  9984. padding:2px 2px 2px 2px;
  9985. font-family:"Microsoft YaHei", sans-serif;
  9986. font-weight:400;
  9987. font-style:normal;
  9988. font-size:12px;
  9989. letter-spacing:normal;
  9990. color:#AAAAAA;
  9991. vertical-align:none;
  9992. text-align:left;
  9993. text-transform:none;
  9994. background-color:transparent;
  9995. border-color:transparent;
  9996. }
  9997. #u22133_div {
  9998. border-width:0px;
  9999. position:absolute;
  10000. left:0px;
  10001. top:0px;
  10002. width:67px;
  10003. height:38px;
  10004. background:inherit;
  10005. background-color:rgba(242, 242, 242, 1);
  10006. border-radius:0px;
  10007. filter:drop-shadow(none);
  10008. transition:none;
  10009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10010. font-weight:400;
  10011. font-style:normal;
  10012. font-size:14px;
  10013. }
  10014. #u22133 {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:1640px;
  10018. top:189px;
  10019. width:67px;
  10020. height:38px;
  10021. display:flex;
  10022. transition:none;
  10023. transform-origin:50% 50%;
  10024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10025. font-weight:400;
  10026. font-style:normal;
  10027. font-size:14px;
  10028. }
  10029. #u22133 .text {
  10030. position:absolute;
  10031. align-self:center;
  10032. padding:2px 2px 2px 2px;
  10033. box-sizing:border-box;
  10034. width:100%;
  10035. }
  10036. #u22133_div.hint {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:0px;
  10040. top:0px;
  10041. width:67px;
  10042. height:38px;
  10043. background:inherit;
  10044. background-color:rgba(242, 242, 242, 1);
  10045. border-radius:0px;
  10046. filter:drop-shadow(none);
  10047. transition:none;
  10048. font-family:"Microsoft YaHei", sans-serif;
  10049. font-weight:400;
  10050. font-style:normal;
  10051. font-size:14px;
  10052. }
  10053. #u22133.hint {
  10054. }
  10055. #u22133_div.disabled {
  10056. border-width:0px;
  10057. position:absolute;
  10058. left:0px;
  10059. top:0px;
  10060. width:67px;
  10061. height:38px;
  10062. background:inherit;
  10063. background-color:rgba(240, 240, 240, 1);
  10064. border-radius:0px;
  10065. filter:drop-shadow(none);
  10066. transition:none;
  10067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10068. font-weight:400;
  10069. font-style:normal;
  10070. font-size:14px;
  10071. }
  10072. #u22133.disabled {
  10073. }
  10074. #u22133_div.hint.disabled {
  10075. border-width:0px;
  10076. position:absolute;
  10077. left:0px;
  10078. top:0px;
  10079. width:67px;
  10080. height:38px;
  10081. background:inherit;
  10082. background-color:rgba(240, 240, 240, 1);
  10083. border-radius:0px;
  10084. filter:drop-shadow(none);
  10085. transition:none;
  10086. font-family:"Microsoft YaHei", sans-serif;
  10087. font-weight:400;
  10088. font-style:normal;
  10089. font-size:14px;
  10090. }
  10091. #u22133.hint.disabled {
  10092. }
  10093. #u22134 {
  10094. border-width:0px;
  10095. position:absolute;
  10096. left:1298px;
  10097. top:662px;
  10098. width:12px;
  10099. height:12px;
  10100. display:flex;
  10101. transition:none;
  10102. }
  10103. #u22134 .text {
  10104. position:absolute;
  10105. align-self:center;
  10106. padding:2px 2px 2px 2px;
  10107. box-sizing:border-box;
  10108. width:100%;
  10109. }
  10110. #u22134_img {
  10111. border-width:0px;
  10112. position:absolute;
  10113. left:0px;
  10114. top:0px;
  10115. width:12px;
  10116. height:12px;
  10117. }
  10118. #u22134_text {
  10119. border-width:0px;
  10120. word-wrap:break-word;
  10121. text-transform:none;
  10122. visibility:hidden;
  10123. }
  10124. #u22135 {
  10125. border-width:0px;
  10126. position:absolute;
  10127. left:0px;
  10128. top:0px;
  10129. width:0px;
  10130. height:0px;
  10131. }
  10132. #u22136 {
  10133. border-width:0px;
  10134. position:absolute;
  10135. left:1208px;
  10136. top:493px;
  10137. width:836px;
  10138. height:140px;
  10139. }
  10140. #u22137 {
  10141. border-width:0px;
  10142. position:absolute;
  10143. left:0px;
  10144. top:0px;
  10145. width:39px;
  10146. height:40px;
  10147. display:flex;
  10148. transition:none;
  10149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10150. font-weight:400;
  10151. font-style:normal;
  10152. font-size:12px;
  10153. color:#FFFFFF;
  10154. }
  10155. #u22137 .text {
  10156. position:absolute;
  10157. align-self:center;
  10158. padding:2px 2px 2px 2px;
  10159. box-sizing:border-box;
  10160. width:100%;
  10161. }
  10162. #u22137_img {
  10163. border-width:0px;
  10164. position:absolute;
  10165. left:0px;
  10166. top:0px;
  10167. width:39px;
  10168. height:40px;
  10169. }
  10170. #u22137_text {
  10171. border-width:0px;
  10172. word-wrap:break-word;
  10173. text-transform:none;
  10174. }
  10175. #u22138 {
  10176. border-width:0px;
  10177. position:absolute;
  10178. left:39px;
  10179. top:0px;
  10180. width:80px;
  10181. height:40px;
  10182. display:flex;
  10183. transition:none;
  10184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10185. font-weight:400;
  10186. font-style:normal;
  10187. font-size:12px;
  10188. color:#FFFFFF;
  10189. }
  10190. #u22138 .text {
  10191. position:absolute;
  10192. align-self:center;
  10193. padding:2px 2px 2px 2px;
  10194. box-sizing:border-box;
  10195. width:100%;
  10196. }
  10197. #u22138_img {
  10198. border-width:0px;
  10199. position:absolute;
  10200. left:0px;
  10201. top:0px;
  10202. width:80px;
  10203. height:40px;
  10204. }
  10205. #u22138_text {
  10206. border-width:0px;
  10207. word-wrap:break-word;
  10208. text-transform:none;
  10209. }
  10210. #u22139 {
  10211. border-width:0px;
  10212. position:absolute;
  10213. left:119px;
  10214. top:0px;
  10215. width:80px;
  10216. height:40px;
  10217. display:flex;
  10218. transition:none;
  10219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10220. font-weight:400;
  10221. font-style:normal;
  10222. font-size:12px;
  10223. color:#FFFFFF;
  10224. }
  10225. #u22139 .text {
  10226. position:absolute;
  10227. align-self:center;
  10228. padding:2px 2px 2px 2px;
  10229. box-sizing:border-box;
  10230. width:100%;
  10231. }
  10232. #u22139_img {
  10233. border-width:0px;
  10234. position:absolute;
  10235. left:0px;
  10236. top:0px;
  10237. width:80px;
  10238. height:40px;
  10239. }
  10240. #u22139_text {
  10241. border-width:0px;
  10242. word-wrap:break-word;
  10243. text-transform:none;
  10244. }
  10245. #u22140 {
  10246. border-width:0px;
  10247. position:absolute;
  10248. left:199px;
  10249. top:0px;
  10250. width:80px;
  10251. height:40px;
  10252. display:flex;
  10253. transition:none;
  10254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10255. font-weight:400;
  10256. font-style:normal;
  10257. font-size:12px;
  10258. color:#FFFFFF;
  10259. }
  10260. #u22140 .text {
  10261. position:absolute;
  10262. align-self:center;
  10263. padding:2px 2px 2px 2px;
  10264. box-sizing:border-box;
  10265. width:100%;
  10266. }
  10267. #u22140_img {
  10268. border-width:0px;
  10269. position:absolute;
  10270. left:0px;
  10271. top:0px;
  10272. width:80px;
  10273. height:40px;
  10274. }
  10275. #u22140_text {
  10276. border-width:0px;
  10277. word-wrap:break-word;
  10278. text-transform:none;
  10279. }
  10280. #u22141 {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:279px;
  10284. top:0px;
  10285. width:80px;
  10286. height:40px;
  10287. display:flex;
  10288. transition:none;
  10289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10290. font-weight:400;
  10291. font-style:normal;
  10292. font-size:12px;
  10293. color:#FFFFFF;
  10294. }
  10295. #u22141 .text {
  10296. position:absolute;
  10297. align-self:center;
  10298. padding:2px 2px 2px 2px;
  10299. box-sizing:border-box;
  10300. width:100%;
  10301. }
  10302. #u22141_img {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:0px;
  10306. top:0px;
  10307. width:80px;
  10308. height:40px;
  10309. }
  10310. #u22141_text {
  10311. border-width:0px;
  10312. word-wrap:break-word;
  10313. text-transform:none;
  10314. }
  10315. #u22142 {
  10316. border-width:0px;
  10317. position:absolute;
  10318. left:359px;
  10319. top:0px;
  10320. width:80px;
  10321. height:40px;
  10322. display:flex;
  10323. transition:none;
  10324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10325. font-weight:400;
  10326. font-style:normal;
  10327. font-size:12px;
  10328. color:#FFFFFF;
  10329. }
  10330. #u22142 .text {
  10331. position:absolute;
  10332. align-self:center;
  10333. padding:2px 2px 2px 2px;
  10334. box-sizing:border-box;
  10335. width:100%;
  10336. }
  10337. #u22142_img {
  10338. border-width:0px;
  10339. position:absolute;
  10340. left:0px;
  10341. top:0px;
  10342. width:80px;
  10343. height:40px;
  10344. }
  10345. #u22142_text {
  10346. border-width:0px;
  10347. word-wrap:break-word;
  10348. text-transform:none;
  10349. }
  10350. #u22143 {
  10351. border-width:0px;
  10352. position:absolute;
  10353. left:439px;
  10354. top:0px;
  10355. width:80px;
  10356. height:40px;
  10357. display:flex;
  10358. transition:none;
  10359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10360. font-weight:400;
  10361. font-style:normal;
  10362. font-size:12px;
  10363. color:#FFFFFF;
  10364. }
  10365. #u22143 .text {
  10366. position:absolute;
  10367. align-self:center;
  10368. padding:2px 2px 2px 2px;
  10369. box-sizing:border-box;
  10370. width:100%;
  10371. }
  10372. #u22143_img {
  10373. border-width:0px;
  10374. position:absolute;
  10375. left:0px;
  10376. top:0px;
  10377. width:80px;
  10378. height:40px;
  10379. }
  10380. #u22143_text {
  10381. border-width:0px;
  10382. word-wrap:break-word;
  10383. text-transform:none;
  10384. }
  10385. #u22144 {
  10386. border-width:0px;
  10387. position:absolute;
  10388. left:519px;
  10389. top:0px;
  10390. width:80px;
  10391. height:40px;
  10392. display:flex;
  10393. transition:none;
  10394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10395. font-weight:400;
  10396. font-style:normal;
  10397. font-size:12px;
  10398. color:#FFFFFF;
  10399. }
  10400. #u22144 .text {
  10401. position:absolute;
  10402. align-self:center;
  10403. padding:2px 2px 2px 2px;
  10404. box-sizing:border-box;
  10405. width:100%;
  10406. }
  10407. #u22144_img {
  10408. border-width:0px;
  10409. position:absolute;
  10410. left:0px;
  10411. top:0px;
  10412. width:80px;
  10413. height:40px;
  10414. }
  10415. #u22144_text {
  10416. border-width:0px;
  10417. word-wrap:break-word;
  10418. text-transform:none;
  10419. }
  10420. #u22145 {
  10421. border-width:0px;
  10422. position:absolute;
  10423. left:599px;
  10424. top:0px;
  10425. width:83px;
  10426. height:40px;
  10427. display:flex;
  10428. transition:none;
  10429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10430. font-weight:400;
  10431. font-style:normal;
  10432. font-size:12px;
  10433. color:#FFFFFF;
  10434. }
  10435. #u22145 .text {
  10436. position:absolute;
  10437. align-self:center;
  10438. padding:2px 2px 2px 2px;
  10439. box-sizing:border-box;
  10440. width:100%;
  10441. }
  10442. #u22145_img {
  10443. border-width:0px;
  10444. position:absolute;
  10445. left:0px;
  10446. top:0px;
  10447. width:83px;
  10448. height:40px;
  10449. }
  10450. #u22145_text {
  10451. border-width:0px;
  10452. word-wrap:break-word;
  10453. text-transform:none;
  10454. }
  10455. #u22146 {
  10456. border-width:0px;
  10457. position:absolute;
  10458. left:682px;
  10459. top:0px;
  10460. width:83px;
  10461. height:40px;
  10462. display:flex;
  10463. transition:none;
  10464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10465. font-weight:400;
  10466. font-style:normal;
  10467. font-size:12px;
  10468. color:#FFFFFF;
  10469. }
  10470. #u22146 .text {
  10471. position:absolute;
  10472. align-self:center;
  10473. padding:2px 2px 2px 2px;
  10474. box-sizing:border-box;
  10475. width:100%;
  10476. }
  10477. #u22146_img {
  10478. border-width:0px;
  10479. position:absolute;
  10480. left:0px;
  10481. top:0px;
  10482. width:83px;
  10483. height:40px;
  10484. }
  10485. #u22146_text {
  10486. border-width:0px;
  10487. word-wrap:break-word;
  10488. text-transform:none;
  10489. }
  10490. #u22147 {
  10491. border-width:0px;
  10492. position:absolute;
  10493. left:765px;
  10494. top:0px;
  10495. width:71px;
  10496. height:40px;
  10497. display:flex;
  10498. transition:none;
  10499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10500. font-weight:400;
  10501. font-style:normal;
  10502. font-size:12px;
  10503. color:#FFFFFF;
  10504. }
  10505. #u22147 .text {
  10506. position:absolute;
  10507. align-self:center;
  10508. padding:2px 2px 2px 2px;
  10509. box-sizing:border-box;
  10510. width:100%;
  10511. }
  10512. #u22147_img {
  10513. border-width:0px;
  10514. position:absolute;
  10515. left:0px;
  10516. top:0px;
  10517. width:71px;
  10518. height:40px;
  10519. }
  10520. #u22147_text {
  10521. border-width:0px;
  10522. word-wrap:break-word;
  10523. text-transform:none;
  10524. }
  10525. #u22148 {
  10526. border-width:0px;
  10527. position:absolute;
  10528. left:0px;
  10529. top:40px;
  10530. width:39px;
  10531. height:30px;
  10532. display:flex;
  10533. transition:none;
  10534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10535. font-weight:400;
  10536. font-style:normal;
  10537. font-size:12px;
  10538. }
  10539. #u22148 .text {
  10540. position:absolute;
  10541. align-self:center;
  10542. padding:2px 2px 2px 2px;
  10543. box-sizing:border-box;
  10544. width:100%;
  10545. }
  10546. #u22148_img {
  10547. border-width:0px;
  10548. position:absolute;
  10549. left:0px;
  10550. top:0px;
  10551. width:39px;
  10552. height:30px;
  10553. }
  10554. #u22148_text {
  10555. border-width:0px;
  10556. word-wrap:break-word;
  10557. text-transform:none;
  10558. }
  10559. #u22149 {
  10560. border-width:0px;
  10561. position:absolute;
  10562. left:39px;
  10563. top:40px;
  10564. width:80px;
  10565. height:30px;
  10566. display:flex;
  10567. transition:none;
  10568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10569. font-weight:400;
  10570. font-style:normal;
  10571. font-size:12px;
  10572. }
  10573. #u22149 .text {
  10574. position:absolute;
  10575. align-self:center;
  10576. padding:2px 2px 2px 2px;
  10577. box-sizing:border-box;
  10578. width:100%;
  10579. }
  10580. #u22149_img {
  10581. border-width:0px;
  10582. position:absolute;
  10583. left:0px;
  10584. top:0px;
  10585. width:80px;
  10586. height:30px;
  10587. }
  10588. #u22149_text {
  10589. border-width:0px;
  10590. word-wrap:break-word;
  10591. text-transform:none;
  10592. visibility:hidden;
  10593. }
  10594. #u22150 {
  10595. border-width:0px;
  10596. position:absolute;
  10597. left:119px;
  10598. top:40px;
  10599. width:80px;
  10600. height:30px;
  10601. display:flex;
  10602. transition:none;
  10603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10604. font-weight:400;
  10605. font-style:normal;
  10606. font-size:12px;
  10607. }
  10608. #u22150 .text {
  10609. position:absolute;
  10610. align-self:center;
  10611. padding:2px 2px 2px 2px;
  10612. box-sizing:border-box;
  10613. width:100%;
  10614. }
  10615. #u22150_img {
  10616. border-width:0px;
  10617. position:absolute;
  10618. left:0px;
  10619. top:0px;
  10620. width:80px;
  10621. height:30px;
  10622. }
  10623. #u22150_text {
  10624. border-width:0px;
  10625. word-wrap:break-word;
  10626. text-transform:none;
  10627. visibility:hidden;
  10628. }
  10629. #u22151 {
  10630. border-width:0px;
  10631. position:absolute;
  10632. left:199px;
  10633. top:40px;
  10634. width:80px;
  10635. height:30px;
  10636. display:flex;
  10637. transition:none;
  10638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10639. font-weight:400;
  10640. font-style:normal;
  10641. font-size:12px;
  10642. }
  10643. #u22151 .text {
  10644. position:absolute;
  10645. align-self:center;
  10646. padding:2px 2px 2px 2px;
  10647. box-sizing:border-box;
  10648. width:100%;
  10649. }
  10650. #u22151_img {
  10651. border-width:0px;
  10652. position:absolute;
  10653. left:0px;
  10654. top:0px;
  10655. width:80px;
  10656. height:30px;
  10657. }
  10658. #u22151_text {
  10659. border-width:0px;
  10660. word-wrap:break-word;
  10661. text-transform:none;
  10662. visibility:hidden;
  10663. }
  10664. #u22152 {
  10665. border-width:0px;
  10666. position:absolute;
  10667. left:279px;
  10668. top:40px;
  10669. width:80px;
  10670. height:30px;
  10671. display:flex;
  10672. transition:none;
  10673. font-size:12px;
  10674. }
  10675. #u22152 .text {
  10676. position:absolute;
  10677. align-self:center;
  10678. padding:2px 2px 2px 2px;
  10679. box-sizing:border-box;
  10680. width:100%;
  10681. }
  10682. #u22152_img {
  10683. border-width:0px;
  10684. position:absolute;
  10685. left:0px;
  10686. top:0px;
  10687. width:80px;
  10688. height:30px;
  10689. }
  10690. #u22152_text {
  10691. border-width:0px;
  10692. word-wrap:break-word;
  10693. text-transform:none;
  10694. visibility:hidden;
  10695. }
  10696. #u22153 {
  10697. border-width:0px;
  10698. position:absolute;
  10699. left:359px;
  10700. top:40px;
  10701. width:80px;
  10702. height:30px;
  10703. display:flex;
  10704. transition:none;
  10705. font-size:12px;
  10706. }
  10707. #u22153 .text {
  10708. position:absolute;
  10709. align-self:center;
  10710. padding:2px 2px 2px 2px;
  10711. box-sizing:border-box;
  10712. width:100%;
  10713. }
  10714. #u22153_img {
  10715. border-width:0px;
  10716. position:absolute;
  10717. left:0px;
  10718. top:0px;
  10719. width:80px;
  10720. height:30px;
  10721. }
  10722. #u22153_text {
  10723. border-width:0px;
  10724. word-wrap:break-word;
  10725. text-transform:none;
  10726. visibility:hidden;
  10727. }
  10728. #u22154 {
  10729. border-width:0px;
  10730. position:absolute;
  10731. left:439px;
  10732. top:40px;
  10733. width:80px;
  10734. height:30px;
  10735. display:flex;
  10736. transition:none;
  10737. font-size:12px;
  10738. }
  10739. #u22154 .text {
  10740. position:absolute;
  10741. align-self:center;
  10742. padding:2px 2px 2px 2px;
  10743. box-sizing:border-box;
  10744. width:100%;
  10745. }
  10746. #u22154_img {
  10747. border-width:0px;
  10748. position:absolute;
  10749. left:0px;
  10750. top:0px;
  10751. width:80px;
  10752. height:30px;
  10753. }
  10754. #u22154_text {
  10755. border-width:0px;
  10756. word-wrap:break-word;
  10757. text-transform:none;
  10758. visibility:hidden;
  10759. }
  10760. #u22155 {
  10761. border-width:0px;
  10762. position:absolute;
  10763. left:519px;
  10764. top:40px;
  10765. width:80px;
  10766. height:30px;
  10767. display:flex;
  10768. transition:none;
  10769. font-size:12px;
  10770. }
  10771. #u22155 .text {
  10772. position:absolute;
  10773. align-self:center;
  10774. padding:2px 2px 2px 2px;
  10775. box-sizing:border-box;
  10776. width:100%;
  10777. }
  10778. #u22155_img {
  10779. border-width:0px;
  10780. position:absolute;
  10781. left:0px;
  10782. top:0px;
  10783. width:80px;
  10784. height:30px;
  10785. }
  10786. #u22155_text {
  10787. border-width:0px;
  10788. word-wrap:break-word;
  10789. text-transform:none;
  10790. visibility:hidden;
  10791. }
  10792. #u22156 {
  10793. border-width:0px;
  10794. position:absolute;
  10795. left:599px;
  10796. top:40px;
  10797. width:83px;
  10798. height:30px;
  10799. display:flex;
  10800. transition:none;
  10801. font-size:12px;
  10802. }
  10803. #u22156 .text {
  10804. position:absolute;
  10805. align-self:center;
  10806. padding:2px 2px 2px 2px;
  10807. box-sizing:border-box;
  10808. width:100%;
  10809. }
  10810. #u22156_img {
  10811. border-width:0px;
  10812. position:absolute;
  10813. left:0px;
  10814. top:0px;
  10815. width:83px;
  10816. height:30px;
  10817. }
  10818. #u22156_text {
  10819. border-width:0px;
  10820. word-wrap:break-word;
  10821. text-transform:none;
  10822. visibility:hidden;
  10823. }
  10824. #u22157 {
  10825. border-width:0px;
  10826. position:absolute;
  10827. left:682px;
  10828. top:40px;
  10829. width:83px;
  10830. height:30px;
  10831. display:flex;
  10832. transition:none;
  10833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10834. font-weight:400;
  10835. font-style:normal;
  10836. font-size:12px;
  10837. }
  10838. #u22157 .text {
  10839. position:absolute;
  10840. align-self:center;
  10841. padding:2px 2px 2px 2px;
  10842. box-sizing:border-box;
  10843. width:100%;
  10844. }
  10845. #u22157_img {
  10846. border-width:0px;
  10847. position:absolute;
  10848. left:0px;
  10849. top:0px;
  10850. width:83px;
  10851. height:30px;
  10852. }
  10853. #u22157_text {
  10854. border-width:0px;
  10855. word-wrap:break-word;
  10856. text-transform:none;
  10857. visibility:hidden;
  10858. }
  10859. #u22158 {
  10860. border-width:0px;
  10861. position:absolute;
  10862. left:765px;
  10863. top:40px;
  10864. width:71px;
  10865. height:30px;
  10866. display:flex;
  10867. transition:none;
  10868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10869. font-weight:400;
  10870. font-style:normal;
  10871. font-size:12px;
  10872. color:#1890FF;
  10873. }
  10874. #u22158 .text {
  10875. position:absolute;
  10876. align-self:center;
  10877. padding:2px 2px 2px 2px;
  10878. box-sizing:border-box;
  10879. width:100%;
  10880. }
  10881. #u22158_img {
  10882. border-width:0px;
  10883. position:absolute;
  10884. left:0px;
  10885. top:0px;
  10886. width:71px;
  10887. height:30px;
  10888. }
  10889. #u22158_text {
  10890. border-width:0px;
  10891. word-wrap:break-word;
  10892. text-transform:none;
  10893. }
  10894. #u22159 {
  10895. border-width:0px;
  10896. position:absolute;
  10897. left:0px;
  10898. top:70px;
  10899. width:39px;
  10900. height:40px;
  10901. display:flex;
  10902. transition:none;
  10903. font-size:12px;
  10904. }
  10905. #u22159 .text {
  10906. position:absolute;
  10907. align-self:center;
  10908. padding:2px 2px 2px 2px;
  10909. box-sizing:border-box;
  10910. width:100%;
  10911. }
  10912. #u22159_img {
  10913. border-width:0px;
  10914. position:absolute;
  10915. left:0px;
  10916. top:0px;
  10917. width:39px;
  10918. height:40px;
  10919. }
  10920. #u22159_text {
  10921. border-width:0px;
  10922. word-wrap:break-word;
  10923. text-transform:none;
  10924. }
  10925. #u22160 {
  10926. border-width:0px;
  10927. position:absolute;
  10928. left:39px;
  10929. top:70px;
  10930. width:80px;
  10931. height:40px;
  10932. display:flex;
  10933. transition:none;
  10934. font-size:12px;
  10935. }
  10936. #u22160 .text {
  10937. position:absolute;
  10938. align-self:center;
  10939. padding:2px 2px 2px 2px;
  10940. box-sizing:border-box;
  10941. width:100%;
  10942. }
  10943. #u22160_img {
  10944. border-width:0px;
  10945. position:absolute;
  10946. left:0px;
  10947. top:0px;
  10948. width:80px;
  10949. height:40px;
  10950. }
  10951. #u22160_text {
  10952. border-width:0px;
  10953. word-wrap:break-word;
  10954. text-transform:none;
  10955. visibility:hidden;
  10956. }
  10957. #u22161 {
  10958. border-width:0px;
  10959. position:absolute;
  10960. left:119px;
  10961. top:70px;
  10962. width:80px;
  10963. height:40px;
  10964. display:flex;
  10965. transition:none;
  10966. font-size:12px;
  10967. }
  10968. #u22161 .text {
  10969. position:absolute;
  10970. align-self:center;
  10971. padding:2px 2px 2px 2px;
  10972. box-sizing:border-box;
  10973. width:100%;
  10974. }
  10975. #u22161_img {
  10976. border-width:0px;
  10977. position:absolute;
  10978. left:0px;
  10979. top:0px;
  10980. width:80px;
  10981. height:40px;
  10982. }
  10983. #u22161_text {
  10984. border-width:0px;
  10985. word-wrap:break-word;
  10986. text-transform:none;
  10987. visibility:hidden;
  10988. }
  10989. #u22162 {
  10990. border-width:0px;
  10991. position:absolute;
  10992. left:199px;
  10993. top:70px;
  10994. width:80px;
  10995. height:40px;
  10996. display:flex;
  10997. transition:none;
  10998. font-size:12px;
  10999. }
  11000. #u22162 .text {
  11001. position:absolute;
  11002. align-self:center;
  11003. padding:2px 2px 2px 2px;
  11004. box-sizing:border-box;
  11005. width:100%;
  11006. }
  11007. #u22162_img {
  11008. border-width:0px;
  11009. position:absolute;
  11010. left:0px;
  11011. top:0px;
  11012. width:80px;
  11013. height:40px;
  11014. }
  11015. #u22162_text {
  11016. border-width:0px;
  11017. word-wrap:break-word;
  11018. text-transform:none;
  11019. visibility:hidden;
  11020. }
  11021. #u22163 {
  11022. border-width:0px;
  11023. position:absolute;
  11024. left:279px;
  11025. top:70px;
  11026. width:80px;
  11027. height:40px;
  11028. display:flex;
  11029. transition:none;
  11030. font-size:12px;
  11031. }
  11032. #u22163 .text {
  11033. position:absolute;
  11034. align-self:center;
  11035. padding:2px 2px 2px 2px;
  11036. box-sizing:border-box;
  11037. width:100%;
  11038. }
  11039. #u22163_img {
  11040. border-width:0px;
  11041. position:absolute;
  11042. left:0px;
  11043. top:0px;
  11044. width:80px;
  11045. height:40px;
  11046. }
  11047. #u22163_text {
  11048. border-width:0px;
  11049. word-wrap:break-word;
  11050. text-transform:none;
  11051. visibility:hidden;
  11052. }
  11053. #u22164 {
  11054. border-width:0px;
  11055. position:absolute;
  11056. left:359px;
  11057. top:70px;
  11058. width:80px;
  11059. height:40px;
  11060. display:flex;
  11061. transition:none;
  11062. font-size:12px;
  11063. }
  11064. #u22164 .text {
  11065. position:absolute;
  11066. align-self:center;
  11067. padding:2px 2px 2px 2px;
  11068. box-sizing:border-box;
  11069. width:100%;
  11070. }
  11071. #u22164_img {
  11072. border-width:0px;
  11073. position:absolute;
  11074. left:0px;
  11075. top:0px;
  11076. width:80px;
  11077. height:40px;
  11078. }
  11079. #u22164_text {
  11080. border-width:0px;
  11081. word-wrap:break-word;
  11082. text-transform:none;
  11083. visibility:hidden;
  11084. }
  11085. #u22165 {
  11086. border-width:0px;
  11087. position:absolute;
  11088. left:439px;
  11089. top:70px;
  11090. width:80px;
  11091. height:40px;
  11092. display:flex;
  11093. transition:none;
  11094. font-size:12px;
  11095. }
  11096. #u22165 .text {
  11097. position:absolute;
  11098. align-self:center;
  11099. padding:2px 2px 2px 2px;
  11100. box-sizing:border-box;
  11101. width:100%;
  11102. }
  11103. #u22165_img {
  11104. border-width:0px;
  11105. position:absolute;
  11106. left:0px;
  11107. top:0px;
  11108. width:80px;
  11109. height:40px;
  11110. }
  11111. #u22165_text {
  11112. border-width:0px;
  11113. word-wrap:break-word;
  11114. text-transform:none;
  11115. visibility:hidden;
  11116. }
  11117. #u22166 {
  11118. border-width:0px;
  11119. position:absolute;
  11120. left:519px;
  11121. top:70px;
  11122. width:80px;
  11123. height:40px;
  11124. display:flex;
  11125. transition:none;
  11126. font-size:12px;
  11127. }
  11128. #u22166 .text {
  11129. position:absolute;
  11130. align-self:center;
  11131. padding:2px 2px 2px 2px;
  11132. box-sizing:border-box;
  11133. width:100%;
  11134. }
  11135. #u22166_img {
  11136. border-width:0px;
  11137. position:absolute;
  11138. left:0px;
  11139. top:0px;
  11140. width:80px;
  11141. height:40px;
  11142. }
  11143. #u22166_text {
  11144. border-width:0px;
  11145. word-wrap:break-word;
  11146. text-transform:none;
  11147. visibility:hidden;
  11148. }
  11149. #u22167 {
  11150. border-width:0px;
  11151. position:absolute;
  11152. left:599px;
  11153. top:70px;
  11154. width:83px;
  11155. height:40px;
  11156. display:flex;
  11157. transition:none;
  11158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11159. font-weight:400;
  11160. font-style:normal;
  11161. font-size:12px;
  11162. }
  11163. #u22167 .text {
  11164. position:absolute;
  11165. align-self:center;
  11166. padding:2px 2px 2px 2px;
  11167. box-sizing:border-box;
  11168. width:100%;
  11169. }
  11170. #u22167_img {
  11171. border-width:0px;
  11172. position:absolute;
  11173. left:0px;
  11174. top:0px;
  11175. width:83px;
  11176. height:40px;
  11177. }
  11178. #u22167_text {
  11179. border-width:0px;
  11180. word-wrap:break-word;
  11181. text-transform:none;
  11182. }
  11183. #u22168 {
  11184. border-width:0px;
  11185. position:absolute;
  11186. left:682px;
  11187. top:70px;
  11188. width:83px;
  11189. height:40px;
  11190. display:flex;
  11191. transition:none;
  11192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11193. font-weight:400;
  11194. font-style:normal;
  11195. font-size:12px;
  11196. }
  11197. #u22168 .text {
  11198. position:absolute;
  11199. align-self:center;
  11200. padding:2px 2px 2px 2px;
  11201. box-sizing:border-box;
  11202. width:100%;
  11203. }
  11204. #u22168_img {
  11205. border-width:0px;
  11206. position:absolute;
  11207. left:0px;
  11208. top:0px;
  11209. width:83px;
  11210. height:40px;
  11211. }
  11212. #u22168_text {
  11213. border-width:0px;
  11214. word-wrap:break-word;
  11215. text-transform:none;
  11216. }
  11217. #u22169 {
  11218. border-width:0px;
  11219. position:absolute;
  11220. left:765px;
  11221. top:70px;
  11222. width:71px;
  11223. height:40px;
  11224. display:flex;
  11225. transition:none;
  11226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11227. font-weight:400;
  11228. font-style:normal;
  11229. font-size:12px;
  11230. color:#1890FF;
  11231. }
  11232. #u22169 .text {
  11233. position:absolute;
  11234. align-self:center;
  11235. padding:2px 2px 2px 2px;
  11236. box-sizing:border-box;
  11237. width:100%;
  11238. }
  11239. #u22169_img {
  11240. border-width:0px;
  11241. position:absolute;
  11242. left:0px;
  11243. top:0px;
  11244. width:71px;
  11245. height:40px;
  11246. }
  11247. #u22169_text {
  11248. border-width:0px;
  11249. word-wrap:break-word;
  11250. text-transform:none;
  11251. }
  11252. #u22170 {
  11253. border-width:0px;
  11254. position:absolute;
  11255. left:0px;
  11256. top:110px;
  11257. width:39px;
  11258. height:30px;
  11259. display:flex;
  11260. transition:none;
  11261. font-size:12px;
  11262. }
  11263. #u22170 .text {
  11264. position:absolute;
  11265. align-self:center;
  11266. padding:2px 2px 2px 2px;
  11267. box-sizing:border-box;
  11268. width:100%;
  11269. }
  11270. #u22170_img {
  11271. border-width:0px;
  11272. position:absolute;
  11273. left:0px;
  11274. top:0px;
  11275. width:39px;
  11276. height:30px;
  11277. }
  11278. #u22170_text {
  11279. border-width:0px;
  11280. word-wrap:break-word;
  11281. text-transform:none;
  11282. }
  11283. #u22171 {
  11284. border-width:0px;
  11285. position:absolute;
  11286. left:39px;
  11287. top:110px;
  11288. width:80px;
  11289. height:30px;
  11290. display:flex;
  11291. transition:none;
  11292. font-size:12px;
  11293. }
  11294. #u22171 .text {
  11295. position:absolute;
  11296. align-self:center;
  11297. padding:2px 2px 2px 2px;
  11298. box-sizing:border-box;
  11299. width:100%;
  11300. }
  11301. #u22171_img {
  11302. border-width:0px;
  11303. position:absolute;
  11304. left:0px;
  11305. top:0px;
  11306. width:80px;
  11307. height:30px;
  11308. }
  11309. #u22171_text {
  11310. border-width:0px;
  11311. word-wrap:break-word;
  11312. text-transform:none;
  11313. visibility:hidden;
  11314. }
  11315. #u22172 {
  11316. border-width:0px;
  11317. position:absolute;
  11318. left:119px;
  11319. top:110px;
  11320. width:80px;
  11321. height:30px;
  11322. display:flex;
  11323. transition:none;
  11324. font-size:12px;
  11325. }
  11326. #u22172 .text {
  11327. position:absolute;
  11328. align-self:center;
  11329. padding:2px 2px 2px 2px;
  11330. box-sizing:border-box;
  11331. width:100%;
  11332. }
  11333. #u22172_img {
  11334. border-width:0px;
  11335. position:absolute;
  11336. left:0px;
  11337. top:0px;
  11338. width:80px;
  11339. height:30px;
  11340. }
  11341. #u22172_text {
  11342. border-width:0px;
  11343. word-wrap:break-word;
  11344. text-transform:none;
  11345. visibility:hidden;
  11346. }
  11347. #u22173 {
  11348. border-width:0px;
  11349. position:absolute;
  11350. left:199px;
  11351. top:110px;
  11352. width:80px;
  11353. height:30px;
  11354. display:flex;
  11355. transition:none;
  11356. font-size:12px;
  11357. }
  11358. #u22173 .text {
  11359. position:absolute;
  11360. align-self:center;
  11361. padding:2px 2px 2px 2px;
  11362. box-sizing:border-box;
  11363. width:100%;
  11364. }
  11365. #u22173_img {
  11366. border-width:0px;
  11367. position:absolute;
  11368. left:0px;
  11369. top:0px;
  11370. width:80px;
  11371. height:30px;
  11372. }
  11373. #u22173_text {
  11374. border-width:0px;
  11375. word-wrap:break-word;
  11376. text-transform:none;
  11377. visibility:hidden;
  11378. }
  11379. #u22174 {
  11380. border-width:0px;
  11381. position:absolute;
  11382. left:279px;
  11383. top:110px;
  11384. width:80px;
  11385. height:30px;
  11386. display:flex;
  11387. transition:none;
  11388. font-size:12px;
  11389. }
  11390. #u22174 .text {
  11391. position:absolute;
  11392. align-self:center;
  11393. padding:2px 2px 2px 2px;
  11394. box-sizing:border-box;
  11395. width:100%;
  11396. }
  11397. #u22174_img {
  11398. border-width:0px;
  11399. position:absolute;
  11400. left:0px;
  11401. top:0px;
  11402. width:80px;
  11403. height:30px;
  11404. }
  11405. #u22174_text {
  11406. border-width:0px;
  11407. word-wrap:break-word;
  11408. text-transform:none;
  11409. visibility:hidden;
  11410. }
  11411. #u22175 {
  11412. border-width:0px;
  11413. position:absolute;
  11414. left:359px;
  11415. top:110px;
  11416. width:80px;
  11417. height:30px;
  11418. display:flex;
  11419. transition:none;
  11420. font-size:12px;
  11421. }
  11422. #u22175 .text {
  11423. position:absolute;
  11424. align-self:center;
  11425. padding:2px 2px 2px 2px;
  11426. box-sizing:border-box;
  11427. width:100%;
  11428. }
  11429. #u22175_img {
  11430. border-width:0px;
  11431. position:absolute;
  11432. left:0px;
  11433. top:0px;
  11434. width:80px;
  11435. height:30px;
  11436. }
  11437. #u22175_text {
  11438. border-width:0px;
  11439. word-wrap:break-word;
  11440. text-transform:none;
  11441. visibility:hidden;
  11442. }
  11443. #u22176 {
  11444. border-width:0px;
  11445. position:absolute;
  11446. left:439px;
  11447. top:110px;
  11448. width:80px;
  11449. height:30px;
  11450. display:flex;
  11451. transition:none;
  11452. font-size:12px;
  11453. }
  11454. #u22176 .text {
  11455. position:absolute;
  11456. align-self:center;
  11457. padding:2px 2px 2px 2px;
  11458. box-sizing:border-box;
  11459. width:100%;
  11460. }
  11461. #u22176_img {
  11462. border-width:0px;
  11463. position:absolute;
  11464. left:0px;
  11465. top:0px;
  11466. width:80px;
  11467. height:30px;
  11468. }
  11469. #u22176_text {
  11470. border-width:0px;
  11471. word-wrap:break-word;
  11472. text-transform:none;
  11473. visibility:hidden;
  11474. }
  11475. #u22177 {
  11476. border-width:0px;
  11477. position:absolute;
  11478. left:519px;
  11479. top:110px;
  11480. width:80px;
  11481. height:30px;
  11482. display:flex;
  11483. transition:none;
  11484. font-size:12px;
  11485. }
  11486. #u22177 .text {
  11487. position:absolute;
  11488. align-self:center;
  11489. padding:2px 2px 2px 2px;
  11490. box-sizing:border-box;
  11491. width:100%;
  11492. }
  11493. #u22177_img {
  11494. border-width:0px;
  11495. position:absolute;
  11496. left:0px;
  11497. top:0px;
  11498. width:80px;
  11499. height:30px;
  11500. }
  11501. #u22177_text {
  11502. border-width:0px;
  11503. word-wrap:break-word;
  11504. text-transform:none;
  11505. visibility:hidden;
  11506. }
  11507. #u22178 {
  11508. border-width:0px;
  11509. position:absolute;
  11510. left:599px;
  11511. top:110px;
  11512. width:83px;
  11513. height:30px;
  11514. display:flex;
  11515. transition:none;
  11516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11517. font-weight:400;
  11518. font-style:normal;
  11519. font-size:12px;
  11520. }
  11521. #u22178 .text {
  11522. position:absolute;
  11523. align-self:center;
  11524. padding:2px 2px 2px 2px;
  11525. box-sizing:border-box;
  11526. width:100%;
  11527. }
  11528. #u22178_img {
  11529. border-width:0px;
  11530. position:absolute;
  11531. left:0px;
  11532. top:0px;
  11533. width:83px;
  11534. height:30px;
  11535. }
  11536. #u22178_text {
  11537. border-width:0px;
  11538. word-wrap:break-word;
  11539. text-transform:none;
  11540. }
  11541. #u22179 {
  11542. border-width:0px;
  11543. position:absolute;
  11544. left:682px;
  11545. top:110px;
  11546. width:83px;
  11547. height:30px;
  11548. display:flex;
  11549. transition:none;
  11550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11551. font-weight:400;
  11552. font-style:normal;
  11553. font-size:12px;
  11554. }
  11555. #u22179 .text {
  11556. position:absolute;
  11557. align-self:center;
  11558. padding:2px 2px 2px 2px;
  11559. box-sizing:border-box;
  11560. width:100%;
  11561. }
  11562. #u22179_img {
  11563. border-width:0px;
  11564. position:absolute;
  11565. left:0px;
  11566. top:0px;
  11567. width:83px;
  11568. height:30px;
  11569. }
  11570. #u22179_text {
  11571. border-width:0px;
  11572. word-wrap:break-word;
  11573. text-transform:none;
  11574. }
  11575. #u22180 {
  11576. border-width:0px;
  11577. position:absolute;
  11578. left:765px;
  11579. top:110px;
  11580. width:71px;
  11581. height:30px;
  11582. display:flex;
  11583. transition:none;
  11584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11585. font-weight:400;
  11586. font-style:normal;
  11587. font-size:12px;
  11588. color:#1890FF;
  11589. }
  11590. #u22180 .text {
  11591. position:absolute;
  11592. align-self:center;
  11593. padding:2px 2px 2px 2px;
  11594. box-sizing:border-box;
  11595. width:100%;
  11596. }
  11597. #u22180_img {
  11598. border-width:0px;
  11599. position:absolute;
  11600. left:0px;
  11601. top:0px;
  11602. width:71px;
  11603. height:30px;
  11604. }
  11605. #u22180_text {
  11606. border-width:0px;
  11607. word-wrap:break-word;
  11608. text-transform:none;
  11609. }
  11610. #u22181_input {
  11611. position:absolute;
  11612. left:0px;
  11613. top:0px;
  11614. width:69px;
  11615. height:23px;
  11616. padding:2px 2px 2px 2px;
  11617. font-family:'ArialMT', 'Arial', sans-serif;
  11618. font-weight:400;
  11619. font-style:normal;
  11620. font-size:11px;
  11621. letter-spacing:normal;
  11622. color:#AAAAAA;
  11623. vertical-align:none;
  11624. text-align:left;
  11625. text-transform:none;
  11626. background-color:transparent;
  11627. border-color:transparent;
  11628. }
  11629. #u22181_input.disabled {
  11630. position:absolute;
  11631. left:0px;
  11632. top:0px;
  11633. width:69px;
  11634. height:23px;
  11635. padding:2px 2px 2px 2px;
  11636. font-family:'ArialMT', 'Arial', sans-serif;
  11637. font-weight:400;
  11638. font-style:normal;
  11639. font-size:11px;
  11640. letter-spacing:normal;
  11641. color:#AAAAAA;
  11642. vertical-align:none;
  11643. text-align:left;
  11644. text-transform:none;
  11645. background-color:transparent;
  11646. border-color:transparent;
  11647. }
  11648. #u22181_div {
  11649. border-width:0px;
  11650. position:absolute;
  11651. left:0px;
  11652. top:0px;
  11653. width:69px;
  11654. height:23px;
  11655. background:inherit;
  11656. background-color:rgba(255, 255, 255, 1);
  11657. border-radius:0px;
  11658. filter:drop-shadow(none);
  11659. transition:none;
  11660. font-size:11px;
  11661. color:#AAAAAA;
  11662. }
  11663. #u22181 {
  11664. border-width:0px;
  11665. position:absolute;
  11666. left:1255px;
  11667. top:537px;
  11668. width:69px;
  11669. height:23px;
  11670. display:flex;
  11671. opacity:0.9;
  11672. transition:none;
  11673. transform-origin:50% 50%;
  11674. font-size:11px;
  11675. color:#AAAAAA;
  11676. }
  11677. #u22181 .text {
  11678. position:absolute;
  11679. align-self:flex-start;
  11680. padding:2px 2px 2px 2px;
  11681. box-sizing:border-box;
  11682. width:100%;
  11683. }
  11684. #u22181_div.disabled {
  11685. border-width:0px;
  11686. position:absolute;
  11687. left:0px;
  11688. top:0px;
  11689. width:69px;
  11690. height:23px;
  11691. background:inherit;
  11692. background-color:rgba(240, 240, 240, 1);
  11693. border-radius:0px;
  11694. filter:drop-shadow(none);
  11695. transition:none;
  11696. font-size:11px;
  11697. color:#AAAAAA;
  11698. }
  11699. #u22181.disabled {
  11700. }
  11701. .u22181_input_option {
  11702. font-size:11px;
  11703. }
  11704. #u22182_input {
  11705. position:absolute;
  11706. left:0px;
  11707. top:0px;
  11708. width:69px;
  11709. height:23px;
  11710. padding:2px 2px 2px 2px;
  11711. font-family:'ArialMT', 'Arial', sans-serif;
  11712. font-weight:400;
  11713. font-style:normal;
  11714. font-size:11px;
  11715. letter-spacing:normal;
  11716. color:#AAAAAA;
  11717. vertical-align:none;
  11718. text-align:left;
  11719. text-transform:none;
  11720. background-color:transparent;
  11721. border-color:transparent;
  11722. }
  11723. #u22182_input.disabled {
  11724. position:absolute;
  11725. left:0px;
  11726. top:0px;
  11727. width:69px;
  11728. height:23px;
  11729. padding:2px 2px 2px 2px;
  11730. font-family:'ArialMT', 'Arial', sans-serif;
  11731. font-weight:400;
  11732. font-style:normal;
  11733. font-size:11px;
  11734. letter-spacing:normal;
  11735. color:#AAAAAA;
  11736. vertical-align:none;
  11737. text-align:left;
  11738. text-transform:none;
  11739. background-color:transparent;
  11740. border-color:transparent;
  11741. }
  11742. #u22182_div {
  11743. border-width:0px;
  11744. position:absolute;
  11745. left:0px;
  11746. top:0px;
  11747. width:69px;
  11748. height:23px;
  11749. background:inherit;
  11750. background-color:rgba(255, 255, 255, 1);
  11751. border-radius:0px;
  11752. filter:drop-shadow(none);
  11753. transition:none;
  11754. font-size:11px;
  11755. color:#AAAAAA;
  11756. }
  11757. #u22182 {
  11758. border-width:0px;
  11759. position:absolute;
  11760. left:1337px;
  11761. top:537px;
  11762. width:69px;
  11763. height:23px;
  11764. display:flex;
  11765. opacity:0.9;
  11766. transition:none;
  11767. transform-origin:50% 50%;
  11768. font-size:11px;
  11769. color:#AAAAAA;
  11770. }
  11771. #u22182 .text {
  11772. position:absolute;
  11773. align-self:flex-start;
  11774. padding:2px 2px 2px 2px;
  11775. box-sizing:border-box;
  11776. width:100%;
  11777. }
  11778. #u22182_div.disabled {
  11779. border-width:0px;
  11780. position:absolute;
  11781. left:0px;
  11782. top:0px;
  11783. width:69px;
  11784. height:23px;
  11785. background:inherit;
  11786. background-color:rgba(240, 240, 240, 1);
  11787. border-radius:0px;
  11788. filter:drop-shadow(none);
  11789. transition:none;
  11790. font-size:11px;
  11791. color:#AAAAAA;
  11792. }
  11793. #u22182.disabled {
  11794. }
  11795. .u22182_input_option {
  11796. font-size:11px;
  11797. }
  11798. #u22183_input {
  11799. position:absolute;
  11800. left:0px;
  11801. top:0px;
  11802. width:69px;
  11803. height:23px;
  11804. padding:2px 2px 2px 2px;
  11805. font-family:'ArialMT', 'Arial', sans-serif;
  11806. font-weight:400;
  11807. font-style:normal;
  11808. font-size:11px;
  11809. letter-spacing:normal;
  11810. color:#AAAAAA;
  11811. vertical-align:none;
  11812. text-align:left;
  11813. text-transform:none;
  11814. background-color:transparent;
  11815. border-color:transparent;
  11816. }
  11817. #u22183_input.disabled {
  11818. position:absolute;
  11819. left:0px;
  11820. top:0px;
  11821. width:69px;
  11822. height:23px;
  11823. padding:2px 2px 2px 2px;
  11824. font-family:'ArialMT', 'Arial', sans-serif;
  11825. font-weight:400;
  11826. font-style:normal;
  11827. font-size:11px;
  11828. letter-spacing:normal;
  11829. color:#AAAAAA;
  11830. vertical-align:none;
  11831. text-align:left;
  11832. text-transform:none;
  11833. background-color:transparent;
  11834. border-color:transparent;
  11835. }
  11836. #u22183_div {
  11837. border-width:0px;
  11838. position:absolute;
  11839. left:0px;
  11840. top:0px;
  11841. width:69px;
  11842. height:23px;
  11843. background:inherit;
  11844. background-color:rgba(255, 255, 255, 1);
  11845. border-radius:0px;
  11846. filter:drop-shadow(none);
  11847. transition:none;
  11848. font-size:11px;
  11849. color:#AAAAAA;
  11850. }
  11851. #u22183 {
  11852. border-width:0px;
  11853. position:absolute;
  11854. left:1416px;
  11855. top:537px;
  11856. width:69px;
  11857. height:23px;
  11858. display:flex;
  11859. opacity:0.9;
  11860. transition:none;
  11861. transform-origin:50% 50%;
  11862. font-size:11px;
  11863. color:#AAAAAA;
  11864. }
  11865. #u22183 .text {
  11866. position:absolute;
  11867. align-self:flex-start;
  11868. padding:2px 2px 2px 2px;
  11869. box-sizing:border-box;
  11870. width:100%;
  11871. }
  11872. #u22183_div.disabled {
  11873. border-width:0px;
  11874. position:absolute;
  11875. left:0px;
  11876. top:0px;
  11877. width:69px;
  11878. height:23px;
  11879. background:inherit;
  11880. background-color:rgba(240, 240, 240, 1);
  11881. border-radius:0px;
  11882. filter:drop-shadow(none);
  11883. transition:none;
  11884. font-size:11px;
  11885. color:#AAAAAA;
  11886. }
  11887. #u22183.disabled {
  11888. }
  11889. .u22183_input_option {
  11890. font-size:11px;
  11891. }
  11892. #u22184_input {
  11893. position:absolute;
  11894. left:0px;
  11895. top:0px;
  11896. width:69px;
  11897. height:23px;
  11898. padding:2px 2px 2px 2px;
  11899. font-family:'ArialMT', 'Arial', sans-serif;
  11900. font-weight:400;
  11901. font-style:normal;
  11902. font-size:11px;
  11903. letter-spacing:normal;
  11904. color:#AAAAAA;
  11905. vertical-align:none;
  11906. text-align:left;
  11907. text-transform:none;
  11908. background-color:transparent;
  11909. border-color:transparent;
  11910. }
  11911. #u22184_input.disabled {
  11912. position:absolute;
  11913. left:0px;
  11914. top:0px;
  11915. width:69px;
  11916. height:23px;
  11917. padding:2px 2px 2px 2px;
  11918. font-family:'ArialMT', 'Arial', sans-serif;
  11919. font-weight:400;
  11920. font-style:normal;
  11921. font-size:11px;
  11922. letter-spacing:normal;
  11923. color:#AAAAAA;
  11924. vertical-align:none;
  11925. text-align:left;
  11926. text-transform:none;
  11927. background-color:transparent;
  11928. border-color:transparent;
  11929. }
  11930. #u22184_div {
  11931. border-width:0px;
  11932. position:absolute;
  11933. left:0px;
  11934. top:0px;
  11935. width:69px;
  11936. height:23px;
  11937. background:inherit;
  11938. background-color:rgba(255, 255, 255, 1);
  11939. border-radius:0px;
  11940. filter:drop-shadow(none);
  11941. transition:none;
  11942. font-size:11px;
  11943. color:#AAAAAA;
  11944. }
  11945. #u22184 {
  11946. border-width:0px;
  11947. position:absolute;
  11948. left:1813px;
  11949. top:537px;
  11950. width:69px;
  11951. height:23px;
  11952. display:flex;
  11953. opacity:0.9;
  11954. transition:none;
  11955. transform-origin:50% 50%;
  11956. font-size:11px;
  11957. color:#AAAAAA;
  11958. }
  11959. #u22184 .text {
  11960. position:absolute;
  11961. align-self:flex-start;
  11962. padding:2px 2px 2px 2px;
  11963. box-sizing:border-box;
  11964. width:100%;
  11965. }
  11966. #u22184_div.disabled {
  11967. border-width:0px;
  11968. position:absolute;
  11969. left:0px;
  11970. top:0px;
  11971. width:69px;
  11972. height:23px;
  11973. background:inherit;
  11974. background-color:rgba(240, 240, 240, 1);
  11975. border-radius:0px;
  11976. filter:drop-shadow(none);
  11977. transition:none;
  11978. font-size:11px;
  11979. color:#AAAAAA;
  11980. }
  11981. #u22184.disabled {
  11982. }
  11983. .u22184_input_option {
  11984. font-size:11px;
  11985. }
  11986. #u22185_input {
  11987. position:absolute;
  11988. left:0px;
  11989. top:0px;
  11990. width:69px;
  11991. height:23px;
  11992. padding:2px 2px 2px 2px;
  11993. font-family:'ArialMT', 'Arial', sans-serif;
  11994. font-weight:400;
  11995. font-style:normal;
  11996. font-size:11px;
  11997. letter-spacing:normal;
  11998. color:#AAAAAA;
  11999. vertical-align:none;
  12000. text-align:left;
  12001. text-transform:none;
  12002. background-color:transparent;
  12003. border-color:transparent;
  12004. }
  12005. #u22185_input.disabled {
  12006. position:absolute;
  12007. left:0px;
  12008. top:0px;
  12009. width:69px;
  12010. height:23px;
  12011. padding:2px 2px 2px 2px;
  12012. font-family:'ArialMT', 'Arial', sans-serif;
  12013. font-weight:400;
  12014. font-style:normal;
  12015. font-size:11px;
  12016. letter-spacing:normal;
  12017. color:#AAAAAA;
  12018. vertical-align:none;
  12019. text-align:left;
  12020. text-transform:none;
  12021. background-color:transparent;
  12022. border-color:transparent;
  12023. }
  12024. #u22185_div {
  12025. border-width:0px;
  12026. position:absolute;
  12027. left:0px;
  12028. top:0px;
  12029. width:69px;
  12030. height:23px;
  12031. background:inherit;
  12032. background-color:rgba(255, 255, 255, 1);
  12033. border-radius:0px;
  12034. filter:drop-shadow(none);
  12035. transition:none;
  12036. font-size:11px;
  12037. color:#AAAAAA;
  12038. }
  12039. #u22185 {
  12040. border-width:0px;
  12041. position:absolute;
  12042. left:1903px;
  12043. top:537px;
  12044. width:69px;
  12045. height:23px;
  12046. display:flex;
  12047. opacity:0.9;
  12048. transition:none;
  12049. transform-origin:50% 50%;
  12050. font-size:11px;
  12051. color:#AAAAAA;
  12052. }
  12053. #u22185 .text {
  12054. position:absolute;
  12055. align-self:flex-start;
  12056. padding:2px 2px 2px 2px;
  12057. box-sizing:border-box;
  12058. width:100%;
  12059. }
  12060. #u22185_div.disabled {
  12061. border-width:0px;
  12062. position:absolute;
  12063. left:0px;
  12064. top:0px;
  12065. width:69px;
  12066. height:23px;
  12067. background:inherit;
  12068. background-color:rgba(240, 240, 240, 1);
  12069. border-radius:0px;
  12070. filter:drop-shadow(none);
  12071. transition:none;
  12072. font-size:11px;
  12073. color:#AAAAAA;
  12074. }
  12075. #u22185.disabled {
  12076. }
  12077. .u22185_input_option {
  12078. font-size:11px;
  12079. }
  12080. #u22186_input {
  12081. position:absolute;
  12082. left:0px;
  12083. top:0px;
  12084. width:67px;
  12085. height:18px;
  12086. padding:2px 2px 2px 2px;
  12087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12088. font-weight:400;
  12089. font-style:normal;
  12090. font-size:14px;
  12091. letter-spacing:normal;
  12092. color:#000000;
  12093. vertical-align:none;
  12094. text-align:left;
  12095. text-transform:none;
  12096. background-color:transparent;
  12097. border-color:transparent;
  12098. }
  12099. #u22186_input.hint {
  12100. position:absolute;
  12101. left:0px;
  12102. top:0px;
  12103. width:67px;
  12104. height:18px;
  12105. padding:2px 2px 2px 2px;
  12106. font-family:"Microsoft YaHei", sans-serif;
  12107. font-weight:400;
  12108. font-style:normal;
  12109. font-size:12px;
  12110. letter-spacing:normal;
  12111. color:#AAAAAA;
  12112. vertical-align:none;
  12113. text-align:left;
  12114. text-transform:none;
  12115. background-color:transparent;
  12116. border-color:transparent;
  12117. }
  12118. #u22186_input.disabled {
  12119. position:absolute;
  12120. left:0px;
  12121. top:0px;
  12122. width:67px;
  12123. height:18px;
  12124. padding:2px 2px 2px 2px;
  12125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12126. font-weight:400;
  12127. font-style:normal;
  12128. font-size:14px;
  12129. letter-spacing:normal;
  12130. color:#000000;
  12131. vertical-align:none;
  12132. text-align:left;
  12133. text-transform:none;
  12134. background-color:transparent;
  12135. border-color:transparent;
  12136. }
  12137. #u22186_input.hint.disabled {
  12138. position:absolute;
  12139. left:0px;
  12140. top:0px;
  12141. width:67px;
  12142. height:18px;
  12143. padding:2px 2px 2px 2px;
  12144. font-family:"Microsoft YaHei", sans-serif;
  12145. font-weight:400;
  12146. font-style:normal;
  12147. font-size:12px;
  12148. letter-spacing:normal;
  12149. color:#AAAAAA;
  12150. vertical-align:none;
  12151. text-align:left;
  12152. text-transform:none;
  12153. background-color:transparent;
  12154. border-color:transparent;
  12155. }
  12156. #u22186_div {
  12157. border-width:0px;
  12158. position:absolute;
  12159. left:0px;
  12160. top:0px;
  12161. width:67px;
  12162. height:18px;
  12163. background:inherit;
  12164. background-color:rgba(242, 242, 242, 0);
  12165. border-radius:0px;
  12166. filter:drop-shadow(none);
  12167. transition:none;
  12168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12169. font-weight:400;
  12170. font-style:normal;
  12171. font-size:14px;
  12172. }
  12173. #u22186 {
  12174. border-width:0px;
  12175. position:absolute;
  12176. left:1495px;
  12177. top:540px;
  12178. width:67px;
  12179. height:18px;
  12180. display:flex;
  12181. transition:none;
  12182. transform-origin:50% 50%;
  12183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12184. font-weight:400;
  12185. font-style:normal;
  12186. font-size:14px;
  12187. }
  12188. #u22186 .text {
  12189. position:absolute;
  12190. align-self:center;
  12191. padding:2px 2px 2px 2px;
  12192. box-sizing:border-box;
  12193. width:100%;
  12194. }
  12195. #u22186_div.hint {
  12196. border-width:0px;
  12197. position:absolute;
  12198. left:0px;
  12199. top:0px;
  12200. width:67px;
  12201. height:18px;
  12202. background:inherit;
  12203. background-color:rgba(242, 242, 242, 0);
  12204. border-radius:0px;
  12205. filter:drop-shadow(none);
  12206. transition:none;
  12207. font-family:"Microsoft YaHei", sans-serif;
  12208. font-weight:400;
  12209. font-style:normal;
  12210. font-size:14px;
  12211. }
  12212. #u22186.hint {
  12213. }
  12214. #u22186_div.disabled {
  12215. border-width:0px;
  12216. position:absolute;
  12217. left:0px;
  12218. top:0px;
  12219. width:67px;
  12220. height:18px;
  12221. background:inherit;
  12222. background-color:rgba(240, 240, 240, 1);
  12223. border-radius:0px;
  12224. filter:drop-shadow(none);
  12225. transition:none;
  12226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12227. font-weight:400;
  12228. font-style:normal;
  12229. font-size:14px;
  12230. }
  12231. #u22186.disabled {
  12232. }
  12233. #u22186_div.hint.disabled {
  12234. border-width:0px;
  12235. position:absolute;
  12236. left:0px;
  12237. top:0px;
  12238. width:67px;
  12239. height:18px;
  12240. background:inherit;
  12241. background-color:rgba(240, 240, 240, 1);
  12242. border-radius:0px;
  12243. filter:drop-shadow(none);
  12244. transition:none;
  12245. font-family:"Microsoft YaHei", sans-serif;
  12246. font-weight:400;
  12247. font-style:normal;
  12248. font-size:14px;
  12249. }
  12250. #u22186.hint.disabled {
  12251. }
  12252. #u22187_input {
  12253. position:absolute;
  12254. left:0px;
  12255. top:0px;
  12256. width:67px;
  12257. height:18px;
  12258. padding:2px 2px 2px 2px;
  12259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12260. font-weight:400;
  12261. font-style:normal;
  12262. font-size:14px;
  12263. letter-spacing:normal;
  12264. color:#000000;
  12265. vertical-align:none;
  12266. text-align:left;
  12267. text-transform:none;
  12268. background-color:transparent;
  12269. border-color:transparent;
  12270. }
  12271. #u22187_input.hint {
  12272. position:absolute;
  12273. left:0px;
  12274. top:0px;
  12275. width:67px;
  12276. height:18px;
  12277. padding:2px 2px 2px 2px;
  12278. font-family:"Microsoft YaHei", sans-serif;
  12279. font-weight:400;
  12280. font-style:normal;
  12281. font-size:12px;
  12282. letter-spacing:normal;
  12283. color:#AAAAAA;
  12284. vertical-align:none;
  12285. text-align:left;
  12286. text-transform:none;
  12287. background-color:transparent;
  12288. border-color:transparent;
  12289. }
  12290. #u22187_input.disabled {
  12291. position:absolute;
  12292. left:0px;
  12293. top:0px;
  12294. width:67px;
  12295. height:18px;
  12296. padding:2px 2px 2px 2px;
  12297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12298. font-weight:400;
  12299. font-style:normal;
  12300. font-size:14px;
  12301. letter-spacing:normal;
  12302. color:#000000;
  12303. vertical-align:none;
  12304. text-align:left;
  12305. text-transform:none;
  12306. background-color:transparent;
  12307. border-color:transparent;
  12308. }
  12309. #u22187_input.hint.disabled {
  12310. position:absolute;
  12311. left:0px;
  12312. top:0px;
  12313. width:67px;
  12314. height:18px;
  12315. padding:2px 2px 2px 2px;
  12316. font-family:"Microsoft YaHei", sans-serif;
  12317. font-weight:400;
  12318. font-style:normal;
  12319. font-size:12px;
  12320. letter-spacing:normal;
  12321. color:#AAAAAA;
  12322. vertical-align:none;
  12323. text-align:left;
  12324. text-transform:none;
  12325. background-color:transparent;
  12326. border-color:transparent;
  12327. }
  12328. #u22187_div {
  12329. border-width:0px;
  12330. position:absolute;
  12331. left:0px;
  12332. top:0px;
  12333. width:67px;
  12334. height:18px;
  12335. background:inherit;
  12336. background-color:rgba(242, 242, 242, 0);
  12337. border-radius:0px;
  12338. filter:drop-shadow(none);
  12339. transition:none;
  12340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12341. font-weight:400;
  12342. font-style:normal;
  12343. font-size:14px;
  12344. }
  12345. #u22187 {
  12346. border-width:0px;
  12347. position:absolute;
  12348. left:1578px;
  12349. top:540px;
  12350. width:67px;
  12351. height:18px;
  12352. display:flex;
  12353. transition:none;
  12354. transform-origin:50% 50%;
  12355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12356. font-weight:400;
  12357. font-style:normal;
  12358. font-size:14px;
  12359. }
  12360. #u22187 .text {
  12361. position:absolute;
  12362. align-self:center;
  12363. padding:2px 2px 2px 2px;
  12364. box-sizing:border-box;
  12365. width:100%;
  12366. }
  12367. #u22187_div.hint {
  12368. border-width:0px;
  12369. position:absolute;
  12370. left:0px;
  12371. top:0px;
  12372. width:67px;
  12373. height:18px;
  12374. background:inherit;
  12375. background-color:rgba(242, 242, 242, 0);
  12376. border-radius:0px;
  12377. filter:drop-shadow(none);
  12378. transition:none;
  12379. font-family:"Microsoft YaHei", sans-serif;
  12380. font-weight:400;
  12381. font-style:normal;
  12382. font-size:14px;
  12383. }
  12384. #u22187.hint {
  12385. }
  12386. #u22187_div.disabled {
  12387. border-width:0px;
  12388. position:absolute;
  12389. left:0px;
  12390. top:0px;
  12391. width:67px;
  12392. height:18px;
  12393. background:inherit;
  12394. background-color:rgba(240, 240, 240, 1);
  12395. border-radius:0px;
  12396. filter:drop-shadow(none);
  12397. transition:none;
  12398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12399. font-weight:400;
  12400. font-style:normal;
  12401. font-size:14px;
  12402. }
  12403. #u22187.disabled {
  12404. }
  12405. #u22187_div.hint.disabled {
  12406. border-width:0px;
  12407. position:absolute;
  12408. left:0px;
  12409. top:0px;
  12410. width:67px;
  12411. height:18px;
  12412. background:inherit;
  12413. background-color:rgba(240, 240, 240, 1);
  12414. border-radius:0px;
  12415. filter:drop-shadow(none);
  12416. transition:none;
  12417. font-family:"Microsoft YaHei", sans-serif;
  12418. font-weight:400;
  12419. font-style:normal;
  12420. font-size:14px;
  12421. }
  12422. #u22187.hint.disabled {
  12423. }
  12424. #u22188_input {
  12425. position:absolute;
  12426. left:0px;
  12427. top:0px;
  12428. width:67px;
  12429. height:18px;
  12430. padding:2px 2px 2px 2px;
  12431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12432. font-weight:400;
  12433. font-style:normal;
  12434. font-size:14px;
  12435. letter-spacing:normal;
  12436. color:#000000;
  12437. vertical-align:none;
  12438. text-align:left;
  12439. text-transform:none;
  12440. background-color:transparent;
  12441. border-color:transparent;
  12442. }
  12443. #u22188_input.hint {
  12444. position:absolute;
  12445. left:0px;
  12446. top:0px;
  12447. width:67px;
  12448. height:18px;
  12449. padding:2px 2px 2px 2px;
  12450. font-family:"Microsoft YaHei", sans-serif;
  12451. font-weight:400;
  12452. font-style:normal;
  12453. font-size:12px;
  12454. letter-spacing:normal;
  12455. color:#AAAAAA;
  12456. vertical-align:none;
  12457. text-align:left;
  12458. text-transform:none;
  12459. background-color:transparent;
  12460. border-color:transparent;
  12461. }
  12462. #u22188_input.disabled {
  12463. position:absolute;
  12464. left:0px;
  12465. top:0px;
  12466. width:67px;
  12467. height:18px;
  12468. padding:2px 2px 2px 2px;
  12469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12470. font-weight:400;
  12471. font-style:normal;
  12472. font-size:14px;
  12473. letter-spacing:normal;
  12474. color:#000000;
  12475. vertical-align:none;
  12476. text-align:left;
  12477. text-transform:none;
  12478. background-color:transparent;
  12479. border-color:transparent;
  12480. }
  12481. #u22188_input.hint.disabled {
  12482. position:absolute;
  12483. left:0px;
  12484. top:0px;
  12485. width:67px;
  12486. height:18px;
  12487. padding:2px 2px 2px 2px;
  12488. font-family:"Microsoft YaHei", sans-serif;
  12489. font-weight:400;
  12490. font-style:normal;
  12491. font-size:12px;
  12492. letter-spacing:normal;
  12493. color:#AAAAAA;
  12494. vertical-align:none;
  12495. text-align:left;
  12496. text-transform:none;
  12497. background-color:transparent;
  12498. border-color:transparent;
  12499. }
  12500. #u22188_div {
  12501. border-width:0px;
  12502. position:absolute;
  12503. left:0px;
  12504. top:0px;
  12505. width:67px;
  12506. height:18px;
  12507. background:inherit;
  12508. background-color:rgba(242, 242, 242, 0);
  12509. border-radius:0px;
  12510. filter:drop-shadow(none);
  12511. transition:none;
  12512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12513. font-weight:400;
  12514. font-style:normal;
  12515. font-size:14px;
  12516. }
  12517. #u22188 {
  12518. border-width:0px;
  12519. position:absolute;
  12520. left:1653px;
  12521. top:540px;
  12522. width:67px;
  12523. height:18px;
  12524. display:flex;
  12525. transition:none;
  12526. transform-origin:50% 50%;
  12527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12528. font-weight:400;
  12529. font-style:normal;
  12530. font-size:14px;
  12531. }
  12532. #u22188 .text {
  12533. position:absolute;
  12534. align-self:center;
  12535. padding:2px 2px 2px 2px;
  12536. box-sizing:border-box;
  12537. width:100%;
  12538. }
  12539. #u22188_div.hint {
  12540. border-width:0px;
  12541. position:absolute;
  12542. left:0px;
  12543. top:0px;
  12544. width:67px;
  12545. height:18px;
  12546. background:inherit;
  12547. background-color:rgba(242, 242, 242, 0);
  12548. border-radius:0px;
  12549. filter:drop-shadow(none);
  12550. transition:none;
  12551. font-family:"Microsoft YaHei", sans-serif;
  12552. font-weight:400;
  12553. font-style:normal;
  12554. font-size:14px;
  12555. }
  12556. #u22188.hint {
  12557. }
  12558. #u22188_div.disabled {
  12559. border-width:0px;
  12560. position:absolute;
  12561. left:0px;
  12562. top:0px;
  12563. width:67px;
  12564. height:18px;
  12565. background:inherit;
  12566. background-color:rgba(240, 240, 240, 1);
  12567. border-radius:0px;
  12568. filter:drop-shadow(none);
  12569. transition:none;
  12570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12571. font-weight:400;
  12572. font-style:normal;
  12573. font-size:14px;
  12574. }
  12575. #u22188.disabled {
  12576. }
  12577. #u22188_div.hint.disabled {
  12578. border-width:0px;
  12579. position:absolute;
  12580. left:0px;
  12581. top:0px;
  12582. width:67px;
  12583. height:18px;
  12584. background:inherit;
  12585. background-color:rgba(240, 240, 240, 1);
  12586. border-radius:0px;
  12587. filter:drop-shadow(none);
  12588. transition:none;
  12589. font-family:"Microsoft YaHei", sans-serif;
  12590. font-weight:400;
  12591. font-style:normal;
  12592. font-size:14px;
  12593. }
  12594. #u22188.hint.disabled {
  12595. }
  12596. #u22189_input {
  12597. position:absolute;
  12598. left:0px;
  12599. top:0px;
  12600. width:67px;
  12601. height:18px;
  12602. padding:2px 2px 2px 2px;
  12603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12604. font-weight:400;
  12605. font-style:normal;
  12606. font-size:14px;
  12607. letter-spacing:normal;
  12608. color:#000000;
  12609. vertical-align:none;
  12610. text-align:left;
  12611. text-transform:none;
  12612. background-color:transparent;
  12613. border-color:transparent;
  12614. }
  12615. #u22189_input.hint {
  12616. position:absolute;
  12617. left:0px;
  12618. top:0px;
  12619. width:67px;
  12620. height:18px;
  12621. padding:2px 2px 2px 2px;
  12622. font-family:"Microsoft YaHei", sans-serif;
  12623. font-weight:400;
  12624. font-style:normal;
  12625. font-size:12px;
  12626. letter-spacing:normal;
  12627. color:#AAAAAA;
  12628. vertical-align:none;
  12629. text-align:left;
  12630. text-transform:none;
  12631. background-color:transparent;
  12632. border-color:transparent;
  12633. }
  12634. #u22189_input.disabled {
  12635. position:absolute;
  12636. left:0px;
  12637. top:0px;
  12638. width:67px;
  12639. height:18px;
  12640. padding:2px 2px 2px 2px;
  12641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12642. font-weight:400;
  12643. font-style:normal;
  12644. font-size:14px;
  12645. letter-spacing:normal;
  12646. color:#000000;
  12647. vertical-align:none;
  12648. text-align:left;
  12649. text-transform:none;
  12650. background-color:transparent;
  12651. border-color:transparent;
  12652. }
  12653. #u22189_input.hint.disabled {
  12654. position:absolute;
  12655. left:0px;
  12656. top:0px;
  12657. width:67px;
  12658. height:18px;
  12659. padding:2px 2px 2px 2px;
  12660. font-family:"Microsoft YaHei", sans-serif;
  12661. font-weight:400;
  12662. font-style:normal;
  12663. font-size:12px;
  12664. letter-spacing:normal;
  12665. color:#AAAAAA;
  12666. vertical-align:none;
  12667. text-align:left;
  12668. text-transform:none;
  12669. background-color:transparent;
  12670. border-color:transparent;
  12671. }
  12672. #u22189_div {
  12673. border-width:0px;
  12674. position:absolute;
  12675. left:0px;
  12676. top:0px;
  12677. width:67px;
  12678. height:18px;
  12679. background:inherit;
  12680. background-color:rgba(242, 242, 242, 0);
  12681. border-radius:0px;
  12682. filter:drop-shadow(none);
  12683. transition:none;
  12684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12685. font-weight:400;
  12686. font-style:normal;
  12687. font-size:14px;
  12688. }
  12689. #u22189 {
  12690. border-width:0px;
  12691. position:absolute;
  12692. left:1735px;
  12693. top:540px;
  12694. width:67px;
  12695. height:18px;
  12696. display:flex;
  12697. transition:none;
  12698. transform-origin:50% 50%;
  12699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12700. font-weight:400;
  12701. font-style:normal;
  12702. font-size:14px;
  12703. }
  12704. #u22189 .text {
  12705. position:absolute;
  12706. align-self:center;
  12707. padding:2px 2px 2px 2px;
  12708. box-sizing:border-box;
  12709. width:100%;
  12710. }
  12711. #u22189_div.hint {
  12712. border-width:0px;
  12713. position:absolute;
  12714. left:0px;
  12715. top:0px;
  12716. width:67px;
  12717. height:18px;
  12718. background:inherit;
  12719. background-color:rgba(242, 242, 242, 0);
  12720. border-radius:0px;
  12721. filter:drop-shadow(none);
  12722. transition:none;
  12723. font-family:"Microsoft YaHei", sans-serif;
  12724. font-weight:400;
  12725. font-style:normal;
  12726. font-size:14px;
  12727. }
  12728. #u22189.hint {
  12729. }
  12730. #u22189_div.disabled {
  12731. border-width:0px;
  12732. position:absolute;
  12733. left:0px;
  12734. top:0px;
  12735. width:67px;
  12736. height:18px;
  12737. background:inherit;
  12738. background-color:rgba(240, 240, 240, 1);
  12739. border-radius:0px;
  12740. filter:drop-shadow(none);
  12741. transition:none;
  12742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12743. font-weight:400;
  12744. font-style:normal;
  12745. font-size:14px;
  12746. }
  12747. #u22189.disabled {
  12748. }
  12749. #u22189_div.hint.disabled {
  12750. border-width:0px;
  12751. position:absolute;
  12752. left:0px;
  12753. top:0px;
  12754. width:67px;
  12755. height:18px;
  12756. background:inherit;
  12757. background-color:rgba(240, 240, 240, 1);
  12758. border-radius:0px;
  12759. filter:drop-shadow(none);
  12760. transition:none;
  12761. font-family:"Microsoft YaHei", sans-serif;
  12762. font-weight:400;
  12763. font-style:normal;
  12764. font-size:14px;
  12765. }
  12766. #u22189.hint.disabled {
  12767. }
  12768. #u22190_div {
  12769. border-width:0px;
  12770. position:absolute;
  12771. left:0px;
  12772. top:0px;
  12773. width:738px;
  12774. height:160px;
  12775. background:inherit;
  12776. background-color:rgba(255, 255, 255, 1);
  12777. border-radius:10px;
  12778. filter:drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.34901960784313724));
  12779. transition:none;
  12780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12781. font-weight:400;
  12782. font-style:normal;
  12783. font-size:14px;
  12784. color:#555555;
  12785. line-height:30px;
  12786. }
  12787. #u22190 {
  12788. border-width:0px;
  12789. position:absolute;
  12790. left:1298px;
  12791. top:678px;
  12792. width:738px;
  12793. height:160px;
  12794. display:flex;
  12795. transition:none;
  12796. transform-origin:50% 50%;
  12797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12798. font-weight:400;
  12799. font-style:normal;
  12800. font-size:14px;
  12801. color:#555555;
  12802. line-height:30px;
  12803. }
  12804. #u22190 .text {
  12805. position:absolute;
  12806. align-self:flex-start;
  12807. padding:20px 20px 20px 20px;
  12808. box-sizing:border-box;
  12809. width:100%;
  12810. }
  12811. #u22190_text {
  12812. border-width:0px;
  12813. word-wrap:break-word;
  12814. text-transform:none;
  12815. }
  12816. #u22191_div {
  12817. border-width:0px;
  12818. position:absolute;
  12819. left:0px;
  12820. top:0px;
  12821. width:355px;
  12822. height:30px;
  12823. background:inherit;
  12824. background-color:rgba(255, 255, 255, 0);
  12825. border-top:0px;
  12826. border-right:0px;
  12827. border-bottom:0px;
  12828. border-radius:0px;
  12829. border-top-left-radius:0px;
  12830. border-bottom-left-radius:0px;
  12831. filter:drop-shadow(none);
  12832. transition:none;
  12833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12834. font-weight:400;
  12835. font-style:normal;
  12836. font-size:14px;
  12837. color:#D9001B;
  12838. }
  12839. #u22191 {
  12840. border-width:0px;
  12841. position:absolute;
  12842. left:1290px;
  12843. top:71px;
  12844. width:355px;
  12845. height:30px;
  12846. display:flex;
  12847. transition:none;
  12848. transform-origin:50% 50%;
  12849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12850. font-weight:400;
  12851. font-style:normal;
  12852. font-size:14px;
  12853. color:#D9001B;
  12854. }
  12855. #u22191 .text {
  12856. position:absolute;
  12857. align-self:center;
  12858. padding:5px 10px 5px 0px;
  12859. box-sizing:border-box;
  12860. width:100%;
  12861. }
  12862. #u22191_text {
  12863. border-width:0px;
  12864. white-space:nowrap;
  12865. text-transform:none;
  12866. }
  12867. #u22192_div {
  12868. border-width:0px;
  12869. position:absolute;
  12870. left:0px;
  12871. top:0px;
  12872. width:558px;
  12873. height:173px;
  12874. background:inherit;
  12875. background-color:rgba(255, 255, 255, 0);
  12876. border-radius:0px;
  12877. filter:drop-shadow(none);
  12878. transition:none;
  12879. font-size:14px;
  12880. color:#D9001B;
  12881. }
  12882. #u22192 {
  12883. border-width:0px;
  12884. position:absolute;
  12885. left:466px;
  12886. top:1248px;
  12887. width:558px;
  12888. height:173px;
  12889. display:flex;
  12890. transition:none;
  12891. transform-origin:50% 50%;
  12892. font-size:14px;
  12893. color:#D9001B;
  12894. }
  12895. #u22192 .text {
  12896. position:absolute;
  12897. align-self:flex-start;
  12898. padding:0px 0px 0px 0px;
  12899. box-sizing:border-box;
  12900. width:100%;
  12901. }
  12902. #u22192_text {
  12903. border-width:0px;
  12904. white-space:nowrap;
  12905. text-transform:none;
  12906. }
  12907. #u22193_div {
  12908. border-width:0px;
  12909. position:absolute;
  12910. left:0px;
  12911. top:0px;
  12912. width:299px;
  12913. height:50px;
  12914. background:inherit;
  12915. background-color:rgba(255, 255, 255, 0);
  12916. border-top:0px;
  12917. border-right:0px;
  12918. border-bottom:0px;
  12919. border-radius:0px;
  12920. border-top-left-radius:0px;
  12921. border-bottom-left-radius:0px;
  12922. filter:drop-shadow(none);
  12923. transition:none;
  12924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12925. font-weight:400;
  12926. font-style:normal;
  12927. font-size:14px;
  12928. color:#D9001B;
  12929. }
  12930. #u22193 {
  12931. border-width:0px;
  12932. position:absolute;
  12933. left:2076px;
  12934. top:583px;
  12935. width:299px;
  12936. height:50px;
  12937. display:flex;
  12938. transition:none;
  12939. transform-origin:50% 50%;
  12940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12941. font-weight:400;
  12942. font-style:normal;
  12943. font-size:14px;
  12944. color:#D9001B;
  12945. }
  12946. #u22193 .text {
  12947. position:absolute;
  12948. align-self:center;
  12949. padding:5px 10px 5px 0px;
  12950. box-sizing:border-box;
  12951. width:100%;
  12952. }
  12953. #u22193_text {
  12954. border-width:0px;
  12955. white-space:nowrap;
  12956. text-transform:none;
  12957. }
  12958. #u22194 {
  12959. border-width:0px;
  12960. position:absolute;
  12961. left:0px;
  12962. top:0px;
  12963. width:0px;
  12964. height:0px;
  12965. }
  12966. #u22195 {
  12967. border-width:0px;
  12968. position:absolute;
  12969. left:0px;
  12970. top:0px;
  12971. width:0px;
  12972. height:0px;
  12973. }
  12974. #u22196_div {
  12975. border-width:0px;
  12976. position:absolute;
  12977. left:0px;
  12978. top:0px;
  12979. width:380px;
  12980. height:164px;
  12981. background:inherit;
  12982. background-color:rgba(255, 255, 255, 1);
  12983. box-sizing:border-box;
  12984. border-width:1px;
  12985. border-style:solid;
  12986. border-color:rgba(204, 204, 204, 1);
  12987. border-radius:4px;
  12988. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  12989. transition:none;
  12990. font-family:"Microsoft YaHei", sans-serif;
  12991. font-weight:400;
  12992. font-style:normal;
  12993. }
  12994. #u22196 {
  12995. border-width:0px;
  12996. position:absolute;
  12997. left:603px;
  12998. top:981px;
  12999. width:380px;
  13000. height:164px;
  13001. display:flex;
  13002. transition:none;
  13003. transform-origin:50% 50%;
  13004. font-family:"Microsoft YaHei", sans-serif;
  13005. font-weight:400;
  13006. font-style:normal;
  13007. }
  13008. #u22196 .text {
  13009. position:absolute;
  13010. align-self:center;
  13011. padding:2px 2px 2px 2px;
  13012. box-sizing:border-box;
  13013. width:100%;
  13014. }
  13015. #u22196_text {
  13016. border-width:0px;
  13017. word-wrap:break-word;
  13018. text-transform:none;
  13019. visibility:hidden;
  13020. }
  13021. #u22197_div {
  13022. border-width:0px;
  13023. position:absolute;
  13024. left:0px;
  13025. top:0px;
  13026. width:299px;
  13027. height:44px;
  13028. background:inherit;
  13029. background-color:rgba(255, 255, 255, 0);
  13030. border-radius:0px;
  13031. filter:drop-shadow(none);
  13032. transition:none;
  13033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13034. font-weight:400;
  13035. font-style:normal;
  13036. font-size:14px;
  13037. color:#666666;
  13038. line-height:22px;
  13039. }
  13040. #u22197 {
  13041. border-width:0px;
  13042. position:absolute;
  13043. left:663px;
  13044. top:1036px;
  13045. width:299px;
  13046. height:44px;
  13047. display:flex;
  13048. transition:none;
  13049. transform-origin:50% 50%;
  13050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13051. font-weight:400;
  13052. font-style:normal;
  13053. font-size:14px;
  13054. color:#666666;
  13055. line-height:22px;
  13056. }
  13057. #u22197 .text {
  13058. position:absolute;
  13059. align-self:flex-start;
  13060. padding:0px 0px 0px 0px;
  13061. box-sizing:border-box;
  13062. width:100%;
  13063. }
  13064. #u22197_text {
  13065. border-width:0px;
  13066. word-wrap:break-word;
  13067. text-transform:none;
  13068. }
  13069. #u22198_div {
  13070. border-width:0px;
  13071. position:absolute;
  13072. left:0px;
  13073. top:0px;
  13074. width:163px;
  13075. height:21px;
  13076. background:inherit;
  13077. background-color:rgba(255, 255, 255, 0);
  13078. border-radius:0px;
  13079. filter:drop-shadow(none);
  13080. transition:none;
  13081. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13082. font-weight:650;
  13083. font-style:normal;
  13084. font-size:18px;
  13085. color:#000000;
  13086. line-height:22px;
  13087. }
  13088. #u22198 {
  13089. border-width:0px;
  13090. position:absolute;
  13091. left:663px;
  13092. top:1006px;
  13093. width:163px;
  13094. height:21px;
  13095. display:flex;
  13096. transition:none;
  13097. transform-origin:50% 50%;
  13098. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13099. font-weight:650;
  13100. font-style:normal;
  13101. font-size:18px;
  13102. color:#000000;
  13103. line-height:22px;
  13104. }
  13105. #u22198 .text {
  13106. position:absolute;
  13107. align-self:flex-start;
  13108. padding:0px 0px 0px 0px;
  13109. box-sizing:border-box;
  13110. width:100%;
  13111. }
  13112. #u22198_text {
  13113. border-width:0px;
  13114. white-space:nowrap;
  13115. text-transform:none;
  13116. }
  13117. #u22199_div {
  13118. border-width:0px;
  13119. position:absolute;
  13120. left:0px;
  13121. top:0px;
  13122. width:61px;
  13123. height:30px;
  13124. background:inherit;
  13125. background-color:rgba(24, 144, 255, 1);
  13126. border-radius:4px;
  13127. filter:drop-shadow(none);
  13128. transition:none;
  13129. font-family:"Microsoft YaHei", sans-serif;
  13130. font-weight:400;
  13131. font-style:normal;
  13132. font-size:14px;
  13133. color:#FFFFFF;
  13134. }
  13135. #u22199 {
  13136. border-width:0px;
  13137. position:absolute;
  13138. left:905px;
  13139. top:1096px;
  13140. width:61px;
  13141. height:30px;
  13142. display:flex;
  13143. transition:none;
  13144. transform-origin:50% 50%;
  13145. font-family:"Microsoft YaHei", sans-serif;
  13146. font-weight:400;
  13147. font-style:normal;
  13148. font-size:14px;
  13149. color:#FFFFFF;
  13150. }
  13151. #u22199 .text {
  13152. position:absolute;
  13153. align-self:center;
  13154. padding:2px 16px 2px 16px;
  13155. box-sizing:border-box;
  13156. width:100%;
  13157. }
  13158. #u22199_text {
  13159. border-width:0px;
  13160. white-space:nowrap;
  13161. text-transform:none;
  13162. }
  13163. #u22200_div {
  13164. border-width:0px;
  13165. position:absolute;
  13166. left:0px;
  13167. top:0px;
  13168. width:66px;
  13169. height:30px;
  13170. background:inherit;
  13171. background-color:rgba(255, 255, 255, 1);
  13172. box-sizing:border-box;
  13173. border-width:1px;
  13174. border-style:solid;
  13175. border-color:rgba(217, 217, 217, 1);
  13176. border-radius:4px;
  13177. filter:drop-shadow(none);
  13178. transition:none;
  13179. font-family:"Microsoft YaHei", sans-serif;
  13180. font-weight:400;
  13181. font-style:normal;
  13182. font-size:14px;
  13183. color:rgba(0, 0, 0, 0.6470588235294118);
  13184. line-height:21px;
  13185. }
  13186. #u22200 {
  13187. border-width:0px;
  13188. position:absolute;
  13189. left:823px;
  13190. top:1096px;
  13191. width:66px;
  13192. height:30px;
  13193. display:flex;
  13194. transition:none;
  13195. transform-origin:50% 50%;
  13196. font-family:"Microsoft YaHei", sans-serif;
  13197. font-weight:400;
  13198. font-style:normal;
  13199. font-size:14px;
  13200. color:rgba(0, 0, 0, 0.6470588235294118);
  13201. line-height:21px;
  13202. }
  13203. #u22200 .text {
  13204. position:absolute;
  13205. align-self:center;
  13206. padding:2px 16px 2px 16px;
  13207. box-sizing:border-box;
  13208. width:100%;
  13209. }
  13210. #u22200_text {
  13211. border-width:0px;
  13212. white-space:nowrap;
  13213. text-transform:none;
  13214. }
  13215. #u22201 {
  13216. border-width:0px;
  13217. position:absolute;
  13218. left:632px;
  13219. top:1010px;
  13220. width:20px;
  13221. height:20px;
  13222. display:flex;
  13223. transition:none;
  13224. }
  13225. #u22201 .text {
  13226. position:absolute;
  13227. align-self:center;
  13228. padding:2px 2px 2px 2px;
  13229. box-sizing:border-box;
  13230. width:100%;
  13231. }
  13232. #u22201_img {
  13233. border-width:0px;
  13234. position:absolute;
  13235. left:0px;
  13236. top:0px;
  13237. width:20px;
  13238. height:20px;
  13239. }
  13240. #u22201_text {
  13241. border-width:0px;
  13242. word-wrap:break-word;
  13243. text-transform:none;
  13244. visibility:hidden;
  13245. }
  13246. #u22202 {
  13247. border-width:0px;
  13248. position:absolute;
  13249. left:0px;
  13250. top:0px;
  13251. width:0px;
  13252. height:0px;
  13253. }
  13254. #u22203 {
  13255. border-width:0px;
  13256. position:absolute;
  13257. left:0px;
  13258. top:0px;
  13259. width:0px;
  13260. height:0px;
  13261. }
  13262. #u22204_div {
  13263. border-width:0px;
  13264. position:absolute;
  13265. left:0px;
  13266. top:0px;
  13267. width:380px;
  13268. height:164px;
  13269. background:inherit;
  13270. background-color:rgba(255, 255, 255, 1);
  13271. box-sizing:border-box;
  13272. border-width:1px;
  13273. border-style:solid;
  13274. border-color:rgba(204, 204, 204, 1);
  13275. border-radius:4px;
  13276. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  13277. transition:none;
  13278. font-family:"Microsoft YaHei", sans-serif;
  13279. font-weight:400;
  13280. font-style:normal;
  13281. }
  13282. #u22204 {
  13283. border-width:0px;
  13284. position:absolute;
  13285. left:1637px;
  13286. top:986px;
  13287. width:380px;
  13288. height:164px;
  13289. display:flex;
  13290. transition:none;
  13291. transform-origin:50% 50%;
  13292. font-family:"Microsoft YaHei", sans-serif;
  13293. font-weight:400;
  13294. font-style:normal;
  13295. }
  13296. #u22204 .text {
  13297. position:absolute;
  13298. align-self:center;
  13299. padding:2px 2px 2px 2px;
  13300. box-sizing:border-box;
  13301. width:100%;
  13302. }
  13303. #u22204_text {
  13304. border-width:0px;
  13305. word-wrap:break-word;
  13306. text-transform:none;
  13307. visibility:hidden;
  13308. }
  13309. #u22205_div {
  13310. border-width:0px;
  13311. position:absolute;
  13312. left:0px;
  13313. top:0px;
  13314. width:299px;
  13315. height:44px;
  13316. background:inherit;
  13317. background-color:rgba(255, 255, 255, 0);
  13318. border-radius:0px;
  13319. filter:drop-shadow(none);
  13320. transition:none;
  13321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13322. font-weight:400;
  13323. font-style:normal;
  13324. font-size:14px;
  13325. color:#666666;
  13326. line-height:22px;
  13327. }
  13328. #u22205 {
  13329. border-width:0px;
  13330. position:absolute;
  13331. left:1697px;
  13332. top:1041px;
  13333. width:299px;
  13334. height:44px;
  13335. display:flex;
  13336. transition:none;
  13337. transform-origin:50% 50%;
  13338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13339. font-weight:400;
  13340. font-style:normal;
  13341. font-size:14px;
  13342. color:#666666;
  13343. line-height:22px;
  13344. }
  13345. #u22205 .text {
  13346. position:absolute;
  13347. align-self:flex-start;
  13348. padding:0px 0px 0px 0px;
  13349. box-sizing:border-box;
  13350. width:100%;
  13351. }
  13352. #u22205_text {
  13353. border-width:0px;
  13354. word-wrap:break-word;
  13355. text-transform:none;
  13356. }
  13357. #u22206_div {
  13358. border-width:0px;
  13359. position:absolute;
  13360. left:0px;
  13361. top:0px;
  13362. width:163px;
  13363. height:21px;
  13364. background:inherit;
  13365. background-color:rgba(255, 255, 255, 0);
  13366. border-radius:0px;
  13367. filter:drop-shadow(none);
  13368. transition:none;
  13369. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13370. font-weight:650;
  13371. font-style:normal;
  13372. font-size:18px;
  13373. color:#000000;
  13374. line-height:22px;
  13375. }
  13376. #u22206 {
  13377. border-width:0px;
  13378. position:absolute;
  13379. left:1697px;
  13380. top:1011px;
  13381. width:163px;
  13382. height:21px;
  13383. display:flex;
  13384. transition:none;
  13385. transform-origin:50% 50%;
  13386. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  13387. font-weight:650;
  13388. font-style:normal;
  13389. font-size:18px;
  13390. color:#000000;
  13391. line-height:22px;
  13392. }
  13393. #u22206 .text {
  13394. position:absolute;
  13395. align-self:flex-start;
  13396. padding:0px 0px 0px 0px;
  13397. box-sizing:border-box;
  13398. width:100%;
  13399. }
  13400. #u22206_text {
  13401. border-width:0px;
  13402. white-space:nowrap;
  13403. text-transform:none;
  13404. }
  13405. #u22207_div {
  13406. border-width:0px;
  13407. position:absolute;
  13408. left:0px;
  13409. top:0px;
  13410. width:61px;
  13411. height:30px;
  13412. background:inherit;
  13413. background-color:rgba(24, 144, 255, 1);
  13414. border-radius:4px;
  13415. filter:drop-shadow(none);
  13416. transition:none;
  13417. font-family:"Microsoft YaHei", sans-serif;
  13418. font-weight:400;
  13419. font-style:normal;
  13420. font-size:14px;
  13421. color:#FFFFFF;
  13422. }
  13423. #u22207 {
  13424. border-width:0px;
  13425. position:absolute;
  13426. left:1939px;
  13427. top:1101px;
  13428. width:61px;
  13429. height:30px;
  13430. display:flex;
  13431. transition:none;
  13432. transform-origin:50% 50%;
  13433. font-family:"Microsoft YaHei", sans-serif;
  13434. font-weight:400;
  13435. font-style:normal;
  13436. font-size:14px;
  13437. color:#FFFFFF;
  13438. }
  13439. #u22207 .text {
  13440. position:absolute;
  13441. align-self:center;
  13442. padding:2px 16px 2px 16px;
  13443. box-sizing:border-box;
  13444. width:100%;
  13445. }
  13446. #u22207_text {
  13447. border-width:0px;
  13448. white-space:nowrap;
  13449. text-transform:none;
  13450. }
  13451. #u22208_div {
  13452. border-width:0px;
  13453. position:absolute;
  13454. left:0px;
  13455. top:0px;
  13456. width:66px;
  13457. height:30px;
  13458. background:inherit;
  13459. background-color:rgba(255, 255, 255, 1);
  13460. box-sizing:border-box;
  13461. border-width:1px;
  13462. border-style:solid;
  13463. border-color:rgba(217, 217, 217, 1);
  13464. border-radius:4px;
  13465. filter:drop-shadow(none);
  13466. transition:none;
  13467. font-family:"Microsoft YaHei", sans-serif;
  13468. font-weight:400;
  13469. font-style:normal;
  13470. font-size:14px;
  13471. color:rgba(0, 0, 0, 0.6470588235294118);
  13472. line-height:21px;
  13473. }
  13474. #u22208 {
  13475. border-width:0px;
  13476. position:absolute;
  13477. left:1857px;
  13478. top:1101px;
  13479. width:66px;
  13480. height:30px;
  13481. display:flex;
  13482. transition:none;
  13483. transform-origin:50% 50%;
  13484. font-family:"Microsoft YaHei", sans-serif;
  13485. font-weight:400;
  13486. font-style:normal;
  13487. font-size:14px;
  13488. color:rgba(0, 0, 0, 0.6470588235294118);
  13489. line-height:21px;
  13490. }
  13491. #u22208 .text {
  13492. position:absolute;
  13493. align-self:center;
  13494. padding:2px 16px 2px 16px;
  13495. box-sizing:border-box;
  13496. width:100%;
  13497. }
  13498. #u22208_text {
  13499. border-width:0px;
  13500. white-space:nowrap;
  13501. text-transform:none;
  13502. }
  13503. #u22209 {
  13504. border-width:0px;
  13505. position:absolute;
  13506. left:1666px;
  13507. top:1015px;
  13508. width:20px;
  13509. height:20px;
  13510. display:flex;
  13511. transition:none;
  13512. }
  13513. #u22209 .text {
  13514. position:absolute;
  13515. align-self:center;
  13516. padding:2px 2px 2px 2px;
  13517. box-sizing:border-box;
  13518. width:100%;
  13519. }
  13520. #u22209_img {
  13521. border-width:0px;
  13522. position:absolute;
  13523. left:0px;
  13524. top:0px;
  13525. width:20px;
  13526. height:20px;
  13527. }
  13528. #u22209_text {
  13529. border-width:0px;
  13530. word-wrap:break-word;
  13531. text-transform:none;
  13532. visibility:hidden;
  13533. }
  13534. #u22210_div {
  13535. border-width:0px;
  13536. position:absolute;
  13537. left:0px;
  13538. top:0px;
  13539. width:763px;
  13540. height:40px;
  13541. background:inherit;
  13542. background-color:rgba(255, 255, 255, 0);
  13543. border-radius:0px;
  13544. filter:drop-shadow(none);
  13545. transition:none;
  13546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13547. font-weight:400;
  13548. font-style:normal;
  13549. font-size:14px;
  13550. color:#D9001B;
  13551. }
  13552. #u22210 {
  13553. border-width:0px;
  13554. position:absolute;
  13555. left:300px;
  13556. top:443px;
  13557. width:763px;
  13558. height:40px;
  13559. display:flex;
  13560. transition:none;
  13561. transform-origin:50% 50%;
  13562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13563. font-weight:400;
  13564. font-style:normal;
  13565. font-size:14px;
  13566. color:#D9001B;
  13567. }
  13568. #u22210 .text {
  13569. position:absolute;
  13570. align-self:flex-start;
  13571. padding:0px 0px 0px 0px;
  13572. box-sizing:border-box;
  13573. width:100%;
  13574. }
  13575. #u22210_text {
  13576. border-width:0px;
  13577. white-space:nowrap;
  13578. text-transform:none;
  13579. }
  13580. #u22211_div {
  13581. border-width:0px;
  13582. position:absolute;
  13583. left:0px;
  13584. top:0px;
  13585. width:383px;
  13586. height:50px;
  13587. background:inherit;
  13588. background-color:rgba(255, 255, 255, 0);
  13589. border-top:0px;
  13590. border-right:0px;
  13591. border-bottom:0px;
  13592. border-radius:0px;
  13593. border-top-left-radius:0px;
  13594. border-bottom-left-radius:0px;
  13595. filter:drop-shadow(none);
  13596. transition:none;
  13597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13598. font-weight:400;
  13599. font-style:normal;
  13600. font-size:14px;
  13601. color:#D9001B;
  13602. }
  13603. #u22211 {
  13604. border-width:0px;
  13605. position:absolute;
  13606. left:1203px;
  13607. top:261px;
  13608. width:383px;
  13609. height:50px;
  13610. display:flex;
  13611. transition:none;
  13612. transform-origin:50% 50%;
  13613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13614. font-weight:400;
  13615. font-style:normal;
  13616. font-size:14px;
  13617. color:#D9001B;
  13618. }
  13619. #u22211 .text {
  13620. position:absolute;
  13621. align-self:center;
  13622. padding:5px 10px 5px 0px;
  13623. box-sizing:border-box;
  13624. width:100%;
  13625. }
  13626. #u22211_text {
  13627. border-width:0px;
  13628. white-space:nowrap;
  13629. text-transform:none;
  13630. }