styles.css 109 KB

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