styles.css 129 KB

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