styles.css 100 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u119843_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. #u119843 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u119843 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u119843_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u119844_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. #u119844 {
  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. #u119844 .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. #u119844_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u119845_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. #u119845 {
  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. #u119845 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u119845_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u119846 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u119847_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u119847 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u119847 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u119847_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u119848_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. #u119848 {
  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. #u119848 .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. #u119848_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u119849_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. #u119849 {
  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. #u119849 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u119849_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u119850 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u119851_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. #u119851_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. #u119851_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. #u119851 {
  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. #u119851 .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. #u119851_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. #u119851.disabled {
  356. }
  357. .u119851_input_option {
  358. font-size:14px;
  359. }
  360. #u119852_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u119852 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u119852 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u119852_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u119853_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. #u119853 {
  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. #u119853 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u119853_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u119854_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. #u119854 {
  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. #u119854 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u119854_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u119855 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u119856_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. #u119856 {
  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. #u119856 .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. #u119856_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u119857_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u119857 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u119857 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u119857_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u119858 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u119859_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. #u119859 {
  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. #u119859 .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. #u119859_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u119860_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u119860 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u119860 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u119860_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u119861 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u119862_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. #u119862 {
  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. #u119862 .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. #u119862_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u119863_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u119863 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u119863 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u119863_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u119864 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u119865_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. #u119865 {
  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. #u119865 .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. #u119865_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u119866_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u119866 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u119866 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u119866_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u119867 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u119868_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. #u119868 {
  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. #u119868 .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. #u119868_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u119869_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u119869 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u119869 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u119869_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u119870 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u119871_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. #u119871 {
  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. #u119871 .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. #u119871_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u119872_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u119872 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u119872 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u119872_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u119873 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u119874_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. #u119874 {
  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. #u119874 .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. #u119874_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u119875_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u119875 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u119875 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u119875_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u119876 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u119877_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. #u119877 {
  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. #u119877 .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. #u119877_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u119878_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u119878 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u119878 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u119878_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u119879 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u119880_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. #u119880 {
  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. #u119880 .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. #u119880_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u119881_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u119881 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u119881 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u119881_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u119882 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u119883_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. #u119883 {
  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. #u119883 .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. #u119883_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u119884_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u119884 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u119884 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u119884_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u119885_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. #u119885 {
  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. #u119885 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u119885_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u119886_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u119886 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u119886 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u119886_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u119887_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. #u119887 {
  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. #u119887 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u119887_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u119888_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u119888 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u119888 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u119888_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u119889 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u119890_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. #u119890 {
  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. #u119890 .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. #u119890_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u119891_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u119891 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u119891 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u119891_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u119892 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u119893_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. #u119893 {
  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. #u119893 .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. #u119893_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u119894_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u119894 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u119894 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u119894_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u119895_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1000px;
  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. #u119895 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:230px;
  1658. width:1260px;
  1659. height:1000px;
  1660. display:flex;
  1661. }
  1662. #u119895 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u119895_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u119896_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:1260px;
  1681. height:170px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 1);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. }
  1690. #u119896 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:330px;
  1694. top:50px;
  1695. width:1260px;
  1696. height:170px;
  1697. display:flex;
  1698. }
  1699. #u119896 .text {
  1700. position:absolute;
  1701. align-self:center;
  1702. padding:2px 2px 2px 2px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u119896_text {
  1707. border-width:0px;
  1708. word-wrap:break-word;
  1709. text-transform:none;
  1710. visibility:hidden;
  1711. }
  1712. #u119897_div {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:156px;
  1718. height:50px;
  1719. background:inherit;
  1720. background-color:rgba(224, 231, 247, 0);
  1721. border:none;
  1722. border-radius:0px;
  1723. -moz-box-shadow:none;
  1724. -webkit-box-shadow:none;
  1725. box-shadow:none;
  1726. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1727. font-weight:500;
  1728. font-style:normal;
  1729. font-size:18px;
  1730. }
  1731. #u119897 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:350px;
  1735. top:50px;
  1736. width:156px;
  1737. height:50px;
  1738. display:flex;
  1739. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1740. font-weight:500;
  1741. font-style:normal;
  1742. font-size:18px;
  1743. }
  1744. #u119897 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:0px 0px 0px 0px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u119897_text {
  1752. border-width:0px;
  1753. white-space:nowrap;
  1754. text-transform:none;
  1755. }
  1756. #u119898 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:350px;
  1760. top:302px;
  1761. width:1223px;
  1762. height:190px;
  1763. }
  1764. #u119899_img {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:136px;
  1770. height:38px;
  1771. }
  1772. #u119899 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:136px;
  1778. height:38px;
  1779. display:flex;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:14px;
  1784. color:#FFFFFF;
  1785. line-height:30px;
  1786. }
  1787. #u119899 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 0px 2px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u119899_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u119900_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:136px;
  1805. height:38px;
  1806. }
  1807. #u119900 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:136px;
  1811. top:0px;
  1812. width:136px;
  1813. height:38px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:14px;
  1819. color:#FFFFFF;
  1820. line-height:30px;
  1821. }
  1822. #u119900 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 0px 2px 0px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u119900_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. }
  1834. #u119901_img {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:136px;
  1840. height:38px;
  1841. }
  1842. #u119901 {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:272px;
  1846. top:0px;
  1847. width:136px;
  1848. height:38px;
  1849. display:flex;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:14px;
  1854. color:#FFFFFF;
  1855. line-height:30px;
  1856. }
  1857. #u119901 .text {
  1858. position:absolute;
  1859. align-self:center;
  1860. padding:2px 0px 2px 0px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u119901_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. }
  1869. #u119902_img {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:136px;
  1875. height:38px;
  1876. }
  1877. #u119902 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:408px;
  1881. top:0px;
  1882. width:136px;
  1883. height:38px;
  1884. display:flex;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:14px;
  1889. color:#FFFFFF;
  1890. line-height:30px;
  1891. }
  1892. #u119902 .text {
  1893. position:absolute;
  1894. align-self:center;
  1895. padding:2px 0px 2px 0px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u119902_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. }
  1904. #u119903_img {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:136px;
  1910. height:38px;
  1911. }
  1912. #u119903 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:544px;
  1916. top:0px;
  1917. width:136px;
  1918. height:38px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1921. font-weight:400;
  1922. font-style:normal;
  1923. font-size:14px;
  1924. color:#FFFFFF;
  1925. line-height:30px;
  1926. }
  1927. #u119903 .text {
  1928. position:absolute;
  1929. align-self:center;
  1930. padding:2px 0px 2px 0px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u119903_text {
  1935. border-width:0px;
  1936. word-wrap:break-word;
  1937. text-transform:none;
  1938. }
  1939. #u119904_img {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:136px;
  1945. height:38px;
  1946. }
  1947. #u119904 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:680px;
  1951. top:0px;
  1952. width:136px;
  1953. height:38px;
  1954. display:flex;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:14px;
  1959. color:#FFFFFF;
  1960. line-height:30px;
  1961. }
  1962. #u119904 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 0px 2px 0px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u119904_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. }
  1974. #u119905_img {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:136px;
  1980. height:38px;
  1981. }
  1982. #u119905 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:816px;
  1986. top:0px;
  1987. width:136px;
  1988. height:38px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:14px;
  1994. color:#FFFFFF;
  1995. line-height:30px;
  1996. }
  1997. #u119905 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 0px 2px 0px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u119905_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. }
  2009. #u119906_img {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:136px;
  2015. height:38px;
  2016. }
  2017. #u119906 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:952px;
  2021. top:0px;
  2022. width:136px;
  2023. height:38px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:14px;
  2029. color:#FFFFFF;
  2030. line-height:30px;
  2031. }
  2032. #u119906 .text {
  2033. position:absolute;
  2034. align-self:center;
  2035. padding:2px 0px 2px 0px;
  2036. box-sizing:border-box;
  2037. width:100%;
  2038. }
  2039. #u119906_text {
  2040. border-width:0px;
  2041. word-wrap:break-word;
  2042. text-transform:none;
  2043. }
  2044. #u119907_img {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:135px;
  2050. height:38px;
  2051. }
  2052. #u119907 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:1088px;
  2056. top:0px;
  2057. width:135px;
  2058. height:38px;
  2059. display:flex;
  2060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2061. font-weight:400;
  2062. font-style:normal;
  2063. font-size:14px;
  2064. color:#FFFFFF;
  2065. line-height:30px;
  2066. }
  2067. #u119907 .text {
  2068. position:absolute;
  2069. align-self:center;
  2070. padding:2px 0px 2px 0px;
  2071. box-sizing:border-box;
  2072. width:100%;
  2073. }
  2074. #u119907_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. }
  2079. #u119908_img {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:136px;
  2085. height:38px;
  2086. }
  2087. #u119908 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:38px;
  2092. width:136px;
  2093. height:38px;
  2094. display:flex;
  2095. font-size:14px;
  2096. line-height:30px;
  2097. }
  2098. #u119908 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 0px 2px 0px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u119908_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u119909_img {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:136px;
  2117. height:38px;
  2118. }
  2119. #u119909 {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:136px;
  2123. top:38px;
  2124. width:136px;
  2125. height:38px;
  2126. display:flex;
  2127. font-size:14px;
  2128. line-height:30px;
  2129. }
  2130. #u119909 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:2px 0px 2px 0px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u119909_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. visibility:hidden;
  2142. }
  2143. #u119910_img {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:136px;
  2149. height:38px;
  2150. }
  2151. #u119910 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:272px;
  2155. top:38px;
  2156. width:136px;
  2157. height:38px;
  2158. display:flex;
  2159. font-size:14px;
  2160. line-height:30px;
  2161. }
  2162. #u119910 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 0px 2px 0px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u119910_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u119911_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:136px;
  2181. height:38px;
  2182. }
  2183. #u119911 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:408px;
  2187. top:38px;
  2188. width:136px;
  2189. height:38px;
  2190. display:flex;
  2191. font-size:14px;
  2192. line-height:30px;
  2193. }
  2194. #u119911 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:2px 0px 2px 0px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u119911_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. visibility:hidden;
  2206. }
  2207. #u119912_img {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:136px;
  2213. height:38px;
  2214. }
  2215. #u119912 {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:544px;
  2219. top:38px;
  2220. width:136px;
  2221. height:38px;
  2222. display:flex;
  2223. font-size:14px;
  2224. line-height:30px;
  2225. }
  2226. #u119912 .text {
  2227. position:absolute;
  2228. align-self:center;
  2229. padding:2px 0px 2px 0px;
  2230. box-sizing:border-box;
  2231. width:100%;
  2232. }
  2233. #u119912_text {
  2234. border-width:0px;
  2235. word-wrap:break-word;
  2236. text-transform:none;
  2237. visibility:hidden;
  2238. }
  2239. #u119913_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:136px;
  2245. height:38px;
  2246. }
  2247. #u119913 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:680px;
  2251. top:38px;
  2252. width:136px;
  2253. height:38px;
  2254. display:flex;
  2255. font-size:14px;
  2256. line-height:30px;
  2257. }
  2258. #u119913 .text {
  2259. position:absolute;
  2260. align-self:center;
  2261. padding:2px 0px 2px 0px;
  2262. box-sizing:border-box;
  2263. width:100%;
  2264. }
  2265. #u119913_text {
  2266. border-width:0px;
  2267. word-wrap:break-word;
  2268. text-transform:none;
  2269. visibility:hidden;
  2270. }
  2271. #u119914_img {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:136px;
  2277. height:38px;
  2278. }
  2279. #u119914 {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:816px;
  2283. top:38px;
  2284. width:136px;
  2285. height:38px;
  2286. display:flex;
  2287. font-size:14px;
  2288. line-height:30px;
  2289. }
  2290. #u119914 .text {
  2291. position:absolute;
  2292. align-self:center;
  2293. padding:2px 0px 2px 0px;
  2294. box-sizing:border-box;
  2295. width:100%;
  2296. }
  2297. #u119914_text {
  2298. border-width:0px;
  2299. word-wrap:break-word;
  2300. text-transform:none;
  2301. visibility:hidden;
  2302. }
  2303. #u119915_img {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:0px;
  2307. top:0px;
  2308. width:136px;
  2309. height:38px;
  2310. }
  2311. #u119915 {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:952px;
  2315. top:38px;
  2316. width:136px;
  2317. height:38px;
  2318. display:flex;
  2319. font-size:14px;
  2320. line-height:30px;
  2321. }
  2322. #u119915 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 0px 2px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u119915_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. visibility:hidden;
  2334. }
  2335. #u119916_img {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:135px;
  2341. height:38px;
  2342. }
  2343. #u119916 {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:1088px;
  2347. top:38px;
  2348. width:135px;
  2349. height:38px;
  2350. display:flex;
  2351. font-size:14px;
  2352. line-height:30px;
  2353. }
  2354. #u119916 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 0px 2px 0px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u119916_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. visibility:hidden;
  2366. }
  2367. #u119917_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:136px;
  2373. height:38px;
  2374. }
  2375. #u119917 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:76px;
  2380. width:136px;
  2381. height:38px;
  2382. display:flex;
  2383. font-size:14px;
  2384. line-height:30px;
  2385. }
  2386. #u119917 .text {
  2387. position:absolute;
  2388. align-self:center;
  2389. padding:2px 0px 2px 0px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u119917_text {
  2394. border-width:0px;
  2395. word-wrap:break-word;
  2396. text-transform:none;
  2397. visibility:hidden;
  2398. }
  2399. #u119918_img {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:136px;
  2405. height:38px;
  2406. }
  2407. #u119918 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:136px;
  2411. top:76px;
  2412. width:136px;
  2413. height:38px;
  2414. display:flex;
  2415. font-size:14px;
  2416. line-height:30px;
  2417. }
  2418. #u119918 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:2px 0px 2px 0px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u119918_text {
  2426. border-width:0px;
  2427. word-wrap:break-word;
  2428. text-transform:none;
  2429. visibility:hidden;
  2430. }
  2431. #u119919_img {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:136px;
  2437. height:38px;
  2438. }
  2439. #u119919 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:272px;
  2443. top:76px;
  2444. width:136px;
  2445. height:38px;
  2446. display:flex;
  2447. font-size:14px;
  2448. line-height:30px;
  2449. }
  2450. #u119919 .text {
  2451. position:absolute;
  2452. align-self:center;
  2453. padding:2px 0px 2px 0px;
  2454. box-sizing:border-box;
  2455. width:100%;
  2456. }
  2457. #u119919_text {
  2458. border-width:0px;
  2459. word-wrap:break-word;
  2460. text-transform:none;
  2461. visibility:hidden;
  2462. }
  2463. #u119920_img {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:136px;
  2469. height:38px;
  2470. }
  2471. #u119920 {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:408px;
  2475. top:76px;
  2476. width:136px;
  2477. height:38px;
  2478. display:flex;
  2479. font-size:14px;
  2480. line-height:30px;
  2481. }
  2482. #u119920 .text {
  2483. position:absolute;
  2484. align-self:center;
  2485. padding:2px 0px 2px 0px;
  2486. box-sizing:border-box;
  2487. width:100%;
  2488. }
  2489. #u119920_text {
  2490. border-width:0px;
  2491. word-wrap:break-word;
  2492. text-transform:none;
  2493. visibility:hidden;
  2494. }
  2495. #u119921_img {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:136px;
  2501. height:38px;
  2502. }
  2503. #u119921 {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:544px;
  2507. top:76px;
  2508. width:136px;
  2509. height:38px;
  2510. display:flex;
  2511. font-size:14px;
  2512. line-height:30px;
  2513. }
  2514. #u119921 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 0px 2px 0px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u119921_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. visibility:hidden;
  2526. }
  2527. #u119922_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:136px;
  2533. height:38px;
  2534. }
  2535. #u119922 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:680px;
  2539. top:76px;
  2540. width:136px;
  2541. height:38px;
  2542. display:flex;
  2543. font-size:14px;
  2544. line-height:30px;
  2545. }
  2546. #u119922 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 0px 2px 0px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u119922_text {
  2554. border-width:0px;
  2555. word-wrap:break-word;
  2556. text-transform:none;
  2557. visibility:hidden;
  2558. }
  2559. #u119923_img {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:136px;
  2565. height:38px;
  2566. }
  2567. #u119923 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:816px;
  2571. top:76px;
  2572. width:136px;
  2573. height:38px;
  2574. display:flex;
  2575. font-size:14px;
  2576. line-height:30px;
  2577. }
  2578. #u119923 .text {
  2579. position:absolute;
  2580. align-self:center;
  2581. padding:2px 0px 2px 0px;
  2582. box-sizing:border-box;
  2583. width:100%;
  2584. }
  2585. #u119923_text {
  2586. border-width:0px;
  2587. word-wrap:break-word;
  2588. text-transform:none;
  2589. visibility:hidden;
  2590. }
  2591. #u119924_img {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:136px;
  2597. height:38px;
  2598. }
  2599. #u119924 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:952px;
  2603. top:76px;
  2604. width:136px;
  2605. height:38px;
  2606. display:flex;
  2607. font-size:14px;
  2608. line-height:30px;
  2609. }
  2610. #u119924 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 0px 2px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u119924_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. visibility:hidden;
  2622. }
  2623. #u119925_img {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:135px;
  2629. height:38px;
  2630. }
  2631. #u119925 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:1088px;
  2635. top:76px;
  2636. width:135px;
  2637. height:38px;
  2638. display:flex;
  2639. font-size:14px;
  2640. line-height:30px;
  2641. }
  2642. #u119925 .text {
  2643. position:absolute;
  2644. align-self:center;
  2645. padding:2px 0px 2px 0px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u119925_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. visibility:hidden;
  2654. }
  2655. #u119926_img {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:136px;
  2661. height:38px;
  2662. }
  2663. #u119926 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:114px;
  2668. width:136px;
  2669. height:38px;
  2670. display:flex;
  2671. font-size:14px;
  2672. line-height:30px;
  2673. }
  2674. #u119926 .text {
  2675. position:absolute;
  2676. align-self:center;
  2677. padding:2px 0px 2px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u119926_text {
  2682. border-width:0px;
  2683. word-wrap:break-word;
  2684. text-transform:none;
  2685. visibility:hidden;
  2686. }
  2687. #u119927_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:136px;
  2693. height:38px;
  2694. }
  2695. #u119927 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:136px;
  2699. top:114px;
  2700. width:136px;
  2701. height:38px;
  2702. display:flex;
  2703. font-size:14px;
  2704. line-height:30px;
  2705. }
  2706. #u119927 .text {
  2707. position:absolute;
  2708. align-self:center;
  2709. padding:2px 0px 2px 0px;
  2710. box-sizing:border-box;
  2711. width:100%;
  2712. }
  2713. #u119927_text {
  2714. border-width:0px;
  2715. word-wrap:break-word;
  2716. text-transform:none;
  2717. visibility:hidden;
  2718. }
  2719. #u119928_img {
  2720. border-width:0px;
  2721. position:absolute;
  2722. left:0px;
  2723. top:0px;
  2724. width:136px;
  2725. height:38px;
  2726. }
  2727. #u119928 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:272px;
  2731. top:114px;
  2732. width:136px;
  2733. height:38px;
  2734. display:flex;
  2735. font-size:14px;
  2736. line-height:30px;
  2737. }
  2738. #u119928 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 0px 2px 0px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u119928_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u119929_img {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:136px;
  2757. height:38px;
  2758. }
  2759. #u119929 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:408px;
  2763. top:114px;
  2764. width:136px;
  2765. height:38px;
  2766. display:flex;
  2767. font-size:14px;
  2768. line-height:30px;
  2769. }
  2770. #u119929 .text {
  2771. position:absolute;
  2772. align-self:center;
  2773. padding:2px 0px 2px 0px;
  2774. box-sizing:border-box;
  2775. width:100%;
  2776. }
  2777. #u119929_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u119930_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:136px;
  2789. height:38px;
  2790. }
  2791. #u119930 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:544px;
  2795. top:114px;
  2796. width:136px;
  2797. height:38px;
  2798. display:flex;
  2799. font-size:14px;
  2800. line-height:30px;
  2801. }
  2802. #u119930 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:2px 0px 2px 0px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u119930_text {
  2810. border-width:0px;
  2811. word-wrap:break-word;
  2812. text-transform:none;
  2813. visibility:hidden;
  2814. }
  2815. #u119931_img {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:136px;
  2821. height:38px;
  2822. }
  2823. #u119931 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:680px;
  2827. top:114px;
  2828. width:136px;
  2829. height:38px;
  2830. display:flex;
  2831. font-size:14px;
  2832. line-height:30px;
  2833. }
  2834. #u119931 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:2px 0px 2px 0px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u119931_text {
  2842. border-width:0px;
  2843. word-wrap:break-word;
  2844. text-transform:none;
  2845. visibility:hidden;
  2846. }
  2847. #u119932_img {
  2848. border-width:0px;
  2849. position:absolute;
  2850. left:0px;
  2851. top:0px;
  2852. width:136px;
  2853. height:38px;
  2854. }
  2855. #u119932 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:816px;
  2859. top:114px;
  2860. width:136px;
  2861. height:38px;
  2862. display:flex;
  2863. font-size:14px;
  2864. line-height:30px;
  2865. }
  2866. #u119932 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 0px 2px 0px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u119932_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u119933_img {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:136px;
  2885. height:38px;
  2886. }
  2887. #u119933 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:952px;
  2891. top:114px;
  2892. width:136px;
  2893. height:38px;
  2894. display:flex;
  2895. font-size:14px;
  2896. line-height:30px;
  2897. }
  2898. #u119933 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 0px 2px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u119933_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u119934_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:135px;
  2917. height:38px;
  2918. }
  2919. #u119934 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:1088px;
  2923. top:114px;
  2924. width:135px;
  2925. height:38px;
  2926. display:flex;
  2927. font-size:14px;
  2928. line-height:30px;
  2929. }
  2930. #u119934 .text {
  2931. position:absolute;
  2932. align-self:center;
  2933. padding:2px 0px 2px 0px;
  2934. box-sizing:border-box;
  2935. width:100%;
  2936. }
  2937. #u119934_text {
  2938. border-width:0px;
  2939. word-wrap:break-word;
  2940. text-transform:none;
  2941. visibility:hidden;
  2942. }
  2943. #u119935_img {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:136px;
  2949. height:38px;
  2950. }
  2951. #u119935 {
  2952. border-width:0px;
  2953. position:absolute;
  2954. left:0px;
  2955. top:152px;
  2956. width:136px;
  2957. height:38px;
  2958. display:flex;
  2959. font-size:14px;
  2960. line-height:30px;
  2961. }
  2962. #u119935 .text {
  2963. position:absolute;
  2964. align-self:center;
  2965. padding:2px 0px 2px 0px;
  2966. box-sizing:border-box;
  2967. width:100%;
  2968. }
  2969. #u119935_text {
  2970. border-width:0px;
  2971. word-wrap:break-word;
  2972. text-transform:none;
  2973. visibility:hidden;
  2974. }
  2975. #u119936_img {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:0px;
  2979. top:0px;
  2980. width:136px;
  2981. height:38px;
  2982. }
  2983. #u119936 {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:136px;
  2987. top:152px;
  2988. width:136px;
  2989. height:38px;
  2990. display:flex;
  2991. font-size:14px;
  2992. line-height:30px;
  2993. }
  2994. #u119936 .text {
  2995. position:absolute;
  2996. align-self:center;
  2997. padding:2px 0px 2px 0px;
  2998. box-sizing:border-box;
  2999. width:100%;
  3000. }
  3001. #u119936_text {
  3002. border-width:0px;
  3003. word-wrap:break-word;
  3004. text-transform:none;
  3005. visibility:hidden;
  3006. }
  3007. #u119937_img {
  3008. border-width:0px;
  3009. position:absolute;
  3010. left:0px;
  3011. top:0px;
  3012. width:136px;
  3013. height:38px;
  3014. }
  3015. #u119937 {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:272px;
  3019. top:152px;
  3020. width:136px;
  3021. height:38px;
  3022. display:flex;
  3023. font-size:14px;
  3024. line-height:30px;
  3025. }
  3026. #u119937 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 0px 2px 0px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u119937_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. visibility:hidden;
  3038. }
  3039. #u119938_img {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:0px;
  3043. top:0px;
  3044. width:136px;
  3045. height:38px;
  3046. }
  3047. #u119938 {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:408px;
  3051. top:152px;
  3052. width:136px;
  3053. height:38px;
  3054. display:flex;
  3055. font-size:14px;
  3056. line-height:30px;
  3057. }
  3058. #u119938 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 0px 2px 0px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u119938_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. visibility:hidden;
  3070. }
  3071. #u119939_img {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:136px;
  3077. height:38px;
  3078. }
  3079. #u119939 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:544px;
  3083. top:152px;
  3084. width:136px;
  3085. height:38px;
  3086. display:flex;
  3087. font-size:14px;
  3088. line-height:30px;
  3089. }
  3090. #u119939 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 0px 2px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u119939_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u119940_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:136px;
  3109. height:38px;
  3110. }
  3111. #u119940 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:680px;
  3115. top:152px;
  3116. width:136px;
  3117. height:38px;
  3118. display:flex;
  3119. font-size:14px;
  3120. line-height:30px;
  3121. }
  3122. #u119940 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:2px 0px 2px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u119940_text {
  3130. border-width:0px;
  3131. word-wrap:break-word;
  3132. text-transform:none;
  3133. visibility:hidden;
  3134. }
  3135. #u119941_img {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:0px;
  3139. top:0px;
  3140. width:136px;
  3141. height:38px;
  3142. }
  3143. #u119941 {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:816px;
  3147. top:152px;
  3148. width:136px;
  3149. height:38px;
  3150. display:flex;
  3151. font-size:14px;
  3152. line-height:30px;
  3153. }
  3154. #u119941 .text {
  3155. position:absolute;
  3156. align-self:center;
  3157. padding:2px 0px 2px 0px;
  3158. box-sizing:border-box;
  3159. width:100%;
  3160. }
  3161. #u119941_text {
  3162. border-width:0px;
  3163. word-wrap:break-word;
  3164. text-transform:none;
  3165. visibility:hidden;
  3166. }
  3167. #u119942_img {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:136px;
  3173. height:38px;
  3174. }
  3175. #u119942 {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:952px;
  3179. top:152px;
  3180. width:136px;
  3181. height:38px;
  3182. display:flex;
  3183. font-size:14px;
  3184. line-height:30px;
  3185. }
  3186. #u119942 .text {
  3187. position:absolute;
  3188. align-self:center;
  3189. padding:2px 0px 2px 0px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u119942_text {
  3194. border-width:0px;
  3195. word-wrap:break-word;
  3196. text-transform:none;
  3197. visibility:hidden;
  3198. }
  3199. #u119943_img {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:135px;
  3205. height:38px;
  3206. }
  3207. #u119943 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:1088px;
  3211. top:152px;
  3212. width:135px;
  3213. height:38px;
  3214. display:flex;
  3215. font-size:14px;
  3216. line-height:30px;
  3217. }
  3218. #u119943 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 0px 2px 0px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u119943_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. visibility:hidden;
  3230. }
  3231. #u119944 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:0px;
  3237. height:0px;
  3238. }
  3239. #u119945_div {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:61px;
  3245. height:32px;
  3246. background:inherit;
  3247. background-color:rgba(24, 144, 255, 1);
  3248. border:none;
  3249. border-radius:4px;
  3250. -moz-box-shadow:none;
  3251. -webkit-box-shadow:none;
  3252. box-shadow:none;
  3253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3254. font-weight:400;
  3255. font-style:normal;
  3256. font-size:14px;
  3257. color:#FFFFFF;
  3258. }
  3259. #u119945 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:1400px;
  3263. top:251px;
  3264. width:61px;
  3265. height:32px;
  3266. display:flex;
  3267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:14px;
  3271. color:#FFFFFF;
  3272. }
  3273. #u119945 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:2px 16px 2px 16px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u119945_text {
  3281. border-width:0px;
  3282. white-space:nowrap;
  3283. text-transform:none;
  3284. }
  3285. #u119946_div {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:61px;
  3291. height:32px;
  3292. background:inherit;
  3293. background-color:rgba(255, 255, 255, 1);
  3294. box-sizing:border-box;
  3295. border-width:1px;
  3296. border-style:solid;
  3297. border-color:rgba(217, 217, 217, 1);
  3298. border-radius:4px;
  3299. -moz-box-shadow:none;
  3300. -webkit-box-shadow:none;
  3301. box-shadow:none;
  3302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3303. font-weight:400;
  3304. font-style:normal;
  3305. font-size:14px;
  3306. color:rgba(0, 0, 0, 0.647058823529412);
  3307. line-height:21px;
  3308. }
  3309. #u119946 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:1471px;
  3313. top:251px;
  3314. width:61px;
  3315. height:32px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:14px;
  3321. color:rgba(0, 0, 0, 0.647058823529412);
  3322. line-height:21px;
  3323. }
  3324. #u119946 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 16px 2px 16px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u119946_text {
  3332. border-width:0px;
  3333. white-space:nowrap;
  3334. text-transform:none;
  3335. }
  3336. #u119947 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:0px;
  3342. height:0px;
  3343. }
  3344. #u119948_div {
  3345. border-width:0px;
  3346. position:absolute;
  3347. left:0px;
  3348. top:0px;
  3349. width:140px;
  3350. height:30px;
  3351. background:inherit;
  3352. background-color:rgba(255, 255, 255, 1);
  3353. box-sizing:border-box;
  3354. border-width:1px;
  3355. border-style:solid;
  3356. border-color:rgba(215, 215, 215, 1);
  3357. border-radius:4px;
  3358. -moz-box-shadow:none;
  3359. -webkit-box-shadow:none;
  3360. box-shadow:none;
  3361. font-size:14px;
  3362. }
  3363. #u119948 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:350px;
  3367. top:253px;
  3368. width:140px;
  3369. height:30px;
  3370. display:flex;
  3371. font-size:14px;
  3372. }
  3373. #u119948 .text {
  3374. position:absolute;
  3375. align-self:center;
  3376. padding:2px 2px 2px 2px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u119948_text {
  3381. border-width:0px;
  3382. word-wrap:break-word;
  3383. text-transform:none;
  3384. visibility:hidden;
  3385. }
  3386. #u119949_input {
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:134px;
  3391. height:23px;
  3392. padding:2px 2px 2px 2px;
  3393. font-family:'ArialMT', 'Arial', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:14px;
  3397. letter-spacing:normal;
  3398. color:#AAAAAA;
  3399. vertical-align:none;
  3400. text-align:left;
  3401. text-transform:none;
  3402. background-color:transparent;
  3403. border-color:transparent;
  3404. }
  3405. #u119949_input.disabled {
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:134px;
  3410. height:23px;
  3411. padding:2px 2px 2px 2px;
  3412. font-family:'ArialMT', 'Arial', sans-serif;
  3413. font-weight:400;
  3414. font-style:normal;
  3415. font-size:14px;
  3416. letter-spacing:normal;
  3417. color:#AAAAAA;
  3418. vertical-align:none;
  3419. text-align:left;
  3420. text-transform:none;
  3421. background-color:transparent;
  3422. border-color:transparent;
  3423. }
  3424. #u119949_div {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:134px;
  3430. height:23px;
  3431. background:inherit;
  3432. background-color:rgba(255, 255, 255, 1);
  3433. border:none;
  3434. border-radius:0px;
  3435. -moz-box-shadow:none;
  3436. -webkit-box-shadow:none;
  3437. box-shadow:none;
  3438. font-size:14px;
  3439. color:#AAAAAA;
  3440. }
  3441. #u119949 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:354px;
  3445. top:255px;
  3446. width:134px;
  3447. height:23px;
  3448. display:flex;
  3449. font-size:14px;
  3450. color:#AAAAAA;
  3451. }
  3452. #u119949 .text {
  3453. position:absolute;
  3454. align-self:flex-start;
  3455. padding:2px 2px 2px 2px;
  3456. box-sizing:border-box;
  3457. width:100%;
  3458. }
  3459. #u119949_div.disabled {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:0px;
  3463. top:0px;
  3464. width:134px;
  3465. height:23px;
  3466. background:inherit;
  3467. background-color:rgba(240, 240, 240, 1);
  3468. border:none;
  3469. border-radius:0px;
  3470. -moz-box-shadow:none;
  3471. -webkit-box-shadow:none;
  3472. box-shadow:none;
  3473. font-size:14px;
  3474. color:#AAAAAA;
  3475. }
  3476. #u119949.disabled {
  3477. }
  3478. .u119949_input_option {
  3479. font-size:14px;
  3480. }
  3481. #u119950_div {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:600px;
  3487. height:100px;
  3488. background:inherit;
  3489. background-color:rgba(255, 255, 255, 1);
  3490. box-sizing:border-box;
  3491. border-width:1px;
  3492. border-style:solid;
  3493. border-color:rgba(217, 217, 217, 1);
  3494. border-radius:4px;
  3495. -moz-box-shadow:none;
  3496. -webkit-box-shadow:none;
  3497. box-shadow:none;
  3498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3499. font-weight:400;
  3500. font-style:normal;
  3501. font-size:14px;
  3502. color:rgba(0, 0, 0, 0.647058823529412);
  3503. line-height:21px;
  3504. }
  3505. #u119950 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:350px;
  3509. top:100px;
  3510. width:600px;
  3511. height:100px;
  3512. display:flex;
  3513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:14px;
  3517. color:rgba(0, 0, 0, 0.647058823529412);
  3518. line-height:21px;
  3519. }
  3520. #u119950 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:2px 16px 2px 16px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u119950_text {
  3528. border-width:0px;
  3529. word-wrap:break-word;
  3530. text-transform:none;
  3531. visibility:hidden;
  3532. }
  3533. #u119951 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:0px;
  3539. height:0px;
  3540. }
  3541. #u119952_div {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:140px;
  3547. height:30px;
  3548. background:inherit;
  3549. background-color:rgba(255, 255, 255, 1);
  3550. box-sizing:border-box;
  3551. border-width:1px;
  3552. border-style:solid;
  3553. border-color:rgba(201, 201, 201, 1);
  3554. border-radius:4px;
  3555. -moz-box-shadow:none;
  3556. -webkit-box-shadow:none;
  3557. box-shadow:none;
  3558. font-family:'Microsoft YaHei', sans-serif;
  3559. font-weight:400;
  3560. font-style:normal;
  3561. font-size:14px;
  3562. color:#CCCCCC;
  3563. text-align:left;
  3564. }
  3565. #u119952 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:800px;
  3569. top:252px;
  3570. width:140px;
  3571. height:30px;
  3572. display:flex;
  3573. font-family:'Microsoft YaHei', sans-serif;
  3574. font-weight:400;
  3575. font-style:normal;
  3576. font-size:14px;
  3577. color:#CCCCCC;
  3578. text-align:left;
  3579. }
  3580. #u119952 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 8px 2px 8px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u119952_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u119953_input {
  3594. position:absolute;
  3595. left:0px;
  3596. top:0px;
  3597. width:130px;
  3598. height:25px;
  3599. padding:2px 2px 2px 2px;
  3600. font-family:'Microsoft YaHei', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. font-size:13px;
  3604. letter-spacing:normal;
  3605. color:#000000;
  3606. vertical-align:none;
  3607. text-align:left;
  3608. text-transform:none;
  3609. background-color:transparent;
  3610. border-color:transparent;
  3611. }
  3612. #u119953_input.disabled {
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:130px;
  3617. height:25px;
  3618. padding:2px 2px 2px 2px;
  3619. font-family:'Microsoft YaHei', sans-serif;
  3620. font-weight:400;
  3621. font-style:normal;
  3622. font-size:13px;
  3623. letter-spacing:normal;
  3624. color:#000000;
  3625. vertical-align:none;
  3626. text-align:left;
  3627. text-transform:none;
  3628. background-color:transparent;
  3629. border-color:transparent;
  3630. }
  3631. #u119953_div {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:0px;
  3635. top:0px;
  3636. width:130px;
  3637. height:25px;
  3638. background:inherit;
  3639. background-color:rgba(255, 255, 255, 1);
  3640. border:none;
  3641. border-radius:0px;
  3642. -moz-box-shadow:none;
  3643. -webkit-box-shadow:none;
  3644. box-shadow:none;
  3645. font-family:'Microsoft YaHei', sans-serif;
  3646. font-weight:400;
  3647. font-style:normal;
  3648. }
  3649. #u119953 {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:805px;
  3653. top:253px;
  3654. width:130px;
  3655. height:25px;
  3656. display:flex;
  3657. font-family:'Microsoft YaHei', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. }
  3661. #u119953 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 2px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u119953_div.disabled {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:130px;
  3674. height:25px;
  3675. background:inherit;
  3676. background-color:rgba(240, 240, 240, 1);
  3677. border:none;
  3678. border-radius:0px;
  3679. -moz-box-shadow:none;
  3680. -webkit-box-shadow:none;
  3681. box-shadow:none;
  3682. font-family:'Microsoft YaHei', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. }
  3686. #u119953.disabled {
  3687. }
  3688. #u119954 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:0px;
  3694. height:0px;
  3695. }
  3696. #u119955_div {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:0px;
  3700. top:0px;
  3701. width:140px;
  3702. height:30px;
  3703. background:inherit;
  3704. background-color:rgba(255, 255, 255, 1);
  3705. box-sizing:border-box;
  3706. border-width:1px;
  3707. border-style:solid;
  3708. border-color:rgba(201, 201, 201, 1);
  3709. border-radius:4px;
  3710. -moz-box-shadow:none;
  3711. -webkit-box-shadow:none;
  3712. box-shadow:none;
  3713. font-family:'Microsoft YaHei', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:14px;
  3717. color:#CCCCCC;
  3718. text-align:left;
  3719. }
  3720. #u119955 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:950px;
  3724. top:252px;
  3725. width:140px;
  3726. height:30px;
  3727. display:flex;
  3728. font-family:'Microsoft YaHei', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:14px;
  3732. color:#CCCCCC;
  3733. text-align:left;
  3734. }
  3735. #u119955 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:2px 8px 2px 8px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u119955_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u119956_input {
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:130px;
  3753. height:25px;
  3754. padding:2px 2px 2px 2px;
  3755. font-family:'Microsoft YaHei', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:13px;
  3759. letter-spacing:normal;
  3760. color:#000000;
  3761. vertical-align:none;
  3762. text-align:left;
  3763. text-transform:none;
  3764. background-color:transparent;
  3765. border-color:transparent;
  3766. }
  3767. #u119956_input.disabled {
  3768. position:absolute;
  3769. left:0px;
  3770. top:0px;
  3771. width:130px;
  3772. height:25px;
  3773. padding:2px 2px 2px 2px;
  3774. font-family:'Microsoft YaHei', sans-serif;
  3775. font-weight:400;
  3776. font-style:normal;
  3777. font-size:13px;
  3778. letter-spacing:normal;
  3779. color:#000000;
  3780. vertical-align:none;
  3781. text-align:left;
  3782. text-transform:none;
  3783. background-color:transparent;
  3784. border-color:transparent;
  3785. }
  3786. #u119956_div {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:130px;
  3792. height:25px;
  3793. background:inherit;
  3794. background-color:rgba(255, 255, 255, 1);
  3795. border:none;
  3796. border-radius:0px;
  3797. -moz-box-shadow:none;
  3798. -webkit-box-shadow:none;
  3799. box-shadow:none;
  3800. font-family:'Microsoft YaHei', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. }
  3804. #u119956 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:955px;
  3808. top:253px;
  3809. width:130px;
  3810. height:25px;
  3811. display:flex;
  3812. font-family:'Microsoft YaHei', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. }
  3816. #u119956 .text {
  3817. position:absolute;
  3818. align-self:center;
  3819. padding:2px 2px 2px 2px;
  3820. box-sizing:border-box;
  3821. width:100%;
  3822. }
  3823. #u119956_div.disabled {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:130px;
  3829. height:25px;
  3830. background:inherit;
  3831. background-color:rgba(240, 240, 240, 1);
  3832. border:none;
  3833. border-radius:0px;
  3834. -moz-box-shadow:none;
  3835. -webkit-box-shadow:none;
  3836. box-shadow:none;
  3837. font-family:'Microsoft YaHei', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. }
  3841. #u119956.disabled {
  3842. }
  3843. #u119957 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:0px;
  3849. height:0px;
  3850. }
  3851. #u119958_div {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:140px;
  3857. height:30px;
  3858. background:inherit;
  3859. background-color:rgba(255, 255, 255, 1);
  3860. box-sizing:border-box;
  3861. border-width:1px;
  3862. border-style:solid;
  3863. border-color:rgba(201, 201, 201, 1);
  3864. border-radius:4px;
  3865. -moz-box-shadow:none;
  3866. -webkit-box-shadow:none;
  3867. box-shadow:none;
  3868. font-family:'Microsoft YaHei', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:14px;
  3872. color:#CCCCCC;
  3873. text-align:left;
  3874. }
  3875. #u119958 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:500px;
  3879. top:252px;
  3880. width:140px;
  3881. height:30px;
  3882. display:flex;
  3883. font-family:'Microsoft YaHei', sans-serif;
  3884. font-weight:400;
  3885. font-style:normal;
  3886. font-size:14px;
  3887. color:#CCCCCC;
  3888. text-align:left;
  3889. }
  3890. #u119958 .text {
  3891. position:absolute;
  3892. align-self:center;
  3893. padding:2px 8px 2px 8px;
  3894. box-sizing:border-box;
  3895. width:100%;
  3896. }
  3897. #u119958_text {
  3898. border-width:0px;
  3899. word-wrap:break-word;
  3900. text-transform:none;
  3901. visibility:hidden;
  3902. }
  3903. #u119959_input {
  3904. position:absolute;
  3905. left:0px;
  3906. top:0px;
  3907. width:130px;
  3908. height:25px;
  3909. padding:2px 2px 2px 2px;
  3910. font-family:'Microsoft YaHei', sans-serif;
  3911. font-weight:400;
  3912. font-style:normal;
  3913. font-size:13px;
  3914. letter-spacing:normal;
  3915. color:#000000;
  3916. vertical-align:none;
  3917. text-align:left;
  3918. text-transform:none;
  3919. background-color:transparent;
  3920. border-color:transparent;
  3921. }
  3922. #u119959_input.disabled {
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:130px;
  3927. height:25px;
  3928. padding:2px 2px 2px 2px;
  3929. font-family:'Microsoft YaHei', sans-serif;
  3930. font-weight:400;
  3931. font-style:normal;
  3932. font-size:13px;
  3933. letter-spacing:normal;
  3934. color:#000000;
  3935. vertical-align:none;
  3936. text-align:left;
  3937. text-transform:none;
  3938. background-color:transparent;
  3939. border-color:transparent;
  3940. }
  3941. #u119959_div {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:130px;
  3947. height:25px;
  3948. background:inherit;
  3949. background-color:rgba(255, 255, 255, 1);
  3950. border:none;
  3951. border-radius:0px;
  3952. -moz-box-shadow:none;
  3953. -webkit-box-shadow:none;
  3954. box-shadow:none;
  3955. font-family:'Microsoft YaHei', sans-serif;
  3956. font-weight:400;
  3957. font-style:normal;
  3958. }
  3959. #u119959 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:505px;
  3963. top:253px;
  3964. width:130px;
  3965. height:25px;
  3966. display:flex;
  3967. font-family:'Microsoft YaHei', sans-serif;
  3968. font-weight:400;
  3969. font-style:normal;
  3970. }
  3971. #u119959 .text {
  3972. position:absolute;
  3973. align-self:center;
  3974. padding:2px 2px 2px 2px;
  3975. box-sizing:border-box;
  3976. width:100%;
  3977. }
  3978. #u119959_div.disabled {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:130px;
  3984. height:25px;
  3985. background:inherit;
  3986. background-color:rgba(240, 240, 240, 1);
  3987. border:none;
  3988. border-radius:0px;
  3989. -moz-box-shadow:none;
  3990. -webkit-box-shadow:none;
  3991. box-shadow:none;
  3992. font-family:'Microsoft YaHei', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. }
  3996. #u119959.disabled {
  3997. }
  3998. #u119960_div {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:136px;
  4004. height:30px;
  4005. background:inherit;
  4006. background-color:rgba(224, 231, 247, 0);
  4007. border:none;
  4008. border-radius:0px;
  4009. -moz-box-shadow:none;
  4010. -webkit-box-shadow:none;
  4011. box-shadow:none;
  4012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. line-height:30px;
  4016. }
  4017. #u119960 {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:381px;
  4021. top:133px;
  4022. width:136px;
  4023. height:30px;
  4024. display:flex;
  4025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4026. font-weight:400;
  4027. font-style:normal;
  4028. line-height:30px;
  4029. }
  4030. #u119960 .text {
  4031. position:absolute;
  4032. align-self:center;
  4033. padding:0px 0px 0px 0px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u119960_text {
  4038. border-width:0px;
  4039. white-space:nowrap;
  4040. text-transform:none;
  4041. }
  4042. #u119961_div {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:600px;
  4048. height:100px;
  4049. background:inherit;
  4050. background-color:rgba(255, 255, 255, 1);
  4051. box-sizing:border-box;
  4052. border-width:1px;
  4053. border-style:solid;
  4054. border-color:rgba(217, 217, 217, 1);
  4055. border-radius:4px;
  4056. -moz-box-shadow:none;
  4057. -webkit-box-shadow:none;
  4058. box-shadow:none;
  4059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. font-size:14px;
  4063. color:rgba(0, 0, 0, 0.647058823529412);
  4064. line-height:21px;
  4065. }
  4066. #u119961 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:973px;
  4070. top:100px;
  4071. width:600px;
  4072. height:100px;
  4073. display:flex;
  4074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:14px;
  4078. color:rgba(0, 0, 0, 0.647058823529412);
  4079. line-height:21px;
  4080. }
  4081. #u119961 .text {
  4082. position:absolute;
  4083. align-self:center;
  4084. padding:2px 16px 2px 16px;
  4085. box-sizing:border-box;
  4086. width:100%;
  4087. }
  4088. #u119961_text {
  4089. border-width:0px;
  4090. word-wrap:break-word;
  4091. text-transform:none;
  4092. visibility:hidden;
  4093. }
  4094. #u119962_div {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:127px;
  4100. height:30px;
  4101. background:inherit;
  4102. background-color:rgba(224, 231, 247, 0);
  4103. border:none;
  4104. border-radius:0px;
  4105. -moz-box-shadow:none;
  4106. -webkit-box-shadow:none;
  4107. box-shadow:none;
  4108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. line-height:30px;
  4112. }
  4113. #u119962 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:1013px;
  4117. top:135px;
  4118. width:127px;
  4119. height:30px;
  4120. display:flex;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. line-height:30px;
  4125. }
  4126. #u119962 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:0px 0px 0px 0px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u119962_text {
  4134. border-width:0px;
  4135. white-space:nowrap;
  4136. text-transform:none;
  4137. }
  4138. #u119963_div {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:241px;
  4144. height:30px;
  4145. background:inherit;
  4146. background-color:rgba(224, 231, 247, 0);
  4147. border:none;
  4148. border-radius:0px;
  4149. -moz-box-shadow:none;
  4150. -webkit-box-shadow:none;
  4151. box-shadow:none;
  4152. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4153. font-weight:500;
  4154. font-style:normal;
  4155. font-size:24px;
  4156. line-height:30px;
  4157. }
  4158. #u119963 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:517px;
  4162. top:133px;
  4163. width:241px;
  4164. height:30px;
  4165. display:flex;
  4166. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4167. font-weight:500;
  4168. font-style:normal;
  4169. font-size:24px;
  4170. line-height:30px;
  4171. }
  4172. #u119963 .text {
  4173. position:absolute;
  4174. align-self:center;
  4175. padding:0px 0px 0px 0px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u119963_text {
  4180. border-width:0px;
  4181. white-space:nowrap;
  4182. text-transform:none;
  4183. }
  4184. #u119964_div {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:113px;
  4190. height:30px;
  4191. background:inherit;
  4192. background-color:rgba(224, 231, 247, 0);
  4193. border:none;
  4194. border-radius:0px;
  4195. -moz-box-shadow:none;
  4196. -webkit-box-shadow:none;
  4197. box-shadow:none;
  4198. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4199. font-weight:500;
  4200. font-style:normal;
  4201. font-size:24px;
  4202. text-align:center;
  4203. line-height:30px;
  4204. }
  4205. #u119964 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:1237px;
  4209. top:133px;
  4210. width:113px;
  4211. height:30px;
  4212. display:flex;
  4213. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4214. font-weight:500;
  4215. font-style:normal;
  4216. font-size:24px;
  4217. text-align:center;
  4218. line-height:30px;
  4219. }
  4220. #u119964 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:0px 0px 0px 0px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u119964_text {
  4228. border-width:0px;
  4229. white-space:nowrap;
  4230. text-transform:none;
  4231. }
  4232. #u119965 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:0px;
  4238. height:0px;
  4239. }
  4240. #u119966_div {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:140px;
  4246. height:30px;
  4247. background:inherit;
  4248. background-color:rgba(255, 255, 255, 1);
  4249. box-sizing:border-box;
  4250. border-width:1px;
  4251. border-style:solid;
  4252. border-color:rgba(215, 215, 215, 1);
  4253. border-radius:4px;
  4254. -moz-box-shadow:none;
  4255. -webkit-box-shadow:none;
  4256. box-shadow:none;
  4257. font-size:14px;
  4258. }
  4259. #u119966 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:650px;
  4263. top:252px;
  4264. width:140px;
  4265. height:30px;
  4266. display:flex;
  4267. font-size:14px;
  4268. }
  4269. #u119966 .text {
  4270. position:absolute;
  4271. align-self:center;
  4272. padding:2px 2px 2px 2px;
  4273. box-sizing:border-box;
  4274. width:100%;
  4275. }
  4276. #u119966_text {
  4277. border-width:0px;
  4278. word-wrap:break-word;
  4279. text-transform:none;
  4280. visibility:hidden;
  4281. }
  4282. #u119967_input {
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:134px;
  4287. height:23px;
  4288. padding:2px 2px 2px 2px;
  4289. font-family:'ArialMT', 'Arial', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:14px;
  4293. letter-spacing:normal;
  4294. color:#AAAAAA;
  4295. vertical-align:none;
  4296. text-align:left;
  4297. text-transform:none;
  4298. background-color:transparent;
  4299. border-color:transparent;
  4300. }
  4301. #u119967_input.disabled {
  4302. position:absolute;
  4303. left:0px;
  4304. top:0px;
  4305. width:134px;
  4306. height:23px;
  4307. padding:2px 2px 2px 2px;
  4308. font-family:'ArialMT', 'Arial', sans-serif;
  4309. font-weight:400;
  4310. font-style:normal;
  4311. font-size:14px;
  4312. letter-spacing:normal;
  4313. color:#AAAAAA;
  4314. vertical-align:none;
  4315. text-align:left;
  4316. text-transform:none;
  4317. background-color:transparent;
  4318. border-color:transparent;
  4319. }
  4320. #u119967_div {
  4321. border-width:0px;
  4322. position:absolute;
  4323. left:0px;
  4324. top:0px;
  4325. width:134px;
  4326. height:23px;
  4327. background:inherit;
  4328. background-color:rgba(255, 255, 255, 1);
  4329. border:none;
  4330. border-radius:0px;
  4331. -moz-box-shadow:none;
  4332. -webkit-box-shadow:none;
  4333. box-shadow:none;
  4334. font-size:14px;
  4335. color:#AAAAAA;
  4336. }
  4337. #u119967 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:654px;
  4341. top:254px;
  4342. width:134px;
  4343. height:23px;
  4344. display:flex;
  4345. font-size:14px;
  4346. color:#AAAAAA;
  4347. }
  4348. #u119967 .text {
  4349. position:absolute;
  4350. align-self:flex-start;
  4351. padding:2px 2px 2px 2px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u119967_div.disabled {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:134px;
  4361. height:23px;
  4362. background:inherit;
  4363. background-color:rgba(240, 240, 240, 1);
  4364. border:none;
  4365. border-radius:0px;
  4366. -moz-box-shadow:none;
  4367. -webkit-box-shadow:none;
  4368. box-shadow:none;
  4369. font-size:14px;
  4370. color:#AAAAAA;
  4371. }
  4372. #u119967.disabled {
  4373. }
  4374. .u119967_input_option {
  4375. font-size:14px;
  4376. }
  4377. #u119968 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:0px;
  4383. height:0px;
  4384. }
  4385. #u119969_div {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:140px;
  4391. height:30px;
  4392. background:inherit;
  4393. background-color:rgba(255, 255, 255, 1);
  4394. box-sizing:border-box;
  4395. border-width:1px;
  4396. border-style:solid;
  4397. border-color:rgba(215, 215, 215, 1);
  4398. border-radius:4px;
  4399. -moz-box-shadow:none;
  4400. -webkit-box-shadow:none;
  4401. box-shadow:none;
  4402. font-size:14px;
  4403. }
  4404. #u119969 {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:1250px;
  4408. top:252px;
  4409. width:140px;
  4410. height:30px;
  4411. display:flex;
  4412. font-size:14px;
  4413. }
  4414. #u119969 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:2px 2px 2px 2px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u119969_text {
  4422. border-width:0px;
  4423. word-wrap:break-word;
  4424. text-transform:none;
  4425. visibility:hidden;
  4426. }
  4427. #u119970_input {
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:134px;
  4432. height:23px;
  4433. padding:2px 2px 2px 2px;
  4434. font-family:'ArialMT', 'Arial', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:14px;
  4438. letter-spacing:normal;
  4439. color:#AAAAAA;
  4440. vertical-align:none;
  4441. text-align:left;
  4442. text-transform:none;
  4443. background-color:transparent;
  4444. border-color:transparent;
  4445. }
  4446. #u119970_input.disabled {
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:134px;
  4451. height:23px;
  4452. padding:2px 2px 2px 2px;
  4453. font-family:'ArialMT', 'Arial', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:14px;
  4457. letter-spacing:normal;
  4458. color:#AAAAAA;
  4459. vertical-align:none;
  4460. text-align:left;
  4461. text-transform:none;
  4462. background-color:transparent;
  4463. border-color:transparent;
  4464. }
  4465. #u119970_div {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:134px;
  4471. height:23px;
  4472. background:inherit;
  4473. background-color:rgba(255, 255, 255, 1);
  4474. border:none;
  4475. border-radius:0px;
  4476. -moz-box-shadow:none;
  4477. -webkit-box-shadow:none;
  4478. box-shadow:none;
  4479. font-size:14px;
  4480. color:#AAAAAA;
  4481. }
  4482. #u119970 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:1254px;
  4486. top:254px;
  4487. width:134px;
  4488. height:23px;
  4489. display:flex;
  4490. font-size:14px;
  4491. color:#AAAAAA;
  4492. }
  4493. #u119970 .text {
  4494. position:absolute;
  4495. align-self:flex-start;
  4496. padding:2px 2px 2px 2px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u119970_div.disabled {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:134px;
  4506. height:23px;
  4507. background:inherit;
  4508. background-color:rgba(240, 240, 240, 1);
  4509. border:none;
  4510. border-radius:0px;
  4511. -moz-box-shadow:none;
  4512. -webkit-box-shadow:none;
  4513. box-shadow:none;
  4514. font-size:14px;
  4515. color:#AAAAAA;
  4516. }
  4517. #u119970.disabled {
  4518. }
  4519. .u119970_input_option {
  4520. font-size:14px;
  4521. }
  4522. #u119971 {
  4523. border-width:0px;
  4524. position:absolute;
  4525. left:0px;
  4526. top:0px;
  4527. width:0px;
  4528. height:0px;
  4529. }
  4530. #u119972_div {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:0px;
  4534. top:0px;
  4535. width:140px;
  4536. height:30px;
  4537. background:inherit;
  4538. background-color:rgba(255, 255, 255, 1);
  4539. box-sizing:border-box;
  4540. border-width:1px;
  4541. border-style:solid;
  4542. border-color:rgba(201, 201, 201, 1);
  4543. border-radius:4px;
  4544. -moz-box-shadow:none;
  4545. -webkit-box-shadow:none;
  4546. box-shadow:none;
  4547. font-family:'Microsoft YaHei', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:14px;
  4551. color:#CCCCCC;
  4552. text-align:left;
  4553. }
  4554. #u119972 {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:1100px;
  4558. top:252px;
  4559. width:140px;
  4560. height:30px;
  4561. display:flex;
  4562. font-family:'Microsoft YaHei', sans-serif;
  4563. font-weight:400;
  4564. font-style:normal;
  4565. font-size:14px;
  4566. color:#CCCCCC;
  4567. text-align:left;
  4568. }
  4569. #u119972 .text {
  4570. position:absolute;
  4571. align-self:center;
  4572. padding:2px 8px 2px 8px;
  4573. box-sizing:border-box;
  4574. width:100%;
  4575. }
  4576. #u119972_text {
  4577. border-width:0px;
  4578. word-wrap:break-word;
  4579. text-transform:none;
  4580. visibility:hidden;
  4581. }
  4582. #u119973_input {
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:130px;
  4587. height:25px;
  4588. padding:2px 2px 2px 2px;
  4589. font-family:'Microsoft YaHei', sans-serif;
  4590. font-weight:400;
  4591. font-style:normal;
  4592. font-size:13px;
  4593. letter-spacing:normal;
  4594. color:#000000;
  4595. vertical-align:none;
  4596. text-align:left;
  4597. text-transform:none;
  4598. background-color:transparent;
  4599. border-color:transparent;
  4600. }
  4601. #u119973_input.disabled {
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:130px;
  4606. height:25px;
  4607. padding:2px 2px 2px 2px;
  4608. font-family:'Microsoft YaHei', sans-serif;
  4609. font-weight:400;
  4610. font-style:normal;
  4611. font-size:13px;
  4612. letter-spacing:normal;
  4613. color:#000000;
  4614. vertical-align:none;
  4615. text-align:left;
  4616. text-transform:none;
  4617. background-color:transparent;
  4618. border-color:transparent;
  4619. }
  4620. #u119973_div {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:130px;
  4626. height:25px;
  4627. background:inherit;
  4628. background-color:rgba(255, 255, 255, 1);
  4629. border:none;
  4630. border-radius:0px;
  4631. -moz-box-shadow:none;
  4632. -webkit-box-shadow:none;
  4633. box-shadow:none;
  4634. font-family:'Microsoft YaHei', sans-serif;
  4635. font-weight:400;
  4636. font-style:normal;
  4637. }
  4638. #u119973 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:1105px;
  4642. top:253px;
  4643. width:130px;
  4644. height:25px;
  4645. display:flex;
  4646. font-family:'Microsoft YaHei', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. }
  4650. #u119973 .text {
  4651. position:absolute;
  4652. align-self:center;
  4653. padding:2px 2px 2px 2px;
  4654. box-sizing:border-box;
  4655. width:100%;
  4656. }
  4657. #u119973_div.disabled {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:130px;
  4663. height:25px;
  4664. background:inherit;
  4665. background-color:rgba(240, 240, 240, 1);
  4666. border:none;
  4667. border-radius:0px;
  4668. -moz-box-shadow:none;
  4669. -webkit-box-shadow:none;
  4670. box-shadow:none;
  4671. font-family:'Microsoft YaHei', sans-serif;
  4672. font-weight:400;
  4673. font-style:normal;
  4674. }
  4675. #u119973.disabled {
  4676. }
  4677. #u119974 {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:0px;
  4683. height:0px;
  4684. }
  4685. #u119975_div {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:0px;
  4689. top:0px;
  4690. width:200px;
  4691. height:1180px;
  4692. background:inherit;
  4693. background-color:rgba(255, 255, 255, 1);
  4694. border:none;
  4695. border-radius:0px;
  4696. -moz-box-shadow:none;
  4697. -webkit-box-shadow:none;
  4698. box-shadow:none;
  4699. }
  4700. #u119975 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:120px;
  4704. top:50px;
  4705. width:200px;
  4706. height:1180px;
  4707. display:flex;
  4708. }
  4709. #u119975 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 2px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u119975_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u119976_div {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:200px;
  4728. height:60px;
  4729. background:inherit;
  4730. background-color:rgba(224, 231, 247, 1);
  4731. border:none;
  4732. border-radius:0px;
  4733. -moz-box-shadow:none;
  4734. -webkit-box-shadow:none;
  4735. box-shadow:none;
  4736. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4737. font-weight:500;
  4738. font-style:normal;
  4739. font-size:18px;
  4740. }
  4741. #u119976 {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:120px;
  4745. top:50px;
  4746. width:200px;
  4747. height:60px;
  4748. display:flex;
  4749. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4750. font-weight:500;
  4751. font-style:normal;
  4752. font-size:18px;
  4753. }
  4754. #u119976 .text {
  4755. position:absolute;
  4756. align-self:center;
  4757. padding:0px 0px 0px 20px;
  4758. box-sizing:border-box;
  4759. width:100%;
  4760. }
  4761. #u119976_text {
  4762. border-width:0px;
  4763. word-wrap:break-word;
  4764. text-transform:none;
  4765. }
  4766. #u119977_div {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:65px;
  4772. height:22px;
  4773. background:inherit;
  4774. background-color:rgba(255, 255, 255, 0);
  4775. border:none;
  4776. border-radius:0px;
  4777. -moz-box-shadow:none;
  4778. -webkit-box-shadow:none;
  4779. box-shadow:none;
  4780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4781. font-weight:400;
  4782. font-style:normal;
  4783. font-size:16px;
  4784. }
  4785. #u119977 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:146px;
  4789. top:167px;
  4790. width:65px;
  4791. height:22px;
  4792. display:flex;
  4793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:16px;
  4797. }
  4798. #u119977 .text {
  4799. position:absolute;
  4800. align-self:flex-start;
  4801. padding:0px 0px 0px 0px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u119977_text {
  4806. border-width:0px;
  4807. white-space:nowrap;
  4808. text-transform:none;
  4809. }
  4810. #u119978_div {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:65px;
  4816. height:22px;
  4817. background:inherit;
  4818. background-color:rgba(255, 255, 255, 0);
  4819. border:none;
  4820. border-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. font-size:16px;
  4828. }
  4829. #u119978 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:146px;
  4833. top:209px;
  4834. width:65px;
  4835. height:22px;
  4836. display:flex;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. font-size:16px;
  4841. }
  4842. #u119978 .text {
  4843. position:absolute;
  4844. align-self:flex-start;
  4845. padding:0px 0px 0px 0px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u119978_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u119979_div {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:49px;
  4860. height:17px;
  4861. background:inherit;
  4862. background-color:rgba(255, 255, 255, 0);
  4863. border:none;
  4864. border-radius:0px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:12px;
  4872. color:#AAAAAA;
  4873. }
  4874. #u119979 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:146px;
  4878. top:130px;
  4879. width:49px;
  4880. height:17px;
  4881. display:flex;
  4882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#AAAAAA;
  4887. }
  4888. #u119979 .text {
  4889. position:absolute;
  4890. align-self:flex-start;
  4891. padding:0px 0px 0px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u119979_text {
  4896. border-width:0px;
  4897. white-space:nowrap;
  4898. text-transform:none;
  4899. }
  4900. #u119980_div {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:49px;
  4906. height:17px;
  4907. background:inherit;
  4908. background-color:rgba(255, 255, 255, 0);
  4909. border:none;
  4910. border-radius:0px;
  4911. -moz-box-shadow:none;
  4912. -webkit-box-shadow:none;
  4913. box-shadow:none;
  4914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4915. font-weight:400;
  4916. font-style:normal;
  4917. font-size:12px;
  4918. color:#AAAAAA;
  4919. }
  4920. #u119980 {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:146px;
  4924. top:585px;
  4925. width:49px;
  4926. height:17px;
  4927. display:flex;
  4928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4929. font-weight:400;
  4930. font-style:normal;
  4931. font-size:12px;
  4932. color:#AAAAAA;
  4933. }
  4934. #u119980 .text {
  4935. position:absolute;
  4936. align-self:flex-start;
  4937. padding:0px 0px 0px 0px;
  4938. box-sizing:border-box;
  4939. width:100%;
  4940. }
  4941. #u119980_text {
  4942. border-width:0px;
  4943. white-space:nowrap;
  4944. text-transform:none;
  4945. }
  4946. #u119981_img {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:201px;
  4952. height:2px;
  4953. }
  4954. #u119981 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:120px;
  4958. top:563px;
  4959. width:200px;
  4960. height:1px;
  4961. display:flex;
  4962. }
  4963. #u119981 .text {
  4964. position:absolute;
  4965. align-self:center;
  4966. padding:2px 2px 2px 2px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u119981_text {
  4971. border-width:0px;
  4972. word-wrap:break-word;
  4973. text-transform:none;
  4974. visibility:hidden;
  4975. }
  4976. #u119982_div {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:65px;
  4982. height:22px;
  4983. background:inherit;
  4984. background-color:rgba(255, 255, 255, 0);
  4985. border:none;
  4986. border-radius:0px;
  4987. -moz-box-shadow:none;
  4988. -webkit-box-shadow:none;
  4989. box-shadow:none;
  4990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:16px;
  4994. }
  4995. #u119982 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:146px;
  4999. top:623px;
  5000. width:65px;
  5001. height:22px;
  5002. display:flex;
  5003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. font-size:16px;
  5007. }
  5008. #u119982 .text {
  5009. position:absolute;
  5010. align-self:flex-start;
  5011. padding:0px 0px 0px 0px;
  5012. box-sizing:border-box;
  5013. width:100%;
  5014. }
  5015. #u119982_text {
  5016. border-width:0px;
  5017. white-space:nowrap;
  5018. text-transform:none;
  5019. }
  5020. #u119983_div {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:0px;
  5024. top:0px;
  5025. width:97px;
  5026. height:22px;
  5027. background:inherit;
  5028. background-color:rgba(255, 255, 255, 0);
  5029. border:none;
  5030. border-radius:0px;
  5031. -moz-box-shadow:none;
  5032. -webkit-box-shadow:none;
  5033. box-shadow:none;
  5034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:16px;
  5038. }
  5039. #u119983 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:146px;
  5043. top:665px;
  5044. width:97px;
  5045. height:22px;
  5046. display:flex;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:16px;
  5051. }
  5052. #u119983 .text {
  5053. position:absolute;
  5054. align-self:flex-start;
  5055. padding:0px 0px 0px 0px;
  5056. box-sizing:border-box;
  5057. width:100%;
  5058. }
  5059. #u119983_text {
  5060. border-width:0px;
  5061. white-space:nowrap;
  5062. text-transform:none;
  5063. }
  5064. #u119984_div {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:97px;
  5070. height:22px;
  5071. background:inherit;
  5072. background-color:rgba(255, 255, 255, 0);
  5073. border:none;
  5074. border-radius:0px;
  5075. -moz-box-shadow:none;
  5076. -webkit-box-shadow:none;
  5077. box-shadow:none;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:16px;
  5082. }
  5083. #u119984 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:146px;
  5087. top:707px;
  5088. width:97px;
  5089. height:22px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:16px;
  5095. }
  5096. #u119984 .text {
  5097. position:absolute;
  5098. align-self:flex-start;
  5099. padding:0px 0px 0px 0px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u119984_text {
  5104. border-width:0px;
  5105. white-space:nowrap;
  5106. text-transform:none;
  5107. }
  5108. #u119985_div {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:97px;
  5114. height:22px;
  5115. background:inherit;
  5116. background-color:rgba(255, 255, 255, 0);
  5117. border:none;
  5118. border-radius:0px;
  5119. -moz-box-shadow:none;
  5120. -webkit-box-shadow:none;
  5121. box-shadow:none;
  5122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5123. font-weight:400;
  5124. font-style:normal;
  5125. font-size:16px;
  5126. }
  5127. #u119985 {
  5128. border-width:0px;
  5129. position:absolute;
  5130. left:146px;
  5131. top:749px;
  5132. width:97px;
  5133. height:22px;
  5134. display:flex;
  5135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5136. font-weight:400;
  5137. font-style:normal;
  5138. font-size:16px;
  5139. }
  5140. #u119985 .text {
  5141. position:absolute;
  5142. align-self:flex-start;
  5143. padding:0px 0px 0px 0px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u119985_text {
  5148. border-width:0px;
  5149. white-space:nowrap;
  5150. text-transform:none;
  5151. }
  5152. #u119986_div {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:97px;
  5158. height:22px;
  5159. background:inherit;
  5160. background-color:rgba(255, 255, 255, 0);
  5161. border:none;
  5162. border-radius:0px;
  5163. -moz-box-shadow:none;
  5164. -webkit-box-shadow:none;
  5165. box-shadow:none;
  5166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. font-size:16px;
  5170. }
  5171. #u119986 {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:146px;
  5175. top:791px;
  5176. width:97px;
  5177. height:22px;
  5178. display:flex;
  5179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:16px;
  5183. }
  5184. #u119986 .text {
  5185. position:absolute;
  5186. align-self:flex-start;
  5187. padding:0px 0px 0px 0px;
  5188. box-sizing:border-box;
  5189. width:100%;
  5190. }
  5191. #u119986_text {
  5192. border-width:0px;
  5193. white-space:nowrap;
  5194. text-transform:none;
  5195. }
  5196. #u119987_div {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:0px;
  5200. top:0px;
  5201. width:49px;
  5202. height:17px;
  5203. background:inherit;
  5204. background-color:rgba(255, 255, 255, 0);
  5205. border:none;
  5206. border-radius:0px;
  5207. -moz-box-shadow:none;
  5208. -webkit-box-shadow:none;
  5209. box-shadow:none;
  5210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5211. font-weight:400;
  5212. font-style:normal;
  5213. font-size:12px;
  5214. color:#AAAAAA;
  5215. }
  5216. #u119987 {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:146px;
  5220. top:858px;
  5221. width:49px;
  5222. height:17px;
  5223. display:flex;
  5224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:12px;
  5228. color:#AAAAAA;
  5229. }
  5230. #u119987 .text {
  5231. position:absolute;
  5232. align-self:flex-start;
  5233. padding:0px 0px 0px 0px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u119987_text {
  5238. border-width:0px;
  5239. white-space:nowrap;
  5240. text-transform:none;
  5241. }
  5242. #u119988_img {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:0px;
  5246. top:0px;
  5247. width:201px;
  5248. height:2px;
  5249. }
  5250. #u119988 {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:120px;
  5254. top:836px;
  5255. width:200px;
  5256. height:1px;
  5257. display:flex;
  5258. }
  5259. #u119988 .text {
  5260. position:absolute;
  5261. align-self:center;
  5262. padding:2px 2px 2px 2px;
  5263. box-sizing:border-box;
  5264. width:100%;
  5265. }
  5266. #u119988_text {
  5267. border-width:0px;
  5268. word-wrap:break-word;
  5269. text-transform:none;
  5270. visibility:hidden;
  5271. }
  5272. #u119989_div {
  5273. border-width:0px;
  5274. position:absolute;
  5275. left:0px;
  5276. top:0px;
  5277. width:97px;
  5278. height:22px;
  5279. background:inherit;
  5280. background-color:rgba(255, 255, 255, 0);
  5281. border:none;
  5282. border-radius:0px;
  5283. -moz-box-shadow:none;
  5284. -webkit-box-shadow:none;
  5285. box-shadow:none;
  5286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5287. font-weight:400;
  5288. font-style:normal;
  5289. font-size:16px;
  5290. }
  5291. #u119989 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:146px;
  5295. top:896px;
  5296. width:97px;
  5297. height:22px;
  5298. display:flex;
  5299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:16px;
  5303. }
  5304. #u119989 .text {
  5305. position:absolute;
  5306. align-self:flex-start;
  5307. padding:0px 0px 0px 0px;
  5308. box-sizing:border-box;
  5309. width:100%;
  5310. }
  5311. #u119989_text {
  5312. border-width:0px;
  5313. white-space:nowrap;
  5314. text-transform:none;
  5315. }
  5316. #u119990_div {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:97px;
  5322. height:22px;
  5323. background:inherit;
  5324. background-color:rgba(255, 255, 255, 0);
  5325. border:none;
  5326. border-radius:0px;
  5327. -moz-box-shadow:none;
  5328. -webkit-box-shadow:none;
  5329. box-shadow:none;
  5330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:16px;
  5334. }
  5335. #u119990 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:146px;
  5339. top:938px;
  5340. width:97px;
  5341. height:22px;
  5342. display:flex;
  5343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5344. font-weight:400;
  5345. font-style:normal;
  5346. font-size:16px;
  5347. }
  5348. #u119990 .text {
  5349. position:absolute;
  5350. align-self:flex-start;
  5351. padding:0px 0px 0px 0px;
  5352. box-sizing:border-box;
  5353. width:100%;
  5354. }
  5355. #u119990_text {
  5356. border-width:0px;
  5357. white-space:nowrap;
  5358. text-transform:none;
  5359. }
  5360. #u119991_div {
  5361. border-width:0px;
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:65px;
  5366. height:22px;
  5367. background:inherit;
  5368. background-color:rgba(255, 255, 255, 0);
  5369. border:none;
  5370. border-radius:0px;
  5371. -moz-box-shadow:none;
  5372. -webkit-box-shadow:none;
  5373. box-shadow:none;
  5374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5375. font-weight:400;
  5376. font-style:normal;
  5377. font-size:16px;
  5378. }
  5379. #u119991 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:146px;
  5383. top:437px;
  5384. width:65px;
  5385. height:22px;
  5386. display:flex;
  5387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5388. font-weight:400;
  5389. font-style:normal;
  5390. font-size:16px;
  5391. }
  5392. #u119991 .text {
  5393. position:absolute;
  5394. align-self:flex-start;
  5395. padding:0px 0px 0px 0px;
  5396. box-sizing:border-box;
  5397. width:100%;
  5398. }
  5399. #u119991_text {
  5400. border-width:0px;
  5401. white-space:nowrap;
  5402. text-transform:none;
  5403. }
  5404. #u119992_div {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:49px;
  5410. height:17px;
  5411. background:inherit;
  5412. background-color:rgba(255, 255, 255, 0);
  5413. border:none;
  5414. border-radius:0px;
  5415. -moz-box-shadow:none;
  5416. -webkit-box-shadow:none;
  5417. box-shadow:none;
  5418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:12px;
  5422. color:#AAAAAA;
  5423. }
  5424. #u119992 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:146px;
  5428. top:400px;
  5429. width:49px;
  5430. height:17px;
  5431. display:flex;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:12px;
  5436. color:#AAAAAA;
  5437. }
  5438. #u119992 .text {
  5439. position:absolute;
  5440. align-self:flex-start;
  5441. padding:0px 0px 0px 0px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u119992_text {
  5446. border-width:0px;
  5447. white-space:nowrap;
  5448. text-transform:none;
  5449. }
  5450. #u119993_img {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:201px;
  5456. height:2px;
  5457. }
  5458. #u119993 {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:120px;
  5462. top:380px;
  5463. width:200px;
  5464. height:1px;
  5465. display:flex;
  5466. }
  5467. #u119993 .text {
  5468. position:absolute;
  5469. align-self:center;
  5470. padding:2px 2px 2px 2px;
  5471. box-sizing:border-box;
  5472. width:100%;
  5473. }
  5474. #u119993_text {
  5475. border-width:0px;
  5476. word-wrap:break-word;
  5477. text-transform:none;
  5478. visibility:hidden;
  5479. }
  5480. #u119994_div {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:65px;
  5486. height:22px;
  5487. background:inherit;
  5488. background-color:rgba(255, 255, 255, 0);
  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:16px;
  5498. }
  5499. #u119994 {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:146px;
  5503. top:479px;
  5504. width:65px;
  5505. height:22px;
  5506. display:flex;
  5507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5508. font-weight:400;
  5509. font-style:normal;
  5510. font-size:16px;
  5511. }
  5512. #u119994 .text {
  5513. position:absolute;
  5514. align-self:flex-start;
  5515. padding:0px 0px 0px 0px;
  5516. box-sizing:border-box;
  5517. width:100%;
  5518. }
  5519. #u119994_text {
  5520. border-width:0px;
  5521. white-space:nowrap;
  5522. text-transform:none;
  5523. }
  5524. #u119995_div {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:65px;
  5530. height:22px;
  5531. background:inherit;
  5532. background-color:rgba(255, 255, 255, 0);
  5533. border:none;
  5534. border-radius:0px;
  5535. -moz-box-shadow:none;
  5536. -webkit-box-shadow:none;
  5537. box-shadow:none;
  5538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:16px;
  5542. }
  5543. #u119995 {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:146px;
  5547. top:521px;
  5548. width:65px;
  5549. height:22px;
  5550. display:flex;
  5551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5552. font-weight:400;
  5553. font-style:normal;
  5554. font-size:16px;
  5555. }
  5556. #u119995 .text {
  5557. position:absolute;
  5558. align-self:flex-start;
  5559. padding:0px 0px 0px 0px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u119995_text {
  5564. border-width:0px;
  5565. white-space:nowrap;
  5566. text-transform:none;
  5567. }
  5568. #u119996_div {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:65px;
  5574. height:22px;
  5575. background:inherit;
  5576. background-color:rgba(255, 255, 255, 0);
  5577. border:none;
  5578. border-radius:0px;
  5579. -moz-box-shadow:none;
  5580. -webkit-box-shadow:none;
  5581. box-shadow:none;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:16px;
  5586. }
  5587. #u119996 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:146px;
  5591. top:334px;
  5592. width:65px;
  5593. height:22px;
  5594. display:flex;
  5595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:16px;
  5599. }
  5600. #u119996 .text {
  5601. position:absolute;
  5602. align-self:flex-start;
  5603. padding:0px 0px 0px 0px;
  5604. box-sizing:border-box;
  5605. width:100%;
  5606. }
  5607. #u119996_text {
  5608. border-width:0px;
  5609. white-space:nowrap;
  5610. text-transform:none;
  5611. }
  5612. #u119997_div {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:65px;
  5618. height:22px;
  5619. background:inherit;
  5620. background-color:rgba(255, 255, 255, 0);
  5621. border:none;
  5622. border-radius:0px;
  5623. -moz-box-shadow:none;
  5624. -webkit-box-shadow:none;
  5625. box-shadow:none;
  5626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. font-size:16px;
  5630. }
  5631. #u119997 {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:146px;
  5635. top:251px;
  5636. width:65px;
  5637. height:22px;
  5638. display:flex;
  5639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5640. font-weight:400;
  5641. font-style:normal;
  5642. font-size:16px;
  5643. }
  5644. #u119997 .text {
  5645. position:absolute;
  5646. align-self:flex-start;
  5647. padding:0px 0px 0px 0px;
  5648. box-sizing:border-box;
  5649. width:100%;
  5650. }
  5651. #u119997_text {
  5652. border-width:0px;
  5653. white-space:nowrap;
  5654. text-transform:none;
  5655. }
  5656. #u119998_div {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:0px;
  5660. top:0px;
  5661. width:65px;
  5662. height:22px;
  5663. background:inherit;
  5664. background-color:rgba(255, 255, 255, 0);
  5665. border:none;
  5666. border-radius:0px;
  5667. -moz-box-shadow:none;
  5668. -webkit-box-shadow:none;
  5669. box-shadow:none;
  5670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5671. font-weight:400;
  5672. font-style:normal;
  5673. font-size:16px;
  5674. }
  5675. #u119998 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:146px;
  5679. top:293px;
  5680. width:65px;
  5681. height:22px;
  5682. display:flex;
  5683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:16px;
  5687. }
  5688. #u119998 .text {
  5689. position:absolute;
  5690. align-self:flex-start;
  5691. padding:0px 0px 0px 0px;
  5692. box-sizing:border-box;
  5693. width:100%;
  5694. }
  5695. #u119998_text {
  5696. border-width:0px;
  5697. white-space:nowrap;
  5698. text-transform:none;
  5699. }