styles.css 142 KB

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