styles.css 138 KB

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