styles.css 119 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2425px;
  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. #u31205_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u31205 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u31205 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u31205_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u31206_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u31206 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u31206 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u31206_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u31207_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u31207 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u31207 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u31207_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u31208 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u31209_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u31209 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u31209 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u31209_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u31210_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u31210 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u31210 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u31210_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u31211_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u31211 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u31211 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u31211_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u31212 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u31213_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u31213_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u31213_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u31213 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u31213 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u31213_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u31213.disabled {
  356. }
  357. .u31213_input_option {
  358. font-size:14px;
  359. }
  360. #u31214_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u31214 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u31214 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u31214_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u31215_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u31215 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u31215 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u31215_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u31216_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u31216 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u31216 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u31216_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u31217 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u31218_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u31218 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u31218 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u31218_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u31219_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u31219 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u31219 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u31219_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u31220 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u31221_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u31221 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u31221 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u31221_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u31222_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u31222 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u31222 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u31222_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u31223 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u31224_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u31224 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:439px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u31224 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u31224_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u31225_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u31225 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u31225 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u31225_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u31226 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u31227_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u31227 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u31227 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u31227_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u31228_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u31228 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u31228 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u31228_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u31229 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u31230_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u31230 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:481px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u31230 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u31230_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u31231_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u31231 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u31231 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u31231_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u31232 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u31233_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u31233 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:355px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u31233 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u31233_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u31234_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u31234 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u31234 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u31234_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u31235 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u31236_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u31236 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u31236 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u31236_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u31237_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u31237 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u31237 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u31237_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u31238 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u31239_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u31239 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:397px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u31239 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u31239_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u31240_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u31240 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u31240 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u31240_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u31241 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u31242_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u31242 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:523px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u31242 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u31242_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u31243_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u31243 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u31243 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u31243_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u31244 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u31245_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u31245 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:231px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u31245 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u31245_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u31246_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u31246 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u31246 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u31246_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u31247_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u31247 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u31247 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u31247_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u31248_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u31248 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u31248 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u31248_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u31249_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u31249 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u31249 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u31249_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u31250_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u31250 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u31250 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u31250_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u31251 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u31252_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u31252 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:273px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u31252 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u31252_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u31253_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u31253 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u31253 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u31253_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u31254 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u31255_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u31255 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u31255 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u31255_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u31256_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u31256 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u31256 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u31256_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u31257 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u31258_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u31258 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:315px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u31258 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u31258_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u31259_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u31259 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u31259 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u31259_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u31260_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1253px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#FFFFFF;
  1741. text-align:left;
  1742. }
  1743. #u31260 {
  1744. border-width:0px;
  1745. position:absolute;
  1746. left:335px;
  1747. top:50px;
  1748. width:1253px;
  1749. height:1180px;
  1750. display:flex;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:12px;
  1755. color:#FFFFFF;
  1756. text-align:left;
  1757. }
  1758. #u31260 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 50px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u31260_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. visibility:hidden;
  1770. }
  1771. #u31261_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:73px;
  1777. height:25px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 0);
  1780. border:none;
  1781. border-radius:0px;
  1782. -moz-box-shadow:none;
  1783. -webkit-box-shadow:none;
  1784. box-shadow:none;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:18px;
  1789. }
  1790. #u31261 {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:365px;
  1794. top:70px;
  1795. width:73px;
  1796. height:25px;
  1797. display:flex;
  1798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1799. font-weight:400;
  1800. font-style:normal;
  1801. font-size:18px;
  1802. }
  1803. #u31261 .text {
  1804. position:absolute;
  1805. align-self:flex-start;
  1806. padding:0px 0px 0px 0px;
  1807. box-sizing:border-box;
  1808. width:100%;
  1809. }
  1810. #u31261_text {
  1811. border-width:0px;
  1812. white-space:nowrap;
  1813. text-transform:none;
  1814. }
  1815. #u31262 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:365px;
  1819. top:170px;
  1820. width:1145px;
  1821. height:465px;
  1822. }
  1823. #u31263_img {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:78px;
  1829. height:38px;
  1830. }
  1831. #u31263 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:78px;
  1837. height:38px;
  1838. display:flex;
  1839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:12px;
  1843. color:#FFFFFF;
  1844. }
  1845. #u31263 .text {
  1846. position:absolute;
  1847. align-self:center;
  1848. padding:2px 2px 2px 0px;
  1849. box-sizing:border-box;
  1850. width:100%;
  1851. }
  1852. #u31263_text {
  1853. border-width:0px;
  1854. word-wrap:break-word;
  1855. text-transform:none;
  1856. }
  1857. #u31264_img {
  1858. border-width:0px;
  1859. position:absolute;
  1860. left:0px;
  1861. top:0px;
  1862. width:167px;
  1863. height:38px;
  1864. }
  1865. #u31264 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:78px;
  1869. top:0px;
  1870. width:167px;
  1871. height:38px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:12px;
  1877. color:#FFFFFF;
  1878. }
  1879. #u31264 .text {
  1880. position:absolute;
  1881. align-self:center;
  1882. padding:2px 2px 2px 0px;
  1883. box-sizing:border-box;
  1884. width:100%;
  1885. }
  1886. #u31264_text {
  1887. border-width:0px;
  1888. word-wrap:break-word;
  1889. text-transform:none;
  1890. }
  1891. #u31265_img {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:0px;
  1895. top:0px;
  1896. width:167px;
  1897. height:38px;
  1898. }
  1899. #u31265 {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:245px;
  1903. top:0px;
  1904. width:167px;
  1905. height:38px;
  1906. display:flex;
  1907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1908. font-weight:400;
  1909. font-style:normal;
  1910. font-size:12px;
  1911. color:#FFFFFF;
  1912. }
  1913. #u31265 .text {
  1914. position:absolute;
  1915. align-self:center;
  1916. padding:2px 2px 2px 0px;
  1917. box-sizing:border-box;
  1918. width:100%;
  1919. }
  1920. #u31265_text {
  1921. border-width:0px;
  1922. word-wrap:break-word;
  1923. text-transform:none;
  1924. }
  1925. #u31266_img {
  1926. border-width:0px;
  1927. position:absolute;
  1928. left:0px;
  1929. top:0px;
  1930. width:191px;
  1931. height:38px;
  1932. }
  1933. #u31266 {
  1934. border-width:0px;
  1935. position:absolute;
  1936. left:412px;
  1937. top:0px;
  1938. width:191px;
  1939. height:38px;
  1940. display:flex;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:12px;
  1945. color:#FFFFFF;
  1946. }
  1947. #u31266 .text {
  1948. position:absolute;
  1949. align-self:center;
  1950. padding:2px 2px 2px 0px;
  1951. box-sizing:border-box;
  1952. width:100%;
  1953. }
  1954. #u31266_text {
  1955. border-width:0px;
  1956. word-wrap:break-word;
  1957. text-transform:none;
  1958. }
  1959. #u31267_img {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:337px;
  1965. height:38px;
  1966. }
  1967. #u31267 {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:603px;
  1971. top:0px;
  1972. width:337px;
  1973. height:38px;
  1974. display:flex;
  1975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1976. font-weight:400;
  1977. font-style:normal;
  1978. font-size:12px;
  1979. color:#FFFFFF;
  1980. }
  1981. #u31267 .text {
  1982. position:absolute;
  1983. align-self:center;
  1984. padding:2px 2px 2px 0px;
  1985. box-sizing:border-box;
  1986. width:100%;
  1987. }
  1988. #u31267_text {
  1989. border-width:0px;
  1990. word-wrap:break-word;
  1991. text-transform:none;
  1992. }
  1993. #u31268_img {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:0px;
  1997. top:0px;
  1998. width:205px;
  1999. height:38px;
  2000. }
  2001. #u31268 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:940px;
  2005. top:0px;
  2006. width:205px;
  2007. height:38px;
  2008. display:flex;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:12px;
  2013. color:#FFFFFF;
  2014. }
  2015. #u31268 .text {
  2016. position:absolute;
  2017. align-self:center;
  2018. padding:2px 2px 2px 0px;
  2019. box-sizing:border-box;
  2020. width:100%;
  2021. }
  2022. #u31268_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u31269_img {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:78px;
  2033. height:44px;
  2034. }
  2035. #u31269 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:38px;
  2040. width:78px;
  2041. height:44px;
  2042. display:flex;
  2043. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2044. font-weight:400;
  2045. font-style:normal;
  2046. font-size:12px;
  2047. }
  2048. #u31269 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 2px 2px 0px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u31269_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. }
  2060. #u31270_img {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:167px;
  2066. height:44px;
  2067. }
  2068. #u31270 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:78px;
  2072. top:38px;
  2073. width:167px;
  2074. height:44px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:12px;
  2080. }
  2081. #u31270 .text {
  2082. position:absolute;
  2083. align-self:center;
  2084. padding:2px 2px 2px 0px;
  2085. box-sizing:border-box;
  2086. width:100%;
  2087. }
  2088. #u31270_text {
  2089. border-width:0px;
  2090. word-wrap:break-word;
  2091. text-transform:none;
  2092. visibility:hidden;
  2093. }
  2094. #u31271_img {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:167px;
  2100. height:44px;
  2101. }
  2102. #u31271 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:245px;
  2106. top:38px;
  2107. width:167px;
  2108. height:44px;
  2109. display:flex;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. font-size:12px;
  2114. }
  2115. #u31271 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 0px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u31271_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. visibility:hidden;
  2127. }
  2128. #u31272_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:191px;
  2134. height:44px;
  2135. }
  2136. #u31272 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:412px;
  2140. top:38px;
  2141. width:191px;
  2142. height:44px;
  2143. display:flex;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:12px;
  2148. }
  2149. #u31272 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 0px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u31272_text {
  2157. border-width:0px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. visibility:hidden;
  2161. }
  2162. #u31273_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:337px;
  2168. height:44px;
  2169. }
  2170. #u31273 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:603px;
  2174. top:38px;
  2175. width:337px;
  2176. height:44px;
  2177. display:flex;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:12px;
  2182. }
  2183. #u31273 .text {
  2184. position:absolute;
  2185. align-self:center;
  2186. padding:2px 2px 2px 0px;
  2187. box-sizing:border-box;
  2188. width:100%;
  2189. }
  2190. #u31273_text {
  2191. border-width:0px;
  2192. word-wrap:break-word;
  2193. text-transform:none;
  2194. visibility:hidden;
  2195. }
  2196. #u31274_img {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:205px;
  2202. height:44px;
  2203. }
  2204. #u31274 {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:940px;
  2208. top:38px;
  2209. width:205px;
  2210. height:44px;
  2211. display:flex;
  2212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2213. font-weight:400;
  2214. font-style:normal;
  2215. font-size:12px;
  2216. color:#298FFF;
  2217. line-height:40px;
  2218. }
  2219. #u31274 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u31274_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u31275_img {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:78px;
  2237. height:44px;
  2238. }
  2239. #u31275 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:82px;
  2244. width:78px;
  2245. height:44px;
  2246. display:flex;
  2247. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. color:#606266;
  2252. }
  2253. #u31275 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 0px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u31275_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. }
  2265. #u31276_img {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:167px;
  2271. height:44px;
  2272. }
  2273. #u31276 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:78px;
  2277. top:82px;
  2278. width:167px;
  2279. height:44px;
  2280. display:flex;
  2281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2282. font-weight:400;
  2283. font-style:normal;
  2284. font-size:12px;
  2285. }
  2286. #u31276 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 2px 2px 0px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u31276_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. visibility:hidden;
  2298. }
  2299. #u31277_img {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:0px;
  2303. top:0px;
  2304. width:167px;
  2305. height:44px;
  2306. }
  2307. #u31277 {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:245px;
  2311. top:82px;
  2312. width:167px;
  2313. height:44px;
  2314. display:flex;
  2315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2316. font-weight:400;
  2317. font-style:normal;
  2318. font-size:12px;
  2319. }
  2320. #u31277 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:2px 2px 2px 0px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u31277_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. visibility:hidden;
  2332. }
  2333. #u31278_img {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:0px;
  2337. top:0px;
  2338. width:191px;
  2339. height:44px;
  2340. }
  2341. #u31278 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:412px;
  2345. top:82px;
  2346. width:191px;
  2347. height:44px;
  2348. display:flex;
  2349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2350. font-weight:400;
  2351. font-style:normal;
  2352. font-size:12px;
  2353. }
  2354. #u31278 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 0px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u31278_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. visibility:hidden;
  2366. }
  2367. #u31279_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:337px;
  2373. height:44px;
  2374. }
  2375. #u31279 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:603px;
  2379. top:82px;
  2380. width:337px;
  2381. height:44px;
  2382. display:flex;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:12px;
  2387. }
  2388. #u31279 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 0px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u31279_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. visibility:hidden;
  2400. }
  2401. #u31280_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:205px;
  2407. height:44px;
  2408. }
  2409. #u31280 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:940px;
  2413. top:82px;
  2414. width:205px;
  2415. height:44px;
  2416. display:flex;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:12px;
  2421. color:#298FFF;
  2422. line-height:40px;
  2423. }
  2424. #u31280 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:2px 2px 2px 0px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u31280_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. visibility:hidden;
  2436. }
  2437. #u31281_img {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:78px;
  2443. height:44px;
  2444. }
  2445. #u31281 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:126px;
  2450. width:78px;
  2451. height:44px;
  2452. display:flex;
  2453. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2454. font-weight:400;
  2455. font-style:normal;
  2456. font-size:12px;
  2457. color:#606266;
  2458. }
  2459. #u31281 .text {
  2460. position:absolute;
  2461. align-self:center;
  2462. padding:2px 2px 2px 0px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u31281_text {
  2467. border-width:0px;
  2468. word-wrap:break-word;
  2469. text-transform:none;
  2470. }
  2471. #u31282_img {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:167px;
  2477. height:44px;
  2478. }
  2479. #u31282 {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:78px;
  2483. top:126px;
  2484. width:167px;
  2485. height:44px;
  2486. display:flex;
  2487. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2488. font-weight:400;
  2489. font-style:normal;
  2490. font-size:12px;
  2491. color:#606266;
  2492. }
  2493. #u31282 .text {
  2494. position:absolute;
  2495. align-self:center;
  2496. padding:2px 2px 2px 0px;
  2497. box-sizing:border-box;
  2498. width:100%;
  2499. }
  2500. #u31282_text {
  2501. border-width:0px;
  2502. word-wrap:break-word;
  2503. text-transform:none;
  2504. visibility:hidden;
  2505. }
  2506. #u31283_img {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:167px;
  2512. height:44px;
  2513. }
  2514. #u31283 {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:245px;
  2518. top:126px;
  2519. width:167px;
  2520. height:44px;
  2521. display:flex;
  2522. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2523. font-weight:400;
  2524. font-style:normal;
  2525. font-size:12px;
  2526. color:#606266;
  2527. }
  2528. #u31283 .text {
  2529. position:absolute;
  2530. align-self:center;
  2531. padding:2px 2px 2px 0px;
  2532. box-sizing:border-box;
  2533. width:100%;
  2534. }
  2535. #u31283_text {
  2536. border-width:0px;
  2537. word-wrap:break-word;
  2538. text-transform:none;
  2539. visibility:hidden;
  2540. }
  2541. #u31284_img {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:191px;
  2547. height:44px;
  2548. }
  2549. #u31284 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:412px;
  2553. top:126px;
  2554. width:191px;
  2555. height:44px;
  2556. display:flex;
  2557. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2558. font-weight:400;
  2559. font-style:normal;
  2560. font-size:12px;
  2561. color:#606266;
  2562. }
  2563. #u31284 .text {
  2564. position:absolute;
  2565. align-self:center;
  2566. padding:2px 2px 2px 0px;
  2567. box-sizing:border-box;
  2568. width:100%;
  2569. }
  2570. #u31284_text {
  2571. border-width:0px;
  2572. word-wrap:break-word;
  2573. text-transform:none;
  2574. visibility:hidden;
  2575. }
  2576. #u31285_img {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:337px;
  2582. height:44px;
  2583. }
  2584. #u31285 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:603px;
  2588. top:126px;
  2589. width:337px;
  2590. height:44px;
  2591. display:flex;
  2592. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:12px;
  2596. color:#606266;
  2597. }
  2598. #u31285 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 0px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u31285_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u31286_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:205px;
  2617. height:44px;
  2618. }
  2619. #u31286 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:940px;
  2623. top:126px;
  2624. width:205px;
  2625. height:44px;
  2626. display:flex;
  2627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:12px;
  2631. color:#AAAAAA;
  2632. line-height:40px;
  2633. }
  2634. #u31286 .text {
  2635. position:absolute;
  2636. align-self:center;
  2637. padding:2px 2px 2px 0px;
  2638. box-sizing:border-box;
  2639. width:100%;
  2640. }
  2641. #u31286_text {
  2642. border-width:0px;
  2643. word-wrap:break-word;
  2644. text-transform:none;
  2645. visibility:hidden;
  2646. }
  2647. #u31287_img {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:0px;
  2651. top:0px;
  2652. width:78px;
  2653. height:44px;
  2654. }
  2655. #u31287 {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:170px;
  2660. width:78px;
  2661. height:44px;
  2662. display:flex;
  2663. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:12px;
  2667. color:#606266;
  2668. }
  2669. #u31287 .text {
  2670. position:absolute;
  2671. align-self:center;
  2672. padding:2px 2px 2px 0px;
  2673. box-sizing:border-box;
  2674. width:100%;
  2675. }
  2676. #u31287_text {
  2677. border-width:0px;
  2678. word-wrap:break-word;
  2679. text-transform:none;
  2680. }
  2681. #u31288_img {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:0px;
  2685. top:0px;
  2686. width:167px;
  2687. height:44px;
  2688. }
  2689. #u31288 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:78px;
  2693. top:170px;
  2694. width:167px;
  2695. height:44px;
  2696. display:flex;
  2697. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. font-size:12px;
  2701. color:#606266;
  2702. }
  2703. #u31288 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 0px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u31288_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. visibility:hidden;
  2715. }
  2716. #u31289_img {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:167px;
  2722. height:44px;
  2723. }
  2724. #u31289 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:245px;
  2728. top:170px;
  2729. width:167px;
  2730. height:44px;
  2731. display:flex;
  2732. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2733. font-weight:400;
  2734. font-style:normal;
  2735. font-size:12px;
  2736. color:#606266;
  2737. }
  2738. #u31289 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 0px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u31289_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u31290_img {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:191px;
  2757. height:44px;
  2758. }
  2759. #u31290 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:412px;
  2763. top:170px;
  2764. width:191px;
  2765. height:44px;
  2766. display:flex;
  2767. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2768. font-weight:400;
  2769. font-style:normal;
  2770. font-size:12px;
  2771. color:#606266;
  2772. }
  2773. #u31290 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 2px 2px 0px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u31290_text {
  2781. border-width:0px;
  2782. word-wrap:break-word;
  2783. text-transform:none;
  2784. visibility:hidden;
  2785. }
  2786. #u31291_img {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:337px;
  2792. height:44px;
  2793. }
  2794. #u31291 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:603px;
  2798. top:170px;
  2799. width:337px;
  2800. height:44px;
  2801. display:flex;
  2802. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2803. font-weight:400;
  2804. font-style:normal;
  2805. font-size:12px;
  2806. color:#606266;
  2807. }
  2808. #u31291 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:2px 2px 2px 0px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u31291_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. visibility:hidden;
  2820. }
  2821. #u31292_img {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:205px;
  2827. height:44px;
  2828. }
  2829. #u31292 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:940px;
  2833. top:170px;
  2834. width:205px;
  2835. height:44px;
  2836. display:flex;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:12px;
  2841. color:#298FFF;
  2842. line-height:40px;
  2843. }
  2844. #u31292 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 0px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u31292_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. visibility:hidden;
  2856. }
  2857. #u31293_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:78px;
  2863. height:44px;
  2864. }
  2865. #u31293 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:214px;
  2870. width:78px;
  2871. height:44px;
  2872. display:flex;
  2873. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:12px;
  2877. color:#606266;
  2878. }
  2879. #u31293 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 0px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u31293_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. visibility:hidden;
  2891. }
  2892. #u31294_img {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:167px;
  2898. height:44px;
  2899. }
  2900. #u31294 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:78px;
  2904. top:214px;
  2905. width:167px;
  2906. height:44px;
  2907. display:flex;
  2908. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:12px;
  2912. color:#606266;
  2913. }
  2914. #u31294 .text {
  2915. position:absolute;
  2916. align-self:center;
  2917. padding:2px 2px 2px 0px;
  2918. box-sizing:border-box;
  2919. width:100%;
  2920. }
  2921. #u31294_text {
  2922. border-width:0px;
  2923. word-wrap:break-word;
  2924. text-transform:none;
  2925. visibility:hidden;
  2926. }
  2927. #u31295_img {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:167px;
  2933. height:44px;
  2934. }
  2935. #u31295 {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:245px;
  2939. top:214px;
  2940. width:167px;
  2941. height:44px;
  2942. display:flex;
  2943. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2944. font-weight:400;
  2945. font-style:normal;
  2946. font-size:12px;
  2947. color:#606266;
  2948. }
  2949. #u31295 .text {
  2950. position:absolute;
  2951. align-self:center;
  2952. padding:2px 2px 2px 0px;
  2953. box-sizing:border-box;
  2954. width:100%;
  2955. }
  2956. #u31295_text {
  2957. border-width:0px;
  2958. word-wrap:break-word;
  2959. text-transform:none;
  2960. visibility:hidden;
  2961. }
  2962. #u31296_img {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:191px;
  2968. height:44px;
  2969. }
  2970. #u31296 {
  2971. border-width:0px;
  2972. position:absolute;
  2973. left:412px;
  2974. top:214px;
  2975. width:191px;
  2976. height:44px;
  2977. display:flex;
  2978. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2979. font-weight:400;
  2980. font-style:normal;
  2981. font-size:12px;
  2982. color:#606266;
  2983. }
  2984. #u31296 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 0px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u31296_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. visibility:hidden;
  2996. }
  2997. #u31297_img {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:337px;
  3003. height:44px;
  3004. }
  3005. #u31297 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:603px;
  3009. top:214px;
  3010. width:337px;
  3011. height:44px;
  3012. display:flex;
  3013. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3014. font-weight:400;
  3015. font-style:normal;
  3016. font-size:12px;
  3017. color:#606266;
  3018. }
  3019. #u31297 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 2px 2px 0px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u31297_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. visibility:hidden;
  3031. }
  3032. #u31298_img {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:0px;
  3036. top:0px;
  3037. width:205px;
  3038. height:44px;
  3039. }
  3040. #u31298 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:940px;
  3044. top:214px;
  3045. width:205px;
  3046. height:44px;
  3047. display:flex;
  3048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3049. font-weight:400;
  3050. font-style:normal;
  3051. font-size:12px;
  3052. color:#AAAAAA;
  3053. line-height:40px;
  3054. }
  3055. #u31298 .text {
  3056. position:absolute;
  3057. align-self:center;
  3058. padding:2px 2px 2px 0px;
  3059. box-sizing:border-box;
  3060. width:100%;
  3061. }
  3062. #u31298_text {
  3063. border-width:0px;
  3064. word-wrap:break-word;
  3065. text-transform:none;
  3066. visibility:hidden;
  3067. }
  3068. #u31299_img {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:78px;
  3074. height:35px;
  3075. }
  3076. #u31299 {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:258px;
  3081. width:78px;
  3082. height:35px;
  3083. display:flex;
  3084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:12px;
  3088. color:#606266;
  3089. }
  3090. #u31299 .text {
  3091. position:absolute;
  3092. align-self:center;
  3093. padding:2px 2px 2px 0px;
  3094. box-sizing:border-box;
  3095. width:100%;
  3096. }
  3097. #u31299_text {
  3098. border-width:0px;
  3099. word-wrap:break-word;
  3100. text-transform:none;
  3101. visibility:hidden;
  3102. }
  3103. #u31300_img {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:0px;
  3107. top:0px;
  3108. width:167px;
  3109. height:35px;
  3110. }
  3111. #u31300 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:78px;
  3115. top:258px;
  3116. width:167px;
  3117. height:35px;
  3118. display:flex;
  3119. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:12px;
  3123. color:#606266;
  3124. }
  3125. #u31300 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 2px 2px 0px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u31300_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. visibility:hidden;
  3137. }
  3138. #u31301_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:167px;
  3144. height:35px;
  3145. }
  3146. #u31301 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:245px;
  3150. top:258px;
  3151. width:167px;
  3152. height:35px;
  3153. display:flex;
  3154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. color:#606266;
  3159. }
  3160. #u31301 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u31301_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. visibility:hidden;
  3172. }
  3173. #u31302_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:191px;
  3179. height:35px;
  3180. }
  3181. #u31302 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:412px;
  3185. top:258px;
  3186. width:191px;
  3187. height:35px;
  3188. display:flex;
  3189. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:12px;
  3193. color:#606266;
  3194. }
  3195. #u31302 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 2px 2px 0px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u31302_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u31303_img {
  3209. border-width:0px;
  3210. position:absolute;
  3211. left:0px;
  3212. top:0px;
  3213. width:337px;
  3214. height:35px;
  3215. }
  3216. #u31303 {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:603px;
  3220. top:258px;
  3221. width:337px;
  3222. height:35px;
  3223. display:flex;
  3224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3225. font-weight:400;
  3226. font-style:normal;
  3227. font-size:12px;
  3228. color:#606266;
  3229. }
  3230. #u31303 .text {
  3231. position:absolute;
  3232. align-self:center;
  3233. padding:2px 2px 2px 0px;
  3234. box-sizing:border-box;
  3235. width:100%;
  3236. }
  3237. #u31303_text {
  3238. border-width:0px;
  3239. word-wrap:break-word;
  3240. text-transform:none;
  3241. visibility:hidden;
  3242. }
  3243. #u31304_img {
  3244. border-width:0px;
  3245. position:absolute;
  3246. left:0px;
  3247. top:0px;
  3248. width:205px;
  3249. height:35px;
  3250. }
  3251. #u31304 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:940px;
  3255. top:258px;
  3256. width:205px;
  3257. height:35px;
  3258. display:flex;
  3259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:12px;
  3263. color:#606266;
  3264. }
  3265. #u31304 .text {
  3266. position:absolute;
  3267. align-self:center;
  3268. padding:2px 2px 2px 0px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u31304_text {
  3273. border-width:0px;
  3274. word-wrap:break-word;
  3275. text-transform:none;
  3276. visibility:hidden;
  3277. }
  3278. #u31305_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:78px;
  3284. height:35px;
  3285. }
  3286. #u31305 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:0px;
  3290. top:293px;
  3291. width:78px;
  3292. height:35px;
  3293. display:flex;
  3294. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:12px;
  3298. color:#606266;
  3299. }
  3300. #u31305 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u31305_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u31306_img {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:167px;
  3319. height:35px;
  3320. }
  3321. #u31306 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:78px;
  3325. top:293px;
  3326. width:167px;
  3327. height:35px;
  3328. display:flex;
  3329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:12px;
  3333. color:#606266;
  3334. }
  3335. #u31306 .text {
  3336. position:absolute;
  3337. align-self:center;
  3338. padding:2px 2px 2px 0px;
  3339. box-sizing:border-box;
  3340. width:100%;
  3341. }
  3342. #u31306_text {
  3343. border-width:0px;
  3344. word-wrap:break-word;
  3345. text-transform:none;
  3346. visibility:hidden;
  3347. }
  3348. #u31307_img {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:167px;
  3354. height:35px;
  3355. }
  3356. #u31307 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:245px;
  3360. top:293px;
  3361. width:167px;
  3362. height:35px;
  3363. display:flex;
  3364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:12px;
  3368. color:#606266;
  3369. }
  3370. #u31307 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 0px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u31307_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u31308_img {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:191px;
  3389. height:35px;
  3390. }
  3391. #u31308 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:412px;
  3395. top:293px;
  3396. width:191px;
  3397. height:35px;
  3398. display:flex;
  3399. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3400. font-weight:400;
  3401. font-style:normal;
  3402. font-size:12px;
  3403. color:#606266;
  3404. }
  3405. #u31308 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 0px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u31308_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u31309_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:337px;
  3424. height:35px;
  3425. }
  3426. #u31309 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:603px;
  3430. top:293px;
  3431. width:337px;
  3432. height:35px;
  3433. display:flex;
  3434. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:12px;
  3438. color:#606266;
  3439. }
  3440. #u31309 .text {
  3441. position:absolute;
  3442. align-self:center;
  3443. padding:2px 2px 2px 0px;
  3444. box-sizing:border-box;
  3445. width:100%;
  3446. }
  3447. #u31309_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. visibility:hidden;
  3452. }
  3453. #u31310_img {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:205px;
  3459. height:35px;
  3460. }
  3461. #u31310 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:940px;
  3465. top:293px;
  3466. width:205px;
  3467. height:35px;
  3468. display:flex;
  3469. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. color:#606266;
  3474. }
  3475. #u31310 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 0px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u31310_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u31311_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:78px;
  3494. height:35px;
  3495. }
  3496. #u31311 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:328px;
  3501. width:78px;
  3502. height:35px;
  3503. display:flex;
  3504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:12px;
  3508. color:#606266;
  3509. }
  3510. #u31311 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u31311_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u31312_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:167px;
  3529. height:35px;
  3530. }
  3531. #u31312 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:78px;
  3535. top:328px;
  3536. width:167px;
  3537. height:35px;
  3538. display:flex;
  3539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#606266;
  3544. }
  3545. #u31312 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u31312_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u31313_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:167px;
  3564. height:35px;
  3565. }
  3566. #u31313 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:245px;
  3570. top:328px;
  3571. width:167px;
  3572. height:35px;
  3573. display:flex;
  3574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. color:#606266;
  3579. }
  3580. #u31313 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u31313_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u31314_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:191px;
  3599. height:35px;
  3600. }
  3601. #u31314 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:412px;
  3605. top:328px;
  3606. width:191px;
  3607. height:35px;
  3608. display:flex;
  3609. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. color:#606266;
  3614. }
  3615. #u31314 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u31314_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. visibility:hidden;
  3627. }
  3628. #u31315_img {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:0px;
  3632. top:0px;
  3633. width:337px;
  3634. height:35px;
  3635. }
  3636. #u31315 {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:603px;
  3640. top:328px;
  3641. width:337px;
  3642. height:35px;
  3643. display:flex;
  3644. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:12px;
  3648. color:#606266;
  3649. }
  3650. #u31315 .text {
  3651. position:absolute;
  3652. align-self:center;
  3653. padding:2px 2px 2px 0px;
  3654. box-sizing:border-box;
  3655. width:100%;
  3656. }
  3657. #u31315_text {
  3658. border-width:0px;
  3659. word-wrap:break-word;
  3660. text-transform:none;
  3661. visibility:hidden;
  3662. }
  3663. #u31316_img {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:0px;
  3667. top:0px;
  3668. width:205px;
  3669. height:35px;
  3670. }
  3671. #u31316 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:940px;
  3675. top:328px;
  3676. width:205px;
  3677. height:35px;
  3678. display:flex;
  3679. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:12px;
  3683. color:#606266;
  3684. }
  3685. #u31316 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:2px 2px 2px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u31316_text {
  3693. border-width:0px;
  3694. word-wrap:break-word;
  3695. text-transform:none;
  3696. visibility:hidden;
  3697. }
  3698. #u31317_img {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:78px;
  3704. height:35px;
  3705. }
  3706. #u31317 {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:363px;
  3711. width:78px;
  3712. height:35px;
  3713. display:flex;
  3714. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:12px;
  3718. color:#606266;
  3719. }
  3720. #u31317 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 0px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u31317_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u31318_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:167px;
  3739. height:35px;
  3740. }
  3741. #u31318 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:78px;
  3745. top:363px;
  3746. width:167px;
  3747. height:35px;
  3748. display:flex;
  3749. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3750. font-weight:400;
  3751. font-style:normal;
  3752. font-size:12px;
  3753. color:#606266;
  3754. }
  3755. #u31318 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 0px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u31318_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u31319_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:167px;
  3774. height:35px;
  3775. }
  3776. #u31319 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:245px;
  3780. top:363px;
  3781. width:167px;
  3782. height:35px;
  3783. display:flex;
  3784. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:12px;
  3788. color:#606266;
  3789. }
  3790. #u31319 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:2px 2px 2px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u31319_text {
  3798. border-width:0px;
  3799. word-wrap:break-word;
  3800. text-transform:none;
  3801. visibility:hidden;
  3802. }
  3803. #u31320_img {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:191px;
  3809. height:35px;
  3810. }
  3811. #u31320 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:412px;
  3815. top:363px;
  3816. width:191px;
  3817. height:35px;
  3818. display:flex;
  3819. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3820. font-weight:400;
  3821. font-style:normal;
  3822. font-size:12px;
  3823. color:#606266;
  3824. }
  3825. #u31320 .text {
  3826. position:absolute;
  3827. align-self:center;
  3828. padding:2px 2px 2px 0px;
  3829. box-sizing:border-box;
  3830. width:100%;
  3831. }
  3832. #u31320_text {
  3833. border-width:0px;
  3834. word-wrap:break-word;
  3835. text-transform:none;
  3836. visibility:hidden;
  3837. }
  3838. #u31321_img {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:337px;
  3844. height:35px;
  3845. }
  3846. #u31321 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:603px;
  3850. top:363px;
  3851. width:337px;
  3852. height:35px;
  3853. display:flex;
  3854. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3855. font-weight:400;
  3856. font-style:normal;
  3857. font-size:12px;
  3858. color:#606266;
  3859. }
  3860. #u31321 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 0px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u31321_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. visibility:hidden;
  3872. }
  3873. #u31322_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:205px;
  3879. height:35px;
  3880. }
  3881. #u31322 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:940px;
  3885. top:363px;
  3886. width:205px;
  3887. height:35px;
  3888. display:flex;
  3889. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:12px;
  3893. color:#606266;
  3894. }
  3895. #u31322 .text {
  3896. position:absolute;
  3897. align-self:center;
  3898. padding:2px 2px 2px 0px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u31322_text {
  3903. border-width:0px;
  3904. word-wrap:break-word;
  3905. text-transform:none;
  3906. visibility:hidden;
  3907. }
  3908. #u31323_img {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:78px;
  3914. height:35px;
  3915. }
  3916. #u31323 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:398px;
  3921. width:78px;
  3922. height:35px;
  3923. display:flex;
  3924. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:12px;
  3928. color:#606266;
  3929. }
  3930. #u31323 .text {
  3931. position:absolute;
  3932. align-self:center;
  3933. padding:2px 2px 2px 0px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u31323_text {
  3938. border-width:0px;
  3939. word-wrap:break-word;
  3940. text-transform:none;
  3941. visibility:hidden;
  3942. }
  3943. #u31324_img {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:0px;
  3947. top:0px;
  3948. width:167px;
  3949. height:35px;
  3950. }
  3951. #u31324 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:78px;
  3955. top:398px;
  3956. width:167px;
  3957. height:35px;
  3958. display:flex;
  3959. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3960. font-weight:400;
  3961. font-style:normal;
  3962. font-size:12px;
  3963. color:#606266;
  3964. }
  3965. #u31324 .text {
  3966. position:absolute;
  3967. align-self:center;
  3968. padding:2px 2px 2px 0px;
  3969. box-sizing:border-box;
  3970. width:100%;
  3971. }
  3972. #u31324_text {
  3973. border-width:0px;
  3974. word-wrap:break-word;
  3975. text-transform:none;
  3976. visibility:hidden;
  3977. }
  3978. #u31325_img {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:167px;
  3984. height:35px;
  3985. }
  3986. #u31325 {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:245px;
  3990. top:398px;
  3991. width:167px;
  3992. height:35px;
  3993. display:flex;
  3994. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:12px;
  3998. color:#606266;
  3999. }
  4000. #u31325 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:2px 2px 2px 0px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u31325_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. visibility:hidden;
  4012. }
  4013. #u31326_img {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:191px;
  4019. height:35px;
  4020. }
  4021. #u31326 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:412px;
  4025. top:398px;
  4026. width:191px;
  4027. height:35px;
  4028. display:flex;
  4029. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:12px;
  4033. color:#606266;
  4034. }
  4035. #u31326 .text {
  4036. position:absolute;
  4037. align-self:center;
  4038. padding:2px 2px 2px 0px;
  4039. box-sizing:border-box;
  4040. width:100%;
  4041. }
  4042. #u31326_text {
  4043. border-width:0px;
  4044. word-wrap:break-word;
  4045. text-transform:none;
  4046. visibility:hidden;
  4047. }
  4048. #u31327_img {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:337px;
  4054. height:35px;
  4055. }
  4056. #u31327 {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:603px;
  4060. top:398px;
  4061. width:337px;
  4062. height:35px;
  4063. display:flex;
  4064. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:12px;
  4068. color:#606266;
  4069. }
  4070. #u31327 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:2px 2px 2px 0px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u31327_text {
  4078. border-width:0px;
  4079. word-wrap:break-word;
  4080. text-transform:none;
  4081. visibility:hidden;
  4082. }
  4083. #u31328_img {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:205px;
  4089. height:35px;
  4090. }
  4091. #u31328 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:940px;
  4095. top:398px;
  4096. width:205px;
  4097. height:35px;
  4098. display:flex;
  4099. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:12px;
  4103. color:#606266;
  4104. }
  4105. #u31328 .text {
  4106. position:absolute;
  4107. align-self:center;
  4108. padding:2px 2px 2px 0px;
  4109. box-sizing:border-box;
  4110. width:100%;
  4111. }
  4112. #u31328_text {
  4113. border-width:0px;
  4114. word-wrap:break-word;
  4115. text-transform:none;
  4116. visibility:hidden;
  4117. }
  4118. #u31329_img {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:78px;
  4124. height:32px;
  4125. }
  4126. #u31329 {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:433px;
  4131. width:78px;
  4132. height:32px;
  4133. display:flex;
  4134. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4135. font-weight:400;
  4136. font-style:normal;
  4137. font-size:12px;
  4138. color:#606266;
  4139. }
  4140. #u31329 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 0px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u31329_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u31330_img {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:167px;
  4159. height:32px;
  4160. }
  4161. #u31330 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:78px;
  4165. top:433px;
  4166. width:167px;
  4167. height:32px;
  4168. display:flex;
  4169. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4170. font-weight:400;
  4171. font-style:normal;
  4172. font-size:12px;
  4173. color:#606266;
  4174. }
  4175. #u31330 .text {
  4176. position:absolute;
  4177. align-self:center;
  4178. padding:2px 2px 2px 0px;
  4179. box-sizing:border-box;
  4180. width:100%;
  4181. }
  4182. #u31330_text {
  4183. border-width:0px;
  4184. word-wrap:break-word;
  4185. text-transform:none;
  4186. visibility:hidden;
  4187. }
  4188. #u31331_img {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:167px;
  4194. height:32px;
  4195. }
  4196. #u31331 {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:245px;
  4200. top:433px;
  4201. width:167px;
  4202. height:32px;
  4203. display:flex;
  4204. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4205. font-weight:400;
  4206. font-style:normal;
  4207. font-size:12px;
  4208. color:#606266;
  4209. }
  4210. #u31331 .text {
  4211. position:absolute;
  4212. align-self:center;
  4213. padding:2px 2px 2px 0px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u31331_text {
  4218. border-width:0px;
  4219. word-wrap:break-word;
  4220. text-transform:none;
  4221. visibility:hidden;
  4222. }
  4223. #u31332_img {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:191px;
  4229. height:32px;
  4230. }
  4231. #u31332 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:412px;
  4235. top:433px;
  4236. width:191px;
  4237. height:32px;
  4238. display:flex;
  4239. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4240. font-weight:400;
  4241. font-style:normal;
  4242. font-size:12px;
  4243. color:#606266;
  4244. }
  4245. #u31332 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:2px 2px 2px 0px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u31332_text {
  4253. border-width:0px;
  4254. word-wrap:break-word;
  4255. text-transform:none;
  4256. visibility:hidden;
  4257. }
  4258. #u31333_img {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:337px;
  4264. height:32px;
  4265. }
  4266. #u31333 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:603px;
  4270. top:433px;
  4271. width:337px;
  4272. height:32px;
  4273. display:flex;
  4274. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:12px;
  4278. color:#606266;
  4279. }
  4280. #u31333 .text {
  4281. position:absolute;
  4282. align-self:center;
  4283. padding:2px 2px 2px 0px;
  4284. box-sizing:border-box;
  4285. width:100%;
  4286. }
  4287. #u31333_text {
  4288. border-width:0px;
  4289. word-wrap:break-word;
  4290. text-transform:none;
  4291. visibility:hidden;
  4292. }
  4293. #u31334_img {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:0px;
  4297. top:0px;
  4298. width:205px;
  4299. height:32px;
  4300. }
  4301. #u31334 {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:940px;
  4305. top:433px;
  4306. width:205px;
  4307. height:32px;
  4308. display:flex;
  4309. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:12px;
  4313. color:#606266;
  4314. }
  4315. #u31334 .text {
  4316. position:absolute;
  4317. align-self:center;
  4318. padding:2px 2px 2px 0px;
  4319. box-sizing:border-box;
  4320. width:100%;
  4321. }
  4322. #u31334_text {
  4323. border-width:0px;
  4324. word-wrap:break-word;
  4325. text-transform:none;
  4326. visibility:hidden;
  4327. }
  4328. #u31335 {
  4329. border-width:0px;
  4330. position:absolute;
  4331. left:0px;
  4332. top:0px;
  4333. width:0px;
  4334. height:0px;
  4335. }
  4336. #u31336_div {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:0px;
  4340. top:0px;
  4341. width:59px;
  4342. height:30px;
  4343. background:inherit;
  4344. background-color:rgba(41, 143, 255, 1);
  4345. border:none;
  4346. border-radius:4px;
  4347. -moz-box-shadow:none;
  4348. -webkit-box-shadow:none;
  4349. box-shadow:none;
  4350. font-family:'Microsoft YaHei', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:14px;
  4354. color:#FFFFFF;
  4355. }
  4356. #u31336 {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:815px;
  4360. top:120px;
  4361. width:59px;
  4362. height:30px;
  4363. display:flex;
  4364. font-family:'Microsoft YaHei', sans-serif;
  4365. font-weight:400;
  4366. font-style:normal;
  4367. font-size:14px;
  4368. color:#FFFFFF;
  4369. }
  4370. #u31336 .text {
  4371. position:absolute;
  4372. align-self:center;
  4373. padding:5px 15px 5px 15px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u31336_text {
  4378. border-width:0px;
  4379. white-space:nowrap;
  4380. text-transform:none;
  4381. }
  4382. #u31337_div {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:55px;
  4388. height:30px;
  4389. background:inherit;
  4390. background-color:rgba(255, 255, 255, 1);
  4391. box-sizing:border-box;
  4392. border-width:1px;
  4393. border-style:solid;
  4394. border-color:rgba(170, 170, 170, 1);
  4395. border-radius:4px;
  4396. -moz-box-shadow:none;
  4397. -webkit-box-shadow:none;
  4398. box-shadow:none;
  4399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4400. font-weight:400;
  4401. font-style:normal;
  4402. font-size:12px;
  4403. color:#555555;
  4404. }
  4405. #u31337 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:884px;
  4409. top:120px;
  4410. width:55px;
  4411. height:30px;
  4412. display:flex;
  4413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4414. font-weight:400;
  4415. font-style:normal;
  4416. font-size:12px;
  4417. color:#555555;
  4418. }
  4419. #u31337 .text {
  4420. position:absolute;
  4421. align-self:center;
  4422. padding:5px 15px 5px 15px;
  4423. box-sizing:border-box;
  4424. width:100%;
  4425. }
  4426. #u31337_text {
  4427. border-width:0px;
  4428. white-space:nowrap;
  4429. text-transform:none;
  4430. }
  4431. #u31338 {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:0px;
  4435. top:0px;
  4436. width:0px;
  4437. height:0px;
  4438. }
  4439. #u31339_div {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:140px;
  4445. height:30px;
  4446. background:inherit;
  4447. background-color:rgba(255, 255, 255, 1);
  4448. box-sizing:border-box;
  4449. border-width:1px;
  4450. border-style:solid;
  4451. border-color:rgba(215, 215, 215, 1);
  4452. border-radius:4px;
  4453. -moz-box-shadow:none;
  4454. -webkit-box-shadow:none;
  4455. box-shadow:none;
  4456. font-size:11px;
  4457. }
  4458. #u31339 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:365px;
  4462. top:120px;
  4463. width:140px;
  4464. height:30px;
  4465. display:flex;
  4466. font-size:11px;
  4467. }
  4468. #u31339 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 2px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u31339_text {
  4476. border-width:0px;
  4477. word-wrap:break-word;
  4478. text-transform:none;
  4479. visibility:hidden;
  4480. }
  4481. #u31340_input {
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:120px;
  4486. height:23px;
  4487. padding:2px 2px 2px 2px;
  4488. font-family:'ArialMT', 'Arial', sans-serif;
  4489. font-weight:400;
  4490. font-style:normal;
  4491. font-size:11px;
  4492. letter-spacing:normal;
  4493. color:#AAAAAA;
  4494. vertical-align:none;
  4495. text-align:left;
  4496. text-transform:none;
  4497. background-color:transparent;
  4498. border-color:transparent;
  4499. }
  4500. #u31340_input.disabled {
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:120px;
  4505. height:23px;
  4506. padding:2px 2px 2px 2px;
  4507. font-family:'ArialMT', 'Arial', sans-serif;
  4508. font-weight:400;
  4509. font-style:normal;
  4510. font-size:11px;
  4511. letter-spacing:normal;
  4512. color:#AAAAAA;
  4513. vertical-align:none;
  4514. text-align:left;
  4515. text-transform:none;
  4516. background-color:transparent;
  4517. border-color:transparent;
  4518. }
  4519. #u31340_div {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:120px;
  4525. height:23px;
  4526. background:inherit;
  4527. background-color:rgba(255, 255, 255, 1);
  4528. border:none;
  4529. border-radius:0px;
  4530. -moz-box-shadow:none;
  4531. -webkit-box-shadow:none;
  4532. box-shadow:none;
  4533. font-size:11px;
  4534. color:#AAAAAA;
  4535. }
  4536. #u31340 {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:372px;
  4540. top:122px;
  4541. width:120px;
  4542. height:23px;
  4543. display:flex;
  4544. font-size:11px;
  4545. color:#AAAAAA;
  4546. }
  4547. #u31340 .text {
  4548. position:absolute;
  4549. align-self:flex-start;
  4550. padding:2px 2px 2px 2px;
  4551. box-sizing:border-box;
  4552. width:100%;
  4553. }
  4554. #u31340_div.disabled {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:0px;
  4558. top:0px;
  4559. width:120px;
  4560. height:23px;
  4561. background:inherit;
  4562. background-color:rgba(240, 240, 240, 1);
  4563. border:none;
  4564. border-radius:0px;
  4565. -moz-box-shadow:none;
  4566. -webkit-box-shadow:none;
  4567. box-shadow:none;
  4568. font-size:11px;
  4569. color:#AAAAAA;
  4570. }
  4571. #u31340.disabled {
  4572. }
  4573. .u31340_input_option {
  4574. font-size:11px;
  4575. }
  4576. #u31341 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:0px;
  4580. top:0px;
  4581. width:0px;
  4582. height:0px;
  4583. }
  4584. #u31342_div {
  4585. border-width:0px;
  4586. position:absolute;
  4587. left:0px;
  4588. top:0px;
  4589. width:140px;
  4590. height:30px;
  4591. background:inherit;
  4592. background-color:rgba(255, 255, 255, 1);
  4593. box-sizing:border-box;
  4594. border-width:1px;
  4595. border-style:solid;
  4596. border-color:rgba(201, 201, 201, 1);
  4597. border-radius:4px;
  4598. -moz-box-shadow:none;
  4599. -webkit-box-shadow:none;
  4600. box-shadow:none;
  4601. font-family:'Microsoft YaHei', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:14px;
  4605. color:#CCCCCC;
  4606. text-align:left;
  4607. }
  4608. #u31342 {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:515px;
  4612. top:120px;
  4613. width:140px;
  4614. height:30px;
  4615. display:flex;
  4616. font-family:'Microsoft YaHei', sans-serif;
  4617. font-weight:400;
  4618. font-style:normal;
  4619. font-size:14px;
  4620. color:#CCCCCC;
  4621. text-align:left;
  4622. }
  4623. #u31342 .text {
  4624. position:absolute;
  4625. align-self:center;
  4626. padding:2px 8px 2px 8px;
  4627. box-sizing:border-box;
  4628. width:100%;
  4629. }
  4630. #u31342_text {
  4631. border-width:0px;
  4632. word-wrap:break-word;
  4633. text-transform:none;
  4634. visibility:hidden;
  4635. }
  4636. #u31343_input {
  4637. position:absolute;
  4638. left:0px;
  4639. top:0px;
  4640. width:127px;
  4641. height:25px;
  4642. padding:2px 2px 2px 2px;
  4643. font-family:'Microsoft YaHei', sans-serif;
  4644. font-weight:400;
  4645. font-style:normal;
  4646. font-size:10px;
  4647. letter-spacing:normal;
  4648. color:#000000;
  4649. vertical-align:none;
  4650. text-align:left;
  4651. text-transform:none;
  4652. background-color:transparent;
  4653. border-color:transparent;
  4654. }
  4655. #u31343_input.disabled {
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:127px;
  4660. height:25px;
  4661. padding:2px 2px 2px 2px;
  4662. font-family:'Microsoft YaHei', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:10px;
  4666. letter-spacing:normal;
  4667. color:#000000;
  4668. vertical-align:none;
  4669. text-align:left;
  4670. text-transform:none;
  4671. background-color:transparent;
  4672. border-color:transparent;
  4673. }
  4674. #u31343_div {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:0px;
  4678. top:0px;
  4679. width:127px;
  4680. height:25px;
  4681. background:inherit;
  4682. background-color:rgba(255, 255, 255, 1);
  4683. border:none;
  4684. border-radius:0px;
  4685. -moz-box-shadow:none;
  4686. -webkit-box-shadow:none;
  4687. box-shadow:none;
  4688. font-family:'Microsoft YaHei', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:10px;
  4692. }
  4693. #u31343 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:523px;
  4697. top:121px;
  4698. width:127px;
  4699. height:25px;
  4700. display:flex;
  4701. font-family:'Microsoft YaHei', sans-serif;
  4702. font-weight:400;
  4703. font-style:normal;
  4704. font-size:10px;
  4705. }
  4706. #u31343 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:2px 2px 2px 2px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u31343_div.disabled {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:0px;
  4717. top:0px;
  4718. width:127px;
  4719. height:25px;
  4720. background:inherit;
  4721. background-color:rgba(240, 240, 240, 1);
  4722. border:none;
  4723. border-radius:0px;
  4724. -moz-box-shadow:none;
  4725. -webkit-box-shadow:none;
  4726. box-shadow:none;
  4727. font-family:'Microsoft YaHei', sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:10px;
  4731. }
  4732. #u31343.disabled {
  4733. }
  4734. #u31344 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:0px;
  4738. top:0px;
  4739. width:0px;
  4740. height:0px;
  4741. }
  4742. #u31345_div {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:140px;
  4748. height:30px;
  4749. background:inherit;
  4750. background-color:rgba(255, 255, 255, 1);
  4751. box-sizing:border-box;
  4752. border-width:1px;
  4753. border-style:solid;
  4754. border-color:rgba(201, 201, 201, 1);
  4755. border-radius:4px;
  4756. -moz-box-shadow:none;
  4757. -webkit-box-shadow:none;
  4758. box-shadow:none;
  4759. font-family:'Microsoft YaHei', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:14px;
  4763. color:#CCCCCC;
  4764. text-align:left;
  4765. }
  4766. #u31345 {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:665px;
  4770. top:120px;
  4771. width:140px;
  4772. height:30px;
  4773. display:flex;
  4774. font-family:'Microsoft YaHei', sans-serif;
  4775. font-weight:400;
  4776. font-style:normal;
  4777. font-size:14px;
  4778. color:#CCCCCC;
  4779. text-align:left;
  4780. }
  4781. #u31345 .text {
  4782. position:absolute;
  4783. align-self:center;
  4784. padding:2px 8px 2px 8px;
  4785. box-sizing:border-box;
  4786. width:100%;
  4787. }
  4788. #u31345_text {
  4789. border-width:0px;
  4790. word-wrap:break-word;
  4791. text-transform:none;
  4792. visibility:hidden;
  4793. }
  4794. #u31346_input {
  4795. position:absolute;
  4796. left:0px;
  4797. top:0px;
  4798. width:127px;
  4799. height:25px;
  4800. padding:2px 2px 2px 2px;
  4801. font-family:'Microsoft YaHei', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:10px;
  4805. letter-spacing:normal;
  4806. color:#000000;
  4807. vertical-align:none;
  4808. text-align:left;
  4809. text-transform:none;
  4810. background-color:transparent;
  4811. border-color:transparent;
  4812. }
  4813. #u31346_input.disabled {
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:127px;
  4818. height:25px;
  4819. padding:2px 2px 2px 2px;
  4820. font-family:'Microsoft YaHei', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:10px;
  4824. letter-spacing:normal;
  4825. color:#000000;
  4826. vertical-align:none;
  4827. text-align:left;
  4828. text-transform:none;
  4829. background-color:transparent;
  4830. border-color:transparent;
  4831. }
  4832. #u31346_div {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:127px;
  4838. height:25px;
  4839. background:inherit;
  4840. background-color:rgba(255, 255, 255, 1);
  4841. border:none;
  4842. border-radius:0px;
  4843. -moz-box-shadow:none;
  4844. -webkit-box-shadow:none;
  4845. box-shadow:none;
  4846. font-family:'Microsoft YaHei', sans-serif;
  4847. font-weight:400;
  4848. font-style:normal;
  4849. font-size:10px;
  4850. }
  4851. #u31346 {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:673px;
  4855. top:121px;
  4856. width:127px;
  4857. height:25px;
  4858. display:flex;
  4859. font-family:'Microsoft YaHei', sans-serif;
  4860. font-weight:400;
  4861. font-style:normal;
  4862. font-size:10px;
  4863. }
  4864. #u31346 .text {
  4865. position:absolute;
  4866. align-self:center;
  4867. padding:2px 2px 2px 2px;
  4868. box-sizing:border-box;
  4869. width:100%;
  4870. }
  4871. #u31346_div.disabled {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:127px;
  4877. height:25px;
  4878. background:inherit;
  4879. background-color:rgba(240, 240, 240, 1);
  4880. border:none;
  4881. border-radius:0px;
  4882. -moz-box-shadow:none;
  4883. -webkit-box-shadow:none;
  4884. box-shadow:none;
  4885. font-family:'Microsoft YaHei', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. font-size:10px;
  4889. }
  4890. #u31346.disabled {
  4891. }
  4892. #u31347_div {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:800px;
  4898. height:1201px;
  4899. background:inherit;
  4900. background-color:rgba(255, 255, 255, 1);
  4901. box-sizing:border-box;
  4902. border-width:1px;
  4903. border-style:solid;
  4904. border-color:rgba(215, 215, 215, 1);
  4905. border-radius:0px;
  4906. -moz-box-shadow:none;
  4907. -webkit-box-shadow:none;
  4908. box-shadow:none;
  4909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:14px;
  4913. color:#AAAAAA;
  4914. text-align:center;
  4915. line-height:30px;
  4916. }
  4917. #u31347 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:1625px;
  4921. top:50px;
  4922. width:800px;
  4923. height:1201px;
  4924. display:flex;
  4925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4926. font-weight:400;
  4927. font-style:normal;
  4928. font-size:14px;
  4929. color:#AAAAAA;
  4930. text-align:center;
  4931. line-height:30px;
  4932. }
  4933. #u31347 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:5px 10px 5px 10px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u31347_text {
  4941. border-width:0px;
  4942. word-wrap:break-word;
  4943. text-transform:none;
  4944. visibility:hidden;
  4945. }
  4946. #u31348_div {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:119px;
  4952. height:35px;
  4953. background:inherit;
  4954. background-color:rgba(255, 255, 255, 0);
  4955. border:none;
  4956. border-top:0px;
  4957. border-right:0px;
  4958. border-bottom:0px;
  4959. border-radius:0px;
  4960. border-top-left-radius:0px;
  4961. border-bottom-left-radius:0px;
  4962. -moz-box-shadow:none;
  4963. -webkit-box-shadow:none;
  4964. box-shadow:none;
  4965. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4966. font-weight:500;
  4967. font-style:normal;
  4968. font-size:18px;
  4969. }
  4970. #u31348 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:1646px;
  4974. top:71px;
  4975. width:119px;
  4976. height:35px;
  4977. display:flex;
  4978. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4979. font-weight:500;
  4980. font-style:normal;
  4981. font-size:18px;
  4982. }
  4983. #u31348 .text {
  4984. position:absolute;
  4985. align-self:center;
  4986. padding:5px 10px 5px 0px;
  4987. box-sizing:border-box;
  4988. width:100%;
  4989. }
  4990. #u31348_text {
  4991. border-width:0px;
  4992. white-space:nowrap;
  4993. text-transform:none;
  4994. }
  4995. #u31349 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:0px;
  5001. height:0px;
  5002. }
  5003. #u31350_div {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:0px;
  5007. top:0px;
  5008. width:40px;
  5009. height:40px;
  5010. background:inherit;
  5011. background-color:rgba(255, 255, 255, 0);
  5012. border:none;
  5013. border-top:0px;
  5014. border-right:0px;
  5015. border-bottom:0px;
  5016. border-radius:0px;
  5017. border-top-left-radius:0px;
  5018. border-bottom-left-radius:0px;
  5019. -moz-box-shadow:none;
  5020. -webkit-box-shadow:none;
  5021. box-shadow:none;
  5022. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5023. font-weight:500;
  5024. font-style:normal;
  5025. font-size:18px;
  5026. text-align:center;
  5027. }
  5028. #u31350 {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:2385px;
  5032. top:50px;
  5033. width:40px;
  5034. height:40px;
  5035. display:flex;
  5036. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5037. font-weight:500;
  5038. font-style:normal;
  5039. font-size:18px;
  5040. text-align:center;
  5041. }
  5042. #u31350 .text {
  5043. position:absolute;
  5044. align-self:center;
  5045. padding:5px 10px 5px 0px;
  5046. box-sizing:border-box;
  5047. width:100%;
  5048. }
  5049. #u31350_text {
  5050. border-width:0px;
  5051. word-wrap:break-word;
  5052. text-transform:none;
  5053. }
  5054. #u31351_img {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:13px;
  5060. height:13px;
  5061. }
  5062. #u31351 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:2373px;
  5066. top:66px;
  5067. width:13px;
  5068. height:13px;
  5069. display:flex;
  5070. }
  5071. #u31351 .text {
  5072. position:absolute;
  5073. align-self:center;
  5074. padding:2px 2px 2px 2px;
  5075. box-sizing:border-box;
  5076. width:100%;
  5077. }
  5078. #u31351_text {
  5079. border-width:0px;
  5080. word-wrap:break-word;
  5081. text-transform:none;
  5082. visibility:hidden;
  5083. }
  5084. #u31352 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:0px;
  5090. height:0px;
  5091. }
  5092. #u31353_div {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:0px;
  5096. top:0px;
  5097. width:800px;
  5098. height:50px;
  5099. background:inherit;
  5100. background-color:rgba(255, 255, 255, 1);
  5101. box-sizing:border-box;
  5102. border-width:1px;
  5103. border-style:solid;
  5104. border-color:rgba(215, 215, 215, 1);
  5105. border-radius:0px;
  5106. -moz-box-shadow:none;
  5107. -webkit-box-shadow:none;
  5108. box-shadow:none;
  5109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5110. font-weight:400;
  5111. font-style:normal;
  5112. font-size:14px;
  5113. color:#AAAAAA;
  5114. text-align:center;
  5115. line-height:30px;
  5116. }
  5117. #u31353 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:1625px;
  5121. top:1201px;
  5122. width:800px;
  5123. height:50px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:14px;
  5129. color:#AAAAAA;
  5130. text-align:center;
  5131. line-height:30px;
  5132. }
  5133. #u31353 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:5px 10px 5px 10px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u31353_text {
  5141. border-width:0px;
  5142. word-wrap:break-word;
  5143. text-transform:none;
  5144. visibility:hidden;
  5145. }
  5146. #u31354_div {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:80px;
  5152. height:30px;
  5153. background:inherit;
  5154. background-color:rgba(24, 144, 255, 1);
  5155. border:none;
  5156. border-radius:4px;
  5157. -moz-box-shadow:none;
  5158. -webkit-box-shadow:none;
  5159. box-shadow:none;
  5160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5161. font-weight:400;
  5162. font-style:normal;
  5163. font-size:14px;
  5164. color:#FFFFFF;
  5165. }
  5166. #u31354 {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:2300px;
  5170. top:1211px;
  5171. width:80px;
  5172. height:30px;
  5173. display:flex;
  5174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5175. font-weight:400;
  5176. font-style:normal;
  5177. font-size:14px;
  5178. color:#FFFFFF;
  5179. }
  5180. #u31354 .text {
  5181. position:absolute;
  5182. align-self:center;
  5183. padding:2px 2px 2px 2px;
  5184. box-sizing:border-box;
  5185. width:100%;
  5186. }
  5187. #u31354_text {
  5188. border-width:0px;
  5189. word-wrap:break-word;
  5190. text-transform:none;
  5191. }
  5192. #u31355_div {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:80px;
  5198. height:30px;
  5199. background:inherit;
  5200. background-color:rgba(255, 255, 255, 1);
  5201. box-sizing:border-box;
  5202. border-width:1px;
  5203. border-style:solid;
  5204. border-color:rgba(170, 170, 170, 1);
  5205. border-radius:4px;
  5206. -moz-box-shadow:none;
  5207. -webkit-box-shadow:none;
  5208. box-shadow:none;
  5209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:14px;
  5213. }
  5214. #u31355 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:2200px;
  5218. top:1211px;
  5219. width:80px;
  5220. height:30px;
  5221. display:flex;
  5222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5223. font-weight:400;
  5224. font-style:normal;
  5225. font-size:14px;
  5226. }
  5227. #u31355 .text {
  5228. position:absolute;
  5229. align-self:center;
  5230. padding:2px 2px 2px 2px;
  5231. box-sizing:border-box;
  5232. width:100%;
  5233. }
  5234. #u31355_text {
  5235. border-width:0px;
  5236. word-wrap:break-word;
  5237. text-transform:none;
  5238. }
  5239. #u31356 {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:0px;
  5245. height:0px;
  5246. }
  5247. #u31357_div {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:0px;
  5251. top:0px;
  5252. width:400px;
  5253. height:40px;
  5254. background:inherit;
  5255. background-color:rgba(255, 255, 255, 1);
  5256. box-sizing:border-box;
  5257. border-width:1px;
  5258. border-style:solid;
  5259. border-color:rgba(170, 170, 170, 1);
  5260. border-radius:4px;
  5261. -moz-box-shadow:none;
  5262. -webkit-box-shadow:none;
  5263. box-shadow:none;
  5264. }
  5265. #u31357 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:1769px;
  5269. top:225px;
  5270. width:400px;
  5271. height:40px;
  5272. display:flex;
  5273. }
  5274. #u31357 .text {
  5275. position:absolute;
  5276. align-self:center;
  5277. padding:2px 2px 2px 0px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u31357_text {
  5282. border-width:0px;
  5283. word-wrap:break-word;
  5284. text-transform:none;
  5285. visibility:hidden;
  5286. }
  5287. #u31358_input {
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:380px;
  5292. height:30px;
  5293. padding:2px 2px 2px 0px;
  5294. font-family:'ArialMT', 'Arial', sans-serif;
  5295. font-weight:400;
  5296. font-style:normal;
  5297. font-size:13px;
  5298. letter-spacing:normal;
  5299. color:#AAAAAA;
  5300. vertical-align:none;
  5301. text-align:left;
  5302. text-transform:none;
  5303. background-color:transparent;
  5304. border-color:transparent;
  5305. }
  5306. #u31358_input.disabled {
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:380px;
  5311. height:30px;
  5312. padding:2px 2px 2px 0px;
  5313. font-family:'ArialMT', 'Arial', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:13px;
  5317. letter-spacing:normal;
  5318. color:#AAAAAA;
  5319. vertical-align:none;
  5320. text-align:left;
  5321. text-transform:none;
  5322. background-color:transparent;
  5323. border-color:transparent;
  5324. }
  5325. #u31358_div {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:380px;
  5331. height:30px;
  5332. background:inherit;
  5333. background-color:rgba(255, 255, 255, 1);
  5334. border:none;
  5335. border-radius:0px;
  5336. -moz-box-shadow:none;
  5337. -webkit-box-shadow:none;
  5338. box-shadow:none;
  5339. color:#AAAAAA;
  5340. }
  5341. #u31358 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:1779px;
  5345. top:231px;
  5346. width:380px;
  5347. height:30px;
  5348. display:flex;
  5349. color:#AAAAAA;
  5350. }
  5351. #u31358 .text {
  5352. position:absolute;
  5353. align-self:flex-start;
  5354. padding:2px 2px 2px 0px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u31358_div.disabled {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:380px;
  5364. height:30px;
  5365. background:inherit;
  5366. background-color:rgba(240, 240, 240, 1);
  5367. border:none;
  5368. border-radius:0px;
  5369. -moz-box-shadow:none;
  5370. -webkit-box-shadow:none;
  5371. box-shadow:none;
  5372. color:#AAAAAA;
  5373. }
  5374. #u31358.disabled {
  5375. }
  5376. .u31358_input_option {
  5377. }
  5378. #u31359_div {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:0px;
  5382. top:0px;
  5383. width:88px;
  5384. height:30px;
  5385. background:inherit;
  5386. background-color:rgba(255, 255, 255, 0);
  5387. border:none;
  5388. border-top:0px;
  5389. border-right:0px;
  5390. border-bottom:0px;
  5391. border-radius:0px;
  5392. border-top-left-radius:0px;
  5393. border-bottom-left-radius:0px;
  5394. -moz-box-shadow:none;
  5395. -webkit-box-shadow:none;
  5396. box-shadow:none;
  5397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5398. font-weight:400;
  5399. font-style:normal;
  5400. font-size:14px;
  5401. text-align:right;
  5402. }
  5403. #u31359 {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:1671px;
  5407. top:125px;
  5408. width:88px;
  5409. height:30px;
  5410. display:flex;
  5411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5412. font-weight:400;
  5413. font-style:normal;
  5414. font-size:14px;
  5415. text-align:right;
  5416. }
  5417. #u31359 .text {
  5418. position:absolute;
  5419. align-self:center;
  5420. padding:5px 10px 5px 0px;
  5421. box-sizing:border-box;
  5422. width:100%;
  5423. }
  5424. #u31359_text {
  5425. border-width:0px;
  5426. white-space:nowrap;
  5427. text-transform:none;
  5428. }
  5429. #u31360 {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:0px;
  5435. height:0px;
  5436. }
  5437. #u31361_div {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:400px;
  5443. height:40px;
  5444. background:inherit;
  5445. background-color:rgba(255, 255, 255, 1);
  5446. box-sizing:border-box;
  5447. border-width:1px;
  5448. border-style:solid;
  5449. border-color:rgba(170, 170, 170, 1);
  5450. border-radius:4px;
  5451. -moz-box-shadow:none;
  5452. -webkit-box-shadow:none;
  5453. box-shadow:none;
  5454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5455. font-weight:400;
  5456. font-style:normal;
  5457. text-align:right;
  5458. }
  5459. #u31361 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:1769px;
  5463. top:120px;
  5464. width:400px;
  5465. height:40px;
  5466. display:flex;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. text-align:right;
  5471. }
  5472. #u31361 .text {
  5473. position:absolute;
  5474. align-self:center;
  5475. padding:2px 10px 2px 10px;
  5476. box-sizing:border-box;
  5477. width:100%;
  5478. }
  5479. #u31361_text {
  5480. border-width:0px;
  5481. word-wrap:break-word;
  5482. text-transform:none;
  5483. visibility:hidden;
  5484. }
  5485. #u31362_input {
  5486. position:absolute;
  5487. left:0px;
  5488. top:0px;
  5489. width:385px;
  5490. height:31px;
  5491. padding:2px 10px 2px 2px;
  5492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:13px;
  5496. letter-spacing:normal;
  5497. color:#AAAAAA;
  5498. vertical-align:none;
  5499. text-align:left;
  5500. text-transform:none;
  5501. background-color:transparent;
  5502. border-color:transparent;
  5503. }
  5504. #u31362_input.disabled {
  5505. position:absolute;
  5506. left:0px;
  5507. top:0px;
  5508. width:385px;
  5509. height:31px;
  5510. padding:2px 10px 2px 2px;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:13px;
  5515. letter-spacing:normal;
  5516. color:#AAAAAA;
  5517. vertical-align:none;
  5518. text-align:left;
  5519. text-transform:none;
  5520. background-color:transparent;
  5521. border-color:transparent;
  5522. }
  5523. #u31362_div {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:0px;
  5527. top:0px;
  5528. width:385px;
  5529. height:31px;
  5530. background:inherit;
  5531. background-color:rgba(255, 255, 255, 0);
  5532. border:none;
  5533. border-radius:0px;
  5534. -moz-box-shadow:none;
  5535. -webkit-box-shadow:none;
  5536. box-shadow:none;
  5537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. color:#AAAAAA;
  5541. }
  5542. #u31362 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:1774px;
  5546. top:125px;
  5547. width:385px;
  5548. height:31px;
  5549. display:flex;
  5550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. color:#AAAAAA;
  5554. }
  5555. #u31362 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 10px 2px 2px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u31362_div.disabled {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:385px;
  5568. height:31px;
  5569. background:inherit;
  5570. background-color:rgba(240, 240, 240, 1);
  5571. border:none;
  5572. border-radius:0px;
  5573. -moz-box-shadow:none;
  5574. -webkit-box-shadow:none;
  5575. box-shadow:none;
  5576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5577. font-weight:400;
  5578. font-style:normal;
  5579. color:#AAAAAA;
  5580. }
  5581. #u31362.disabled {
  5582. }
  5583. #u31363_div {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:88px;
  5589. height:30px;
  5590. background:inherit;
  5591. background-color:rgba(255, 255, 255, 0);
  5592. border:none;
  5593. border-top:0px;
  5594. border-right:0px;
  5595. border-bottom:0px;
  5596. border-radius:0px;
  5597. border-top-left-radius:0px;
  5598. border-bottom-left-radius:0px;
  5599. -moz-box-shadow:none;
  5600. -webkit-box-shadow:none;
  5601. box-shadow:none;
  5602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5603. font-weight:400;
  5604. font-style:normal;
  5605. font-size:14px;
  5606. text-align:right;
  5607. }
  5608. #u31363 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:1671px;
  5612. top:175px;
  5613. width:88px;
  5614. height:30px;
  5615. display:flex;
  5616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5617. font-weight:400;
  5618. font-style:normal;
  5619. font-size:14px;
  5620. text-align:right;
  5621. }
  5622. #u31363 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:5px 10px 5px 0px;
  5626. box-sizing:border-box;
  5627. width:100%;
  5628. }
  5629. #u31363_text {
  5630. border-width:0px;
  5631. white-space:nowrap;
  5632. text-transform:none;
  5633. }
  5634. #u31364 {
  5635. border-width:0px;
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:0px;
  5640. height:0px;
  5641. }
  5642. #u31365_div {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:400px;
  5648. height:40px;
  5649. background:inherit;
  5650. background-color:rgba(255, 255, 255, 1);
  5651. box-sizing:border-box;
  5652. border-width:1px;
  5653. border-style:solid;
  5654. border-color:rgba(170, 170, 170, 1);
  5655. border-radius:4px;
  5656. -moz-box-shadow:none;
  5657. -webkit-box-shadow:none;
  5658. box-shadow:none;
  5659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. text-align:right;
  5663. }
  5664. #u31365 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:1769px;
  5668. top:170px;
  5669. width:400px;
  5670. height:40px;
  5671. display:flex;
  5672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5673. font-weight:400;
  5674. font-style:normal;
  5675. text-align:right;
  5676. }
  5677. #u31365 .text {
  5678. position:absolute;
  5679. align-self:center;
  5680. padding:2px 10px 2px 10px;
  5681. box-sizing:border-box;
  5682. width:100%;
  5683. }
  5684. #u31365_text {
  5685. border-width:0px;
  5686. word-wrap:break-word;
  5687. text-transform:none;
  5688. visibility:hidden;
  5689. }
  5690. #u31366_input {
  5691. position:absolute;
  5692. left:0px;
  5693. top:0px;
  5694. width:385px;
  5695. height:31px;
  5696. padding:2px 10px 2px 2px;
  5697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. font-size:13px;
  5701. letter-spacing:normal;
  5702. color:#AAAAAA;
  5703. vertical-align:none;
  5704. text-align:left;
  5705. text-transform:none;
  5706. background-color:transparent;
  5707. border-color:transparent;
  5708. }
  5709. #u31366_input.disabled {
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:385px;
  5714. height:31px;
  5715. padding:2px 10px 2px 2px;
  5716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5717. font-weight:400;
  5718. font-style:normal;
  5719. font-size:13px;
  5720. letter-spacing:normal;
  5721. color:#AAAAAA;
  5722. vertical-align:none;
  5723. text-align:left;
  5724. text-transform:none;
  5725. background-color:transparent;
  5726. border-color:transparent;
  5727. }
  5728. #u31366_div {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:385px;
  5734. height:31px;
  5735. background:inherit;
  5736. background-color:rgba(255, 255, 255, 0);
  5737. border:none;
  5738. border-radius:0px;
  5739. -moz-box-shadow:none;
  5740. -webkit-box-shadow:none;
  5741. box-shadow:none;
  5742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5743. font-weight:400;
  5744. font-style:normal;
  5745. color:#AAAAAA;
  5746. }
  5747. #u31366 {
  5748. border-width:0px;
  5749. position:absolute;
  5750. left:1774px;
  5751. top:175px;
  5752. width:385px;
  5753. height:31px;
  5754. display:flex;
  5755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5756. font-weight:400;
  5757. font-style:normal;
  5758. color:#AAAAAA;
  5759. }
  5760. #u31366 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 10px 2px 2px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u31366_div.disabled {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:385px;
  5773. height:31px;
  5774. background:inherit;
  5775. background-color:rgba(240, 240, 240, 1);
  5776. border:none;
  5777. border-radius:0px;
  5778. -moz-box-shadow:none;
  5779. -webkit-box-shadow:none;
  5780. box-shadow:none;
  5781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5782. font-weight:400;
  5783. font-style:normal;
  5784. color:#AAAAAA;
  5785. }
  5786. #u31366.disabled {
  5787. }
  5788. #u31367_div {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:88px;
  5794. height:30px;
  5795. background:inherit;
  5796. background-color:rgba(255, 255, 255, 0);
  5797. border:none;
  5798. border-top:0px;
  5799. border-right:0px;
  5800. border-bottom:0px;
  5801. border-radius:0px;
  5802. border-top-left-radius:0px;
  5803. border-bottom-left-radius:0px;
  5804. -moz-box-shadow:none;
  5805. -webkit-box-shadow:none;
  5806. box-shadow:none;
  5807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:14px;
  5811. text-align:right;
  5812. }
  5813. #u31367 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:1671px;
  5817. top:225px;
  5818. width:88px;
  5819. height:30px;
  5820. display:flex;
  5821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5822. font-weight:400;
  5823. font-style:normal;
  5824. font-size:14px;
  5825. text-align:right;
  5826. }
  5827. #u31367 .text {
  5828. position:absolute;
  5829. align-self:center;
  5830. padding:5px 10px 5px 0px;
  5831. box-sizing:border-box;
  5832. width:100%;
  5833. }
  5834. #u31367_text {
  5835. border-width:0px;
  5836. white-space:nowrap;
  5837. text-transform:none;
  5838. }
  5839. #u31368_div {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:88px;
  5845. height:30px;
  5846. background:inherit;
  5847. background-color:rgba(255, 255, 255, 0);
  5848. border:none;
  5849. border-top:0px;
  5850. border-right:0px;
  5851. border-bottom:0px;
  5852. border-radius:0px;
  5853. border-top-left-radius:0px;
  5854. border-bottom-left-radius:0px;
  5855. -moz-box-shadow:none;
  5856. -webkit-box-shadow:none;
  5857. box-shadow:none;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:14px;
  5862. text-align:right;
  5863. }
  5864. #u31368 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:1671px;
  5868. top:275px;
  5869. width:88px;
  5870. height:30px;
  5871. display:flex;
  5872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5873. font-weight:400;
  5874. font-style:normal;
  5875. font-size:14px;
  5876. text-align:right;
  5877. }
  5878. #u31368 .text {
  5879. position:absolute;
  5880. align-self:center;
  5881. padding:5px 10px 5px 0px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u31368_text {
  5886. border-width:0px;
  5887. white-space:nowrap;
  5888. text-transform:none;
  5889. }
  5890. #u31369_div {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:120px;
  5896. height:100px;
  5897. background:inherit;
  5898. background-color:rgba(242, 242, 242, 1);
  5899. border:none;
  5900. border-radius:0px;
  5901. -moz-box-shadow:none;
  5902. -webkit-box-shadow:none;
  5903. box-shadow:none;
  5904. font-size:30px;
  5905. color:#D7D7D7;
  5906. }
  5907. #u31369 {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:1769px;
  5911. top:307px;
  5912. width:120px;
  5913. height:100px;
  5914. display:flex;
  5915. font-size:30px;
  5916. color:#D7D7D7;
  5917. }
  5918. #u31369 .text {
  5919. position:absolute;
  5920. align-self:center;
  5921. padding:2px 2px 2px 2px;
  5922. box-sizing:border-box;
  5923. width:100%;
  5924. }
  5925. #u31369_text {
  5926. border-width:0px;
  5927. word-wrap:break-word;
  5928. text-transform:none;
  5929. }
  5930. #u31370_div {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:0px;
  5934. top:0px;
  5935. width:193px;
  5936. height:27px;
  5937. background:inherit;
  5938. background-color:rgba(255, 255, 255, 0);
  5939. border:none;
  5940. border-top:0px;
  5941. border-right:0px;
  5942. border-bottom:0px;
  5943. border-radius:0px;
  5944. border-top-left-radius:0px;
  5945. border-bottom-left-radius:0px;
  5946. -moz-box-shadow:none;
  5947. -webkit-box-shadow:none;
  5948. box-shadow:none;
  5949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5950. font-weight:400;
  5951. font-style:normal;
  5952. font-size:12px;
  5953. color:#AAAAAA;
  5954. }
  5955. #u31370 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:1769px;
  5959. top:275px;
  5960. width:193px;
  5961. height:27px;
  5962. display:flex;
  5963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5964. font-weight:400;
  5965. font-style:normal;
  5966. font-size:12px;
  5967. color:#AAAAAA;
  5968. }
  5969. #u31370 .text {
  5970. position:absolute;
  5971. align-self:center;
  5972. padding:5px 10px 5px 0px;
  5973. box-sizing:border-box;
  5974. width:100%;
  5975. }
  5976. #u31370_text {
  5977. border-width:0px;
  5978. white-space:nowrap;
  5979. text-transform:none;
  5980. }
  5981. #u31371_div {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:81px;
  5987. height:30px;
  5988. background:inherit;
  5989. background-color:rgba(255, 255, 255, 0);
  5990. border:none;
  5991. border-top:0px;
  5992. border-right:0px;
  5993. border-bottom:0px;
  5994. border-radius:0px;
  5995. border-top-left-radius:0px;
  5996. border-bottom-left-radius:0px;
  5997. -moz-box-shadow:none;
  5998. -webkit-box-shadow:none;
  5999. box-shadow:none;
  6000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6001. font-weight:400;
  6002. font-style:normal;
  6003. font-size:14px;
  6004. text-align:right;
  6005. }
  6006. #u31371 {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:1678px;
  6010. top:432px;
  6011. width:81px;
  6012. height:30px;
  6013. display:flex;
  6014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:14px;
  6018. text-align:right;
  6019. }
  6020. #u31371 .text {
  6021. position:absolute;
  6022. align-self:center;
  6023. padding:5px 10px 5px 0px;
  6024. box-sizing:border-box;
  6025. width:100%;
  6026. }
  6027. #u31371_text {
  6028. border-width:0px;
  6029. white-space:nowrap;
  6030. text-transform:none;
  6031. }
  6032. #u31372 {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:0px;
  6038. height:0px;
  6039. }
  6040. #u31373_div {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:0px;
  6044. top:0px;
  6045. width:400px;
  6046. height:80px;
  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(170, 170, 170, 1);
  6053. border-radius:4px;
  6054. -moz-box-shadow:none;
  6055. -webkit-box-shadow:none;
  6056. box-shadow:none;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. text-align:right;
  6061. }
  6062. #u31373 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:1769px;
  6066. top:427px;
  6067. width:400px;
  6068. height:80px;
  6069. display:flex;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. text-align:right;
  6074. }
  6075. #u31373 .text {
  6076. position:absolute;
  6077. align-self:center;
  6078. padding:2px 10px 2px 10px;
  6079. box-sizing:border-box;
  6080. width:100%;
  6081. }
  6082. #u31373_text {
  6083. border-width:0px;
  6084. word-wrap:break-word;
  6085. text-transform:none;
  6086. visibility:hidden;
  6087. }
  6088. #u31374_input {
  6089. position:absolute;
  6090. left:0px;
  6091. top:0px;
  6092. width:385px;
  6093. height:31px;
  6094. padding:2px 10px 2px 2px;
  6095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:13px;
  6099. letter-spacing:normal;
  6100. color:#AAAAAA;
  6101. vertical-align:none;
  6102. text-align:left;
  6103. text-transform:none;
  6104. background-color:transparent;
  6105. border-color:transparent;
  6106. }
  6107. #u31374_input.disabled {
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:385px;
  6112. height:31px;
  6113. padding:2px 10px 2px 2px;
  6114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6115. font-weight:400;
  6116. font-style:normal;
  6117. font-size:13px;
  6118. letter-spacing:normal;
  6119. color:#AAAAAA;
  6120. vertical-align:none;
  6121. text-align:left;
  6122. text-transform:none;
  6123. background-color:transparent;
  6124. border-color:transparent;
  6125. }
  6126. #u31374_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:385px;
  6132. height:31px;
  6133. background:inherit;
  6134. background-color:rgba(255, 255, 255, 0);
  6135. border:none;
  6136. border-radius:0px;
  6137. -moz-box-shadow:none;
  6138. -webkit-box-shadow:none;
  6139. box-shadow:none;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. color:#AAAAAA;
  6144. }
  6145. #u31374 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:1774px;
  6149. top:432px;
  6150. width:385px;
  6151. height:31px;
  6152. display:flex;
  6153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6154. font-weight:400;
  6155. font-style:normal;
  6156. color:#AAAAAA;
  6157. }
  6158. #u31374 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:2px 10px 2px 2px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u31374_div.disabled {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:385px;
  6171. height:31px;
  6172. background:inherit;
  6173. background-color:rgba(240, 240, 240, 1);
  6174. border:none;
  6175. border-radius:0px;
  6176. -moz-box-shadow:none;
  6177. -webkit-box-shadow:none;
  6178. box-shadow:none;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. color:#AAAAAA;
  6183. }
  6184. #u31374.disabled {
  6185. }
  6186. #u31375 {
  6187. border-width:0px;
  6188. position:absolute;
  6189. left:0px;
  6190. top:0px;
  6191. width:0px;
  6192. height:0px;
  6193. }
  6194. #u31376_div {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:200px;
  6200. height:1180px;
  6201. background:inherit;
  6202. background-color:rgba(255, 255, 255, 1);
  6203. border:none;
  6204. border-radius:0px;
  6205. -moz-box-shadow:none;
  6206. -webkit-box-shadow:none;
  6207. box-shadow:none;
  6208. }
  6209. #u31376 {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:120px;
  6213. top:50px;
  6214. width:200px;
  6215. height:1180px;
  6216. display:flex;
  6217. }
  6218. #u31376 .text {
  6219. position:absolute;
  6220. align-self:center;
  6221. padding:2px 2px 2px 2px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u31376_text {
  6226. border-width:0px;
  6227. word-wrap:break-word;
  6228. text-transform:none;
  6229. visibility:hidden;
  6230. }
  6231. #u31377_div {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:0px;
  6236. width:200px;
  6237. height:60px;
  6238. background:inherit;
  6239. background-color:rgba(224, 231, 247, 1);
  6240. border:none;
  6241. border-radius:0px;
  6242. -moz-box-shadow:none;
  6243. -webkit-box-shadow:none;
  6244. box-shadow:none;
  6245. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6246. font-weight:500;
  6247. font-style:normal;
  6248. font-size:18px;
  6249. }
  6250. #u31377 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:120px;
  6254. top:50px;
  6255. width:200px;
  6256. height:60px;
  6257. display:flex;
  6258. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6259. font-weight:500;
  6260. font-style:normal;
  6261. font-size:18px;
  6262. }
  6263. #u31377 .text {
  6264. position:absolute;
  6265. align-self:center;
  6266. padding:0px 0px 0px 20px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u31377_text {
  6271. border-width:0px;
  6272. word-wrap:break-word;
  6273. text-transform:none;
  6274. }
  6275. #u31378_div {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:65px;
  6281. height:22px;
  6282. background:inherit;
  6283. background-color:rgba(255, 255, 255, 0);
  6284. border:none;
  6285. border-radius:0px;
  6286. -moz-box-shadow:none;
  6287. -webkit-box-shadow:none;
  6288. box-shadow:none;
  6289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6290. font-weight:400;
  6291. font-style:normal;
  6292. font-size:16px;
  6293. }
  6294. #u31378 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:147px;
  6298. top:167px;
  6299. width:65px;
  6300. height:22px;
  6301. display:flex;
  6302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. font-size:16px;
  6306. }
  6307. #u31378 .text {
  6308. position:absolute;
  6309. align-self:flex-start;
  6310. padding:0px 0px 0px 0px;
  6311. box-sizing:border-box;
  6312. width:100%;
  6313. }
  6314. #u31378_text {
  6315. border-width:0px;
  6316. white-space:nowrap;
  6317. text-transform:none;
  6318. }
  6319. #u31379_div {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:54px;
  6325. height:22px;
  6326. background:inherit;
  6327. background-color:rgba(255, 255, 255, 0);
  6328. border:none;
  6329. border-radius:0px;
  6330. -moz-box-shadow:none;
  6331. -webkit-box-shadow:none;
  6332. box-shadow:none;
  6333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6334. font-weight:400;
  6335. font-style:normal;
  6336. font-size:16px;
  6337. }
  6338. #u31379 {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:147px;
  6342. top:251px;
  6343. width:54px;
  6344. height:22px;
  6345. display:flex;
  6346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. font-size:16px;
  6350. }
  6351. #u31379 .text {
  6352. position:absolute;
  6353. align-self:flex-start;
  6354. padding:0px 0px 0px 0px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u31379_text {
  6359. border-width:0px;
  6360. white-space:nowrap;
  6361. text-transform:none;
  6362. }
  6363. #u31380_div {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:49px;
  6369. height:17px;
  6370. background:inherit;
  6371. background-color:rgba(255, 255, 255, 0);
  6372. border:none;
  6373. border-radius:0px;
  6374. -moz-box-shadow:none;
  6375. -webkit-box-shadow:none;
  6376. box-shadow:none;
  6377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6378. font-weight:400;
  6379. font-style:normal;
  6380. font-size:12px;
  6381. color:#AAAAAA;
  6382. }
  6383. #u31380 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:147px;
  6387. top:130px;
  6388. width:49px;
  6389. height:17px;
  6390. display:flex;
  6391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:12px;
  6395. color:#AAAAAA;
  6396. }
  6397. #u31380 .text {
  6398. position:absolute;
  6399. align-self:flex-start;
  6400. padding:0px 0px 0px 0px;
  6401. box-sizing:border-box;
  6402. width:100%;
  6403. }
  6404. #u31380_text {
  6405. border-width:0px;
  6406. white-space:nowrap;
  6407. text-transform:none;
  6408. }
  6409. #u31381_div {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:65px;
  6415. height:22px;
  6416. background:inherit;
  6417. background-color:rgba(255, 255, 255, 0);
  6418. border:none;
  6419. border-radius:0px;
  6420. -moz-box-shadow:none;
  6421. -webkit-box-shadow:none;
  6422. box-shadow:none;
  6423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6424. font-weight:400;
  6425. font-style:normal;
  6426. font-size:16px;
  6427. }
  6428. #u31381 {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:147px;
  6432. top:209px;
  6433. width:65px;
  6434. height:22px;
  6435. display:flex;
  6436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6437. font-weight:400;
  6438. font-style:normal;
  6439. font-size:16px;
  6440. }
  6441. #u31381 .text {
  6442. position:absolute;
  6443. align-self:flex-start;
  6444. padding:0px 0px 0px 0px;
  6445. box-sizing:border-box;
  6446. width:100%;
  6447. }
  6448. #u31381_text {
  6449. border-width:0px;
  6450. white-space:nowrap;
  6451. text-transform:none;
  6452. }
  6453. #u31382_div {
  6454. border-width:0px;
  6455. position:absolute;
  6456. left:0px;
  6457. top:0px;
  6458. width:65px;
  6459. height:22px;
  6460. background:inherit;
  6461. background-color:rgba(255, 255, 255, 0);
  6462. border:none;
  6463. border-radius:0px;
  6464. -moz-box-shadow:none;
  6465. -webkit-box-shadow:none;
  6466. box-shadow:none;
  6467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6468. font-weight:400;
  6469. font-style:normal;
  6470. font-size:16px;
  6471. }
  6472. #u31382 {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:147px;
  6476. top:354px;
  6477. width:65px;
  6478. height:22px;
  6479. display:flex;
  6480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6481. font-weight:400;
  6482. font-style:normal;
  6483. font-size:16px;
  6484. }
  6485. #u31382 .text {
  6486. position:absolute;
  6487. align-self:flex-start;
  6488. padding:0px 0px 0px 0px;
  6489. box-sizing:border-box;
  6490. width:100%;
  6491. }
  6492. #u31382_text {
  6493. border-width:0px;
  6494. white-space:nowrap;
  6495. text-transform:none;
  6496. }
  6497. #u31383_div {
  6498. border-width:0px;
  6499. position:absolute;
  6500. left:0px;
  6501. top:0px;
  6502. width:49px;
  6503. height:17px;
  6504. background:inherit;
  6505. background-color:rgba(255, 255, 255, 0);
  6506. border:none;
  6507. border-radius:0px;
  6508. -moz-box-shadow:none;
  6509. -webkit-box-shadow:none;
  6510. box-shadow:none;
  6511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6512. font-weight:400;
  6513. font-style:normal;
  6514. font-size:12px;
  6515. color:#AAAAAA;
  6516. }
  6517. #u31383 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:147px;
  6521. top:318px;
  6522. width:49px;
  6523. height:17px;
  6524. display:flex;
  6525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6526. font-weight:400;
  6527. font-style:normal;
  6528. font-size:12px;
  6529. color:#AAAAAA;
  6530. }
  6531. #u31383 .text {
  6532. position:absolute;
  6533. align-self:flex-start;
  6534. padding:0px 0px 0px 0px;
  6535. box-sizing:border-box;
  6536. width:100%;
  6537. }
  6538. #u31383_text {
  6539. border-width:0px;
  6540. white-space:nowrap;
  6541. text-transform:none;
  6542. }
  6543. #u31384_img {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:201px;
  6549. height:2px;
  6550. }
  6551. #u31384 {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:120px;
  6555. top:293px;
  6556. width:200px;
  6557. height:1px;
  6558. display:flex;
  6559. }
  6560. #u31384 .text {
  6561. position:absolute;
  6562. align-self:center;
  6563. padding:2px 2px 2px 2px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u31384_text {
  6568. border-width:0px;
  6569. word-wrap:break-word;
  6570. text-transform:none;
  6571. visibility:hidden;
  6572. }
  6573. #u31385_div {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:65px;
  6579. height:22px;
  6580. background:inherit;
  6581. background-color:rgba(255, 255, 255, 0);
  6582. border:none;
  6583. border-radius:0px;
  6584. -moz-box-shadow:none;
  6585. -webkit-box-shadow:none;
  6586. box-shadow:none;
  6587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:16px;
  6591. }
  6592. #u31385 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:147px;
  6596. top:456px;
  6597. width:65px;
  6598. height:22px;
  6599. display:flex;
  6600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6601. font-weight:400;
  6602. font-style:normal;
  6603. font-size:16px;
  6604. }
  6605. #u31385 .text {
  6606. position:absolute;
  6607. align-self:flex-start;
  6608. padding:0px 0px 0px 0px;
  6609. box-sizing:border-box;
  6610. width:100%;
  6611. }
  6612. #u31385_text {
  6613. border-width:0px;
  6614. white-space:nowrap;
  6615. text-transform:none;
  6616. }
  6617. #u31386_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:49px;
  6623. height:17px;
  6624. background:inherit;
  6625. background-color:rgba(255, 255, 255, 0);
  6626. border:none;
  6627. border-radius:0px;
  6628. -moz-box-shadow:none;
  6629. -webkit-box-shadow:none;
  6630. box-shadow:none;
  6631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6632. font-weight:400;
  6633. font-style:normal;
  6634. font-size:12px;
  6635. color:#AAAAAA;
  6636. }
  6637. #u31386 {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:147px;
  6641. top:420px;
  6642. width:49px;
  6643. height:17px;
  6644. display:flex;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:12px;
  6649. color:#AAAAAA;
  6650. }
  6651. #u31386 .text {
  6652. position:absolute;
  6653. align-self:flex-start;
  6654. padding:0px 0px 0px 0px;
  6655. box-sizing:border-box;
  6656. width:100%;
  6657. }
  6658. #u31386_text {
  6659. border-width:0px;
  6660. white-space:nowrap;
  6661. text-transform:none;
  6662. }
  6663. #u31387_img {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:201px;
  6669. height:2px;
  6670. }
  6671. #u31387 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:120px;
  6675. top:395px;
  6676. width:200px;
  6677. height:1px;
  6678. display:flex;
  6679. }
  6680. #u31387 .text {
  6681. position:absolute;
  6682. align-self:center;
  6683. padding:2px 2px 2px 2px;
  6684. box-sizing:border-box;
  6685. width:100%;
  6686. }
  6687. #u31387_text {
  6688. border-width:0px;
  6689. word-wrap:break-word;
  6690. text-transform:none;
  6691. visibility:hidden;
  6692. }