styles.css 102 KB

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