styles.css 101 KB

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