styles.css 102 KB

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