styles.css 108 KB

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