styles.css 116 KB

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