styles.css 108 KB

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