styles.css 105 KB

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