styles.css 134 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2464px;
  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. #u11698_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. #u11698 {
  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. #u11698 .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. #u11698_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u11699_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. #u11699 {
  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. #u11699 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u11699_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u11700 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u11701_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u11701 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u11701 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u11701_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u11702_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. #u11702 {
  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. #u11702 .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. #u11702_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u11703_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. #u11703 {
  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. #u11703 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u11703_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u11704_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. #u11704 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u11704 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u11704_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u11705 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u11706_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. #u11706 {
  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. #u11706 .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. #u11706_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u11707_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u11707 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u11707 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u11707_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u11708 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u11709_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. #u11709 {
  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. #u11709 .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. #u11709_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u11710_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u11710 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u11710 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u11710_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u11711 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u11712_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. #u11712 {
  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. #u11712 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u11712_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u11713_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u11713 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u11713 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u11713_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u11714 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u11715_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. #u11715 {
  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. #u11715 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u11715_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u11716_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u11716 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u11716 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u11716_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u11717 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u11718_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. #u11718 {
  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. #u11718 .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. #u11718_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u11719_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u11719 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u11719 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u11719_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u11720 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u11721_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. #u11721 {
  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. #u11721 .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. #u11721_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u11722_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u11722 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u11722 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u11722_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u11723 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u11724_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. #u11724 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  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. #u11724 .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. #u11724_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u11725_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u11725 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u11725 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u11725_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u11726 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u11727_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. #u11727 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  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. #u11727 .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. #u11727_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u11728_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u11728 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u11728 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u11728_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u11729 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u11730_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. #u11730 {
  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. #u11730 .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. #u11730_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u11731_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u11731 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u11731 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u11731_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u11732 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u11733_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u11733 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u11733 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u11733_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u11734_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u11734 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u11734 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u11734_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u11735_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u11735_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u11735_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u11735 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u11735 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u11735_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u11735.disabled {
  1184. }
  1185. .u11735_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u11736_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u11736 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u11736 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u11736_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u11737_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u11737 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u11737 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u11737_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u11738_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u11738 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u11738 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u11738_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u11739 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u11740_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u11740 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u11740 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u11740_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u11741_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u11741 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u11741 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u11741_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u11742 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u11743_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u11743 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u11743 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u11743_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u11744_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u11744 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u11744 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u11744_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u11745 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u11746_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u11746 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u11746 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u11746_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u11747_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u11747 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u11747 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u11747_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u11748 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u11749_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u11749 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u11749 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u11749_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u11750_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u11750 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u11750 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u11750_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u11751 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u11752_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u11752 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u11752 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u11752_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u11753_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u11753 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u11753 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u11753_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u11754_img {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:2px;
  1720. height:12px;
  1721. }
  1722. #u11754 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:1375px;
  1726. top:22px;
  1727. width:1px;
  1728. height:11px;
  1729. display:flex;
  1730. }
  1731. #u11754 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 2px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u11754_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. visibility:hidden;
  1743. }
  1744. #u11755_div {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:1252px;
  1750. height:1179px;
  1751. background:inherit;
  1752. background-color:rgba(255, 255, 255, 1);
  1753. border:none;
  1754. border-radius:0px;
  1755. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1756. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1757. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1758. }
  1759. #u11755 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:335px;
  1763. top:49px;
  1764. width:1252px;
  1765. height:1179px;
  1766. display:flex;
  1767. }
  1768. #u11755 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:2px 2px 2px 2px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u11755_text {
  1776. border-width:0px;
  1777. word-wrap:break-word;
  1778. text-transform:none;
  1779. visibility:hidden;
  1780. }
  1781. #u11756_div {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:91px;
  1787. height:50px;
  1788. background:inherit;
  1789. background-color:rgba(255, 255, 255, 0);
  1790. border:none;
  1791. border-left:0px;
  1792. border-top:0px;
  1793. border-right:0px;
  1794. border-radius:0px;
  1795. border-bottom-right-radius:0px;
  1796. border-bottom-left-radius:0px;
  1797. -moz-box-shadow:none;
  1798. -webkit-box-shadow:none;
  1799. box-shadow:none;
  1800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1801. font-weight:400;
  1802. font-style:normal;
  1803. font-size:18px;
  1804. }
  1805. #u11756 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:365px;
  1809. top:54px;
  1810. width:91px;
  1811. height:50px;
  1812. display:flex;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:18px;
  1817. }
  1818. #u11756 .text {
  1819. position:absolute;
  1820. align-self:center;
  1821. padding:0px 0px 0px 0px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u11756_text {
  1826. border-width:0px;
  1827. white-space:nowrap;
  1828. text-transform:none;
  1829. }
  1830. #u11757_div {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:55px;
  1836. height:30px;
  1837. background:inherit;
  1838. background-color:rgba(25, 140, 251, 1);
  1839. border:none;
  1840. border-radius:4px;
  1841. -moz-box-shadow:none;
  1842. -webkit-box-shadow:none;
  1843. box-shadow:none;
  1844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1845. font-weight:400;
  1846. font-style:normal;
  1847. font-size:12px;
  1848. color:#FFFFFF;
  1849. }
  1850. #u11757 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:365px;
  1854. top:154px;
  1855. width:55px;
  1856. height:30px;
  1857. display:flex;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:12px;
  1862. color:#FFFFFF;
  1863. }
  1864. #u11757 .text {
  1865. position:absolute;
  1866. align-self:center;
  1867. padding:5px 15px 5px 15px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u11757_text {
  1872. border-width:0px;
  1873. white-space:nowrap;
  1874. text-transform:none;
  1875. }
  1876. #u11758_div {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:59px;
  1882. height:30px;
  1883. background:inherit;
  1884. background-color:rgba(41, 143, 255, 1);
  1885. border:none;
  1886. border-radius:4px;
  1887. -moz-box-shadow:none;
  1888. -webkit-box-shadow:none;
  1889. box-shadow:none;
  1890. font-family:'Microsoft YaHei', sans-serif;
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:14px;
  1894. color:#FFFFFF;
  1895. }
  1896. #u11758 {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:665px;
  1900. top:111px;
  1901. width:59px;
  1902. height:30px;
  1903. display:flex;
  1904. font-family:'Microsoft YaHei', sans-serif;
  1905. font-weight:400;
  1906. font-style:normal;
  1907. font-size:14px;
  1908. color:#FFFFFF;
  1909. }
  1910. #u11758 .text {
  1911. position:absolute;
  1912. align-self:center;
  1913. padding:5px 15px 5px 15px;
  1914. box-sizing:border-box;
  1915. width:100%;
  1916. }
  1917. #u11758_text {
  1918. border-width:0px;
  1919. white-space:nowrap;
  1920. text-transform:none;
  1921. }
  1922. #u11759_div {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:0px;
  1926. top:0px;
  1927. width:55px;
  1928. height:30px;
  1929. background:inherit;
  1930. background-color:rgba(255, 255, 255, 1);
  1931. box-sizing:border-box;
  1932. border-width:1px;
  1933. border-style:solid;
  1934. border-color:rgba(170, 170, 170, 1);
  1935. border-radius:4px;
  1936. -moz-box-shadow:none;
  1937. -webkit-box-shadow:none;
  1938. box-shadow:none;
  1939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1940. font-weight:400;
  1941. font-style:normal;
  1942. font-size:12px;
  1943. color:#555555;
  1944. }
  1945. #u11759 {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:734px;
  1949. top:111px;
  1950. width:55px;
  1951. height:30px;
  1952. display:flex;
  1953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1954. font-weight:400;
  1955. font-style:normal;
  1956. font-size:12px;
  1957. color:#555555;
  1958. }
  1959. #u11759 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:5px 15px 5px 15px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u11759_text {
  1967. border-width:0px;
  1968. white-space:nowrap;
  1969. text-transform:none;
  1970. }
  1971. #u11760 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:0px;
  1975. top:0px;
  1976. width:0px;
  1977. height:0px;
  1978. }
  1979. #u11761_div {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:140px;
  1985. height:30px;
  1986. background:inherit;
  1987. background-color:rgba(255, 255, 255, 1);
  1988. box-sizing:border-box;
  1989. border-width:1px;
  1990. border-style:solid;
  1991. border-color:rgba(201, 201, 201, 1);
  1992. border-radius:4px;
  1993. -moz-box-shadow:none;
  1994. -webkit-box-shadow:none;
  1995. box-shadow:none;
  1996. font-family:'Microsoft YaHei', sans-serif;
  1997. font-weight:400;
  1998. font-style:normal;
  1999. font-size:14px;
  2000. color:#CCCCCC;
  2001. text-align:left;
  2002. }
  2003. #u11761 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:515px;
  2007. top:111px;
  2008. width:140px;
  2009. height:30px;
  2010. display:flex;
  2011. font-family:'Microsoft YaHei', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:14px;
  2015. color:#CCCCCC;
  2016. text-align:left;
  2017. }
  2018. #u11761 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 8px 2px 8px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u11761_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. visibility:hidden;
  2030. }
  2031. #u11762_input {
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:127px;
  2036. height:25px;
  2037. padding:2px 2px 2px 2px;
  2038. font-family:'Microsoft YaHei', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:10px;
  2042. letter-spacing:normal;
  2043. color:#000000;
  2044. vertical-align:none;
  2045. text-align:left;
  2046. text-transform:none;
  2047. background-color:transparent;
  2048. border-color:transparent;
  2049. }
  2050. #u11762_input.disabled {
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:127px;
  2055. height:25px;
  2056. padding:2px 2px 2px 2px;
  2057. font-family:'Microsoft YaHei', sans-serif;
  2058. font-weight:400;
  2059. font-style:normal;
  2060. font-size:10px;
  2061. letter-spacing:normal;
  2062. color:#000000;
  2063. vertical-align:none;
  2064. text-align:left;
  2065. text-transform:none;
  2066. background-color:transparent;
  2067. border-color:transparent;
  2068. }
  2069. #u11762_div {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:127px;
  2075. height:25px;
  2076. background:inherit;
  2077. background-color:rgba(255, 255, 255, 1);
  2078. border:none;
  2079. border-radius:0px;
  2080. -moz-box-shadow:none;
  2081. -webkit-box-shadow:none;
  2082. box-shadow:none;
  2083. font-family:'Microsoft YaHei', sans-serif;
  2084. font-weight:400;
  2085. font-style:normal;
  2086. font-size:10px;
  2087. }
  2088. #u11762 {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:523px;
  2092. top:112px;
  2093. width:127px;
  2094. height:25px;
  2095. display:flex;
  2096. font-family:'Microsoft YaHei', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:10px;
  2100. }
  2101. #u11762 .text {
  2102. position:absolute;
  2103. align-self:center;
  2104. padding:2px 2px 2px 2px;
  2105. box-sizing:border-box;
  2106. width:100%;
  2107. }
  2108. #u11762_div.disabled {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:127px;
  2114. height:25px;
  2115. background:inherit;
  2116. background-color:rgba(240, 240, 240, 1);
  2117. border:none;
  2118. border-radius:0px;
  2119. -moz-box-shadow:none;
  2120. -webkit-box-shadow:none;
  2121. box-shadow:none;
  2122. font-family:'Microsoft YaHei', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:10px;
  2126. }
  2127. #u11762.disabled {
  2128. }
  2129. #u11763 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:0px;
  2133. top:0px;
  2134. width:0px;
  2135. height:0px;
  2136. }
  2137. #u11764_div {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:0px;
  2141. top:0px;
  2142. width:140px;
  2143. height:30px;
  2144. background:inherit;
  2145. background-color:rgba(255, 255, 255, 1);
  2146. box-sizing:border-box;
  2147. border-width:1px;
  2148. border-style:solid;
  2149. border-color:rgba(215, 215, 215, 1);
  2150. border-radius:4px;
  2151. -moz-box-shadow:none;
  2152. -webkit-box-shadow:none;
  2153. box-shadow:none;
  2154. font-size:11px;
  2155. }
  2156. #u11764 {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:365px;
  2160. top:111px;
  2161. width:140px;
  2162. height:30px;
  2163. display:flex;
  2164. font-size:11px;
  2165. }
  2166. #u11764 .text {
  2167. position:absolute;
  2168. align-self:center;
  2169. padding:2px 2px 2px 2px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u11764_text {
  2174. border-width:0px;
  2175. word-wrap:break-word;
  2176. text-transform:none;
  2177. visibility:hidden;
  2178. }
  2179. #u11765_input {
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:120px;
  2184. height:23px;
  2185. padding:2px 2px 2px 2px;
  2186. font-family:'ArialMT', 'Arial', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:11px;
  2190. letter-spacing:normal;
  2191. color:#AAAAAA;
  2192. vertical-align:none;
  2193. text-align:left;
  2194. text-transform:none;
  2195. background-color:transparent;
  2196. border-color:transparent;
  2197. }
  2198. #u11765_input.disabled {
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:120px;
  2203. height:23px;
  2204. padding:2px 2px 2px 2px;
  2205. font-family:'ArialMT', 'Arial', sans-serif;
  2206. font-weight:400;
  2207. font-style:normal;
  2208. font-size:11px;
  2209. letter-spacing:normal;
  2210. color:#AAAAAA;
  2211. vertical-align:none;
  2212. text-align:left;
  2213. text-transform:none;
  2214. background-color:transparent;
  2215. border-color:transparent;
  2216. }
  2217. #u11765_div {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:120px;
  2223. height:23px;
  2224. background:inherit;
  2225. background-color:rgba(255, 255, 255, 1);
  2226. border:none;
  2227. border-radius:0px;
  2228. -moz-box-shadow:none;
  2229. -webkit-box-shadow:none;
  2230. box-shadow:none;
  2231. font-size:11px;
  2232. color:#AAAAAA;
  2233. }
  2234. #u11765 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:372px;
  2238. top:113px;
  2239. width:120px;
  2240. height:23px;
  2241. display:flex;
  2242. font-size:11px;
  2243. color:#AAAAAA;
  2244. }
  2245. #u11765 .text {
  2246. position:absolute;
  2247. align-self:flex-start;
  2248. padding:2px 2px 2px 2px;
  2249. box-sizing:border-box;
  2250. width:100%;
  2251. }
  2252. #u11765_div.disabled {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:0px;
  2256. top:0px;
  2257. width:120px;
  2258. height:23px;
  2259. background:inherit;
  2260. background-color:rgba(240, 240, 240, 1);
  2261. border:none;
  2262. border-radius:0px;
  2263. -moz-box-shadow:none;
  2264. -webkit-box-shadow:none;
  2265. box-shadow:none;
  2266. font-size:11px;
  2267. color:#AAAAAA;
  2268. }
  2269. #u11765.disabled {
  2270. }
  2271. .u11765_input_option {
  2272. font-size:11px;
  2273. }
  2274. #u11766 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:365px;
  2278. top:194px;
  2279. width:1206px;
  2280. height:170px;
  2281. }
  2282. #u11767_img {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:75px;
  2288. height:38px;
  2289. }
  2290. #u11767 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:75px;
  2296. height:38px;
  2297. display:flex;
  2298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. font-size:14px;
  2302. color:#FFFFFF;
  2303. }
  2304. #u11767 .text {
  2305. position:absolute;
  2306. align-self:center;
  2307. padding:2px 2px 2px 0px;
  2308. box-sizing:border-box;
  2309. width:100%;
  2310. }
  2311. #u11767_text {
  2312. border-width:0px;
  2313. word-wrap:break-word;
  2314. text-transform:none;
  2315. }
  2316. #u11768_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:132px;
  2322. height:38px;
  2323. }
  2324. #u11768 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:75px;
  2328. top:0px;
  2329. width:132px;
  2330. height:38px;
  2331. display:flex;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:14px;
  2336. color:#FFFFFF;
  2337. }
  2338. #u11768 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:2px 2px 2px 0px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u11768_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. }
  2350. #u11769_img {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:75px;
  2356. height:38px;
  2357. }
  2358. #u11769 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:207px;
  2362. top:0px;
  2363. width:75px;
  2364. height:38px;
  2365. display:flex;
  2366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:14px;
  2370. color:#FFFFFF;
  2371. }
  2372. #u11769 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 0px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u11769_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. }
  2384. #u11770_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:75px;
  2390. height:38px;
  2391. }
  2392. #u11770 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:282px;
  2396. top:0px;
  2397. width:75px;
  2398. height:38px;
  2399. display:flex;
  2400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2401. font-weight:400;
  2402. font-style:normal;
  2403. font-size:14px;
  2404. color:#FFFFFF;
  2405. }
  2406. #u11770 .text {
  2407. position:absolute;
  2408. align-self:center;
  2409. padding:2px 2px 2px 0px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u11770_text {
  2414. border-width:0px;
  2415. word-wrap:break-word;
  2416. text-transform:none;
  2417. }
  2418. #u11771_img {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:0px;
  2422. top:0px;
  2423. width:132px;
  2424. height:38px;
  2425. }
  2426. #u11771 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:357px;
  2430. top:0px;
  2431. width:132px;
  2432. height:38px;
  2433. display:flex;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:14px;
  2438. color:#FFFFFF;
  2439. }
  2440. #u11771 .text {
  2441. position:absolute;
  2442. align-self:center;
  2443. padding:2px 2px 2px 0px;
  2444. box-sizing:border-box;
  2445. width:100%;
  2446. }
  2447. #u11771_text {
  2448. border-width:0px;
  2449. word-wrap:break-word;
  2450. text-transform:none;
  2451. }
  2452. #u11772_img {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:0px;
  2456. top:0px;
  2457. width:170px;
  2458. height:38px;
  2459. }
  2460. #u11772 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:489px;
  2464. top:0px;
  2465. width:170px;
  2466. height:38px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. font-size:14px;
  2472. color:#FFFFFF;
  2473. }
  2474. #u11772 .text {
  2475. position:absolute;
  2476. align-self:center;
  2477. padding:2px 2px 2px 0px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u11772_text {
  2482. border-width:0px;
  2483. word-wrap:break-word;
  2484. text-transform:none;
  2485. }
  2486. #u11773_img {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:170px;
  2492. height:38px;
  2493. }
  2494. #u11773 {
  2495. border-width:0px;
  2496. position:absolute;
  2497. left:659px;
  2498. top:0px;
  2499. width:170px;
  2500. height:38px;
  2501. display:flex;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:14px;
  2506. color:#FFFFFF;
  2507. }
  2508. #u11773 .text {
  2509. position:absolute;
  2510. align-self:center;
  2511. padding:2px 2px 2px 0px;
  2512. box-sizing:border-box;
  2513. width:100%;
  2514. }
  2515. #u11773_text {
  2516. border-width:0px;
  2517. word-wrap:break-word;
  2518. text-transform:none;
  2519. }
  2520. #u11774_img {
  2521. border-width:0px;
  2522. position:absolute;
  2523. left:0px;
  2524. top:0px;
  2525. width:132px;
  2526. height:38px;
  2527. }
  2528. #u11774 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:829px;
  2532. top:0px;
  2533. width:132px;
  2534. height:38px;
  2535. display:flex;
  2536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2537. font-weight:400;
  2538. font-style:normal;
  2539. font-size:14px;
  2540. color:#FFFFFF;
  2541. }
  2542. #u11774 .text {
  2543. position:absolute;
  2544. align-self:center;
  2545. padding:2px 2px 2px 0px;
  2546. box-sizing:border-box;
  2547. width:100%;
  2548. }
  2549. #u11774_text {
  2550. border-width:0px;
  2551. word-wrap:break-word;
  2552. text-transform:none;
  2553. }
  2554. #u11775_img {
  2555. border-width:0px;
  2556. position:absolute;
  2557. left:0px;
  2558. top:0px;
  2559. width:245px;
  2560. height:38px;
  2561. }
  2562. #u11775 {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:961px;
  2566. top:0px;
  2567. width:245px;
  2568. height:38px;
  2569. display:flex;
  2570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:14px;
  2574. color:#FFFFFF;
  2575. }
  2576. #u11775 .text {
  2577. position:absolute;
  2578. align-self:center;
  2579. padding:2px 2px 2px 0px;
  2580. box-sizing:border-box;
  2581. width:100%;
  2582. }
  2583. #u11775_text {
  2584. border-width:0px;
  2585. word-wrap:break-word;
  2586. text-transform:none;
  2587. }
  2588. #u11776_img {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:75px;
  2594. height:44px;
  2595. }
  2596. #u11776 {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:38px;
  2601. width:75px;
  2602. height:44px;
  2603. display:flex;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. font-size:14px;
  2608. color:#333333;
  2609. }
  2610. #u11776 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 2px 2px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u11776_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. }
  2622. #u11777_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:132px;
  2628. height:44px;
  2629. }
  2630. #u11777 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:75px;
  2634. top:38px;
  2635. width:132px;
  2636. height:44px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:14px;
  2642. color:#333333;
  2643. }
  2644. #u11777 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u11777_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. }
  2656. #u11778_img {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:0px;
  2660. top:0px;
  2661. width:75px;
  2662. height:44px;
  2663. }
  2664. #u11778 {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:207px;
  2668. top:38px;
  2669. width:75px;
  2670. height:44px;
  2671. display:flex;
  2672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2673. font-weight:400;
  2674. font-style:normal;
  2675. font-size:14px;
  2676. color:#333333;
  2677. }
  2678. #u11778 .text {
  2679. position:absolute;
  2680. align-self:center;
  2681. padding:2px 2px 2px 0px;
  2682. box-sizing:border-box;
  2683. width:100%;
  2684. }
  2685. #u11778_text {
  2686. border-width:0px;
  2687. word-wrap:break-word;
  2688. text-transform:none;
  2689. }
  2690. #u11779_img {
  2691. border-width:0px;
  2692. position:absolute;
  2693. left:0px;
  2694. top:0px;
  2695. width:75px;
  2696. height:44px;
  2697. }
  2698. #u11779 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:282px;
  2702. top:38px;
  2703. width:75px;
  2704. height:44px;
  2705. display:flex;
  2706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2707. font-weight:400;
  2708. font-style:normal;
  2709. font-size:14px;
  2710. color:#333333;
  2711. }
  2712. #u11779 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 0px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u11779_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. }
  2724. #u11780_img {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:132px;
  2730. height:44px;
  2731. }
  2732. #u11780 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:357px;
  2736. top:38px;
  2737. width:132px;
  2738. height:44px;
  2739. display:flex;
  2740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:14px;
  2744. color:#333333;
  2745. }
  2746. #u11780 .text {
  2747. position:absolute;
  2748. align-self:center;
  2749. padding:2px 2px 2px 0px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u11780_text {
  2754. border-width:0px;
  2755. word-wrap:break-word;
  2756. text-transform:none;
  2757. visibility:hidden;
  2758. }
  2759. #u11781_img {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:170px;
  2765. height:44px;
  2766. }
  2767. #u11781 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:489px;
  2771. top:38px;
  2772. width:170px;
  2773. height:44px;
  2774. display:flex;
  2775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:14px;
  2779. color:#333333;
  2780. }
  2781. #u11781 .text {
  2782. position:absolute;
  2783. align-self:center;
  2784. padding:2px 2px 2px 0px;
  2785. box-sizing:border-box;
  2786. width:100%;
  2787. }
  2788. #u11781_text {
  2789. border-width:0px;
  2790. word-wrap:break-word;
  2791. text-transform:none;
  2792. }
  2793. #u11782_img {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:170px;
  2799. height:44px;
  2800. }
  2801. #u11782 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:659px;
  2805. top:38px;
  2806. width:170px;
  2807. height:44px;
  2808. display:flex;
  2809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:14px;
  2813. color:#333333;
  2814. }
  2815. #u11782 .text {
  2816. position:absolute;
  2817. align-self:center;
  2818. padding:2px 2px 2px 0px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u11782_text {
  2823. border-width:0px;
  2824. word-wrap:break-word;
  2825. text-transform:none;
  2826. }
  2827. #u11783_img {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:132px;
  2833. height:44px;
  2834. }
  2835. #u11783 {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:829px;
  2839. top:38px;
  2840. width:132px;
  2841. height:44px;
  2842. display:flex;
  2843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:14px;
  2847. color:#1890FF;
  2848. }
  2849. #u11783 .text {
  2850. position:absolute;
  2851. align-self:center;
  2852. padding:2px 2px 2px 0px;
  2853. box-sizing:border-box;
  2854. width:100%;
  2855. }
  2856. #u11783_text {
  2857. border-width:0px;
  2858. word-wrap:break-word;
  2859. text-transform:none;
  2860. }
  2861. #u11784_img {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:0px;
  2865. top:0px;
  2866. width:245px;
  2867. height:44px;
  2868. }
  2869. #u11784 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:961px;
  2873. top:38px;
  2874. width:245px;
  2875. height:44px;
  2876. display:flex;
  2877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:14px;
  2881. color:#1890FF;
  2882. }
  2883. #u11784 .text {
  2884. position:absolute;
  2885. align-self:center;
  2886. padding:2px 2px 2px 0px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u11784_text {
  2891. border-width:0px;
  2892. word-wrap:break-word;
  2893. text-transform:none;
  2894. }
  2895. #u11785_img {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:75px;
  2901. height:44px;
  2902. }
  2903. #u11785 {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:82px;
  2908. width:75px;
  2909. height:44px;
  2910. display:flex;
  2911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2912. font-weight:400;
  2913. font-style:normal;
  2914. font-size:14px;
  2915. color:#333333;
  2916. }
  2917. #u11785 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 0px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u11785_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. }
  2929. #u11786_img {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:0px;
  2933. top:0px;
  2934. width:132px;
  2935. height:44px;
  2936. }
  2937. #u11786 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:75px;
  2941. top:82px;
  2942. width:132px;
  2943. height:44px;
  2944. display:flex;
  2945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2946. font-weight:400;
  2947. font-style:normal;
  2948. font-size:14px;
  2949. color:#333333;
  2950. }
  2951. #u11786 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 2px 2px 0px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u11786_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. }
  2963. #u11787_img {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:75px;
  2969. height:44px;
  2970. }
  2971. #u11787 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:207px;
  2975. top:82px;
  2976. width:75px;
  2977. height:44px;
  2978. display:flex;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:14px;
  2983. color:#333333;
  2984. }
  2985. #u11787 .text {
  2986. position:absolute;
  2987. align-self:center;
  2988. padding:2px 2px 2px 0px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u11787_text {
  2993. border-width:0px;
  2994. word-wrap:break-word;
  2995. text-transform:none;
  2996. }
  2997. #u11788_img {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:75px;
  3003. height:44px;
  3004. }
  3005. #u11788 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:282px;
  3009. top:82px;
  3010. width:75px;
  3011. height:44px;
  3012. display:flex;
  3013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:14px;
  3017. color:#333333;
  3018. }
  3019. #u11788 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 2px 2px 0px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u11788_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. }
  3031. #u11789_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:132px;
  3037. height:44px;
  3038. }
  3039. #u11789 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:357px;
  3043. top:82px;
  3044. width:132px;
  3045. height:44px;
  3046. display:flex;
  3047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3048. font-weight:400;
  3049. font-style:normal;
  3050. font-size:14px;
  3051. color:#333333;
  3052. }
  3053. #u11789 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 0px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u11789_text {
  3061. border-width:0px;
  3062. word-wrap:break-word;
  3063. text-transform:none;
  3064. visibility:hidden;
  3065. }
  3066. #u11790_img {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:170px;
  3072. height:44px;
  3073. }
  3074. #u11790 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:489px;
  3078. top:82px;
  3079. width:170px;
  3080. height:44px;
  3081. display:flex;
  3082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:14px;
  3086. color:#333333;
  3087. }
  3088. #u11790 .text {
  3089. position:absolute;
  3090. align-self:center;
  3091. padding:2px 2px 2px 0px;
  3092. box-sizing:border-box;
  3093. width:100%;
  3094. }
  3095. #u11790_text {
  3096. border-width:0px;
  3097. word-wrap:break-word;
  3098. text-transform:none;
  3099. }
  3100. #u11791_img {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:170px;
  3106. height:44px;
  3107. }
  3108. #u11791 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:659px;
  3112. top:82px;
  3113. width:170px;
  3114. height:44px;
  3115. display:flex;
  3116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:14px;
  3120. color:#333333;
  3121. }
  3122. #u11791 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 2px 2px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u11791_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. }
  3134. #u11792_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:132px;
  3140. height:44px;
  3141. }
  3142. #u11792 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:829px;
  3146. top:82px;
  3147. width:132px;
  3148. height:44px;
  3149. display:flex;
  3150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. font-size:14px;
  3154. color:#1890FF;
  3155. }
  3156. #u11792 .text {
  3157. position:absolute;
  3158. align-self:center;
  3159. padding:2px 2px 2px 0px;
  3160. box-sizing:border-box;
  3161. width:100%;
  3162. }
  3163. #u11792_text {
  3164. border-width:0px;
  3165. word-wrap:break-word;
  3166. text-transform:none;
  3167. }
  3168. #u11793_img {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:0px;
  3173. width:245px;
  3174. height:44px;
  3175. }
  3176. #u11793 {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:961px;
  3180. top:82px;
  3181. width:245px;
  3182. height:44px;
  3183. display:flex;
  3184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3185. font-weight:400;
  3186. font-style:normal;
  3187. font-size:14px;
  3188. color:#1890FF;
  3189. }
  3190. #u11793 .text {
  3191. position:absolute;
  3192. align-self:center;
  3193. padding:2px 2px 2px 0px;
  3194. box-sizing:border-box;
  3195. width:100%;
  3196. }
  3197. #u11793_text {
  3198. border-width:0px;
  3199. word-wrap:break-word;
  3200. text-transform:none;
  3201. }
  3202. #u11794_img {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:0px;
  3206. top:0px;
  3207. width:75px;
  3208. height:44px;
  3209. }
  3210. #u11794 {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:0px;
  3214. top:126px;
  3215. width:75px;
  3216. height:44px;
  3217. display:flex;
  3218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3219. font-weight:400;
  3220. font-style:normal;
  3221. font-size:14px;
  3222. color:#333333;
  3223. }
  3224. #u11794 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 2px 2px 0px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u11794_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. }
  3236. #u11795_img {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:0px;
  3240. top:0px;
  3241. width:132px;
  3242. height:44px;
  3243. }
  3244. #u11795 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:75px;
  3248. top:126px;
  3249. width:132px;
  3250. height:44px;
  3251. display:flex;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:14px;
  3256. color:#333333;
  3257. }
  3258. #u11795 .text {
  3259. position:absolute;
  3260. align-self:center;
  3261. padding:2px 2px 2px 0px;
  3262. box-sizing:border-box;
  3263. width:100%;
  3264. }
  3265. #u11795_text {
  3266. border-width:0px;
  3267. word-wrap:break-word;
  3268. text-transform:none;
  3269. }
  3270. #u11796_img {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:0px;
  3274. top:0px;
  3275. width:75px;
  3276. height:44px;
  3277. }
  3278. #u11796 {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:207px;
  3282. top:126px;
  3283. width:75px;
  3284. height:44px;
  3285. display:flex;
  3286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3287. font-weight:400;
  3288. font-style:normal;
  3289. font-size:14px;
  3290. color:#333333;
  3291. }
  3292. #u11796 .text {
  3293. position:absolute;
  3294. align-self:center;
  3295. padding:2px 2px 2px 0px;
  3296. box-sizing:border-box;
  3297. width:100%;
  3298. }
  3299. #u11796_text {
  3300. border-width:0px;
  3301. word-wrap:break-word;
  3302. text-transform:none;
  3303. }
  3304. #u11797_img {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:0px;
  3309. width:75px;
  3310. height:44px;
  3311. }
  3312. #u11797 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:282px;
  3316. top:126px;
  3317. width:75px;
  3318. height:44px;
  3319. display:flex;
  3320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:14px;
  3324. color:#333333;
  3325. }
  3326. #u11797 .text {
  3327. position:absolute;
  3328. align-self:center;
  3329. padding:2px 2px 2px 0px;
  3330. box-sizing:border-box;
  3331. width:100%;
  3332. }
  3333. #u11797_text {
  3334. border-width:0px;
  3335. word-wrap:break-word;
  3336. text-transform:none;
  3337. }
  3338. #u11798_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:132px;
  3344. height:44px;
  3345. }
  3346. #u11798 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:357px;
  3350. top:126px;
  3351. width:132px;
  3352. height:44px;
  3353. display:flex;
  3354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:14px;
  3358. color:#333333;
  3359. }
  3360. #u11798 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u11798_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. visibility:hidden;
  3372. }
  3373. #u11799_img {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:0px;
  3377. top:0px;
  3378. width:170px;
  3379. height:44px;
  3380. }
  3381. #u11799 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:489px;
  3385. top:126px;
  3386. width:170px;
  3387. height:44px;
  3388. display:flex;
  3389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:14px;
  3393. color:#333333;
  3394. }
  3395. #u11799 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 0px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u11799_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. }
  3407. #u11800_img {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:170px;
  3413. height:44px;
  3414. }
  3415. #u11800 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:659px;
  3419. top:126px;
  3420. width:170px;
  3421. height:44px;
  3422. display:flex;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:14px;
  3427. color:#333333;
  3428. }
  3429. #u11800 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 2px 2px 0px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u11800_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. }
  3441. #u11801_img {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:132px;
  3447. height:44px;
  3448. }
  3449. #u11801 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:829px;
  3453. top:126px;
  3454. width:132px;
  3455. height:44px;
  3456. display:flex;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:14px;
  3461. color:#1890FF;
  3462. }
  3463. #u11801 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 0px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u11801_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. }
  3475. #u11802_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:245px;
  3481. height:44px;
  3482. }
  3483. #u11802 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:961px;
  3487. top:126px;
  3488. width:245px;
  3489. height:44px;
  3490. display:flex;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:14px;
  3495. color:#1890FF;
  3496. }
  3497. #u11802 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 0px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u11802_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. }
  3509. #u11803 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:0px;
  3515. height:0px;
  3516. }
  3517. #u11804_div {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:100px;
  3523. height:100px;
  3524. background:inherit;
  3525. background-color:rgba(255, 255, 255, 1);
  3526. box-sizing:border-box;
  3527. border-width:1px;
  3528. border-style:solid;
  3529. border-color:rgba(242, 242, 242, 1);
  3530. border-radius:4px;
  3531. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3532. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3533. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:14px;
  3538. text-align:left;
  3539. }
  3540. #u11804 {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:1449px;
  3544. top:352px;
  3545. width:100px;
  3546. height:100px;
  3547. display:flex;
  3548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3549. font-weight:400;
  3550. font-style:normal;
  3551. font-size:14px;
  3552. text-align:left;
  3553. }
  3554. #u11804 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 2px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u11804_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u11805_div {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:85px;
  3573. height:40px;
  3574. background:inherit;
  3575. background-color:rgba(255, 255, 255, 1);
  3576. box-sizing:border-box;
  3577. border-width:1px;
  3578. border-style:solid;
  3579. border-color:rgba(215, 215, 215, 1);
  3580. border-left:0px;
  3581. border-top:0px;
  3582. border-right:0px;
  3583. border-radius:0px;
  3584. border-bottom-right-radius:0px;
  3585. border-bottom-left-radius:0px;
  3586. -moz-box-shadow:none;
  3587. -webkit-box-shadow:none;
  3588. box-shadow:none;
  3589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:14px;
  3593. }
  3594. #u11805 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:1457px;
  3598. top:362px;
  3599. width:85px;
  3600. height:40px;
  3601. display:flex;
  3602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3603. font-weight:400;
  3604. font-style:normal;
  3605. font-size:14px;
  3606. }
  3607. #u11805 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:2px 2px 2px 2px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u11805_text {
  3615. border-width:0px;
  3616. word-wrap:break-word;
  3617. text-transform:none;
  3618. }
  3619. #u11806_div {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:85px;
  3625. height:40px;
  3626. background:inherit;
  3627. background-color:rgba(255, 255, 255, 1);
  3628. border:none;
  3629. border-left:0px;
  3630. border-top:0px;
  3631. border-right:0px;
  3632. border-radius:0px;
  3633. border-bottom-right-radius:0px;
  3634. border-bottom-left-radius:0px;
  3635. -moz-box-shadow:none;
  3636. -webkit-box-shadow:none;
  3637. box-shadow:none;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:14px;
  3642. color:#D9001B;
  3643. }
  3644. #u11806 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:1457px;
  3648. top:402px;
  3649. width:85px;
  3650. height:40px;
  3651. display:flex;
  3652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3653. font-weight:400;
  3654. font-style:normal;
  3655. font-size:14px;
  3656. color:#D9001B;
  3657. }
  3658. #u11806 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 2px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u11806_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. }
  3670. #u11807 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:0px;
  3676. height:0px;
  3677. }
  3678. #u11808_div {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:200px;
  3684. height:1180px;
  3685. background:inherit;
  3686. background-color:rgba(255, 255, 255, 1);
  3687. border:none;
  3688. border-radius:0px;
  3689. -moz-box-shadow:none;
  3690. -webkit-box-shadow:none;
  3691. box-shadow:none;
  3692. }
  3693. #u11808 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:120px;
  3697. top:50px;
  3698. width:200px;
  3699. height:1180px;
  3700. display:flex;
  3701. }
  3702. #u11808 .text {
  3703. position:absolute;
  3704. align-self:center;
  3705. padding:2px 2px 2px 2px;
  3706. box-sizing:border-box;
  3707. width:100%;
  3708. }
  3709. #u11808_text {
  3710. border-width:0px;
  3711. word-wrap:break-word;
  3712. text-transform:none;
  3713. visibility:hidden;
  3714. }
  3715. #u11809_div {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:200px;
  3721. height:60px;
  3722. background:inherit;
  3723. background-color:rgba(224, 231, 247, 1);
  3724. border:none;
  3725. border-radius:0px;
  3726. -moz-box-shadow:none;
  3727. -webkit-box-shadow:none;
  3728. box-shadow:none;
  3729. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3730. font-weight:500;
  3731. font-style:normal;
  3732. font-size:18px;
  3733. }
  3734. #u11809 {
  3735. border-width:0px;
  3736. position:absolute;
  3737. left:120px;
  3738. top:50px;
  3739. width:200px;
  3740. height:60px;
  3741. display:flex;
  3742. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3743. font-weight:500;
  3744. font-style:normal;
  3745. font-size:18px;
  3746. }
  3747. #u11809 .text {
  3748. position:absolute;
  3749. align-self:center;
  3750. padding:0px 0px 0px 20px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u11809_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. }
  3759. #u11810_div {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:55px;
  3765. height:22px;
  3766. background:inherit;
  3767. background-color:rgba(255, 255, 255, 0);
  3768. border:none;
  3769. border-radius:0px;
  3770. -moz-box-shadow:none;
  3771. -webkit-box-shadow:none;
  3772. box-shadow:none;
  3773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3774. font-weight:400;
  3775. font-style:normal;
  3776. font-size:16px;
  3777. }
  3778. #u11810 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:147px;
  3782. top:171px;
  3783. width:55px;
  3784. height:22px;
  3785. display:flex;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:16px;
  3790. }
  3791. #u11810 .text {
  3792. position:absolute;
  3793. align-self:flex-start;
  3794. padding:0px 0px 0px 0px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u11810_text {
  3799. border-width:0px;
  3800. white-space:nowrap;
  3801. text-transform:none;
  3802. }
  3803. #u11811_div {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:81px;
  3809. height:22px;
  3810. background:inherit;
  3811. background-color:rgba(255, 255, 255, 0);
  3812. border:none;
  3813. border-radius:0px;
  3814. -moz-box-shadow:none;
  3815. -webkit-box-shadow:none;
  3816. box-shadow:none;
  3817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:16px;
  3821. }
  3822. #u11811 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:147px;
  3826. top:213px;
  3827. width:81px;
  3828. height:22px;
  3829. display:flex;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:16px;
  3834. }
  3835. #u11811 .text {
  3836. position:absolute;
  3837. align-self:flex-start;
  3838. padding:0px 0px 0px 0px;
  3839. box-sizing:border-box;
  3840. width:100%;
  3841. }
  3842. #u11811_text {
  3843. border-width:0px;
  3844. white-space:nowrap;
  3845. text-transform:none;
  3846. }
  3847. #u11812_div {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:65px;
  3853. height:22px;
  3854. background:inherit;
  3855. background-color:rgba(255, 255, 255, 0);
  3856. border:none;
  3857. border-radius:0px;
  3858. -moz-box-shadow:none;
  3859. -webkit-box-shadow:none;
  3860. box-shadow:none;
  3861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:16px;
  3865. }
  3866. #u11812 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:147px;
  3870. top:255px;
  3871. width:65px;
  3872. height:22px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:16px;
  3878. }
  3879. #u11812 .text {
  3880. position:absolute;
  3881. align-self:flex-start;
  3882. padding:0px 0px 0px 0px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u11812_text {
  3887. border-width:0px;
  3888. white-space:nowrap;
  3889. text-transform:none;
  3890. }
  3891. #u11813_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:201px;
  3897. height:2px;
  3898. }
  3899. #u11813 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:120px;
  3903. top:304px;
  3904. width:200px;
  3905. height:1px;
  3906. display:flex;
  3907. }
  3908. #u11813 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 2px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u11813_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u11814_div {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:81px;
  3927. height:22px;
  3928. background:inherit;
  3929. background-color:rgba(255, 255, 255, 0);
  3930. border:none;
  3931. border-radius:0px;
  3932. -moz-box-shadow:none;
  3933. -webkit-box-shadow:none;
  3934. box-shadow:none;
  3935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:16px;
  3939. }
  3940. #u11814 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:150px;
  3944. top:360px;
  3945. width:81px;
  3946. height:22px;
  3947. display:flex;
  3948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3949. font-weight:400;
  3950. font-style:normal;
  3951. font-size:16px;
  3952. }
  3953. #u11814 .text {
  3954. position:absolute;
  3955. align-self:flex-start;
  3956. padding:0px 0px 0px 0px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u11814_text {
  3961. border-width:0px;
  3962. white-space:nowrap;
  3963. text-transform:none;
  3964. }
  3965. #u11815_div {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:61px;
  3971. height:17px;
  3972. background:inherit;
  3973. background-color:rgba(255, 255, 255, 0);
  3974. border:none;
  3975. border-radius:0px;
  3976. -moz-box-shadow:none;
  3977. -webkit-box-shadow:none;
  3978. box-shadow:none;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:12px;
  3983. color:#AAAAAA;
  3984. }
  3985. #u11815 {
  3986. border-width:0px;
  3987. position:absolute;
  3988. left:150px;
  3989. top:324px;
  3990. width:61px;
  3991. height:17px;
  3992. display:flex;
  3993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3994. font-weight:400;
  3995. font-style:normal;
  3996. font-size:12px;
  3997. color:#AAAAAA;
  3998. }
  3999. #u11815 .text {
  4000. position:absolute;
  4001. align-self:flex-start;
  4002. padding:0px 0px 0px 0px;
  4003. box-sizing:border-box;
  4004. width:100%;
  4005. }
  4006. #u11815_text {
  4007. border-width:0px;
  4008. white-space:nowrap;
  4009. text-transform:none;
  4010. }
  4011. #u11816_img {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:201px;
  4017. height:2px;
  4018. }
  4019. #u11816 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:120px;
  4023. top:402px;
  4024. width:200px;
  4025. height:1px;
  4026. display:flex;
  4027. }
  4028. #u11816 .text {
  4029. position:absolute;
  4030. align-self:center;
  4031. padding:2px 2px 2px 2px;
  4032. box-sizing:border-box;
  4033. width:100%;
  4034. }
  4035. #u11816_text {
  4036. border-width:0px;
  4037. word-wrap:break-word;
  4038. text-transform:none;
  4039. visibility:hidden;
  4040. }
  4041. #u11817_div {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:65px;
  4047. height:22px;
  4048. background:inherit;
  4049. background-color:rgba(255, 255, 255, 0);
  4050. border:none;
  4051. border-radius:0px;
  4052. -moz-box-shadow:none;
  4053. -webkit-box-shadow:none;
  4054. box-shadow:none;
  4055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4056. font-weight:400;
  4057. font-style:normal;
  4058. font-size:16px;
  4059. }
  4060. #u11817 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:150px;
  4064. top:458px;
  4065. width:65px;
  4066. height:22px;
  4067. display:flex;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:16px;
  4072. }
  4073. #u11817 .text {
  4074. position:absolute;
  4075. align-self:flex-start;
  4076. padding:0px 0px 0px 0px;
  4077. box-sizing:border-box;
  4078. width:100%;
  4079. }
  4080. #u11817_text {
  4081. border-width:0px;
  4082. white-space:nowrap;
  4083. text-transform:none;
  4084. }
  4085. #u11818_div {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:49px;
  4091. height:17px;
  4092. background:inherit;
  4093. background-color:rgba(255, 255, 255, 0);
  4094. border:none;
  4095. border-radius:0px;
  4096. -moz-box-shadow:none;
  4097. -webkit-box-shadow:none;
  4098. box-shadow:none;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:12px;
  4103. color:#AAAAAA;
  4104. }
  4105. #u11818 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:150px;
  4109. top:422px;
  4110. width:49px;
  4111. height:17px;
  4112. display:flex;
  4113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. font-size:12px;
  4117. color:#AAAAAA;
  4118. }
  4119. #u11818 .text {
  4120. position:absolute;
  4121. align-self:flex-start;
  4122. padding:0px 0px 0px 0px;
  4123. box-sizing:border-box;
  4124. width:100%;
  4125. }
  4126. #u11818_text {
  4127. border-width:0px;
  4128. white-space:nowrap;
  4129. text-transform:none;
  4130. }
  4131. #u11819_div {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:49px;
  4137. height:17px;
  4138. background:inherit;
  4139. background-color:rgba(255, 255, 255, 0);
  4140. border:none;
  4141. border-radius:0px;
  4142. -moz-box-shadow:none;
  4143. -webkit-box-shadow:none;
  4144. box-shadow:none;
  4145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:12px;
  4149. color:#AAAAAA;
  4150. }
  4151. #u11819 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:147px;
  4155. top:130px;
  4156. width:49px;
  4157. height:17px;
  4158. display:flex;
  4159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:12px;
  4163. color:#AAAAAA;
  4164. }
  4165. #u11819 .text {
  4166. position:absolute;
  4167. align-self:flex-start;
  4168. padding:0px 0px 0px 0px;
  4169. box-sizing:border-box;
  4170. width:100%;
  4171. }
  4172. #u11819_text {
  4173. border-width:0px;
  4174. white-space:nowrap;
  4175. text-transform:none;
  4176. }
  4177. #u11820 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:0px;
  4183. height:0px;
  4184. }
  4185. #u11821_div {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:800px;
  4191. height:60px;
  4192. background:inherit;
  4193. background-color:rgba(255, 255, 255, 1);
  4194. box-sizing:border-box;
  4195. border-width:1px;
  4196. border-style:solid;
  4197. border-color:rgba(242, 242, 242, 1);
  4198. border-radius:0px;
  4199. -moz-box-shadow:none;
  4200. -webkit-box-shadow:none;
  4201. box-shadow:none;
  4202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4203. font-weight:400;
  4204. font-style:normal;
  4205. font-size:14px;
  4206. color:#AAAAAA;
  4207. text-align:center;
  4208. line-height:30px;
  4209. }
  4210. #u11821 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:1664px;
  4214. top:50px;
  4215. width:800px;
  4216. height:60px;
  4217. display:flex;
  4218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. font-size:14px;
  4222. color:#AAAAAA;
  4223. text-align:center;
  4224. line-height:30px;
  4225. }
  4226. #u11821 .text {
  4227. position:absolute;
  4228. align-self:center;
  4229. padding:5px 10px 5px 10px;
  4230. box-sizing:border-box;
  4231. width:100%;
  4232. }
  4233. #u11821_text {
  4234. border-width:0px;
  4235. word-wrap:break-word;
  4236. text-transform:none;
  4237. visibility:hidden;
  4238. }
  4239. #u11822_div {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:0px;
  4243. top:0px;
  4244. width:137px;
  4245. height:35px;
  4246. background:inherit;
  4247. background-color:rgba(255, 255, 255, 0);
  4248. border:none;
  4249. border-top:0px;
  4250. border-right:0px;
  4251. border-bottom:0px;
  4252. border-radius:0px;
  4253. border-top-left-radius:0px;
  4254. border-bottom-left-radius:0px;
  4255. -moz-box-shadow:none;
  4256. -webkit-box-shadow:none;
  4257. box-shadow:none;
  4258. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4259. font-weight:500;
  4260. font-style:normal;
  4261. font-size:18px;
  4262. }
  4263. #u11822 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:1695px;
  4267. top:63px;
  4268. width:137px;
  4269. height:35px;
  4270. display:flex;
  4271. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4272. font-weight:500;
  4273. font-style:normal;
  4274. font-size:18px;
  4275. }
  4276. #u11822 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:5px 10px 5px 0px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u11822_text {
  4284. border-width:0px;
  4285. white-space:nowrap;
  4286. text-transform:none;
  4287. }
  4288. #u11823_div {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:40px;
  4294. height:40px;
  4295. background:inherit;
  4296. background-color:rgba(255, 255, 255, 0);
  4297. border:none;
  4298. border-top:0px;
  4299. border-right:0px;
  4300. border-bottom:0px;
  4301. border-radius:0px;
  4302. border-top-left-radius:0px;
  4303. border-bottom-left-radius:0px;
  4304. -moz-box-shadow:none;
  4305. -webkit-box-shadow:none;
  4306. box-shadow:none;
  4307. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4308. font-weight:500;
  4309. font-style:normal;
  4310. font-size:24px;
  4311. text-align:center;
  4312. }
  4313. #u11823 {
  4314. border-width:0px;
  4315. position:absolute;
  4316. left:2424px;
  4317. top:50px;
  4318. width:40px;
  4319. height:40px;
  4320. display:flex;
  4321. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4322. font-weight:500;
  4323. font-style:normal;
  4324. font-size:24px;
  4325. text-align:center;
  4326. }
  4327. #u11823 .text {
  4328. position:absolute;
  4329. align-self:center;
  4330. padding:5px 10px 5px 0px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u11823_text {
  4335. border-width:0px;
  4336. word-wrap:break-word;
  4337. text-transform:none;
  4338. }
  4339. #u11824_div {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:800px;
  4345. height:1140px;
  4346. background:inherit;
  4347. background-color:rgba(255, 255, 255, 1);
  4348. box-sizing:border-box;
  4349. border-width:1px;
  4350. border-style:solid;
  4351. border-color:rgba(242, 242, 242, 1);
  4352. border-radius:0px;
  4353. -moz-box-shadow:none;
  4354. -webkit-box-shadow:none;
  4355. box-shadow:none;
  4356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:14px;
  4360. color:#AAAAAA;
  4361. text-align:center;
  4362. line-height:30px;
  4363. }
  4364. #u11824 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:1664px;
  4368. top:110px;
  4369. width:800px;
  4370. height:1140px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:14px;
  4376. color:#AAAAAA;
  4377. text-align:center;
  4378. line-height:30px;
  4379. }
  4380. #u11824 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:5px 10px 5px 10px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u11824_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. visibility:hidden;
  4392. }
  4393. #u11825 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:0px;
  4399. height:0px;
  4400. }
  4401. #u11826_div {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:800px;
  4407. height:60px;
  4408. background:inherit;
  4409. background-color:rgba(255, 255, 255, 1);
  4410. box-sizing:border-box;
  4411. border-width:1px;
  4412. border-style:solid;
  4413. border-color:rgba(215, 215, 215, 1);
  4414. border-radius:0px;
  4415. -moz-box-shadow:none;
  4416. -webkit-box-shadow:none;
  4417. box-shadow:none;
  4418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4419. font-weight:400;
  4420. font-style:normal;
  4421. font-size:14px;
  4422. color:#AAAAAA;
  4423. text-align:center;
  4424. line-height:30px;
  4425. }
  4426. #u11826 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:1664px;
  4430. top:1190px;
  4431. width:800px;
  4432. height:60px;
  4433. display:flex;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:14px;
  4438. color:#AAAAAA;
  4439. text-align:center;
  4440. line-height:30px;
  4441. }
  4442. #u11826 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:5px 10px 5px 10px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u11826_text {
  4450. border-width:0px;
  4451. word-wrap:break-word;
  4452. text-transform:none;
  4453. visibility:hidden;
  4454. }
  4455. #u11827_div {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:80px;
  4461. height:30px;
  4462. background:inherit;
  4463. background-color:rgba(24, 144, 255, 1);
  4464. border:none;
  4465. border-radius:4px;
  4466. -moz-box-shadow:none;
  4467. -webkit-box-shadow:none;
  4468. box-shadow:none;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:14px;
  4473. color:#FFFFFF;
  4474. }
  4475. #u11827 {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:2344px;
  4479. top:1205px;
  4480. width:80px;
  4481. height:30px;
  4482. display:flex;
  4483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4484. font-weight:400;
  4485. font-style:normal;
  4486. font-size:14px;
  4487. color:#FFFFFF;
  4488. }
  4489. #u11827 .text {
  4490. position:absolute;
  4491. align-self:center;
  4492. padding:2px 2px 2px 2px;
  4493. box-sizing:border-box;
  4494. width:100%;
  4495. }
  4496. #u11827_text {
  4497. border-width:0px;
  4498. word-wrap:break-word;
  4499. text-transform:none;
  4500. }
  4501. #u11828_div {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:80px;
  4507. height:30px;
  4508. background:inherit;
  4509. background-color:rgba(255, 255, 255, 1);
  4510. box-sizing:border-box;
  4511. border-width:1px;
  4512. border-style:solid;
  4513. border-color:rgba(170, 170, 170, 1);
  4514. border-radius:4px;
  4515. -moz-box-shadow:none;
  4516. -webkit-box-shadow:none;
  4517. box-shadow:none;
  4518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4519. font-weight:400;
  4520. font-style:normal;
  4521. font-size:14px;
  4522. }
  4523. #u11828 {
  4524. border-width:0px;
  4525. position:absolute;
  4526. left:2254px;
  4527. top:1205px;
  4528. width:80px;
  4529. height:30px;
  4530. display:flex;
  4531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4532. font-weight:400;
  4533. font-style:normal;
  4534. font-size:14px;
  4535. }
  4536. #u11828 .text {
  4537. position:absolute;
  4538. align-self:center;
  4539. padding:2px 2px 2px 2px;
  4540. box-sizing:border-box;
  4541. width:100%;
  4542. }
  4543. #u11828_text {
  4544. border-width:0px;
  4545. word-wrap:break-word;
  4546. text-transform:none;
  4547. }
  4548. #u11829 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:0px;
  4554. height:0px;
  4555. }
  4556. #u11830 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:0px;
  4562. height:0px;
  4563. }
  4564. #u11831_div {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:300px;
  4570. height:40px;
  4571. background:inherit;
  4572. background-color:rgba(255, 255, 255, 1);
  4573. box-sizing:border-box;
  4574. border-width:1px;
  4575. border-style:solid;
  4576. border-color:rgba(201, 201, 201, 1);
  4577. border-radius:4px;
  4578. -moz-box-shadow:none;
  4579. -webkit-box-shadow:none;
  4580. box-shadow:none;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:14px;
  4585. text-align:right;
  4586. }
  4587. #u11831 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:2057px;
  4591. top:218px;
  4592. width:300px;
  4593. height:40px;
  4594. display:flex;
  4595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:14px;
  4599. text-align:right;
  4600. }
  4601. #u11831 .text {
  4602. position:absolute;
  4603. align-self:center;
  4604. padding:2px 8px 2px 8px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u11831_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u11832_input {
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:279px;
  4619. height:33px;
  4620. padding:2px 2px 2px 2px;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:14px;
  4625. letter-spacing:normal;
  4626. color:#D7D7D7;
  4627. vertical-align:none;
  4628. text-align:left;
  4629. text-transform:none;
  4630. background-color:transparent;
  4631. border-color:transparent;
  4632. }
  4633. #u11832_input.disabled {
  4634. position:absolute;
  4635. left:0px;
  4636. top:0px;
  4637. width:279px;
  4638. height:33px;
  4639. padding:2px 2px 2px 2px;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:14px;
  4644. letter-spacing:normal;
  4645. color:#D7D7D7;
  4646. vertical-align:none;
  4647. text-align:left;
  4648. text-transform:none;
  4649. background-color:transparent;
  4650. border-color:transparent;
  4651. }
  4652. #u11832_div {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:279px;
  4658. height:33px;
  4659. background:inherit;
  4660. background-color:rgba(255, 255, 255, 0);
  4661. border:none;
  4662. border-radius:0px;
  4663. -moz-box-shadow:none;
  4664. -webkit-box-shadow:none;
  4665. box-shadow:none;
  4666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4667. font-weight:400;
  4668. font-style:normal;
  4669. font-size:14px;
  4670. color:#D7D7D7;
  4671. }
  4672. #u11832 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:2062px;
  4676. top:221px;
  4677. width:279px;
  4678. height:33px;
  4679. display:flex;
  4680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4681. font-weight:400;
  4682. font-style:normal;
  4683. font-size:14px;
  4684. color:#D7D7D7;
  4685. }
  4686. #u11832 .text {
  4687. position:absolute;
  4688. align-self:center;
  4689. padding:2px 2px 2px 2px;
  4690. box-sizing:border-box;
  4691. width:100%;
  4692. }
  4693. #u11832_div.disabled {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:279px;
  4699. height:33px;
  4700. background:inherit;
  4701. background-color:rgba(240, 240, 240, 1);
  4702. border:none;
  4703. border-radius:0px;
  4704. -moz-box-shadow:none;
  4705. -webkit-box-shadow:none;
  4706. box-shadow:none;
  4707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:14px;
  4711. color:#D7D7D7;
  4712. }
  4713. #u11832.disabled {
  4714. }
  4715. #u11833_div {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:0px;
  4719. top:0px;
  4720. width:92px;
  4721. height:40px;
  4722. background:inherit;
  4723. background-color:rgba(255, 255, 255, 0);
  4724. border:none;
  4725. border-left:0px;
  4726. border-top:0px;
  4727. border-right:0px;
  4728. border-radius:0px;
  4729. border-bottom-right-radius:0px;
  4730. border-bottom-left-radius:0px;
  4731. -moz-box-shadow:none;
  4732. -webkit-box-shadow:none;
  4733. box-shadow:none;
  4734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4735. font-weight:400;
  4736. font-style:normal;
  4737. font-size:14px;
  4738. }
  4739. #u11833 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:2057px;
  4743. top:178px;
  4744. width:92px;
  4745. height:40px;
  4746. display:flex;
  4747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. font-size:14px;
  4751. }
  4752. #u11833 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:0px 0px 0px 0px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u11833_text {
  4760. border-width:0px;
  4761. white-space:nowrap;
  4762. text-transform:none;
  4763. }
  4764. #u11834 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:0px;
  4768. top:0px;
  4769. width:0px;
  4770. height:0px;
  4771. }
  4772. #u11835_div {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:300px;
  4778. height:80px;
  4779. background:inherit;
  4780. background-color:rgba(255, 255, 255, 1);
  4781. box-sizing:border-box;
  4782. border-width:1px;
  4783. border-style:solid;
  4784. border-color:rgba(201, 201, 201, 1);
  4785. border-radius:4px;
  4786. -moz-box-shadow:none;
  4787. -webkit-box-shadow:none;
  4788. box-shadow:none;
  4789. font-family:'Microsoft YaHei', sans-serif;
  4790. font-weight:400;
  4791. font-style:normal;
  4792. font-size:14px;
  4793. color:#CCCCCC;
  4794. text-align:left;
  4795. }
  4796. #u11835 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:2057px;
  4800. top:462px;
  4801. width:300px;
  4802. height:80px;
  4803. display:flex;
  4804. font-family:'Microsoft YaHei', sans-serif;
  4805. font-weight:400;
  4806. font-style:normal;
  4807. font-size:14px;
  4808. color:#CCCCCC;
  4809. text-align:left;
  4810. }
  4811. #u11835 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:2px 8px 2px 8px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u11835_text {
  4819. border-width:0px;
  4820. word-wrap:break-word;
  4821. text-transform:none;
  4822. visibility:hidden;
  4823. }
  4824. #u11836_input {
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:279px;
  4829. height:33px;
  4830. padding:2px 2px 2px 2px;
  4831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. font-size:14px;
  4835. letter-spacing:normal;
  4836. color:#D7D7D7;
  4837. vertical-align:none;
  4838. text-align:left;
  4839. text-transform:none;
  4840. background-color:transparent;
  4841. border-color:transparent;
  4842. }
  4843. #u11836_input.disabled {
  4844. position:absolute;
  4845. left:0px;
  4846. top:0px;
  4847. width:279px;
  4848. height:33px;
  4849. padding:2px 2px 2px 2px;
  4850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. font-size:14px;
  4854. letter-spacing:normal;
  4855. color:#D7D7D7;
  4856. vertical-align:none;
  4857. text-align:left;
  4858. text-transform:none;
  4859. background-color:transparent;
  4860. border-color:transparent;
  4861. }
  4862. #u11836_div {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:0px;
  4866. top:0px;
  4867. width:279px;
  4868. height:33px;
  4869. background:inherit;
  4870. background-color:rgba(255, 255, 255, 0);
  4871. border:none;
  4872. border-radius:0px;
  4873. -moz-box-shadow:none;
  4874. -webkit-box-shadow:none;
  4875. box-shadow:none;
  4876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4877. font-weight:400;
  4878. font-style:normal;
  4879. font-size:14px;
  4880. color:#D7D7D7;
  4881. }
  4882. #u11836 {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:2062px;
  4886. top:465px;
  4887. width:279px;
  4888. height:33px;
  4889. display:flex;
  4890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4891. font-weight:400;
  4892. font-style:normal;
  4893. font-size:14px;
  4894. color:#D7D7D7;
  4895. }
  4896. #u11836 .text {
  4897. position:absolute;
  4898. align-self:center;
  4899. padding:2px 2px 2px 2px;
  4900. box-sizing:border-box;
  4901. width:100%;
  4902. }
  4903. #u11836_div.disabled {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:0px;
  4907. top:0px;
  4908. width:279px;
  4909. height:33px;
  4910. background:inherit;
  4911. background-color:rgba(240, 240, 240, 1);
  4912. border:none;
  4913. border-radius:0px;
  4914. -moz-box-shadow:none;
  4915. -webkit-box-shadow:none;
  4916. box-shadow:none;
  4917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:14px;
  4921. color:#D7D7D7;
  4922. }
  4923. #u11836.disabled {
  4924. }
  4925. #u11837_div {
  4926. border-width:0px;
  4927. position:absolute;
  4928. left:0px;
  4929. top:0px;
  4930. width:64px;
  4931. height:40px;
  4932. background:inherit;
  4933. background-color:rgba(255, 255, 255, 0);
  4934. border:none;
  4935. border-left:0px;
  4936. border-top:0px;
  4937. border-right:0px;
  4938. border-radius:0px;
  4939. border-bottom-right-radius:0px;
  4940. border-bottom-left-radius:0px;
  4941. -moz-box-shadow:none;
  4942. -webkit-box-shadow:none;
  4943. box-shadow:none;
  4944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:14px;
  4948. }
  4949. #u11837 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:1717px;
  4953. top:340px;
  4954. width:64px;
  4955. height:40px;
  4956. display:flex;
  4957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:14px;
  4961. }
  4962. #u11837 .text {
  4963. position:absolute;
  4964. align-self:center;
  4965. padding:0px 0px 0px 0px;
  4966. box-sizing:border-box;
  4967. width:100%;
  4968. }
  4969. #u11837_text {
  4970. border-width:0px;
  4971. white-space:nowrap;
  4972. text-transform:none;
  4973. }
  4974. #u11838_div {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:0px;
  4978. top:0px;
  4979. width:57px;
  4980. height:40px;
  4981. background:inherit;
  4982. background-color:rgba(255, 255, 255, 0);
  4983. border:none;
  4984. border-left:0px;
  4985. border-top:0px;
  4986. border-right:0px;
  4987. border-radius:0px;
  4988. border-bottom-right-radius:0px;
  4989. border-bottom-left-radius:0px;
  4990. -moz-box-shadow:none;
  4991. -webkit-box-shadow:none;
  4992. box-shadow:none;
  4993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:14px;
  4997. }
  4998. #u11838 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:2057px;
  5002. top:422px;
  5003. width:57px;
  5004. height:40px;
  5005. display:flex;
  5006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:14px;
  5010. }
  5011. #u11838 .text {
  5012. position:absolute;
  5013. align-self:center;
  5014. padding:0px 0px 0px 0px;
  5015. box-sizing:border-box;
  5016. width:100%;
  5017. }
  5018. #u11838_text {
  5019. border-width:0px;
  5020. white-space:nowrap;
  5021. text-transform:none;
  5022. }
  5023. #u11839_div {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:0px;
  5027. top:0px;
  5028. width:80px;
  5029. height:80px;
  5030. background:inherit;
  5031. background-color:rgba(255, 255, 255, 1);
  5032. box-sizing:border-box;
  5033. border-width:1px;
  5034. border-style:solid;
  5035. border-color:rgba(201, 201, 201, 1);
  5036. border-radius:4px;
  5037. -moz-box-shadow:none;
  5038. -webkit-box-shadow:none;
  5039. box-shadow:none;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:28px;
  5044. }
  5045. #u11839 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:1717px;
  5049. top:460px;
  5050. width:80px;
  5051. height:80px;
  5052. display:flex;
  5053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5054. font-weight:400;
  5055. font-style:normal;
  5056. font-size:28px;
  5057. }
  5058. #u11839 .text {
  5059. position:absolute;
  5060. align-self:center;
  5061. padding:2px 8px 2px 8px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u11839_text {
  5066. border-width:0px;
  5067. word-wrap:break-word;
  5068. text-transform:none;
  5069. }
  5070. #u11840_div {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:0px;
  5074. top:0px;
  5075. width:85px;
  5076. height:40px;
  5077. background:inherit;
  5078. background-color:rgba(255, 255, 255, 0);
  5079. border:none;
  5080. border-left:0px;
  5081. border-top:0px;
  5082. border-right:0px;
  5083. border-radius:0px;
  5084. border-bottom-right-radius:0px;
  5085. border-bottom-left-radius:0px;
  5086. -moz-box-shadow:none;
  5087. -webkit-box-shadow:none;
  5088. box-shadow:none;
  5089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5090. font-weight:400;
  5091. font-style:normal;
  5092. font-size:14px;
  5093. }
  5094. #u11840 {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:1717px;
  5098. top:420px;
  5099. width:85px;
  5100. height:40px;
  5101. display:flex;
  5102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:14px;
  5106. }
  5107. #u11840 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:0px 0px 0px 0px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u11840_text {
  5115. border-width:0px;
  5116. white-space:nowrap;
  5117. text-transform:none;
  5118. }
  5119. #u11841_div {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:0px;
  5123. top:0px;
  5124. width:171px;
  5125. height:40px;
  5126. background:inherit;
  5127. background-color:rgba(255, 255, 255, 0);
  5128. border:none;
  5129. border-left:0px;
  5130. border-top:0px;
  5131. border-right:0px;
  5132. border-radius:0px;
  5133. border-bottom-right-radius:0px;
  5134. border-bottom-left-radius:0px;
  5135. -moz-box-shadow:none;
  5136. -webkit-box-shadow:none;
  5137. box-shadow:none;
  5138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. font-size:12px;
  5142. color:#7F7F7F;
  5143. }
  5144. #u11841 {
  5145. border-width:0px;
  5146. position:absolute;
  5147. left:1807px;
  5148. top:462px;
  5149. width:171px;
  5150. height:40px;
  5151. display:flex;
  5152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5153. font-weight:400;
  5154. font-style:normal;
  5155. font-size:12px;
  5156. color:#7F7F7F;
  5157. }
  5158. #u11841 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:0px 0px 0px 0px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u11841_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. }
  5170. #u11842_div {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:64px;
  5176. height:40px;
  5177. background:inherit;
  5178. background-color:rgba(255, 255, 255, 0);
  5179. border:none;
  5180. border-left:0px;
  5181. border-top:0px;
  5182. border-right:0px;
  5183. border-radius:0px;
  5184. border-bottom-right-radius:0px;
  5185. border-bottom-left-radius:0px;
  5186. -moz-box-shadow:none;
  5187. -webkit-box-shadow:none;
  5188. box-shadow:none;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:14px;
  5193. }
  5194. #u11842 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:1717px;
  5198. top:176px;
  5199. width:64px;
  5200. height:40px;
  5201. display:flex;
  5202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5203. font-weight:400;
  5204. font-style:normal;
  5205. font-size:14px;
  5206. }
  5207. #u11842 .text {
  5208. position:absolute;
  5209. align-self:center;
  5210. padding:0px 0px 0px 0px;
  5211. box-sizing:border-box;
  5212. width:100%;
  5213. }
  5214. #u11842_text {
  5215. border-width:0px;
  5216. white-space:nowrap;
  5217. text-transform:none;
  5218. }
  5219. #u11843 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:0px;
  5225. height:0px;
  5226. }
  5227. #u11844_div {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:0px;
  5231. top:0px;
  5232. width:300px;
  5233. height:40px;
  5234. background:inherit;
  5235. background-color:rgba(255, 255, 255, 1);
  5236. box-sizing:border-box;
  5237. border-width:1px;
  5238. border-style:solid;
  5239. border-color:rgba(215, 215, 215, 1);
  5240. border-radius:4px;
  5241. -moz-box-shadow:none;
  5242. -webkit-box-shadow:none;
  5243. box-shadow:none;
  5244. font-size:11px;
  5245. }
  5246. #u11844 {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:1717px;
  5250. top:218px;
  5251. width:300px;
  5252. height:40px;
  5253. display:flex;
  5254. font-size:11px;
  5255. }
  5256. #u11844 .text {
  5257. position:absolute;
  5258. align-self:center;
  5259. padding:2px 2px 2px 2px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u11844_text {
  5264. border-width:0px;
  5265. word-wrap:break-word;
  5266. text-transform:none;
  5267. visibility:hidden;
  5268. }
  5269. #u11845_input {
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:280px;
  5274. height:31px;
  5275. padding:2px 2px 2px 2px;
  5276. font-family:'ArialMT', 'Arial', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:11px;
  5280. letter-spacing:normal;
  5281. color:#AAAAAA;
  5282. vertical-align:none;
  5283. text-align:left;
  5284. text-transform:none;
  5285. background-color:transparent;
  5286. border-color:transparent;
  5287. }
  5288. #u11845_input.disabled {
  5289. position:absolute;
  5290. left:0px;
  5291. top:0px;
  5292. width:280px;
  5293. height:31px;
  5294. padding:2px 2px 2px 2px;
  5295. font-family:'ArialMT', 'Arial', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:11px;
  5299. letter-spacing:normal;
  5300. color:#AAAAAA;
  5301. vertical-align:none;
  5302. text-align:left;
  5303. text-transform:none;
  5304. background-color:transparent;
  5305. border-color:transparent;
  5306. }
  5307. #u11845_div {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:0px;
  5311. top:0px;
  5312. width:280px;
  5313. height:31px;
  5314. background:inherit;
  5315. background-color:rgba(255, 255, 255, 1);
  5316. border:none;
  5317. border-radius:0px;
  5318. -moz-box-shadow:none;
  5319. -webkit-box-shadow:none;
  5320. box-shadow:none;
  5321. font-size:11px;
  5322. color:#AAAAAA;
  5323. }
  5324. #u11845 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:1726px;
  5328. top:221px;
  5329. width:280px;
  5330. height:31px;
  5331. display:flex;
  5332. font-size:11px;
  5333. color:#AAAAAA;
  5334. }
  5335. #u11845 .text {
  5336. position:absolute;
  5337. align-self:flex-start;
  5338. padding:2px 2px 2px 2px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u11845_div.disabled {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:280px;
  5348. height:31px;
  5349. background:inherit;
  5350. background-color:rgba(240, 240, 240, 1);
  5351. border:none;
  5352. border-radius:0px;
  5353. -moz-box-shadow:none;
  5354. -webkit-box-shadow:none;
  5355. box-shadow:none;
  5356. font-size:11px;
  5357. color:#AAAAAA;
  5358. }
  5359. #u11845.disabled {
  5360. }
  5361. .u11845_input_option {
  5362. font-size:11px;
  5363. }
  5364. #u11846_div {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:64px;
  5370. height:40px;
  5371. background:inherit;
  5372. background-color:rgba(255, 255, 255, 0);
  5373. border:none;
  5374. border-left:0px;
  5375. border-top:0px;
  5376. border-right:0px;
  5377. border-radius:0px;
  5378. border-bottom-right-radius:0px;
  5379. border-bottom-left-radius:0px;
  5380. -moz-box-shadow:none;
  5381. -webkit-box-shadow:none;
  5382. box-shadow:none;
  5383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5384. font-weight:400;
  5385. font-style:normal;
  5386. font-size:14px;
  5387. }
  5388. #u11846 {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:1717px;
  5392. top:258px;
  5393. width:64px;
  5394. height:40px;
  5395. display:flex;
  5396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5397. font-weight:400;
  5398. font-style:normal;
  5399. font-size:14px;
  5400. }
  5401. #u11846 .text {
  5402. position:absolute;
  5403. align-self:center;
  5404. padding:0px 0px 0px 0px;
  5405. box-sizing:border-box;
  5406. width:100%;
  5407. }
  5408. #u11846_text {
  5409. border-width:0px;
  5410. white-space:nowrap;
  5411. text-transform:none;
  5412. }
  5413. #u11847 {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:0px;
  5417. top:0px;
  5418. width:0px;
  5419. height:0px;
  5420. }
  5421. #u11848_div {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:300px;
  5427. height:40px;
  5428. background:inherit;
  5429. background-color:rgba(255, 255, 255, 1);
  5430. box-sizing:border-box;
  5431. border-width:1px;
  5432. border-style:solid;
  5433. border-color:rgba(215, 215, 215, 1);
  5434. border-radius:4px;
  5435. -moz-box-shadow:none;
  5436. -webkit-box-shadow:none;
  5437. box-shadow:none;
  5438. font-size:11px;
  5439. }
  5440. #u11848 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:1717px;
  5444. top:300px;
  5445. width:300px;
  5446. height:40px;
  5447. display:flex;
  5448. font-size:11px;
  5449. }
  5450. #u11848 .text {
  5451. position:absolute;
  5452. align-self:center;
  5453. padding:2px 2px 2px 2px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u11848_text {
  5458. border-width:0px;
  5459. word-wrap:break-word;
  5460. text-transform:none;
  5461. visibility:hidden;
  5462. }
  5463. #u11849_input {
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:280px;
  5468. height:31px;
  5469. padding:2px 2px 2px 2px;
  5470. font-family:'ArialMT', 'Arial', sans-serif;
  5471. font-weight:400;
  5472. font-style:normal;
  5473. font-size:11px;
  5474. letter-spacing:normal;
  5475. color:#AAAAAA;
  5476. vertical-align:none;
  5477. text-align:left;
  5478. text-transform:none;
  5479. background-color:transparent;
  5480. border-color:transparent;
  5481. }
  5482. #u11849_input.disabled {
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:280px;
  5487. height:31px;
  5488. padding:2px 2px 2px 2px;
  5489. font-family:'ArialMT', 'Arial', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:11px;
  5493. letter-spacing:normal;
  5494. color:#AAAAAA;
  5495. vertical-align:none;
  5496. text-align:left;
  5497. text-transform:none;
  5498. background-color:transparent;
  5499. border-color:transparent;
  5500. }
  5501. #u11849_div {
  5502. border-width:0px;
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:280px;
  5507. height:31px;
  5508. background:inherit;
  5509. background-color:rgba(255, 255, 255, 1);
  5510. border:none;
  5511. border-radius:0px;
  5512. -moz-box-shadow:none;
  5513. -webkit-box-shadow:none;
  5514. box-shadow:none;
  5515. font-size:11px;
  5516. color:#AAAAAA;
  5517. }
  5518. #u11849 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:1726px;
  5522. top:303px;
  5523. width:280px;
  5524. height:31px;
  5525. display:flex;
  5526. font-size:11px;
  5527. color:#AAAAAA;
  5528. }
  5529. #u11849 .text {
  5530. position:absolute;
  5531. align-self:flex-start;
  5532. padding:2px 2px 2px 2px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u11849_div.disabled {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:280px;
  5542. height:31px;
  5543. background:inherit;
  5544. background-color:rgba(240, 240, 240, 1);
  5545. border:none;
  5546. border-radius:0px;
  5547. -moz-box-shadow:none;
  5548. -webkit-box-shadow:none;
  5549. box-shadow:none;
  5550. font-size:11px;
  5551. color:#AAAAAA;
  5552. }
  5553. #u11849.disabled {
  5554. }
  5555. .u11849_input_option {
  5556. font-size:11px;
  5557. }
  5558. #u11850_div {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:64px;
  5564. height:40px;
  5565. background:inherit;
  5566. background-color:rgba(255, 255, 255, 0);
  5567. border:none;
  5568. border-left:0px;
  5569. border-top:0px;
  5570. border-right:0px;
  5571. border-radius:0px;
  5572. border-bottom-right-radius:0px;
  5573. border-bottom-left-radius:0px;
  5574. -moz-box-shadow:none;
  5575. -webkit-box-shadow:none;
  5576. box-shadow:none;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:14px;
  5581. }
  5582. #u11850 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:2057px;
  5586. top:258px;
  5587. width:64px;
  5588. height:40px;
  5589. display:flex;
  5590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5591. font-weight:400;
  5592. font-style:normal;
  5593. font-size:14px;
  5594. }
  5595. #u11850 .text {
  5596. position:absolute;
  5597. align-self:center;
  5598. padding:0px 0px 0px 0px;
  5599. box-sizing:border-box;
  5600. width:100%;
  5601. }
  5602. #u11850_text {
  5603. border-width:0px;
  5604. white-space:nowrap;
  5605. text-transform:none;
  5606. }
  5607. #u11851 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:0px;
  5613. height:0px;
  5614. }
  5615. #u11852_div {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:300px;
  5621. height:40px;
  5622. background:inherit;
  5623. background-color:rgba(255, 255, 255, 1);
  5624. box-sizing:border-box;
  5625. border-width:1px;
  5626. border-style:solid;
  5627. border-color:rgba(215, 215, 215, 1);
  5628. border-radius:4px;
  5629. -moz-box-shadow:none;
  5630. -webkit-box-shadow:none;
  5631. box-shadow:none;
  5632. font-size:11px;
  5633. }
  5634. #u11852 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:2057px;
  5638. top:300px;
  5639. width:300px;
  5640. height:40px;
  5641. display:flex;
  5642. font-size:11px;
  5643. }
  5644. #u11852 .text {
  5645. position:absolute;
  5646. align-self:center;
  5647. padding:2px 2px 2px 2px;
  5648. box-sizing:border-box;
  5649. width:100%;
  5650. }
  5651. #u11852_text {
  5652. border-width:0px;
  5653. word-wrap:break-word;
  5654. text-transform:none;
  5655. visibility:hidden;
  5656. }
  5657. #u11853_input {
  5658. position:absolute;
  5659. left:0px;
  5660. top:0px;
  5661. width:280px;
  5662. height:31px;
  5663. padding:2px 2px 2px 2px;
  5664. font-family:'ArialMT', 'Arial', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:11px;
  5668. letter-spacing:normal;
  5669. color:#AAAAAA;
  5670. vertical-align:none;
  5671. text-align:left;
  5672. text-transform:none;
  5673. background-color:transparent;
  5674. border-color:transparent;
  5675. }
  5676. #u11853_input.disabled {
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:280px;
  5681. height:31px;
  5682. padding:2px 2px 2px 2px;
  5683. font-family:'ArialMT', 'Arial', sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:11px;
  5687. letter-spacing:normal;
  5688. color:#AAAAAA;
  5689. vertical-align:none;
  5690. text-align:left;
  5691. text-transform:none;
  5692. background-color:transparent;
  5693. border-color:transparent;
  5694. }
  5695. #u11853_div {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:0px;
  5699. top:0px;
  5700. width:280px;
  5701. height:31px;
  5702. background:inherit;
  5703. background-color:rgba(255, 255, 255, 1);
  5704. border:none;
  5705. border-radius:0px;
  5706. -moz-box-shadow:none;
  5707. -webkit-box-shadow:none;
  5708. box-shadow:none;
  5709. font-size:11px;
  5710. color:#AAAAAA;
  5711. }
  5712. #u11853 {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:2066px;
  5716. top:303px;
  5717. width:280px;
  5718. height:31px;
  5719. display:flex;
  5720. font-size:11px;
  5721. color:#AAAAAA;
  5722. }
  5723. #u11853 .text {
  5724. position:absolute;
  5725. align-self:flex-start;
  5726. padding:2px 2px 2px 2px;
  5727. box-sizing:border-box;
  5728. width:100%;
  5729. }
  5730. #u11853_div.disabled {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:280px;
  5736. height:31px;
  5737. background:inherit;
  5738. background-color:rgba(240, 240, 240, 1);
  5739. border:none;
  5740. border-radius:0px;
  5741. -moz-box-shadow:none;
  5742. -webkit-box-shadow:none;
  5743. box-shadow:none;
  5744. font-size:11px;
  5745. color:#AAAAAA;
  5746. }
  5747. #u11853.disabled {
  5748. }
  5749. .u11853_input_option {
  5750. font-size:11px;
  5751. }
  5752. #u11854_div {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:0px;
  5756. top:0px;
  5757. width:94px;
  5758. height:40px;
  5759. background:inherit;
  5760. background-color:rgba(255, 255, 255, 0);
  5761. border:none;
  5762. border-left:0px;
  5763. border-top:0px;
  5764. border-right:0px;
  5765. border-radius:0px;
  5766. border-bottom-right-radius:0px;
  5767. border-bottom-left-radius:0px;
  5768. -moz-box-shadow:none;
  5769. -webkit-box-shadow:none;
  5770. box-shadow:none;
  5771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:14px;
  5775. }
  5776. #u11854 {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:2057px;
  5780. top:340px;
  5781. width:94px;
  5782. height:40px;
  5783. display:flex;
  5784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:14px;
  5788. }
  5789. #u11854 .text {
  5790. position:absolute;
  5791. align-self:center;
  5792. padding:0px 0px 0px 0px;
  5793. box-sizing:border-box;
  5794. width:100%;
  5795. }
  5796. #u11854_text {
  5797. border-width:0px;
  5798. white-space:nowrap;
  5799. text-transform:none;
  5800. }
  5801. #u11855 {
  5802. border-width:0px;
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:0px;
  5807. height:0px;
  5808. }
  5809. #u11856_div {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:0px;
  5813. top:0px;
  5814. width:300px;
  5815. height:40px;
  5816. background:inherit;
  5817. background-color:rgba(242, 242, 242, 1);
  5818. box-sizing:border-box;
  5819. border-width:1px;
  5820. border-style:solid;
  5821. border-color:rgba(215, 215, 215, 1);
  5822. border-radius:4px;
  5823. -moz-box-shadow:none;
  5824. -webkit-box-shadow:none;
  5825. box-shadow:none;
  5826. font-size:11px;
  5827. }
  5828. #u11856 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:2057px;
  5832. top:382px;
  5833. width:300px;
  5834. height:40px;
  5835. display:flex;
  5836. font-size:11px;
  5837. }
  5838. #u11856 .text {
  5839. position:absolute;
  5840. align-self:center;
  5841. padding:2px 2px 2px 2px;
  5842. box-sizing:border-box;
  5843. width:100%;
  5844. }
  5845. #u11856_text {
  5846. border-width:0px;
  5847. word-wrap:break-word;
  5848. text-transform:none;
  5849. visibility:hidden;
  5850. }
  5851. #u11857_input {
  5852. position:absolute;
  5853. left:0px;
  5854. top:0px;
  5855. width:291px;
  5856. height:31px;
  5857. padding:2px 2px 2px 2px;
  5858. font-family:'ArialMT', 'Arial', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:11px;
  5862. letter-spacing:normal;
  5863. color:#AAAAAA;
  5864. vertical-align:none;
  5865. text-align:left;
  5866. text-transform:none;
  5867. background-color:transparent;
  5868. border-color:transparent;
  5869. }
  5870. #u11857_input.disabled {
  5871. position:absolute;
  5872. left:0px;
  5873. top:0px;
  5874. width:291px;
  5875. height:31px;
  5876. padding:2px 2px 2px 2px;
  5877. font-family:'ArialMT', 'Arial', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:11px;
  5881. letter-spacing:normal;
  5882. color:#AAAAAA;
  5883. vertical-align:none;
  5884. text-align:left;
  5885. text-transform:none;
  5886. background-color:transparent;
  5887. border-color:transparent;
  5888. }
  5889. #u11857_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:291px;
  5895. height:31px;
  5896. background:inherit;
  5897. background-color:rgba(242, 242, 242, 1);
  5898. border:none;
  5899. border-radius:0px;
  5900. -moz-box-shadow:none;
  5901. -webkit-box-shadow:none;
  5902. box-shadow:none;
  5903. font-size:11px;
  5904. color:#AAAAAA;
  5905. }
  5906. #u11857 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:2061px;
  5910. top:385px;
  5911. width:291px;
  5912. height:31px;
  5913. display:flex;
  5914. font-size:11px;
  5915. color:#AAAAAA;
  5916. }
  5917. #u11857 .text {
  5918. position:absolute;
  5919. align-self:flex-start;
  5920. padding:2px 2px 2px 2px;
  5921. box-sizing:border-box;
  5922. width:100%;
  5923. }
  5924. #u11857_div.disabled {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:0px;
  5928. top:0px;
  5929. width:291px;
  5930. height:31px;
  5931. background:inherit;
  5932. background-color:rgba(240, 240, 240, 1);
  5933. border:none;
  5934. border-radius:0px;
  5935. -moz-box-shadow:none;
  5936. -webkit-box-shadow:none;
  5937. box-shadow:none;
  5938. font-size:11px;
  5939. color:#AAAAAA;
  5940. }
  5941. #u11857.disabled {
  5942. }
  5943. .u11857_input_option {
  5944. font-size:11px;
  5945. }
  5946. #u11858 {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:0px;
  5950. top:0px;
  5951. width:0px;
  5952. height:0px;
  5953. }
  5954. #u11859_div {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:0px;
  5958. top:0px;
  5959. width:300px;
  5960. height:40px;
  5961. background:inherit;
  5962. background-color:rgba(255, 255, 255, 1);
  5963. box-sizing:border-box;
  5964. border-width:1px;
  5965. border-style:solid;
  5966. border-color:rgba(201, 201, 201, 1);
  5967. border-radius:4px;
  5968. -moz-box-shadow:none;
  5969. -webkit-box-shadow:none;
  5970. box-shadow:none;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:14px;
  5975. text-align:right;
  5976. }
  5977. #u11859 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:1717px;
  5981. top:380px;
  5982. width:300px;
  5983. height:40px;
  5984. display:flex;
  5985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5986. font-weight:400;
  5987. font-style:normal;
  5988. font-size:14px;
  5989. text-align:right;
  5990. }
  5991. #u11859 .text {
  5992. position:absolute;
  5993. align-self:center;
  5994. padding:2px 8px 2px 8px;
  5995. box-sizing:border-box;
  5996. width:100%;
  5997. }
  5998. #u11859_text {
  5999. border-width:0px;
  6000. word-wrap:break-word;
  6001. text-transform:none;
  6002. visibility:hidden;
  6003. }
  6004. #u11860_input {
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:242px;
  6009. height:33px;
  6010. padding:2px 2px 2px 2px;
  6011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6012. font-weight:400;
  6013. font-style:normal;
  6014. font-size:14px;
  6015. letter-spacing:normal;
  6016. color:#D7D7D7;
  6017. vertical-align:none;
  6018. text-align:left;
  6019. text-transform:none;
  6020. background-color:transparent;
  6021. border-color:transparent;
  6022. }
  6023. #u11860_input.disabled {
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:242px;
  6028. height:33px;
  6029. padding:2px 2px 2px 2px;
  6030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:14px;
  6034. letter-spacing:normal;
  6035. color:#D7D7D7;
  6036. vertical-align:none;
  6037. text-align:left;
  6038. text-transform:none;
  6039. background-color:transparent;
  6040. border-color:transparent;
  6041. }
  6042. #u11860_div {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:0px;
  6046. top:0px;
  6047. width:242px;
  6048. height:33px;
  6049. background:inherit;
  6050. background-color:rgba(255, 255, 255, 0);
  6051. border:none;
  6052. border-radius:0px;
  6053. -moz-box-shadow:none;
  6054. -webkit-box-shadow:none;
  6055. box-shadow:none;
  6056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6057. font-weight:400;
  6058. font-style:normal;
  6059. font-size:14px;
  6060. color:#D7D7D7;
  6061. }
  6062. #u11860 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:1729px;
  6066. top:383px;
  6067. width:242px;
  6068. height:33px;
  6069. display:flex;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:14px;
  6074. color:#D7D7D7;
  6075. }
  6076. #u11860 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 2px 2px 2px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u11860_div.disabled {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:242px;
  6089. height:33px;
  6090. background:inherit;
  6091. background-color:rgba(240, 240, 240, 1);
  6092. border:none;
  6093. border-radius:0px;
  6094. -moz-box-shadow:none;
  6095. -webkit-box-shadow:none;
  6096. box-shadow:none;
  6097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:14px;
  6101. color:#D7D7D7;
  6102. }
  6103. #u11860.disabled {
  6104. }
  6105. #u11861_div {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:83px;
  6111. height:35px;
  6112. background:inherit;
  6113. background-color:rgba(255, 255, 255, 0);
  6114. border:none;
  6115. border-top:0px;
  6116. border-right:0px;
  6117. border-bottom:0px;
  6118. border-radius:0px;
  6119. border-top-left-radius:0px;
  6120. border-bottom-left-radius:0px;
  6121. -moz-box-shadow:none;
  6122. -webkit-box-shadow:none;
  6123. box-shadow:none;
  6124. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6125. font-weight:500;
  6126. font-style:normal;
  6127. font-size:18px;
  6128. }
  6129. #u11861 {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:1717px;
  6133. top:131px;
  6134. width:83px;
  6135. height:35px;
  6136. display:flex;
  6137. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6138. font-weight:500;
  6139. font-style:normal;
  6140. font-size:18px;
  6141. }
  6142. #u11861 .text {
  6143. position:absolute;
  6144. align-self:center;
  6145. padding:5px 10px 5px 0px;
  6146. box-sizing:border-box;
  6147. width:100%;
  6148. }
  6149. #u11861_text {
  6150. border-width:0px;
  6151. white-space:nowrap;
  6152. text-transform:none;
  6153. }
  6154. #u11862_div {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:50px;
  6160. height:40px;
  6161. background:inherit;
  6162. background-color:rgba(255, 255, 255, 0);
  6163. border:none;
  6164. border-top:0px;
  6165. border-right:0px;
  6166. border-bottom:0px;
  6167. border-radius:0px;
  6168. border-top-left-radius:0px;
  6169. border-bottom-left-radius:0px;
  6170. -moz-box-shadow:none;
  6171. -webkit-box-shadow:none;
  6172. box-shadow:none;
  6173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:14px;
  6177. }
  6178. #u11862 {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:1717px;
  6182. top:699px;
  6183. width:50px;
  6184. height:40px;
  6185. display:flex;
  6186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6187. font-weight:400;
  6188. font-style:normal;
  6189. font-size:14px;
  6190. }
  6191. #u11862 .text {
  6192. position:absolute;
  6193. align-self:center;
  6194. padding:5px 10px 5px 0px;
  6195. box-sizing:border-box;
  6196. width:100%;
  6197. }
  6198. #u11862_text {
  6199. border-width:0px;
  6200. white-space:nowrap;
  6201. text-transform:none;
  6202. }
  6203. #u11863_div {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:39px;
  6209. height:40px;
  6210. background:inherit;
  6211. background-color:rgba(255, 255, 255, 0);
  6212. border:none;
  6213. border-top:0px;
  6214. border-right:0px;
  6215. border-bottom:0px;
  6216. border-radius:0px;
  6217. border-top-left-radius:0px;
  6218. border-bottom-left-radius:0px;
  6219. -moz-box-shadow:none;
  6220. -webkit-box-shadow:none;
  6221. box-shadow:none;
  6222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6223. font-weight:400;
  6224. font-style:normal;
  6225. font-size:14px;
  6226. }
  6227. #u11863 {
  6228. border-width:0px;
  6229. position:absolute;
  6230. left:1717px;
  6231. top:779px;
  6232. width:39px;
  6233. height:40px;
  6234. display:flex;
  6235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6236. font-weight:400;
  6237. font-style:normal;
  6238. font-size:14px;
  6239. }
  6240. #u11863 .text {
  6241. position:absolute;
  6242. align-self:center;
  6243. padding:5px 10px 5px 0px;
  6244. box-sizing:border-box;
  6245. width:100%;
  6246. }
  6247. #u11863_text {
  6248. border-width:0px;
  6249. white-space:nowrap;
  6250. text-transform:none;
  6251. }
  6252. #u11864 {
  6253. border-width:0px;
  6254. position:absolute;
  6255. left:0px;
  6256. top:0px;
  6257. width:0px;
  6258. height:0px;
  6259. }
  6260. #u11865_div {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:0px;
  6264. top:0px;
  6265. width:684px;
  6266. height:40px;
  6267. background:inherit;
  6268. background-color:rgba(255, 255, 255, 1);
  6269. box-sizing:border-box;
  6270. border-width:1px;
  6271. border-style:solid;
  6272. border-color:rgba(201, 201, 201, 1);
  6273. border-radius:4px;
  6274. -moz-box-shadow:none;
  6275. -webkit-box-shadow:none;
  6276. box-shadow:none;
  6277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:14px;
  6281. text-align:right;
  6282. }
  6283. #u11865 {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:1717px;
  6287. top:741px;
  6288. width:684px;
  6289. height:40px;
  6290. display:flex;
  6291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6292. font-weight:400;
  6293. font-style:normal;
  6294. font-size:14px;
  6295. text-align:right;
  6296. }
  6297. #u11865 .text {
  6298. position:absolute;
  6299. align-self:center;
  6300. padding:2px 8px 2px 8px;
  6301. box-sizing:border-box;
  6302. width:100%;
  6303. }
  6304. #u11865_text {
  6305. border-width:0px;
  6306. word-wrap:break-word;
  6307. text-transform:none;
  6308. visibility:hidden;
  6309. }
  6310. #u11866_input {
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:242px;
  6315. height:33px;
  6316. padding:2px 2px 2px 2px;
  6317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:14px;
  6321. letter-spacing:normal;
  6322. color:#D7D7D7;
  6323. vertical-align:none;
  6324. text-align:left;
  6325. text-transform:none;
  6326. background-color:transparent;
  6327. border-color:transparent;
  6328. }
  6329. #u11866_input.disabled {
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:242px;
  6334. height:33px;
  6335. padding:2px 2px 2px 2px;
  6336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6337. font-weight:400;
  6338. font-style:normal;
  6339. font-size:14px;
  6340. letter-spacing:normal;
  6341. color:#D7D7D7;
  6342. vertical-align:none;
  6343. text-align:left;
  6344. text-transform:none;
  6345. background-color:transparent;
  6346. border-color:transparent;
  6347. }
  6348. #u11866_div {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:242px;
  6354. height:33px;
  6355. background:inherit;
  6356. background-color:rgba(255, 255, 255, 0);
  6357. border:none;
  6358. border-radius:0px;
  6359. -moz-box-shadow:none;
  6360. -webkit-box-shadow:none;
  6361. box-shadow:none;
  6362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6363. font-weight:400;
  6364. font-style:normal;
  6365. font-size:14px;
  6366. color:#D7D7D7;
  6367. }
  6368. #u11866 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:1729px;
  6372. top:744px;
  6373. width:242px;
  6374. height:33px;
  6375. display:flex;
  6376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6377. font-weight:400;
  6378. font-style:normal;
  6379. font-size:14px;
  6380. color:#D7D7D7;
  6381. }
  6382. #u11866 .text {
  6383. position:absolute;
  6384. align-self:center;
  6385. padding:2px 2px 2px 2px;
  6386. box-sizing:border-box;
  6387. width:100%;
  6388. }
  6389. #u11866_div.disabled {
  6390. border-width:0px;
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:242px;
  6395. height:33px;
  6396. background:inherit;
  6397. background-color:rgba(240, 240, 240, 1);
  6398. border:none;
  6399. border-radius:0px;
  6400. -moz-box-shadow:none;
  6401. -webkit-box-shadow:none;
  6402. box-shadow:none;
  6403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:14px;
  6407. color:#D7D7D7;
  6408. }
  6409. #u11866.disabled {
  6410. }
  6411. #u11867 {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:0px;
  6417. height:0px;
  6418. }
  6419. #u11868_div {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:0px;
  6424. width:684px;
  6425. height:40px;
  6426. background:inherit;
  6427. background-color:rgba(255, 255, 255, 1);
  6428. box-sizing:border-box;
  6429. border-width:1px;
  6430. border-style:solid;
  6431. border-color:rgba(201, 201, 201, 1);
  6432. border-radius:4px;
  6433. -moz-box-shadow:none;
  6434. -webkit-box-shadow:none;
  6435. box-shadow:none;
  6436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6437. font-weight:400;
  6438. font-style:normal;
  6439. font-size:14px;
  6440. text-align:right;
  6441. }
  6442. #u11868 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:1717px;
  6446. top:821px;
  6447. width:684px;
  6448. height:40px;
  6449. display:flex;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:14px;
  6454. text-align:right;
  6455. }
  6456. #u11868 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:2px 8px 2px 8px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u11868_text {
  6464. border-width:0px;
  6465. word-wrap:break-word;
  6466. text-transform:none;
  6467. visibility:hidden;
  6468. }
  6469. #u11869_input {
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:242px;
  6474. height:33px;
  6475. padding:2px 2px 2px 2px;
  6476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6477. font-weight:400;
  6478. font-style:normal;
  6479. font-size:14px;
  6480. letter-spacing:normal;
  6481. color:#D7D7D7;
  6482. vertical-align:none;
  6483. text-align:left;
  6484. text-transform:none;
  6485. background-color:transparent;
  6486. border-color:transparent;
  6487. }
  6488. #u11869_input.disabled {
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:242px;
  6493. height:33px;
  6494. padding:2px 2px 2px 2px;
  6495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6496. font-weight:400;
  6497. font-style:normal;
  6498. font-size:14px;
  6499. letter-spacing:normal;
  6500. color:#D7D7D7;
  6501. vertical-align:none;
  6502. text-align:left;
  6503. text-transform:none;
  6504. background-color:transparent;
  6505. border-color:transparent;
  6506. }
  6507. #u11869_div {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:0px;
  6511. top:0px;
  6512. width:242px;
  6513. height:33px;
  6514. background:inherit;
  6515. background-color:rgba(255, 255, 255, 0);
  6516. border:none;
  6517. border-radius:0px;
  6518. -moz-box-shadow:none;
  6519. -webkit-box-shadow:none;
  6520. box-shadow:none;
  6521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6522. font-weight:400;
  6523. font-style:normal;
  6524. font-size:14px;
  6525. color:#D7D7D7;
  6526. }
  6527. #u11869 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:1729px;
  6531. top:824px;
  6532. width:242px;
  6533. height:33px;
  6534. display:flex;
  6535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:14px;
  6539. color:#D7D7D7;
  6540. }
  6541. #u11869 .text {
  6542. position:absolute;
  6543. align-self:center;
  6544. padding:2px 2px 2px 2px;
  6545. box-sizing:border-box;
  6546. width:100%;
  6547. }
  6548. #u11869_div.disabled {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:242px;
  6554. height:33px;
  6555. background:inherit;
  6556. background-color:rgba(240, 240, 240, 1);
  6557. border:none;
  6558. border-radius:0px;
  6559. -moz-box-shadow:none;
  6560. -webkit-box-shadow:none;
  6561. box-shadow:none;
  6562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:14px;
  6566. color:#D7D7D7;
  6567. }
  6568. #u11869.disabled {
  6569. }
  6570. #u11870_div {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:73px;
  6576. height:40px;
  6577. background:inherit;
  6578. background-color:rgba(255, 255, 255, 0);
  6579. border:none;
  6580. border-top:0px;
  6581. border-right:0px;
  6582. border-bottom:0px;
  6583. border-radius:0px;
  6584. border-top-left-radius:0px;
  6585. border-bottom-left-radius:0px;
  6586. -moz-box-shadow:none;
  6587. -webkit-box-shadow:none;
  6588. box-shadow:none;
  6589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6590. font-weight:400;
  6591. font-style:normal;
  6592. font-size:14px;
  6593. }
  6594. #u11870 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:1717px;
  6598. top:619px;
  6599. width:73px;
  6600. height:40px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:14px;
  6606. }
  6607. #u11870 .text {
  6608. position:absolute;
  6609. align-self:center;
  6610. padding:5px 10px 5px 0px;
  6611. box-sizing:border-box;
  6612. width:100%;
  6613. }
  6614. #u11870_text {
  6615. border-width:0px;
  6616. white-space:nowrap;
  6617. text-transform:none;
  6618. }
  6619. #u11871 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:0px;
  6625. height:0px;
  6626. }
  6627. #u11872_div {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:684px;
  6633. height:40px;
  6634. background:inherit;
  6635. background-color:rgba(255, 255, 255, 1);
  6636. box-sizing:border-box;
  6637. border-width:1px;
  6638. border-style:solid;
  6639. border-color:rgba(201, 201, 201, 1);
  6640. border-radius:4px;
  6641. -moz-box-shadow:none;
  6642. -webkit-box-shadow:none;
  6643. box-shadow:none;
  6644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6645. font-weight:400;
  6646. font-style:normal;
  6647. font-size:14px;
  6648. text-align:right;
  6649. }
  6650. #u11872 {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:1717px;
  6654. top:661px;
  6655. width:684px;
  6656. height:40px;
  6657. display:flex;
  6658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6659. font-weight:400;
  6660. font-style:normal;
  6661. font-size:14px;
  6662. text-align:right;
  6663. }
  6664. #u11872 .text {
  6665. position:absolute;
  6666. align-self:center;
  6667. padding:2px 8px 2px 8px;
  6668. box-sizing:border-box;
  6669. width:100%;
  6670. }
  6671. #u11872_text {
  6672. border-width:0px;
  6673. word-wrap:break-word;
  6674. text-transform:none;
  6675. visibility:hidden;
  6676. }
  6677. #u11873_input {
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:242px;
  6682. height:33px;
  6683. padding:2px 2px 2px 2px;
  6684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6685. font-weight:400;
  6686. font-style:normal;
  6687. font-size:14px;
  6688. letter-spacing:normal;
  6689. color:#D7D7D7;
  6690. vertical-align:none;
  6691. text-align:left;
  6692. text-transform:none;
  6693. background-color:transparent;
  6694. border-color:transparent;
  6695. }
  6696. #u11873_input.disabled {
  6697. position:absolute;
  6698. left:0px;
  6699. top:0px;
  6700. width:242px;
  6701. height:33px;
  6702. padding:2px 2px 2px 2px;
  6703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6704. font-weight:400;
  6705. font-style:normal;
  6706. font-size:14px;
  6707. letter-spacing:normal;
  6708. color:#D7D7D7;
  6709. vertical-align:none;
  6710. text-align:left;
  6711. text-transform:none;
  6712. background-color:transparent;
  6713. border-color:transparent;
  6714. }
  6715. #u11873_div {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:242px;
  6721. height:33px;
  6722. background:inherit;
  6723. background-color:rgba(255, 255, 255, 0);
  6724. border:none;
  6725. border-radius:0px;
  6726. -moz-box-shadow:none;
  6727. -webkit-box-shadow:none;
  6728. box-shadow:none;
  6729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6730. font-weight:400;
  6731. font-style:normal;
  6732. font-size:14px;
  6733. color:#D7D7D7;
  6734. }
  6735. #u11873 {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:1729px;
  6739. top:664px;
  6740. width:242px;
  6741. height:33px;
  6742. display:flex;
  6743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6744. font-weight:400;
  6745. font-style:normal;
  6746. font-size:14px;
  6747. color:#D7D7D7;
  6748. }
  6749. #u11873 .text {
  6750. position:absolute;
  6751. align-self:center;
  6752. padding:2px 2px 2px 2px;
  6753. box-sizing:border-box;
  6754. width:100%;
  6755. }
  6756. #u11873_div.disabled {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:242px;
  6762. height:33px;
  6763. background:inherit;
  6764. background-color:rgba(240, 240, 240, 1);
  6765. border:none;
  6766. border-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:14px;
  6774. color:#D7D7D7;
  6775. }
  6776. #u11873.disabled {
  6777. }
  6778. #u11874_div {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:119px;
  6784. height:35px;
  6785. background:inherit;
  6786. background-color:rgba(255, 255, 255, 0);
  6787. border:none;
  6788. border-top:0px;
  6789. border-right:0px;
  6790. border-bottom:0px;
  6791. border-radius:0px;
  6792. border-top-left-radius:0px;
  6793. border-bottom-left-radius:0px;
  6794. -moz-box-shadow:none;
  6795. -webkit-box-shadow:none;
  6796. box-shadow:none;
  6797. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6798. font-weight:500;
  6799. font-style:normal;
  6800. font-size:18px;
  6801. }
  6802. #u11874 {
  6803. border-width:0px;
  6804. position:absolute;
  6805. left:1717px;
  6806. top:572px;
  6807. width:119px;
  6808. height:35px;
  6809. display:flex;
  6810. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6811. font-weight:500;
  6812. font-style:normal;
  6813. font-size:18px;
  6814. }
  6815. #u11874 .text {
  6816. position:absolute;
  6817. align-self:center;
  6818. padding:5px 10px 5px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u11874_text {
  6823. border-width:0px;
  6824. white-space:nowrap;
  6825. text-transform:none;
  6826. }
  6827. #u11875 {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:0px;
  6833. height:0px;
  6834. }
  6835. #u11876_div {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:720px;
  6841. height:60px;
  6842. background:inherit;
  6843. background-color:rgba(255, 255, 255, 1);
  6844. box-sizing:border-box;
  6845. border-width:1px;
  6846. border-style:solid;
  6847. border-color:rgba(242, 242, 242, 1);
  6848. border-radius:0px;
  6849. -moz-box-shadow:none;
  6850. -webkit-box-shadow:none;
  6851. box-shadow:none;
  6852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6853. font-weight:400;
  6854. font-style:normal;
  6855. font-size:14px;
  6856. color:#AAAAAA;
  6857. text-align:center;
  6858. line-height:30px;
  6859. }
  6860. #u11876 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:411px;
  6864. top:469px;
  6865. width:720px;
  6866. height:60px;
  6867. display:flex;
  6868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6869. font-weight:400;
  6870. font-style:normal;
  6871. font-size:14px;
  6872. color:#AAAAAA;
  6873. text-align:center;
  6874. line-height:30px;
  6875. }
  6876. #u11876 .text {
  6877. position:absolute;
  6878. align-self:center;
  6879. padding:5px 10px 5px 10px;
  6880. box-sizing:border-box;
  6881. width:100%;
  6882. }
  6883. #u11876_text {
  6884. border-width:0px;
  6885. word-wrap:break-word;
  6886. text-transform:none;
  6887. visibility:hidden;
  6888. }
  6889. #u11877_div {
  6890. border-width:0px;
  6891. position:absolute;
  6892. left:0px;
  6893. top:0px;
  6894. width:101px;
  6895. height:35px;
  6896. background:inherit;
  6897. background-color:rgba(255, 255, 255, 0);
  6898. border:none;
  6899. border-top:0px;
  6900. border-right:0px;
  6901. border-bottom:0px;
  6902. border-radius:0px;
  6903. border-top-left-radius:0px;
  6904. border-bottom-left-radius:0px;
  6905. -moz-box-shadow:none;
  6906. -webkit-box-shadow:none;
  6907. box-shadow:none;
  6908. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6909. font-weight:500;
  6910. font-style:normal;
  6911. font-size:18px;
  6912. }
  6913. #u11877 {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:442px;
  6917. top:482px;
  6918. width:101px;
  6919. height:35px;
  6920. display:flex;
  6921. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6922. font-weight:500;
  6923. font-style:normal;
  6924. font-size:18px;
  6925. }
  6926. #u11877 .text {
  6927. position:absolute;
  6928. align-self:center;
  6929. padding:5px 10px 5px 0px;
  6930. box-sizing:border-box;
  6931. width:100%;
  6932. }
  6933. #u11877_text {
  6934. border-width:0px;
  6935. white-space:nowrap;
  6936. text-transform:none;
  6937. }
  6938. #u11878_div {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:0px;
  6942. top:0px;
  6943. width:40px;
  6944. height:40px;
  6945. background:inherit;
  6946. background-color:rgba(255, 255, 255, 0);
  6947. border:none;
  6948. border-top:0px;
  6949. border-right:0px;
  6950. border-bottom:0px;
  6951. border-radius:0px;
  6952. border-top-left-radius:0px;
  6953. border-bottom-left-radius:0px;
  6954. -moz-box-shadow:none;
  6955. -webkit-box-shadow:none;
  6956. box-shadow:none;
  6957. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6958. font-weight:500;
  6959. font-style:normal;
  6960. font-size:24px;
  6961. text-align:center;
  6962. }
  6963. #u11878 {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:1091px;
  6967. top:469px;
  6968. width:40px;
  6969. height:40px;
  6970. display:flex;
  6971. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6972. font-weight:500;
  6973. font-style:normal;
  6974. font-size:24px;
  6975. text-align:center;
  6976. }
  6977. #u11878 .text {
  6978. position:absolute;
  6979. align-self:center;
  6980. padding:5px 10px 5px 0px;
  6981. box-sizing:border-box;
  6982. width:100%;
  6983. }
  6984. #u11878_text {
  6985. border-width:0px;
  6986. word-wrap:break-word;
  6987. text-transform:none;
  6988. }
  6989. #u11879_div {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:0px;
  6994. width:720px;
  6995. height:205px;
  6996. background:inherit;
  6997. background-color:rgba(255, 255, 255, 1);
  6998. box-sizing:border-box;
  6999. border-width:1px;
  7000. border-style:solid;
  7001. border-color:rgba(242, 242, 242, 1);
  7002. border-radius:0px;
  7003. -moz-box-shadow:none;
  7004. -webkit-box-shadow:none;
  7005. box-shadow:none;
  7006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7007. font-weight:400;
  7008. font-style:normal;
  7009. font-size:14px;
  7010. color:#AAAAAA;
  7011. text-align:center;
  7012. line-height:30px;
  7013. }
  7014. #u11879 {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:411px;
  7018. top:529px;
  7019. width:720px;
  7020. height:205px;
  7021. display:flex;
  7022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:14px;
  7026. color:#AAAAAA;
  7027. text-align:center;
  7028. line-height:30px;
  7029. }
  7030. #u11879 .text {
  7031. position:absolute;
  7032. align-self:center;
  7033. padding:5px 10px 5px 10px;
  7034. box-sizing:border-box;
  7035. width:100%;
  7036. }
  7037. #u11879_text {
  7038. border-width:0px;
  7039. word-wrap:break-word;
  7040. text-transform:none;
  7041. visibility:hidden;
  7042. }
  7043. #u11880 {
  7044. border-width:0px;
  7045. position:absolute;
  7046. left:0px;
  7047. top:0px;
  7048. width:0px;
  7049. height:0px;
  7050. }
  7051. #u11881_div {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:720px;
  7057. height:60px;
  7058. background:inherit;
  7059. background-color:rgba(255, 255, 255, 1);
  7060. box-sizing:border-box;
  7061. border-width:1px;
  7062. border-style:solid;
  7063. border-color:rgba(215, 215, 215, 1);
  7064. border-radius:0px;
  7065. -moz-box-shadow:none;
  7066. -webkit-box-shadow:none;
  7067. box-shadow:none;
  7068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7069. font-weight:400;
  7070. font-style:normal;
  7071. font-size:14px;
  7072. color:#AAAAAA;
  7073. text-align:center;
  7074. line-height:30px;
  7075. }
  7076. #u11881 {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:411px;
  7080. top:674px;
  7081. width:720px;
  7082. height:60px;
  7083. display:flex;
  7084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7085. font-weight:400;
  7086. font-style:normal;
  7087. font-size:14px;
  7088. color:#AAAAAA;
  7089. text-align:center;
  7090. line-height:30px;
  7091. }
  7092. #u11881 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:5px 10px 5px 10px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u11881_text {
  7100. border-width:0px;
  7101. word-wrap:break-word;
  7102. text-transform:none;
  7103. visibility:hidden;
  7104. }
  7105. #u11882_div {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:0px;
  7109. top:0px;
  7110. width:80px;
  7111. height:30px;
  7112. background:inherit;
  7113. background-color:rgba(24, 144, 255, 1);
  7114. border:none;
  7115. border-radius:4px;
  7116. -moz-box-shadow:none;
  7117. -webkit-box-shadow:none;
  7118. box-shadow:none;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:14px;
  7123. color:#FFFFFF;
  7124. }
  7125. #u11882 {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:1011px;
  7129. top:689px;
  7130. width:80px;
  7131. height:30px;
  7132. display:flex;
  7133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7134. font-weight:400;
  7135. font-style:normal;
  7136. font-size:14px;
  7137. color:#FFFFFF;
  7138. }
  7139. #u11882 .text {
  7140. position:absolute;
  7141. align-self:center;
  7142. padding:2px 2px 2px 2px;
  7143. box-sizing:border-box;
  7144. width:100%;
  7145. }
  7146. #u11882_text {
  7147. border-width:0px;
  7148. word-wrap:break-word;
  7149. text-transform:none;
  7150. }
  7151. #u11883_div {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:80px;
  7157. height:30px;
  7158. background:inherit;
  7159. background-color:rgba(255, 255, 255, 1);
  7160. box-sizing:border-box;
  7161. border-width:1px;
  7162. border-style:solid;
  7163. border-color:rgba(170, 170, 170, 1);
  7164. border-radius:4px;
  7165. -moz-box-shadow:none;
  7166. -webkit-box-shadow:none;
  7167. box-shadow:none;
  7168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7169. font-weight:400;
  7170. font-style:normal;
  7171. font-size:14px;
  7172. }
  7173. #u11883 {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:921px;
  7177. top:689px;
  7178. width:80px;
  7179. height:30px;
  7180. display:flex;
  7181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7182. font-weight:400;
  7183. font-style:normal;
  7184. font-size:14px;
  7185. }
  7186. #u11883 .text {
  7187. position:absolute;
  7188. align-self:center;
  7189. padding:2px 2px 2px 2px;
  7190. box-sizing:border-box;
  7191. width:100%;
  7192. }
  7193. #u11883_text {
  7194. border-width:0px;
  7195. word-wrap:break-word;
  7196. text-transform:none;
  7197. }
  7198. #u11884_div {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:0px;
  7202. top:0px;
  7203. width:99px;
  7204. height:40px;
  7205. background:inherit;
  7206. background-color:rgba(255, 255, 255, 0);
  7207. border:none;
  7208. border-left:0px;
  7209. border-top:0px;
  7210. border-right:0px;
  7211. border-radius:0px;
  7212. border-bottom-right-radius:0px;
  7213. border-bottom-left-radius:0px;
  7214. -moz-box-shadow:none;
  7215. -webkit-box-shadow:none;
  7216. box-shadow:none;
  7217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7218. font-weight:400;
  7219. font-style:normal;
  7220. font-size:14px;
  7221. }
  7222. #u11884 {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:464px;
  7226. top:554px;
  7227. width:99px;
  7228. height:40px;
  7229. display:flex;
  7230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7231. font-weight:400;
  7232. font-style:normal;
  7233. font-size:14px;
  7234. }
  7235. #u11884 .text {
  7236. position:absolute;
  7237. align-self:center;
  7238. padding:0px 0px 0px 0px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u11884_text {
  7243. border-width:0px;
  7244. white-space:nowrap;
  7245. text-transform:none;
  7246. }
  7247. #u11885 {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:0px;
  7253. height:0px;
  7254. }
  7255. #u11886_div {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:0px;
  7259. top:0px;
  7260. width:589px;
  7261. height:40px;
  7262. background:inherit;
  7263. background-color:rgba(255, 255, 255, 1);
  7264. box-sizing:border-box;
  7265. border-width:1px;
  7266. border-style:solid;
  7267. border-color:rgba(215, 215, 215, 1);
  7268. border-radius:4px;
  7269. -moz-box-shadow:none;
  7270. -webkit-box-shadow:none;
  7271. box-shadow:none;
  7272. font-size:11px;
  7273. }
  7274. #u11886 {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:464px;
  7278. top:594px;
  7279. width:589px;
  7280. height:40px;
  7281. display:flex;
  7282. font-size:11px;
  7283. }
  7284. #u11886 .text {
  7285. position:absolute;
  7286. align-self:center;
  7287. padding:2px 2px 2px 2px;
  7288. box-sizing:border-box;
  7289. width:100%;
  7290. }
  7291. #u11886_text {
  7292. border-width:0px;
  7293. word-wrap:break-word;
  7294. text-transform:none;
  7295. visibility:hidden;
  7296. }
  7297. #u11887_input {
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:571px;
  7302. height:31px;
  7303. padding:2px 2px 2px 2px;
  7304. font-family:'ArialMT', 'Arial', sans-serif;
  7305. font-weight:400;
  7306. font-style:normal;
  7307. font-size:11px;
  7308. letter-spacing:normal;
  7309. color:#AAAAAA;
  7310. vertical-align:none;
  7311. text-align:left;
  7312. text-transform:none;
  7313. background-color:transparent;
  7314. border-color:transparent;
  7315. }
  7316. #u11887_input.disabled {
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:571px;
  7321. height:31px;
  7322. padding:2px 2px 2px 2px;
  7323. font-family:'ArialMT', 'Arial', sans-serif;
  7324. font-weight:400;
  7325. font-style:normal;
  7326. font-size:11px;
  7327. letter-spacing:normal;
  7328. color:#AAAAAA;
  7329. vertical-align:none;
  7330. text-align:left;
  7331. text-transform:none;
  7332. background-color:transparent;
  7333. border-color:transparent;
  7334. }
  7335. #u11887_div {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:571px;
  7341. height:31px;
  7342. background:inherit;
  7343. background-color:rgba(255, 255, 255, 1);
  7344. border:none;
  7345. border-radius:0px;
  7346. -moz-box-shadow:none;
  7347. -webkit-box-shadow:none;
  7348. box-shadow:none;
  7349. font-size:11px;
  7350. color:#AAAAAA;
  7351. }
  7352. #u11887 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:473px;
  7356. top:597px;
  7357. width:571px;
  7358. height:31px;
  7359. display:flex;
  7360. font-size:11px;
  7361. color:#AAAAAA;
  7362. }
  7363. #u11887 .text {
  7364. position:absolute;
  7365. align-self:flex-start;
  7366. padding:2px 2px 2px 2px;
  7367. box-sizing:border-box;
  7368. width:100%;
  7369. }
  7370. #u11887_div.disabled {
  7371. border-width:0px;
  7372. position:absolute;
  7373. left:0px;
  7374. top:0px;
  7375. width:571px;
  7376. height:31px;
  7377. background:inherit;
  7378. background-color:rgba(240, 240, 240, 1);
  7379. border:none;
  7380. border-radius:0px;
  7381. -moz-box-shadow:none;
  7382. -webkit-box-shadow:none;
  7383. box-shadow:none;
  7384. font-size:11px;
  7385. color:#AAAAAA;
  7386. }
  7387. #u11887.disabled {
  7388. }
  7389. .u11887_input_option {
  7390. font-size:11px;
  7391. }