styles.css 112 KB

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