styles.css 163 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u27469_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u27469 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u27469 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u27469_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u27470_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u27470 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u27470 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u27470_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u27471_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u27471 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u27471 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u27471_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u27472 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u27473_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u27473 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u27473 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u27473_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u27474_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u27474 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u27474 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u27474_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u27475_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u27475 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u27475 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u27475_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u27476 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u27477_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u27477_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u27477_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u27477 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u27477 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u27477_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u27477.disabled {
  356. }
  357. .u27477_input_option {
  358. font-size:14px;
  359. }
  360. #u27478_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u27478 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u27478 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u27478_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u27479_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u27479 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u27479 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u27479_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u27480_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u27480 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u27480 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u27480_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u27481 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u27482_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u27482 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u27482 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u27482_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u27483_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u27483 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u27483 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u27483_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u27484 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u27485_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u27485 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u27485 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u27485_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u27486_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u27486 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u27486 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u27486_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u27487 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u27488_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u27488 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:439px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u27488 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u27488_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u27489_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u27489 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u27489 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u27489_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u27490 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u27491_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u27491 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u27491 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u27491_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u27492_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u27492 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u27492 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u27492_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u27493 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u27494_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u27494 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:481px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u27494 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u27494_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u27495_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u27495 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u27495 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u27495_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u27496 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u27497_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u27497 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:355px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u27497 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u27497_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u27498_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u27498 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u27498 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u27498_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u27499 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u27500_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u27500 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u27500 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u27500_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u27501_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u27501 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u27501 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u27501_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u27502 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u27503_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u27503 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:397px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u27503 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u27503_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u27504_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u27504 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u27504 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u27504_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u27505 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u27506_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u27506 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:523px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u27506 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u27506_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u27507_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u27507 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u27507 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u27507_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u27508 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u27509_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u27509 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:231px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u27509 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u27509_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u27510_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u27510 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u27510 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u27510_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u27511_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u27511 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u27511 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u27511_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u27512_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u27512 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u27512 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u27512_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u27513_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u27513 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u27513 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u27513_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u27514_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u27514 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u27514 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u27514_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u27515 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u27516_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u27516 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:273px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u27516 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u27516_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u27517_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u27517 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u27517 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u27517_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u27518 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u27519_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u27519 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u27519 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u27519_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u27520_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u27520 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u27520 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u27520_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u27521 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u27522_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u27522 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:315px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u27522 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u27522_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u27523_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u27523 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u27523 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u27523_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u27524_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1262px;
  1728. height:1180px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. }
  1737. #u27524 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:330px;
  1741. top:51px;
  1742. width:1262px;
  1743. height:1180px;
  1744. display:flex;
  1745. }
  1746. #u27524 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u27524_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u27525_div {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:73px;
  1765. height:25px;
  1766. background:inherit;
  1767. background-color:rgba(255, 255, 255, 0);
  1768. border:none;
  1769. border-radius:0px;
  1770. -moz-box-shadow:none;
  1771. -webkit-box-shadow:none;
  1772. box-shadow:none;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:18px;
  1777. }
  1778. #u27525 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:350px;
  1782. top:61px;
  1783. width:73px;
  1784. height:25px;
  1785. display:flex;
  1786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1787. font-weight:400;
  1788. font-style:normal;
  1789. font-size:18px;
  1790. }
  1791. #u27525 .text {
  1792. position:absolute;
  1793. align-self:flex-start;
  1794. padding:0px 0px 0px 0px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u27525_text {
  1799. border-width:0px;
  1800. white-space:nowrap;
  1801. text-transform:none;
  1802. }
  1803. #u27526 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:350px;
  1807. top:234px;
  1808. width:1222px;
  1809. height:282px;
  1810. }
  1811. #u27527_img {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:85px;
  1817. height:38px;
  1818. }
  1819. #u27527 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:85px;
  1825. height:38px;
  1826. display:flex;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:12px;
  1831. color:#FFFFFF;
  1832. }
  1833. #u27527 .text {
  1834. position:absolute;
  1835. align-self:center;
  1836. padding:2px 2px 2px 0px;
  1837. box-sizing:border-box;
  1838. width:100%;
  1839. }
  1840. #u27527_text {
  1841. border-width:0px;
  1842. word-wrap:break-word;
  1843. text-transform:none;
  1844. }
  1845. #u27528_img {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:0px;
  1849. top:0px;
  1850. width:93px;
  1851. height:38px;
  1852. }
  1853. #u27528 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:85px;
  1857. top:0px;
  1858. width:93px;
  1859. height:38px;
  1860. display:flex;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#FFFFFF;
  1866. }
  1867. #u27528 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u27528_text {
  1875. border-width:0px;
  1876. word-wrap:break-word;
  1877. text-transform:none;
  1878. }
  1879. #u27529_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:93px;
  1885. height:38px;
  1886. }
  1887. #u27529 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:178px;
  1891. top:0px;
  1892. width:93px;
  1893. height:38px;
  1894. display:flex;
  1895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1896. font-weight:400;
  1897. font-style:normal;
  1898. font-size:12px;
  1899. color:#FFFFFF;
  1900. }
  1901. #u27529 .text {
  1902. position:absolute;
  1903. align-self:center;
  1904. padding:2px 2px 2px 0px;
  1905. box-sizing:border-box;
  1906. width:100%;
  1907. }
  1908. #u27529_text {
  1909. border-width:0px;
  1910. word-wrap:break-word;
  1911. text-transform:none;
  1912. }
  1913. #u27530_img {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:0px;
  1917. top:0px;
  1918. width:93px;
  1919. height:38px;
  1920. }
  1921. #u27530 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:271px;
  1925. top:0px;
  1926. width:93px;
  1927. height:38px;
  1928. display:flex;
  1929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:12px;
  1933. color:#FFFFFF;
  1934. }
  1935. #u27530 .text {
  1936. position:absolute;
  1937. align-self:center;
  1938. padding:2px 2px 2px 0px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u27530_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u27531_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:93px;
  1953. height:38px;
  1954. }
  1955. #u27531 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:364px;
  1959. top:0px;
  1960. width:93px;
  1961. height:38px;
  1962. display:flex;
  1963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1964. font-weight:400;
  1965. font-style:normal;
  1966. font-size:12px;
  1967. color:#FFFFFF;
  1968. }
  1969. #u27531 .text {
  1970. position:absolute;
  1971. align-self:center;
  1972. padding:2px 2px 2px 0px;
  1973. box-sizing:border-box;
  1974. width:100%;
  1975. }
  1976. #u27531_text {
  1977. border-width:0px;
  1978. word-wrap:break-word;
  1979. text-transform:none;
  1980. }
  1981. #u27532_img {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:0px;
  1985. top:0px;
  1986. width:103px;
  1987. height:38px;
  1988. }
  1989. #u27532 {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:457px;
  1993. top:0px;
  1994. width:103px;
  1995. height:38px;
  1996. display:flex;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:12px;
  2001. color:#FFFFFF;
  2002. }
  2003. #u27532 .text {
  2004. position:absolute;
  2005. align-self:center;
  2006. padding:2px 2px 2px 0px;
  2007. box-sizing:border-box;
  2008. width:100%;
  2009. }
  2010. #u27532_text {
  2011. border-width:0px;
  2012. word-wrap:break-word;
  2013. text-transform:none;
  2014. }
  2015. #u27533_img {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:0px;
  2019. top:0px;
  2020. width:93px;
  2021. height:38px;
  2022. }
  2023. #u27533 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:560px;
  2027. top:0px;
  2028. width:93px;
  2029. height:38px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:12px;
  2035. color:#FFFFFF;
  2036. }
  2037. #u27533 .text {
  2038. position:absolute;
  2039. align-self:center;
  2040. padding:2px 2px 2px 0px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u27533_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u27534_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:85px;
  2055. height:38px;
  2056. }
  2057. #u27534 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:653px;
  2061. top:0px;
  2062. width:85px;
  2063. height:38px;
  2064. display:flex;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:12px;
  2069. color:#FFFFFF;
  2070. }
  2071. #u27534 .text {
  2072. position:absolute;
  2073. align-self:center;
  2074. padding:2px 2px 2px 0px;
  2075. box-sizing:border-box;
  2076. width:100%;
  2077. }
  2078. #u27534_text {
  2079. border-width:0px;
  2080. word-wrap:break-word;
  2081. text-transform:none;
  2082. }
  2083. #u27535_img {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:0px;
  2087. top:0px;
  2088. width:114px;
  2089. height:38px;
  2090. }
  2091. #u27535 {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:738px;
  2095. top:0px;
  2096. width:114px;
  2097. height:38px;
  2098. display:flex;
  2099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2100. font-weight:400;
  2101. font-style:normal;
  2102. font-size:12px;
  2103. color:#FFFFFF;
  2104. }
  2105. #u27535 .text {
  2106. position:absolute;
  2107. align-self:center;
  2108. padding:2px 2px 2px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u27535_text {
  2113. border-width:0px;
  2114. word-wrap:break-word;
  2115. text-transform:none;
  2116. }
  2117. #u27536_img {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:114px;
  2123. height:38px;
  2124. }
  2125. #u27536 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:852px;
  2129. top:0px;
  2130. width:114px;
  2131. height:38px;
  2132. display:flex;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:12px;
  2137. color:#FFFFFF;
  2138. }
  2139. #u27536 .text {
  2140. position:absolute;
  2141. align-self:center;
  2142. padding:2px 2px 2px 0px;
  2143. box-sizing:border-box;
  2144. width:100%;
  2145. }
  2146. #u27536_text {
  2147. border-width:0px;
  2148. word-wrap:break-word;
  2149. text-transform:none;
  2150. }
  2151. #u27537_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:93px;
  2157. height:38px;
  2158. }
  2159. #u27537 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:966px;
  2163. top:0px;
  2164. width:93px;
  2165. height:38px;
  2166. display:flex;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:12px;
  2171. color:#FFFFFF;
  2172. }
  2173. #u27537 .text {
  2174. position:absolute;
  2175. align-self:center;
  2176. padding:2px 2px 2px 0px;
  2177. box-sizing:border-box;
  2178. width:100%;
  2179. }
  2180. #u27537_text {
  2181. border-width:0px;
  2182. word-wrap:break-word;
  2183. text-transform:none;
  2184. }
  2185. #u27538_img {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:163px;
  2191. height:38px;
  2192. }
  2193. #u27538 {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:1059px;
  2197. top:0px;
  2198. width:163px;
  2199. height:38px;
  2200. display:flex;
  2201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2202. font-weight:400;
  2203. font-style:normal;
  2204. font-size:12px;
  2205. color:#FFFFFF;
  2206. }
  2207. #u27538 .text {
  2208. position:absolute;
  2209. align-self:center;
  2210. padding:2px 2px 2px 0px;
  2211. box-sizing:border-box;
  2212. width:100%;
  2213. }
  2214. #u27538_text {
  2215. border-width:0px;
  2216. word-wrap:break-word;
  2217. text-transform:none;
  2218. }
  2219. #u27539_img {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:0px;
  2223. top:0px;
  2224. width:85px;
  2225. height:44px;
  2226. }
  2227. #u27539 {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:38px;
  2232. width:85px;
  2233. height:44px;
  2234. display:flex;
  2235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2236. font-weight:400;
  2237. font-style:normal;
  2238. font-size:12px;
  2239. color:#333333;
  2240. line-height:40px;
  2241. }
  2242. #u27539 .text {
  2243. position:absolute;
  2244. align-self:center;
  2245. padding:2px 2px 2px 0px;
  2246. box-sizing:border-box;
  2247. width:100%;
  2248. }
  2249. #u27539_text {
  2250. border-width:0px;
  2251. word-wrap:break-word;
  2252. text-transform:none;
  2253. visibility:hidden;
  2254. }
  2255. #u27540_img {
  2256. border-width:0px;
  2257. position:absolute;
  2258. left:0px;
  2259. top:0px;
  2260. width:93px;
  2261. height:44px;
  2262. }
  2263. #u27540 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:85px;
  2267. top:38px;
  2268. width:93px;
  2269. height:44px;
  2270. display:flex;
  2271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2272. font-weight:400;
  2273. font-style:normal;
  2274. font-size:12px;
  2275. color:#333333;
  2276. line-height:40px;
  2277. }
  2278. #u27540 .text {
  2279. position:absolute;
  2280. align-self:center;
  2281. padding:2px 2px 2px 0px;
  2282. box-sizing:border-box;
  2283. width:100%;
  2284. }
  2285. #u27540_text {
  2286. border-width:0px;
  2287. word-wrap:break-word;
  2288. text-transform:none;
  2289. visibility:hidden;
  2290. }
  2291. #u27541_img {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:0px;
  2295. top:0px;
  2296. width:93px;
  2297. height:44px;
  2298. }
  2299. #u27541 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:178px;
  2303. top:38px;
  2304. width:93px;
  2305. height:44px;
  2306. display:flex;
  2307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2308. font-weight:400;
  2309. font-style:normal;
  2310. font-size:12px;
  2311. color:#333333;
  2312. line-height:40px;
  2313. }
  2314. #u27541 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 0px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u27541_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. visibility:hidden;
  2326. }
  2327. #u27542_img {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:93px;
  2333. height:44px;
  2334. }
  2335. #u27542 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:271px;
  2339. top:38px;
  2340. width:93px;
  2341. height:44px;
  2342. display:flex;
  2343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2344. font-weight:400;
  2345. font-style:normal;
  2346. font-size:12px;
  2347. color:#333333;
  2348. }
  2349. #u27542 .text {
  2350. position:absolute;
  2351. align-self:center;
  2352. padding:2px 2px 2px 0px;
  2353. box-sizing:border-box;
  2354. width:100%;
  2355. }
  2356. #u27542_text {
  2357. border-width:0px;
  2358. word-wrap:break-word;
  2359. text-transform:none;
  2360. }
  2361. #u27543_img {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:93px;
  2367. height:44px;
  2368. }
  2369. #u27543 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:364px;
  2373. top:38px;
  2374. width:93px;
  2375. height:44px;
  2376. display:flex;
  2377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2378. font-weight:400;
  2379. font-style:normal;
  2380. font-size:12px;
  2381. color:#333333;
  2382. }
  2383. #u27543 .text {
  2384. position:absolute;
  2385. align-self:center;
  2386. padding:2px 2px 2px 0px;
  2387. box-sizing:border-box;
  2388. width:100%;
  2389. }
  2390. #u27543_text {
  2391. border-width:0px;
  2392. word-wrap:break-word;
  2393. text-transform:none;
  2394. visibility:hidden;
  2395. }
  2396. #u27544_img {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:103px;
  2402. height:44px;
  2403. }
  2404. #u27544 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:457px;
  2408. top:38px;
  2409. width:103px;
  2410. height:44px;
  2411. display:flex;
  2412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2413. font-weight:400;
  2414. font-style:normal;
  2415. font-size:12px;
  2416. color:#333333;
  2417. line-height:40px;
  2418. }
  2419. #u27544 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:2px 2px 2px 0px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u27544_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. }
  2431. #u27545_img {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:93px;
  2437. height:44px;
  2438. }
  2439. #u27545 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:560px;
  2443. top:38px;
  2444. width:93px;
  2445. height:44px;
  2446. display:flex;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:12px;
  2451. color:#333333;
  2452. line-height:40px;
  2453. }
  2454. #u27545 .text {
  2455. position:absolute;
  2456. align-self:center;
  2457. padding:2px 2px 2px 0px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u27545_text {
  2462. border-width:0px;
  2463. word-wrap:break-word;
  2464. text-transform:none;
  2465. visibility:hidden;
  2466. }
  2467. #u27546_img {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:85px;
  2473. height:44px;
  2474. }
  2475. #u27546 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:653px;
  2479. top:38px;
  2480. width:85px;
  2481. height:44px;
  2482. display:flex;
  2483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:12px;
  2487. color:#333333;
  2488. line-height:40px;
  2489. }
  2490. #u27546 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 0px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u27546_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. visibility:hidden;
  2502. }
  2503. #u27547_img {
  2504. border-width:0px;
  2505. position:absolute;
  2506. left:0px;
  2507. top:0px;
  2508. width:114px;
  2509. height:44px;
  2510. }
  2511. #u27547 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:738px;
  2515. top:38px;
  2516. width:114px;
  2517. height:44px;
  2518. display:flex;
  2519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2520. font-weight:400;
  2521. font-style:normal;
  2522. font-size:12px;
  2523. }
  2524. #u27547 .text {
  2525. position:absolute;
  2526. align-self:center;
  2527. padding:2px 2px 2px 0px;
  2528. box-sizing:border-box;
  2529. width:100%;
  2530. }
  2531. #u27547_text {
  2532. border-width:0px;
  2533. word-wrap:break-word;
  2534. text-transform:none;
  2535. visibility:hidden;
  2536. }
  2537. #u27548_img {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:114px;
  2543. height:44px;
  2544. }
  2545. #u27548 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:852px;
  2549. top:38px;
  2550. width:114px;
  2551. height:44px;
  2552. display:flex;
  2553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2554. font-weight:400;
  2555. font-style:normal;
  2556. font-size:12px;
  2557. color:#333333;
  2558. }
  2559. #u27548 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u27548_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. }
  2571. #u27549_img {
  2572. border-width:0px;
  2573. position:absolute;
  2574. left:0px;
  2575. top:0px;
  2576. width:93px;
  2577. height:44px;
  2578. }
  2579. #u27549 {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:966px;
  2583. top:38px;
  2584. width:93px;
  2585. height:44px;
  2586. display:flex;
  2587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2588. font-weight:400;
  2589. font-style:normal;
  2590. font-size:12px;
  2591. color:#333333;
  2592. }
  2593. #u27549 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u27549_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. visibility:hidden;
  2605. }
  2606. #u27550_img {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:163px;
  2612. height:44px;
  2613. }
  2614. #u27550 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:1059px;
  2618. top:38px;
  2619. width:163px;
  2620. height:44px;
  2621. display:flex;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:12px;
  2626. color:#298FFF;
  2627. line-height:35px;
  2628. }
  2629. #u27550 .text {
  2630. position:absolute;
  2631. align-self:center;
  2632. padding:2px 2px 2px 0px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u27550_text {
  2637. border-width:0px;
  2638. word-wrap:break-word;
  2639. text-transform:none;
  2640. }
  2641. #u27551_img {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:85px;
  2647. height:44px;
  2648. }
  2649. #u27551 {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:82px;
  2654. width:85px;
  2655. height:44px;
  2656. display:flex;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:12px;
  2661. color:#333333;
  2662. line-height:40px;
  2663. }
  2664. #u27551 .text {
  2665. position:absolute;
  2666. align-self:center;
  2667. padding:2px 2px 2px 0px;
  2668. box-sizing:border-box;
  2669. width:100%;
  2670. }
  2671. #u27551_text {
  2672. border-width:0px;
  2673. word-wrap:break-word;
  2674. text-transform:none;
  2675. visibility:hidden;
  2676. }
  2677. #u27552_img {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:0px;
  2681. top:0px;
  2682. width:93px;
  2683. height:44px;
  2684. }
  2685. #u27552 {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:85px;
  2689. top:82px;
  2690. width:93px;
  2691. height:44px;
  2692. display:flex;
  2693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2694. font-weight:400;
  2695. font-style:normal;
  2696. font-size:12px;
  2697. color:#333333;
  2698. line-height:40px;
  2699. }
  2700. #u27552 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 0px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u27552_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. visibility:hidden;
  2712. }
  2713. #u27553_img {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:93px;
  2719. height:44px;
  2720. }
  2721. #u27553 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:178px;
  2725. top:82px;
  2726. width:93px;
  2727. height:44px;
  2728. display:flex;
  2729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2730. font-weight:400;
  2731. font-style:normal;
  2732. font-size:12px;
  2733. color:#333333;
  2734. line-height:40px;
  2735. }
  2736. #u27553 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 0px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u27553_text {
  2744. border-width:0px;
  2745. word-wrap:break-word;
  2746. text-transform:none;
  2747. visibility:hidden;
  2748. }
  2749. #u27554_img {
  2750. border-width:0px;
  2751. position:absolute;
  2752. left:0px;
  2753. top:0px;
  2754. width:93px;
  2755. height:44px;
  2756. }
  2757. #u27554 {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:271px;
  2761. top:82px;
  2762. width:93px;
  2763. height:44px;
  2764. display:flex;
  2765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2766. font-weight:400;
  2767. font-style:normal;
  2768. font-size:12px;
  2769. color:#333333;
  2770. }
  2771. #u27554 .text {
  2772. position:absolute;
  2773. align-self:center;
  2774. padding:2px 2px 2px 0px;
  2775. box-sizing:border-box;
  2776. width:100%;
  2777. }
  2778. #u27554_text {
  2779. border-width:0px;
  2780. word-wrap:break-word;
  2781. text-transform:none;
  2782. }
  2783. #u27555_img {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:0px;
  2787. top:0px;
  2788. width:93px;
  2789. height:44px;
  2790. }
  2791. #u27555 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:364px;
  2795. top:82px;
  2796. width:93px;
  2797. height:44px;
  2798. display:flex;
  2799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:12px;
  2803. color:#333333;
  2804. }
  2805. #u27555 .text {
  2806. position:absolute;
  2807. align-self:center;
  2808. padding:2px 2px 2px 0px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u27555_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. visibility:hidden;
  2817. }
  2818. #u27556_img {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:103px;
  2824. height:44px;
  2825. }
  2826. #u27556 {
  2827. border-width:0px;
  2828. position:absolute;
  2829. left:457px;
  2830. top:82px;
  2831. width:103px;
  2832. height:44px;
  2833. display:flex;
  2834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:12px;
  2838. color:#333333;
  2839. line-height:40px;
  2840. }
  2841. #u27556 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:2px 2px 2px 0px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u27556_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. visibility:hidden;
  2853. }
  2854. #u27557_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:93px;
  2860. height:44px;
  2861. }
  2862. #u27557 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:560px;
  2866. top:82px;
  2867. width:93px;
  2868. height:44px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:12px;
  2874. color:#333333;
  2875. line-height:40px;
  2876. }
  2877. #u27557 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:2px 2px 2px 0px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u27557_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. visibility:hidden;
  2889. }
  2890. #u27558_img {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:85px;
  2896. height:44px;
  2897. }
  2898. #u27558 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:653px;
  2902. top:82px;
  2903. width:85px;
  2904. height:44px;
  2905. display:flex;
  2906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2907. font-weight:400;
  2908. font-style:normal;
  2909. font-size:12px;
  2910. color:#333333;
  2911. line-height:40px;
  2912. }
  2913. #u27558 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 0px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u27558_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. visibility:hidden;
  2925. }
  2926. #u27559_img {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:114px;
  2932. height:44px;
  2933. }
  2934. #u27559 {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:738px;
  2938. top:82px;
  2939. width:114px;
  2940. height:44px;
  2941. display:flex;
  2942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2943. font-weight:400;
  2944. font-style:normal;
  2945. font-size:12px;
  2946. }
  2947. #u27559 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:2px 2px 2px 0px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u27559_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. visibility:hidden;
  2959. }
  2960. #u27560_img {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:114px;
  2966. height:44px;
  2967. }
  2968. #u27560 {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:852px;
  2972. top:82px;
  2973. width:114px;
  2974. height:44px;
  2975. display:flex;
  2976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:12px;
  2980. color:#333333;
  2981. }
  2982. #u27560 .text {
  2983. position:absolute;
  2984. align-self:center;
  2985. padding:2px 2px 2px 0px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u27560_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. visibility:hidden;
  2994. }
  2995. #u27561_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:93px;
  3001. height:44px;
  3002. }
  3003. #u27561 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:966px;
  3007. top:82px;
  3008. width:93px;
  3009. height:44px;
  3010. display:flex;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:12px;
  3015. color:#333333;
  3016. }
  3017. #u27561 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u27561_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. visibility:hidden;
  3029. }
  3030. #u27562_img {
  3031. border-width:0px;
  3032. position:absolute;
  3033. left:0px;
  3034. top:0px;
  3035. width:163px;
  3036. height:44px;
  3037. }
  3038. #u27562 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:1059px;
  3042. top:82px;
  3043. width:163px;
  3044. height:44px;
  3045. display:flex;
  3046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3047. font-weight:400;
  3048. font-style:normal;
  3049. font-size:12px;
  3050. line-height:35px;
  3051. }
  3052. #u27562 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 0px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u27562_text {
  3060. border-width:0px;
  3061. word-wrap:break-word;
  3062. text-transform:none;
  3063. }
  3064. #u27563_img {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:85px;
  3070. height:39px;
  3071. }
  3072. #u27563 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:126px;
  3077. width:85px;
  3078. height:39px;
  3079. display:flex;
  3080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3081. font-weight:400;
  3082. font-style:normal;
  3083. font-size:12px;
  3084. color:#333333;
  3085. line-height:40px;
  3086. }
  3087. #u27563 .text {
  3088. position:absolute;
  3089. align-self:center;
  3090. padding:2px 2px 2px 0px;
  3091. box-sizing:border-box;
  3092. width:100%;
  3093. }
  3094. #u27563_text {
  3095. border-width:0px;
  3096. word-wrap:break-word;
  3097. text-transform:none;
  3098. visibility:hidden;
  3099. }
  3100. #u27564_img {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:0px;
  3105. width:93px;
  3106. height:39px;
  3107. }
  3108. #u27564 {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:85px;
  3112. top:126px;
  3113. width:93px;
  3114. height:39px;
  3115. display:flex;
  3116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:12px;
  3120. color:#333333;
  3121. line-height:40px;
  3122. }
  3123. #u27564 .text {
  3124. position:absolute;
  3125. align-self:center;
  3126. padding:2px 2px 2px 0px;
  3127. box-sizing:border-box;
  3128. width:100%;
  3129. }
  3130. #u27564_text {
  3131. border-width:0px;
  3132. word-wrap:break-word;
  3133. text-transform:none;
  3134. visibility:hidden;
  3135. }
  3136. #u27565_img {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:93px;
  3142. height:39px;
  3143. }
  3144. #u27565 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:178px;
  3148. top:126px;
  3149. width:93px;
  3150. height:39px;
  3151. display:flex;
  3152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:12px;
  3156. color:#333333;
  3157. line-height:40px;
  3158. }
  3159. #u27565 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:2px 2px 2px 0px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u27565_text {
  3167. border-width:0px;
  3168. word-wrap:break-word;
  3169. text-transform:none;
  3170. visibility:hidden;
  3171. }
  3172. #u27566_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:93px;
  3178. height:39px;
  3179. }
  3180. #u27566 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:271px;
  3184. top:126px;
  3185. width:93px;
  3186. height:39px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. color:#333333;
  3193. }
  3194. #u27566 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:2px 2px 2px 0px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u27566_text {
  3202. border-width:0px;
  3203. word-wrap:break-word;
  3204. text-transform:none;
  3205. }
  3206. #u27567_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:93px;
  3212. height:39px;
  3213. }
  3214. #u27567 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:364px;
  3218. top:126px;
  3219. width:93px;
  3220. height:39px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:12px;
  3226. color:#606266;
  3227. }
  3228. #u27567 .text {
  3229. position:absolute;
  3230. align-self:center;
  3231. padding:2px 2px 2px 0px;
  3232. box-sizing:border-box;
  3233. width:100%;
  3234. }
  3235. #u27567_text {
  3236. border-width:0px;
  3237. word-wrap:break-word;
  3238. text-transform:none;
  3239. visibility:hidden;
  3240. }
  3241. #u27568_img {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:0px;
  3245. top:0px;
  3246. width:103px;
  3247. height:39px;
  3248. }
  3249. #u27568 {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:457px;
  3253. top:126px;
  3254. width:103px;
  3255. height:39px;
  3256. display:flex;
  3257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3258. font-weight:400;
  3259. font-style:normal;
  3260. font-size:12px;
  3261. color:#333333;
  3262. line-height:40px;
  3263. }
  3264. #u27568 .text {
  3265. position:absolute;
  3266. align-self:center;
  3267. padding:2px 2px 2px 0px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u27568_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. visibility:hidden;
  3276. }
  3277. #u27569_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:93px;
  3283. height:39px;
  3284. }
  3285. #u27569 {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:560px;
  3289. top:126px;
  3290. width:93px;
  3291. height:39px;
  3292. display:flex;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:12px;
  3297. color:#333333;
  3298. line-height:40px;
  3299. }
  3300. #u27569 .text {
  3301. position:absolute;
  3302. align-self:center;
  3303. padding:2px 2px 2px 0px;
  3304. box-sizing:border-box;
  3305. width:100%;
  3306. }
  3307. #u27569_text {
  3308. border-width:0px;
  3309. word-wrap:break-word;
  3310. text-transform:none;
  3311. visibility:hidden;
  3312. }
  3313. #u27570_img {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:85px;
  3319. height:39px;
  3320. }
  3321. #u27570 {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:653px;
  3325. top:126px;
  3326. width:85px;
  3327. height:39px;
  3328. display:flex;
  3329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3330. font-weight:400;
  3331. font-style:normal;
  3332. font-size:12px;
  3333. color:#333333;
  3334. line-height:40px;
  3335. }
  3336. #u27570 .text {
  3337. position:absolute;
  3338. align-self:center;
  3339. padding:2px 2px 2px 0px;
  3340. box-sizing:border-box;
  3341. width:100%;
  3342. }
  3343. #u27570_text {
  3344. border-width:0px;
  3345. word-wrap:break-word;
  3346. text-transform:none;
  3347. visibility:hidden;
  3348. }
  3349. #u27571_img {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:114px;
  3355. height:39px;
  3356. }
  3357. #u27571 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:738px;
  3361. top:126px;
  3362. width:114px;
  3363. height:39px;
  3364. display:flex;
  3365. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:12px;
  3369. color:#606266;
  3370. }
  3371. #u27571 .text {
  3372. position:absolute;
  3373. align-self:center;
  3374. padding:2px 2px 2px 0px;
  3375. box-sizing:border-box;
  3376. width:100%;
  3377. }
  3378. #u27571_text {
  3379. border-width:0px;
  3380. word-wrap:break-word;
  3381. text-transform:none;
  3382. visibility:hidden;
  3383. }
  3384. #u27572_img {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:114px;
  3390. height:39px;
  3391. }
  3392. #u27572 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:852px;
  3396. top:126px;
  3397. width:114px;
  3398. height:39px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:12px;
  3404. color:#606266;
  3405. }
  3406. #u27572 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:2px 2px 2px 0px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u27572_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u27573_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:93px;
  3425. height:39px;
  3426. }
  3427. #u27573 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:966px;
  3431. top:126px;
  3432. width:93px;
  3433. height:39px;
  3434. display:flex;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:12px;
  3439. color:#606266;
  3440. }
  3441. #u27573 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 0px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u27573_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. visibility:hidden;
  3453. }
  3454. #u27574_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:163px;
  3460. height:39px;
  3461. }
  3462. #u27574 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:1059px;
  3466. top:126px;
  3467. width:163px;
  3468. height:39px;
  3469. display:flex;
  3470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:12px;
  3474. line-height:35px;
  3475. }
  3476. #u27574 .text {
  3477. position:absolute;
  3478. align-self:center;
  3479. padding:2px 2px 2px 0px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u27574_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. }
  3488. #u27575_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:85px;
  3494. height:39px;
  3495. }
  3496. #u27575 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:165px;
  3501. width:85px;
  3502. height:39px;
  3503. display:flex;
  3504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:12px;
  3508. color:#606266;
  3509. }
  3510. #u27575 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u27575_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u27576_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:93px;
  3529. height:39px;
  3530. }
  3531. #u27576 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:85px;
  3535. top:165px;
  3536. width:93px;
  3537. height:39px;
  3538. display:flex;
  3539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#606266;
  3544. }
  3545. #u27576 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u27576_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u27577_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:93px;
  3564. height:39px;
  3565. }
  3566. #u27577 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:178px;
  3570. top:165px;
  3571. width:93px;
  3572. height:39px;
  3573. display:flex;
  3574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. color:#606266;
  3579. }
  3580. #u27577 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u27577_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u27578_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:93px;
  3599. height:39px;
  3600. }
  3601. #u27578 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:271px;
  3605. top:165px;
  3606. width:93px;
  3607. height:39px;
  3608. display:flex;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. color:#333333;
  3614. }
  3615. #u27578 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u27578_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. }
  3627. #u27579_img {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:93px;
  3633. height:39px;
  3634. }
  3635. #u27579 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:364px;
  3639. top:165px;
  3640. width:93px;
  3641. height:39px;
  3642. display:flex;
  3643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:12px;
  3647. color:#606266;
  3648. }
  3649. #u27579 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 0px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u27579_text {
  3657. border-width:0px;
  3658. word-wrap:break-word;
  3659. text-transform:none;
  3660. visibility:hidden;
  3661. }
  3662. #u27580_img {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:103px;
  3668. height:39px;
  3669. }
  3670. #u27580 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:457px;
  3674. top:165px;
  3675. width:103px;
  3676. height:39px;
  3677. display:flex;
  3678. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:12px;
  3682. color:#606266;
  3683. }
  3684. #u27580 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 2px 2px 0px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u27580_text {
  3692. border-width:0px;
  3693. word-wrap:break-word;
  3694. text-transform:none;
  3695. visibility:hidden;
  3696. }
  3697. #u27581_img {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:93px;
  3703. height:39px;
  3704. }
  3705. #u27581 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:560px;
  3709. top:165px;
  3710. width:93px;
  3711. height:39px;
  3712. display:flex;
  3713. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:12px;
  3717. color:#606266;
  3718. }
  3719. #u27581 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 0px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u27581_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. visibility:hidden;
  3731. }
  3732. #u27582_img {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:85px;
  3738. height:39px;
  3739. }
  3740. #u27582 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:653px;
  3744. top:165px;
  3745. width:85px;
  3746. height:39px;
  3747. display:flex;
  3748. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:12px;
  3752. color:#606266;
  3753. }
  3754. #u27582 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:2px 2px 2px 0px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u27582_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. visibility:hidden;
  3766. }
  3767. #u27583_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:114px;
  3773. height:39px;
  3774. }
  3775. #u27583 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:738px;
  3779. top:165px;
  3780. width:114px;
  3781. height:39px;
  3782. display:flex;
  3783. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:12px;
  3787. color:#606266;
  3788. }
  3789. #u27583 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 0px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u27583_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u27584_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:114px;
  3808. height:39px;
  3809. }
  3810. #u27584 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:852px;
  3814. top:165px;
  3815. width:114px;
  3816. height:39px;
  3817. display:flex;
  3818. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3819. font-weight:400;
  3820. font-style:normal;
  3821. font-size:12px;
  3822. color:#606266;
  3823. }
  3824. #u27584 .text {
  3825. position:absolute;
  3826. align-self:center;
  3827. padding:2px 2px 2px 0px;
  3828. box-sizing:border-box;
  3829. width:100%;
  3830. }
  3831. #u27584_text {
  3832. border-width:0px;
  3833. word-wrap:break-word;
  3834. text-transform:none;
  3835. visibility:hidden;
  3836. }
  3837. #u27585_img {
  3838. border-width:0px;
  3839. position:absolute;
  3840. left:0px;
  3841. top:0px;
  3842. width:93px;
  3843. height:39px;
  3844. }
  3845. #u27585 {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:966px;
  3849. top:165px;
  3850. width:93px;
  3851. height:39px;
  3852. display:flex;
  3853. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3854. font-weight:400;
  3855. font-style:normal;
  3856. font-size:12px;
  3857. color:#606266;
  3858. }
  3859. #u27585 .text {
  3860. position:absolute;
  3861. align-self:center;
  3862. padding:2px 2px 2px 0px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u27585_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. visibility:hidden;
  3871. }
  3872. #u27586_img {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:163px;
  3878. height:39px;
  3879. }
  3880. #u27586 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:1059px;
  3884. top:165px;
  3885. width:163px;
  3886. height:39px;
  3887. display:flex;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:12px;
  3892. line-height:35px;
  3893. }
  3894. #u27586 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 0px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u27586_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. }
  3906. #u27587_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:85px;
  3912. height:39px;
  3913. }
  3914. #u27587 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:0px;
  3918. top:204px;
  3919. width:85px;
  3920. height:39px;
  3921. display:flex;
  3922. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3923. font-weight:400;
  3924. font-style:normal;
  3925. font-size:12px;
  3926. color:#606266;
  3927. }
  3928. #u27587 .text {
  3929. position:absolute;
  3930. align-self:center;
  3931. padding:2px 2px 2px 0px;
  3932. box-sizing:border-box;
  3933. width:100%;
  3934. }
  3935. #u27587_text {
  3936. border-width:0px;
  3937. word-wrap:break-word;
  3938. text-transform:none;
  3939. visibility:hidden;
  3940. }
  3941. #u27588_img {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:93px;
  3947. height:39px;
  3948. }
  3949. #u27588 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:85px;
  3953. top:204px;
  3954. width:93px;
  3955. height:39px;
  3956. display:flex;
  3957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3958. font-weight:400;
  3959. font-style:normal;
  3960. font-size:12px;
  3961. color:#606266;
  3962. }
  3963. #u27588 .text {
  3964. position:absolute;
  3965. align-self:center;
  3966. padding:2px 2px 2px 0px;
  3967. box-sizing:border-box;
  3968. width:100%;
  3969. }
  3970. #u27588_text {
  3971. border-width:0px;
  3972. word-wrap:break-word;
  3973. text-transform:none;
  3974. visibility:hidden;
  3975. }
  3976. #u27589_img {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:93px;
  3982. height:39px;
  3983. }
  3984. #u27589 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:178px;
  3988. top:204px;
  3989. width:93px;
  3990. height:39px;
  3991. display:flex;
  3992. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3993. font-weight:400;
  3994. font-style:normal;
  3995. font-size:12px;
  3996. color:#606266;
  3997. }
  3998. #u27589 .text {
  3999. position:absolute;
  4000. align-self:center;
  4001. padding:2px 2px 2px 0px;
  4002. box-sizing:border-box;
  4003. width:100%;
  4004. }
  4005. #u27589_text {
  4006. border-width:0px;
  4007. word-wrap:break-word;
  4008. text-transform:none;
  4009. visibility:hidden;
  4010. }
  4011. #u27590_img {
  4012. border-width:0px;
  4013. position:absolute;
  4014. left:0px;
  4015. top:0px;
  4016. width:93px;
  4017. height:39px;
  4018. }
  4019. #u27590 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:271px;
  4023. top:204px;
  4024. width:93px;
  4025. height:39px;
  4026. display:flex;
  4027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:12px;
  4031. color:#333333;
  4032. }
  4033. #u27590 .text {
  4034. position:absolute;
  4035. align-self:center;
  4036. padding:2px 2px 2px 0px;
  4037. box-sizing:border-box;
  4038. width:100%;
  4039. }
  4040. #u27590_text {
  4041. border-width:0px;
  4042. word-wrap:break-word;
  4043. text-transform:none;
  4044. }
  4045. #u27591_img {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:93px;
  4051. height:39px;
  4052. }
  4053. #u27591 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:364px;
  4057. top:204px;
  4058. width:93px;
  4059. height:39px;
  4060. display:flex;
  4061. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:12px;
  4065. color:#606266;
  4066. }
  4067. #u27591 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:2px 2px 2px 0px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u27591_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u27592_img {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:103px;
  4086. height:39px;
  4087. }
  4088. #u27592 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:457px;
  4092. top:204px;
  4093. width:103px;
  4094. height:39px;
  4095. display:flex;
  4096. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:12px;
  4100. color:#606266;
  4101. }
  4102. #u27592 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 0px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u27592_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. visibility:hidden;
  4114. }
  4115. #u27593_img {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:0px;
  4119. top:0px;
  4120. width:93px;
  4121. height:39px;
  4122. }
  4123. #u27593 {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:560px;
  4127. top:204px;
  4128. width:93px;
  4129. height:39px;
  4130. display:flex;
  4131. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:12px;
  4135. color:#606266;
  4136. }
  4137. #u27593 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:2px 2px 2px 0px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u27593_text {
  4145. border-width:0px;
  4146. word-wrap:break-word;
  4147. text-transform:none;
  4148. visibility:hidden;
  4149. }
  4150. #u27594_img {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:85px;
  4156. height:39px;
  4157. }
  4158. #u27594 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:653px;
  4162. top:204px;
  4163. width:85px;
  4164. height:39px;
  4165. display:flex;
  4166. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4167. font-weight:400;
  4168. font-style:normal;
  4169. font-size:12px;
  4170. color:#606266;
  4171. }
  4172. #u27594 .text {
  4173. position:absolute;
  4174. align-self:center;
  4175. padding:2px 2px 2px 0px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u27594_text {
  4180. border-width:0px;
  4181. word-wrap:break-word;
  4182. text-transform:none;
  4183. visibility:hidden;
  4184. }
  4185. #u27595_img {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:114px;
  4191. height:39px;
  4192. }
  4193. #u27595 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:738px;
  4197. top:204px;
  4198. width:114px;
  4199. height:39px;
  4200. display:flex;
  4201. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:12px;
  4205. color:#606266;
  4206. }
  4207. #u27595 .text {
  4208. position:absolute;
  4209. align-self:center;
  4210. padding:2px 2px 2px 0px;
  4211. box-sizing:border-box;
  4212. width:100%;
  4213. }
  4214. #u27595_text {
  4215. border-width:0px;
  4216. word-wrap:break-word;
  4217. text-transform:none;
  4218. visibility:hidden;
  4219. }
  4220. #u27596_img {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:114px;
  4226. height:39px;
  4227. }
  4228. #u27596 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:852px;
  4232. top:204px;
  4233. width:114px;
  4234. height:39px;
  4235. display:flex;
  4236. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4237. font-weight:400;
  4238. font-style:normal;
  4239. font-size:12px;
  4240. color:#606266;
  4241. }
  4242. #u27596 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 0px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u27596_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. visibility:hidden;
  4254. }
  4255. #u27597_img {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:93px;
  4261. height:39px;
  4262. }
  4263. #u27597 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:966px;
  4267. top:204px;
  4268. width:93px;
  4269. height:39px;
  4270. display:flex;
  4271. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:12px;
  4275. color:#606266;
  4276. }
  4277. #u27597 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:2px 2px 2px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u27597_text {
  4285. border-width:0px;
  4286. word-wrap:break-word;
  4287. text-transform:none;
  4288. visibility:hidden;
  4289. }
  4290. #u27598_img {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:163px;
  4296. height:39px;
  4297. }
  4298. #u27598 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:1059px;
  4302. top:204px;
  4303. width:163px;
  4304. height:39px;
  4305. display:flex;
  4306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4307. font-weight:400;
  4308. font-style:normal;
  4309. font-size:12px;
  4310. line-height:35px;
  4311. }
  4312. #u27598 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 0px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u27598_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. }
  4324. #u27599_img {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:85px;
  4330. height:39px;
  4331. }
  4332. #u27599 {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:243px;
  4337. width:85px;
  4338. height:39px;
  4339. display:flex;
  4340. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:12px;
  4344. color:#606266;
  4345. }
  4346. #u27599 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 0px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u27599_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u27600_img {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:93px;
  4365. height:39px;
  4366. }
  4367. #u27600 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:85px;
  4371. top:243px;
  4372. width:93px;
  4373. height:39px;
  4374. display:flex;
  4375. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:12px;
  4379. color:#606266;
  4380. }
  4381. #u27600 .text {
  4382. position:absolute;
  4383. align-self:center;
  4384. padding:2px 2px 2px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u27600_text {
  4389. border-width:0px;
  4390. word-wrap:break-word;
  4391. text-transform:none;
  4392. visibility:hidden;
  4393. }
  4394. #u27601_img {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:93px;
  4400. height:39px;
  4401. }
  4402. #u27601 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:178px;
  4406. top:243px;
  4407. width:93px;
  4408. height:39px;
  4409. display:flex;
  4410. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4411. font-weight:400;
  4412. font-style:normal;
  4413. font-size:12px;
  4414. color:#606266;
  4415. }
  4416. #u27601 .text {
  4417. position:absolute;
  4418. align-self:center;
  4419. padding:2px 2px 2px 0px;
  4420. box-sizing:border-box;
  4421. width:100%;
  4422. }
  4423. #u27601_text {
  4424. border-width:0px;
  4425. word-wrap:break-word;
  4426. text-transform:none;
  4427. visibility:hidden;
  4428. }
  4429. #u27602_img {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:0px;
  4433. top:0px;
  4434. width:93px;
  4435. height:39px;
  4436. }
  4437. #u27602 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:271px;
  4441. top:243px;
  4442. width:93px;
  4443. height:39px;
  4444. display:flex;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:10px;
  4449. color:#D9001B;
  4450. }
  4451. #u27602 .text {
  4452. position:absolute;
  4453. align-self:center;
  4454. padding:2px 2px 2px 0px;
  4455. box-sizing:border-box;
  4456. width:100%;
  4457. }
  4458. #u27602_text {
  4459. border-width:0px;
  4460. word-wrap:break-word;
  4461. text-transform:none;
  4462. }
  4463. #u27603_img {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:0px;
  4467. top:0px;
  4468. width:93px;
  4469. height:39px;
  4470. }
  4471. #u27603 {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:364px;
  4475. top:243px;
  4476. width:93px;
  4477. height:39px;
  4478. display:flex;
  4479. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4480. font-weight:400;
  4481. font-style:normal;
  4482. font-size:12px;
  4483. color:#606266;
  4484. }
  4485. #u27603 .text {
  4486. position:absolute;
  4487. align-self:center;
  4488. padding:2px 2px 2px 0px;
  4489. box-sizing:border-box;
  4490. width:100%;
  4491. }
  4492. #u27603_text {
  4493. border-width:0px;
  4494. word-wrap:break-word;
  4495. text-transform:none;
  4496. visibility:hidden;
  4497. }
  4498. #u27604_img {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:0px;
  4502. top:0px;
  4503. width:103px;
  4504. height:39px;
  4505. }
  4506. #u27604 {
  4507. border-width:0px;
  4508. position:absolute;
  4509. left:457px;
  4510. top:243px;
  4511. width:103px;
  4512. height:39px;
  4513. display:flex;
  4514. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4515. font-weight:400;
  4516. font-style:normal;
  4517. font-size:12px;
  4518. color:#606266;
  4519. }
  4520. #u27604 .text {
  4521. position:absolute;
  4522. align-self:center;
  4523. padding:2px 2px 2px 0px;
  4524. box-sizing:border-box;
  4525. width:100%;
  4526. }
  4527. #u27604_text {
  4528. border-width:0px;
  4529. word-wrap:break-word;
  4530. text-transform:none;
  4531. visibility:hidden;
  4532. }
  4533. #u27605_img {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:93px;
  4539. height:39px;
  4540. }
  4541. #u27605 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:560px;
  4545. top:243px;
  4546. width:93px;
  4547. height:39px;
  4548. display:flex;
  4549. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:12px;
  4553. color:#606266;
  4554. }
  4555. #u27605 .text {
  4556. position:absolute;
  4557. align-self:center;
  4558. padding:2px 2px 2px 0px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u27605_text {
  4563. border-width:0px;
  4564. word-wrap:break-word;
  4565. text-transform:none;
  4566. visibility:hidden;
  4567. }
  4568. #u27606_img {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:85px;
  4574. height:39px;
  4575. }
  4576. #u27606 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:653px;
  4580. top:243px;
  4581. width:85px;
  4582. height:39px;
  4583. display:flex;
  4584. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:12px;
  4588. color:#606266;
  4589. }
  4590. #u27606 .text {
  4591. position:absolute;
  4592. align-self:center;
  4593. padding:2px 2px 2px 0px;
  4594. box-sizing:border-box;
  4595. width:100%;
  4596. }
  4597. #u27606_text {
  4598. border-width:0px;
  4599. word-wrap:break-word;
  4600. text-transform:none;
  4601. visibility:hidden;
  4602. }
  4603. #u27607_img {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:114px;
  4609. height:39px;
  4610. }
  4611. #u27607 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:738px;
  4615. top:243px;
  4616. width:114px;
  4617. height:39px;
  4618. display:flex;
  4619. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4620. font-weight:400;
  4621. font-style:normal;
  4622. font-size:12px;
  4623. color:#606266;
  4624. }
  4625. #u27607 .text {
  4626. position:absolute;
  4627. align-self:center;
  4628. padding:2px 2px 2px 0px;
  4629. box-sizing:border-box;
  4630. width:100%;
  4631. }
  4632. #u27607_text {
  4633. border-width:0px;
  4634. word-wrap:break-word;
  4635. text-transform:none;
  4636. visibility:hidden;
  4637. }
  4638. #u27608_img {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:114px;
  4644. height:39px;
  4645. }
  4646. #u27608 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:852px;
  4650. top:243px;
  4651. width:114px;
  4652. height:39px;
  4653. display:flex;
  4654. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4655. font-weight:400;
  4656. font-style:normal;
  4657. font-size:12px;
  4658. color:#606266;
  4659. }
  4660. #u27608 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 2px 2px 0px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u27608_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. visibility:hidden;
  4672. }
  4673. #u27609_img {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:0px;
  4677. top:0px;
  4678. width:93px;
  4679. height:39px;
  4680. }
  4681. #u27609 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:966px;
  4685. top:243px;
  4686. width:93px;
  4687. height:39px;
  4688. display:flex;
  4689. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4690. font-weight:400;
  4691. font-style:normal;
  4692. font-size:12px;
  4693. color:#606266;
  4694. }
  4695. #u27609 .text {
  4696. position:absolute;
  4697. align-self:center;
  4698. padding:2px 2px 2px 0px;
  4699. box-sizing:border-box;
  4700. width:100%;
  4701. }
  4702. #u27609_text {
  4703. border-width:0px;
  4704. word-wrap:break-word;
  4705. text-transform:none;
  4706. visibility:hidden;
  4707. }
  4708. #u27610_img {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:0px;
  4712. top:0px;
  4713. width:163px;
  4714. height:39px;
  4715. }
  4716. #u27610 {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:1059px;
  4720. top:243px;
  4721. width:163px;
  4722. height:39px;
  4723. display:flex;
  4724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4725. font-weight:400;
  4726. font-style:normal;
  4727. font-size:12px;
  4728. color:#298FFF;
  4729. line-height:35px;
  4730. }
  4731. #u27610 .text {
  4732. position:absolute;
  4733. align-self:center;
  4734. padding:2px 2px 2px 0px;
  4735. box-sizing:border-box;
  4736. width:100%;
  4737. }
  4738. #u27610_text {
  4739. border-width:0px;
  4740. word-wrap:break-word;
  4741. text-transform:none;
  4742. }
  4743. #u27611_div {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:0px;
  4747. top:0px;
  4748. width:60px;
  4749. height:30px;
  4750. background:inherit;
  4751. background-color:rgba(255, 255, 255, 1);
  4752. box-sizing:border-box;
  4753. border-width:1px;
  4754. border-style:solid;
  4755. border-color:rgba(170, 170, 170, 1);
  4756. border-radius:4px;
  4757. -moz-box-shadow:none;
  4758. -webkit-box-shadow:none;
  4759. box-shadow:none;
  4760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4761. font-weight:400;
  4762. font-style:normal;
  4763. font-size:14px;
  4764. }
  4765. #u27611 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:490px;
  4769. top:192px;
  4770. width:60px;
  4771. height:30px;
  4772. display:flex;
  4773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4774. font-weight:400;
  4775. font-style:normal;
  4776. font-size:14px;
  4777. }
  4778. #u27611 .text {
  4779. position:absolute;
  4780. align-self:center;
  4781. padding:2px 2px 2px 2px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u27611_text {
  4786. border-width:0px;
  4787. word-wrap:break-word;
  4788. text-transform:none;
  4789. }
  4790. #u27612_div {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:60px;
  4796. height:30px;
  4797. background:inherit;
  4798. background-color:rgba(255, 255, 255, 1);
  4799. box-sizing:border-box;
  4800. border-width:1px;
  4801. border-style:solid;
  4802. border-color:rgba(170, 170, 170, 1);
  4803. border-radius:4px;
  4804. -moz-box-shadow:none;
  4805. -webkit-box-shadow:none;
  4806. box-shadow:none;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:14px;
  4811. }
  4812. #u27612 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:420px;
  4816. top:192px;
  4817. width:60px;
  4818. height:30px;
  4819. display:flex;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:14px;
  4824. }
  4825. #u27612 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 2px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u27612_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. }
  4837. #u27613 {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:0px;
  4843. height:0px;
  4844. }
  4845. #u27614_div {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:60px;
  4851. height:30px;
  4852. background:inherit;
  4853. background-color:rgba(24, 144, 255, 1);
  4854. border:none;
  4855. border-radius:4px;
  4856. -moz-box-shadow:none;
  4857. -webkit-box-shadow:none;
  4858. box-shadow:none;
  4859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4860. font-weight:400;
  4861. font-style:normal;
  4862. font-size:14px;
  4863. color:#FFFFFF;
  4864. }
  4865. #u27614 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:800px;
  4869. top:143px;
  4870. width:60px;
  4871. height:30px;
  4872. display:flex;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. color:#FFFFFF;
  4878. }
  4879. #u27614 .text {
  4880. position:absolute;
  4881. align-self:center;
  4882. padding:2px 2px 2px 2px;
  4883. box-sizing:border-box;
  4884. width:100%;
  4885. }
  4886. #u27614_text {
  4887. border-width:0px;
  4888. word-wrap:break-word;
  4889. text-transform:none;
  4890. }
  4891. #u27615_div {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:0px;
  4895. top:0px;
  4896. width:60px;
  4897. height:30px;
  4898. background:inherit;
  4899. background-color:rgba(255, 255, 255, 1);
  4900. box-sizing:border-box;
  4901. border-width:1px;
  4902. border-style:solid;
  4903. border-color:rgba(170, 170, 170, 1);
  4904. border-radius:4px;
  4905. -moz-box-shadow:none;
  4906. -webkit-box-shadow:none;
  4907. box-shadow:none;
  4908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:14px;
  4912. }
  4913. #u27615 {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:870px;
  4917. top:143px;
  4918. width:60px;
  4919. height:30px;
  4920. display:flex;
  4921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4922. font-weight:400;
  4923. font-style:normal;
  4924. font-size:14px;
  4925. }
  4926. #u27615 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:2px 2px 2px 2px;
  4930. box-sizing:border-box;
  4931. width:100%;
  4932. }
  4933. #u27615_text {
  4934. border-width:0px;
  4935. word-wrap:break-word;
  4936. text-transform:none;
  4937. }
  4938. #u27616 {
  4939. border-width:0px;
  4940. position:absolute;
  4941. left:0px;
  4942. top:0px;
  4943. width:0px;
  4944. height:0px;
  4945. }
  4946. #u27617_div {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:140px;
  4952. height:30px;
  4953. background:inherit;
  4954. background-color:rgba(255, 255, 255, 1);
  4955. box-sizing:border-box;
  4956. border-width:1px;
  4957. border-style:solid;
  4958. border-color:rgba(215, 215, 215, 1);
  4959. border-radius:4px;
  4960. -moz-box-shadow:none;
  4961. -webkit-box-shadow:none;
  4962. box-shadow:none;
  4963. font-size:12px;
  4964. }
  4965. #u27617 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:350px;
  4969. top:103px;
  4970. width:140px;
  4971. height:30px;
  4972. display:flex;
  4973. font-size:12px;
  4974. }
  4975. #u27617 .text {
  4976. position:absolute;
  4977. align-self:center;
  4978. padding:2px 2px 2px 2px;
  4979. box-sizing:border-box;
  4980. width:100%;
  4981. }
  4982. #u27617_text {
  4983. border-width:0px;
  4984. word-wrap:break-word;
  4985. text-transform:none;
  4986. visibility:hidden;
  4987. }
  4988. #u27618_input {
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:134px;
  4993. height:23px;
  4994. padding:2px 2px 2px 2px;
  4995. font-family:'ArialMT', 'Arial', sans-serif;
  4996. font-weight:400;
  4997. font-style:normal;
  4998. font-size:12px;
  4999. letter-spacing:normal;
  5000. color:#AAAAAA;
  5001. vertical-align:none;
  5002. text-align:left;
  5003. text-transform:none;
  5004. background-color:transparent;
  5005. border-color:transparent;
  5006. }
  5007. #u27618_input.disabled {
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:134px;
  5012. height:23px;
  5013. padding:2px 2px 2px 2px;
  5014. font-family:'ArialMT', 'Arial', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:12px;
  5018. letter-spacing:normal;
  5019. color:#AAAAAA;
  5020. vertical-align:none;
  5021. text-align:left;
  5022. text-transform:none;
  5023. background-color:transparent;
  5024. border-color:transparent;
  5025. }
  5026. #u27618_div {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:134px;
  5032. height:23px;
  5033. background:inherit;
  5034. background-color:rgba(255, 255, 255, 1);
  5035. border:none;
  5036. border-radius:0px;
  5037. -moz-box-shadow:none;
  5038. -webkit-box-shadow:none;
  5039. box-shadow:none;
  5040. font-size:12px;
  5041. color:#AAAAAA;
  5042. }
  5043. #u27618 {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:354px;
  5047. top:105px;
  5048. width:134px;
  5049. height:23px;
  5050. display:flex;
  5051. font-size:12px;
  5052. color:#AAAAAA;
  5053. }
  5054. #u27618 .text {
  5055. position:absolute;
  5056. align-self:flex-start;
  5057. padding:2px 2px 2px 2px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u27618_div.disabled {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:134px;
  5067. height:23px;
  5068. background:inherit;
  5069. background-color:rgba(240, 240, 240, 1);
  5070. border:none;
  5071. border-radius:0px;
  5072. -moz-box-shadow:none;
  5073. -webkit-box-shadow:none;
  5074. box-shadow:none;
  5075. font-size:12px;
  5076. color:#AAAAAA;
  5077. }
  5078. #u27618.disabled {
  5079. }
  5080. .u27618_input_option {
  5081. font-size:12px;
  5082. }
  5083. #u27619 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:0px;
  5087. top:0px;
  5088. width:0px;
  5089. height:0px;
  5090. }
  5091. #u27620_div {
  5092. border-width:0px;
  5093. position:absolute;
  5094. left:0px;
  5095. top:0px;
  5096. width:140px;
  5097. height:30px;
  5098. background:inherit;
  5099. background-color:rgba(255, 255, 255, 1);
  5100. box-sizing:border-box;
  5101. border-width:1px;
  5102. border-style:solid;
  5103. border-color:rgba(215, 215, 215, 1);
  5104. border-radius:4px;
  5105. -moz-box-shadow:none;
  5106. -webkit-box-shadow:none;
  5107. box-shadow:none;
  5108. font-size:12px;
  5109. }
  5110. #u27620 {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:500px;
  5114. top:103px;
  5115. width:140px;
  5116. height:30px;
  5117. display:flex;
  5118. font-size:12px;
  5119. }
  5120. #u27620 .text {
  5121. position:absolute;
  5122. align-self:center;
  5123. padding:2px 2px 2px 2px;
  5124. box-sizing:border-box;
  5125. width:100%;
  5126. }
  5127. #u27620_text {
  5128. border-width:0px;
  5129. word-wrap:break-word;
  5130. text-transform:none;
  5131. visibility:hidden;
  5132. }
  5133. #u27621_input {
  5134. position:absolute;
  5135. left:0px;
  5136. top:0px;
  5137. width:134px;
  5138. height:23px;
  5139. padding:2px 2px 2px 2px;
  5140. font-family:'ArialMT', 'Arial', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:12px;
  5144. letter-spacing:normal;
  5145. color:#AAAAAA;
  5146. vertical-align:none;
  5147. text-align:left;
  5148. text-transform:none;
  5149. background-color:transparent;
  5150. border-color:transparent;
  5151. }
  5152. #u27621_input.disabled {
  5153. position:absolute;
  5154. left:0px;
  5155. top:0px;
  5156. width:134px;
  5157. height:23px;
  5158. padding:2px 2px 2px 2px;
  5159. font-family:'ArialMT', 'Arial', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:12px;
  5163. letter-spacing:normal;
  5164. color:#AAAAAA;
  5165. vertical-align:none;
  5166. text-align:left;
  5167. text-transform:none;
  5168. background-color:transparent;
  5169. border-color:transparent;
  5170. }
  5171. #u27621_div {
  5172. border-width:0px;
  5173. position:absolute;
  5174. left:0px;
  5175. top:0px;
  5176. width:134px;
  5177. height:23px;
  5178. background:inherit;
  5179. background-color:rgba(255, 255, 255, 1);
  5180. border:none;
  5181. border-radius:0px;
  5182. -moz-box-shadow:none;
  5183. -webkit-box-shadow:none;
  5184. box-shadow:none;
  5185. font-size:12px;
  5186. color:#AAAAAA;
  5187. }
  5188. #u27621 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:504px;
  5192. top:105px;
  5193. width:134px;
  5194. height:23px;
  5195. display:flex;
  5196. font-size:12px;
  5197. color:#AAAAAA;
  5198. }
  5199. #u27621 .text {
  5200. position:absolute;
  5201. align-self:flex-start;
  5202. padding:2px 2px 2px 2px;
  5203. box-sizing:border-box;
  5204. width:100%;
  5205. }
  5206. #u27621_div.disabled {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:134px;
  5212. height:23px;
  5213. background:inherit;
  5214. background-color:rgba(240, 240, 240, 1);
  5215. border:none;
  5216. border-radius:0px;
  5217. -moz-box-shadow:none;
  5218. -webkit-box-shadow:none;
  5219. box-shadow:none;
  5220. font-size:12px;
  5221. color:#AAAAAA;
  5222. }
  5223. #u27621.disabled {
  5224. }
  5225. .u27621_input_option {
  5226. font-size:12px;
  5227. }
  5228. #u27622 {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:0px;
  5234. height:0px;
  5235. }
  5236. #u27623_div {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:0px;
  5240. top:0px;
  5241. width:140px;
  5242. height:30px;
  5243. background:inherit;
  5244. background-color:rgba(255, 255, 255, 1);
  5245. box-sizing:border-box;
  5246. border-width:1px;
  5247. border-style:solid;
  5248. border-color:rgba(215, 215, 215, 1);
  5249. border-radius:4px;
  5250. -moz-box-shadow:none;
  5251. -webkit-box-shadow:none;
  5252. box-shadow:none;
  5253. font-size:12px;
  5254. }
  5255. #u27623 {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:650px;
  5259. top:103px;
  5260. width:140px;
  5261. height:30px;
  5262. display:flex;
  5263. font-size:12px;
  5264. }
  5265. #u27623 .text {
  5266. position:absolute;
  5267. align-self:center;
  5268. padding:2px 2px 2px 2px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u27623_text {
  5273. border-width:0px;
  5274. word-wrap:break-word;
  5275. text-transform:none;
  5276. visibility:hidden;
  5277. }
  5278. #u27624_input {
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:134px;
  5283. height:23px;
  5284. padding:2px 2px 2px 2px;
  5285. font-family:'ArialMT', 'Arial', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:12px;
  5289. letter-spacing:normal;
  5290. color:#AAAAAA;
  5291. vertical-align:none;
  5292. text-align:left;
  5293. text-transform:none;
  5294. background-color:transparent;
  5295. border-color:transparent;
  5296. }
  5297. #u27624_input.disabled {
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:134px;
  5302. height:23px;
  5303. padding:2px 2px 2px 2px;
  5304. font-family:'ArialMT', 'Arial', sans-serif;
  5305. font-weight:400;
  5306. font-style:normal;
  5307. font-size:12px;
  5308. letter-spacing:normal;
  5309. color:#AAAAAA;
  5310. vertical-align:none;
  5311. text-align:left;
  5312. text-transform:none;
  5313. background-color:transparent;
  5314. border-color:transparent;
  5315. }
  5316. #u27624_div {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:134px;
  5322. height:23px;
  5323. background:inherit;
  5324. background-color:rgba(255, 255, 255, 1);
  5325. border:none;
  5326. border-radius:0px;
  5327. -moz-box-shadow:none;
  5328. -webkit-box-shadow:none;
  5329. box-shadow:none;
  5330. font-size:12px;
  5331. color:#AAAAAA;
  5332. }
  5333. #u27624 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:654px;
  5337. top:105px;
  5338. width:134px;
  5339. height:23px;
  5340. display:flex;
  5341. font-size:12px;
  5342. color:#AAAAAA;
  5343. }
  5344. #u27624 .text {
  5345. position:absolute;
  5346. align-self:flex-start;
  5347. padding:2px 2px 2px 2px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u27624_div.disabled {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:134px;
  5357. height:23px;
  5358. background:inherit;
  5359. background-color:rgba(240, 240, 240, 1);
  5360. border:none;
  5361. border-radius:0px;
  5362. -moz-box-shadow:none;
  5363. -webkit-box-shadow:none;
  5364. box-shadow:none;
  5365. font-size:12px;
  5366. color:#AAAAAA;
  5367. }
  5368. #u27624.disabled {
  5369. }
  5370. .u27624_input_option {
  5371. font-size:12px;
  5372. }
  5373. #u27625 {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:0px;
  5377. top:0px;
  5378. width:0px;
  5379. height:0px;
  5380. }
  5381. #u27626_div {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:140px;
  5387. height:30px;
  5388. background:inherit;
  5389. background-color:rgba(255, 255, 255, 1);
  5390. box-sizing:border-box;
  5391. border-width:1px;
  5392. border-style:solid;
  5393. border-color:rgba(215, 215, 215, 1);
  5394. border-radius:4px;
  5395. -moz-box-shadow:none;
  5396. -webkit-box-shadow:none;
  5397. box-shadow:none;
  5398. font-size:12px;
  5399. }
  5400. #u27626 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:800px;
  5404. top:103px;
  5405. width:140px;
  5406. height:30px;
  5407. display:flex;
  5408. font-size:12px;
  5409. }
  5410. #u27626 .text {
  5411. position:absolute;
  5412. align-self:center;
  5413. padding:2px 2px 2px 2px;
  5414. box-sizing:border-box;
  5415. width:100%;
  5416. }
  5417. #u27626_text {
  5418. border-width:0px;
  5419. word-wrap:break-word;
  5420. text-transform:none;
  5421. visibility:hidden;
  5422. }
  5423. #u27627_input {
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:134px;
  5428. height:23px;
  5429. padding:2px 2px 2px 2px;
  5430. font-family:'ArialMT', 'Arial', sans-serif;
  5431. font-weight:400;
  5432. font-style:normal;
  5433. font-size:12px;
  5434. letter-spacing:normal;
  5435. color:#AAAAAA;
  5436. vertical-align:none;
  5437. text-align:left;
  5438. text-transform:none;
  5439. background-color:transparent;
  5440. border-color:transparent;
  5441. }
  5442. #u27627_input.disabled {
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:134px;
  5447. height:23px;
  5448. padding:2px 2px 2px 2px;
  5449. font-family:'ArialMT', 'Arial', sans-serif;
  5450. font-weight:400;
  5451. font-style:normal;
  5452. font-size:12px;
  5453. letter-spacing:normal;
  5454. color:#AAAAAA;
  5455. vertical-align:none;
  5456. text-align:left;
  5457. text-transform:none;
  5458. background-color:transparent;
  5459. border-color:transparent;
  5460. }
  5461. #u27627_div {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:0px;
  5465. top:0px;
  5466. width:134px;
  5467. height:23px;
  5468. background:inherit;
  5469. background-color:rgba(255, 255, 255, 1);
  5470. border:none;
  5471. border-radius:0px;
  5472. -moz-box-shadow:none;
  5473. -webkit-box-shadow:none;
  5474. box-shadow:none;
  5475. font-size:12px;
  5476. color:#AAAAAA;
  5477. }
  5478. #u27627 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:804px;
  5482. top:105px;
  5483. width:134px;
  5484. height:23px;
  5485. display:flex;
  5486. font-size:12px;
  5487. color:#AAAAAA;
  5488. }
  5489. #u27627 .text {
  5490. position:absolute;
  5491. align-self:flex-start;
  5492. padding:2px 2px 2px 2px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u27627_div.disabled {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:134px;
  5502. height:23px;
  5503. background:inherit;
  5504. background-color:rgba(240, 240, 240, 1);
  5505. border:none;
  5506. border-radius:0px;
  5507. -moz-box-shadow:none;
  5508. -webkit-box-shadow:none;
  5509. box-shadow:none;
  5510. font-size:12px;
  5511. color:#AAAAAA;
  5512. }
  5513. #u27627.disabled {
  5514. }
  5515. .u27627_input_option {
  5516. font-size:12px;
  5517. }
  5518. #u27628 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:0px;
  5522. top:0px;
  5523. width:0px;
  5524. height:0px;
  5525. }
  5526. #u27629_div {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:140px;
  5532. height:30px;
  5533. background:inherit;
  5534. background-color:rgba(255, 255, 255, 1);
  5535. box-sizing:border-box;
  5536. border-width:1px;
  5537. border-style:solid;
  5538. border-color:rgba(215, 215, 215, 1);
  5539. border-radius:4px;
  5540. -moz-box-shadow:none;
  5541. -webkit-box-shadow:none;
  5542. box-shadow:none;
  5543. font-size:12px;
  5544. }
  5545. #u27629 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:950px;
  5549. top:103px;
  5550. width:140px;
  5551. height:30px;
  5552. display:flex;
  5553. font-size:12px;
  5554. }
  5555. #u27629 .text {
  5556. position:absolute;
  5557. align-self:center;
  5558. padding:2px 2px 2px 2px;
  5559. box-sizing:border-box;
  5560. width:100%;
  5561. }
  5562. #u27629_text {
  5563. border-width:0px;
  5564. word-wrap:break-word;
  5565. text-transform:none;
  5566. visibility:hidden;
  5567. }
  5568. #u27630_input {
  5569. position:absolute;
  5570. left:0px;
  5571. top:0px;
  5572. width:134px;
  5573. height:23px;
  5574. padding:2px 2px 2px 2px;
  5575. font-family:'ArialMT', 'Arial', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:12px;
  5579. letter-spacing:normal;
  5580. color:#AAAAAA;
  5581. vertical-align:none;
  5582. text-align:left;
  5583. text-transform:none;
  5584. background-color:transparent;
  5585. border-color:transparent;
  5586. }
  5587. #u27630_input.disabled {
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:134px;
  5592. height:23px;
  5593. padding:2px 2px 2px 2px;
  5594. font-family:'ArialMT', 'Arial', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:12px;
  5598. letter-spacing:normal;
  5599. color:#AAAAAA;
  5600. vertical-align:none;
  5601. text-align:left;
  5602. text-transform:none;
  5603. background-color:transparent;
  5604. border-color:transparent;
  5605. }
  5606. #u27630_div {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:134px;
  5612. height:23px;
  5613. background:inherit;
  5614. background-color:rgba(255, 255, 255, 1);
  5615. border:none;
  5616. border-radius:0px;
  5617. -moz-box-shadow:none;
  5618. -webkit-box-shadow:none;
  5619. box-shadow:none;
  5620. font-size:12px;
  5621. color:#AAAAAA;
  5622. }
  5623. #u27630 {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:954px;
  5627. top:105px;
  5628. width:134px;
  5629. height:23px;
  5630. display:flex;
  5631. font-size:12px;
  5632. color:#AAAAAA;
  5633. }
  5634. #u27630 .text {
  5635. position:absolute;
  5636. align-self:flex-start;
  5637. padding:2px 2px 2px 2px;
  5638. box-sizing:border-box;
  5639. width:100%;
  5640. }
  5641. #u27630_div.disabled {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:134px;
  5647. height:23px;
  5648. background:inherit;
  5649. background-color:rgba(240, 240, 240, 1);
  5650. border:none;
  5651. border-radius:0px;
  5652. -moz-box-shadow:none;
  5653. -webkit-box-shadow:none;
  5654. box-shadow:none;
  5655. font-size:12px;
  5656. color:#AAAAAA;
  5657. }
  5658. #u27630.disabled {
  5659. }
  5660. .u27630_input_option {
  5661. font-size:12px;
  5662. }
  5663. #u27631 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:0px;
  5669. height:0px;
  5670. }
  5671. #u27632_div {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:140px;
  5677. height:30px;
  5678. background:inherit;
  5679. background-color:rgba(255, 255, 255, 1);
  5680. box-sizing:border-box;
  5681. border-width:1px;
  5682. border-style:solid;
  5683. border-color:rgba(201, 201, 201, 1);
  5684. border-radius:4px;
  5685. -moz-box-shadow:none;
  5686. -webkit-box-shadow:none;
  5687. box-shadow:none;
  5688. font-family:'Microsoft YaHei', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:14px;
  5692. color:#CCCCCC;
  5693. text-align:left;
  5694. }
  5695. #u27632 {
  5696. border-width:0px;
  5697. position:absolute;
  5698. left:1400px;
  5699. top:103px;
  5700. width:140px;
  5701. height:30px;
  5702. display:flex;
  5703. font-family:'Microsoft YaHei', sans-serif;
  5704. font-weight:400;
  5705. font-style:normal;
  5706. font-size:14px;
  5707. color:#CCCCCC;
  5708. text-align:left;
  5709. }
  5710. #u27632 .text {
  5711. position:absolute;
  5712. align-self:center;
  5713. padding:2px 8px 2px 8px;
  5714. box-sizing:border-box;
  5715. width:100%;
  5716. }
  5717. #u27632_text {
  5718. border-width:0px;
  5719. word-wrap:break-word;
  5720. text-transform:none;
  5721. visibility:hidden;
  5722. }
  5723. #u27633_input {
  5724. position:absolute;
  5725. left:0px;
  5726. top:0px;
  5727. width:127px;
  5728. height:25px;
  5729. padding:2px 2px 2px 2px;
  5730. font-family:'Microsoft YaHei', sans-serif;
  5731. font-weight:400;
  5732. font-style:normal;
  5733. font-size:10px;
  5734. letter-spacing:normal;
  5735. color:#000000;
  5736. vertical-align:none;
  5737. text-align:left;
  5738. text-transform:none;
  5739. background-color:transparent;
  5740. border-color:transparent;
  5741. }
  5742. #u27633_input.disabled {
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:127px;
  5747. height:25px;
  5748. padding:2px 2px 2px 2px;
  5749. font-family:'Microsoft YaHei', sans-serif;
  5750. font-weight:400;
  5751. font-style:normal;
  5752. font-size:10px;
  5753. letter-spacing:normal;
  5754. color:#000000;
  5755. vertical-align:none;
  5756. text-align:left;
  5757. text-transform:none;
  5758. background-color:transparent;
  5759. border-color:transparent;
  5760. }
  5761. #u27633_div {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:127px;
  5767. height:25px;
  5768. background:inherit;
  5769. background-color:rgba(255, 255, 255, 1);
  5770. border:none;
  5771. border-radius:0px;
  5772. -moz-box-shadow:none;
  5773. -webkit-box-shadow:none;
  5774. box-shadow:none;
  5775. font-family:'Microsoft YaHei', sans-serif;
  5776. font-weight:400;
  5777. font-style:normal;
  5778. font-size:10px;
  5779. }
  5780. #u27633 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:1408px;
  5784. top:104px;
  5785. width:127px;
  5786. height:25px;
  5787. display:flex;
  5788. font-family:'Microsoft YaHei', sans-serif;
  5789. font-weight:400;
  5790. font-style:normal;
  5791. font-size:10px;
  5792. }
  5793. #u27633 .text {
  5794. position:absolute;
  5795. align-self:center;
  5796. padding:2px 2px 2px 2px;
  5797. box-sizing:border-box;
  5798. width:100%;
  5799. }
  5800. #u27633_div.disabled {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:0px;
  5804. top:0px;
  5805. width:127px;
  5806. height:25px;
  5807. background:inherit;
  5808. background-color:rgba(240, 240, 240, 1);
  5809. border:none;
  5810. border-radius:0px;
  5811. -moz-box-shadow:none;
  5812. -webkit-box-shadow:none;
  5813. box-shadow:none;
  5814. font-family:'Microsoft YaHei', sans-serif;
  5815. font-weight:400;
  5816. font-style:normal;
  5817. font-size:10px;
  5818. }
  5819. #u27633.disabled {
  5820. }
  5821. #u27634 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:0px;
  5827. height:0px;
  5828. }
  5829. #u27635_div {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:0px;
  5833. top:0px;
  5834. width:140px;
  5835. height:30px;
  5836. background:inherit;
  5837. background-color:rgba(255, 255, 255, 1);
  5838. box-sizing:border-box;
  5839. border-width:1px;
  5840. border-style:solid;
  5841. border-color:rgba(201, 201, 201, 1);
  5842. border-radius:4px;
  5843. -moz-box-shadow:none;
  5844. -webkit-box-shadow:none;
  5845. box-shadow:none;
  5846. font-family:'Microsoft YaHei', sans-serif;
  5847. font-weight:400;
  5848. font-style:normal;
  5849. font-size:14px;
  5850. color:#CCCCCC;
  5851. text-align:left;
  5852. }
  5853. #u27635 {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:1100px;
  5857. top:103px;
  5858. width:140px;
  5859. height:30px;
  5860. display:flex;
  5861. font-family:'Microsoft YaHei', sans-serif;
  5862. font-weight:400;
  5863. font-style:normal;
  5864. font-size:14px;
  5865. color:#CCCCCC;
  5866. text-align:left;
  5867. }
  5868. #u27635 .text {
  5869. position:absolute;
  5870. align-self:center;
  5871. padding:2px 8px 2px 8px;
  5872. box-sizing:border-box;
  5873. width:100%;
  5874. }
  5875. #u27635_text {
  5876. border-width:0px;
  5877. word-wrap:break-word;
  5878. text-transform:none;
  5879. visibility:hidden;
  5880. }
  5881. #u27636_input {
  5882. position:absolute;
  5883. left:0px;
  5884. top:0px;
  5885. width:127px;
  5886. height:25px;
  5887. padding:2px 2px 2px 2px;
  5888. font-family:'Microsoft YaHei', sans-serif;
  5889. font-weight:400;
  5890. font-style:normal;
  5891. font-size:10px;
  5892. letter-spacing:normal;
  5893. color:#000000;
  5894. vertical-align:none;
  5895. text-align:left;
  5896. text-transform:none;
  5897. background-color:transparent;
  5898. border-color:transparent;
  5899. }
  5900. #u27636_input.disabled {
  5901. position:absolute;
  5902. left:0px;
  5903. top:0px;
  5904. width:127px;
  5905. height:25px;
  5906. padding:2px 2px 2px 2px;
  5907. font-family:'Microsoft YaHei', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:10px;
  5911. letter-spacing:normal;
  5912. color:#000000;
  5913. vertical-align:none;
  5914. text-align:left;
  5915. text-transform:none;
  5916. background-color:transparent;
  5917. border-color:transparent;
  5918. }
  5919. #u27636_div {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:0px;
  5923. top:0px;
  5924. width:127px;
  5925. height:25px;
  5926. background:inherit;
  5927. background-color:rgba(255, 255, 255, 1);
  5928. border:none;
  5929. border-radius:0px;
  5930. -moz-box-shadow:none;
  5931. -webkit-box-shadow:none;
  5932. box-shadow:none;
  5933. font-family:'Microsoft YaHei', sans-serif;
  5934. font-weight:400;
  5935. font-style:normal;
  5936. font-size:10px;
  5937. }
  5938. #u27636 {
  5939. border-width:0px;
  5940. position:absolute;
  5941. left:1108px;
  5942. top:104px;
  5943. width:127px;
  5944. height:25px;
  5945. display:flex;
  5946. font-family:'Microsoft YaHei', sans-serif;
  5947. font-weight:400;
  5948. font-style:normal;
  5949. font-size:10px;
  5950. }
  5951. #u27636 .text {
  5952. position:absolute;
  5953. align-self:center;
  5954. padding:2px 2px 2px 2px;
  5955. box-sizing:border-box;
  5956. width:100%;
  5957. }
  5958. #u27636_div.disabled {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:127px;
  5964. height:25px;
  5965. background:inherit;
  5966. background-color:rgba(240, 240, 240, 1);
  5967. border:none;
  5968. border-radius:0px;
  5969. -moz-box-shadow:none;
  5970. -webkit-box-shadow:none;
  5971. box-shadow:none;
  5972. font-family:'Microsoft YaHei', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:10px;
  5976. }
  5977. #u27636.disabled {
  5978. }
  5979. #u27637 {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:0px;
  5985. height:0px;
  5986. }
  5987. #u27638_div {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:0px;
  5991. top:0px;
  5992. width:140px;
  5993. height:30px;
  5994. background:inherit;
  5995. background-color:rgba(255, 255, 255, 1);
  5996. box-sizing:border-box;
  5997. border-width:1px;
  5998. border-style:solid;
  5999. border-color:rgba(201, 201, 201, 1);
  6000. border-radius:4px;
  6001. -moz-box-shadow:none;
  6002. -webkit-box-shadow:none;
  6003. box-shadow:none;
  6004. font-family:'Microsoft YaHei', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. font-size:14px;
  6008. color:#CCCCCC;
  6009. text-align:left;
  6010. }
  6011. #u27638 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:1250px;
  6015. top:103px;
  6016. width:140px;
  6017. height:30px;
  6018. display:flex;
  6019. font-family:'Microsoft YaHei', sans-serif;
  6020. font-weight:400;
  6021. font-style:normal;
  6022. font-size:14px;
  6023. color:#CCCCCC;
  6024. text-align:left;
  6025. }
  6026. #u27638 .text {
  6027. position:absolute;
  6028. align-self:center;
  6029. padding:2px 8px 2px 8px;
  6030. box-sizing:border-box;
  6031. width:100%;
  6032. }
  6033. #u27638_text {
  6034. border-width:0px;
  6035. word-wrap:break-word;
  6036. text-transform:none;
  6037. visibility:hidden;
  6038. }
  6039. #u27639_input {
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:127px;
  6044. height:25px;
  6045. padding:2px 2px 2px 2px;
  6046. font-family:'Microsoft YaHei', sans-serif;
  6047. font-weight:400;
  6048. font-style:normal;
  6049. font-size:10px;
  6050. letter-spacing:normal;
  6051. color:#000000;
  6052. vertical-align:none;
  6053. text-align:left;
  6054. text-transform:none;
  6055. background-color:transparent;
  6056. border-color:transparent;
  6057. }
  6058. #u27639_input.disabled {
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:127px;
  6063. height:25px;
  6064. padding:2px 2px 2px 2px;
  6065. font-family:'Microsoft YaHei', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:10px;
  6069. letter-spacing:normal;
  6070. color:#000000;
  6071. vertical-align:none;
  6072. text-align:left;
  6073. text-transform:none;
  6074. background-color:transparent;
  6075. border-color:transparent;
  6076. }
  6077. #u27639_div {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:0px;
  6081. top:0px;
  6082. width:127px;
  6083. height:25px;
  6084. background:inherit;
  6085. background-color:rgba(255, 255, 255, 1);
  6086. border:none;
  6087. border-radius:0px;
  6088. -moz-box-shadow:none;
  6089. -webkit-box-shadow:none;
  6090. box-shadow:none;
  6091. font-family:'Microsoft YaHei', sans-serif;
  6092. font-weight:400;
  6093. font-style:normal;
  6094. font-size:10px;
  6095. }
  6096. #u27639 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:1258px;
  6100. top:104px;
  6101. width:127px;
  6102. height:25px;
  6103. display:flex;
  6104. font-family:'Microsoft YaHei', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:10px;
  6108. }
  6109. #u27639 .text {
  6110. position:absolute;
  6111. align-self:center;
  6112. padding:2px 2px 2px 2px;
  6113. box-sizing:border-box;
  6114. width:100%;
  6115. }
  6116. #u27639_div.disabled {
  6117. border-width:0px;
  6118. position:absolute;
  6119. left:0px;
  6120. top:0px;
  6121. width:127px;
  6122. height:25px;
  6123. background:inherit;
  6124. background-color:rgba(240, 240, 240, 1);
  6125. border:none;
  6126. border-radius:0px;
  6127. -moz-box-shadow:none;
  6128. -webkit-box-shadow:none;
  6129. box-shadow:none;
  6130. font-family:'Microsoft YaHei', sans-serif;
  6131. font-weight:400;
  6132. font-style:normal;
  6133. font-size:10px;
  6134. }
  6135. #u27639.disabled {
  6136. }
  6137. #u27640 {
  6138. border-width:0px;
  6139. position:absolute;
  6140. left:0px;
  6141. top:0px;
  6142. width:0px;
  6143. height:0px;
  6144. }
  6145. #u27641_div {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:140px;
  6151. height:30px;
  6152. background:inherit;
  6153. background-color:rgba(255, 255, 255, 1);
  6154. box-sizing:border-box;
  6155. border-width:1px;
  6156. border-style:solid;
  6157. border-color:rgba(201, 201, 201, 1);
  6158. border-radius:4px;
  6159. -moz-box-shadow:none;
  6160. -webkit-box-shadow:none;
  6161. box-shadow:none;
  6162. font-family:'Microsoft YaHei', sans-serif;
  6163. font-weight:400;
  6164. font-style:normal;
  6165. font-size:14px;
  6166. color:#CCCCCC;
  6167. text-align:left;
  6168. }
  6169. #u27641 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:350px;
  6173. top:143px;
  6174. width:140px;
  6175. height:30px;
  6176. display:flex;
  6177. font-family:'Microsoft YaHei', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:14px;
  6181. color:#CCCCCC;
  6182. text-align:left;
  6183. }
  6184. #u27641 .text {
  6185. position:absolute;
  6186. align-self:center;
  6187. padding:2px 8px 2px 8px;
  6188. box-sizing:border-box;
  6189. width:100%;
  6190. }
  6191. #u27641_text {
  6192. border-width:0px;
  6193. word-wrap:break-word;
  6194. text-transform:none;
  6195. visibility:hidden;
  6196. }
  6197. #u27642_input {
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:127px;
  6202. height:25px;
  6203. padding:2px 2px 2px 2px;
  6204. font-family:'Microsoft YaHei', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:10px;
  6208. letter-spacing:normal;
  6209. color:#000000;
  6210. vertical-align:none;
  6211. text-align:left;
  6212. text-transform:none;
  6213. background-color:transparent;
  6214. border-color:transparent;
  6215. }
  6216. #u27642_input.disabled {
  6217. position:absolute;
  6218. left:0px;
  6219. top:0px;
  6220. width:127px;
  6221. height:25px;
  6222. padding:2px 2px 2px 2px;
  6223. font-family:'Microsoft YaHei', sans-serif;
  6224. font-weight:400;
  6225. font-style:normal;
  6226. font-size:10px;
  6227. letter-spacing:normal;
  6228. color:#000000;
  6229. vertical-align:none;
  6230. text-align:left;
  6231. text-transform:none;
  6232. background-color:transparent;
  6233. border-color:transparent;
  6234. }
  6235. #u27642_div {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:127px;
  6241. height:25px;
  6242. background:inherit;
  6243. background-color:rgba(255, 255, 255, 1);
  6244. border:none;
  6245. border-radius:0px;
  6246. -moz-box-shadow:none;
  6247. -webkit-box-shadow:none;
  6248. box-shadow:none;
  6249. font-family:'Microsoft YaHei', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:10px;
  6253. }
  6254. #u27642 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:358px;
  6258. top:144px;
  6259. width:127px;
  6260. height:25px;
  6261. display:flex;
  6262. font-family:'Microsoft YaHei', sans-serif;
  6263. font-weight:400;
  6264. font-style:normal;
  6265. font-size:10px;
  6266. }
  6267. #u27642 .text {
  6268. position:absolute;
  6269. align-self:center;
  6270. padding:2px 2px 2px 2px;
  6271. box-sizing:border-box;
  6272. width:100%;
  6273. }
  6274. #u27642_div.disabled {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:0px;
  6278. top:0px;
  6279. width:127px;
  6280. height:25px;
  6281. background:inherit;
  6282. background-color:rgba(240, 240, 240, 1);
  6283. border:none;
  6284. border-radius:0px;
  6285. -moz-box-shadow:none;
  6286. -webkit-box-shadow:none;
  6287. box-shadow:none;
  6288. font-family:'Microsoft YaHei', sans-serif;
  6289. font-weight:400;
  6290. font-style:normal;
  6291. font-size:10px;
  6292. }
  6293. #u27642.disabled {
  6294. }
  6295. #u27643 {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:0px;
  6301. height:0px;
  6302. }
  6303. #u27644_div {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:140px;
  6309. height:30px;
  6310. background:inherit;
  6311. background-color:rgba(255, 255, 255, 1);
  6312. box-sizing:border-box;
  6313. border-width:1px;
  6314. border-style:solid;
  6315. border-color:rgba(215, 215, 215, 1);
  6316. border-radius:4px;
  6317. -moz-box-shadow:none;
  6318. -webkit-box-shadow:none;
  6319. box-shadow:none;
  6320. font-size:12px;
  6321. }
  6322. #u27644 {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:500px;
  6326. top:143px;
  6327. width:140px;
  6328. height:30px;
  6329. display:flex;
  6330. font-size:12px;
  6331. }
  6332. #u27644 .text {
  6333. position:absolute;
  6334. align-self:center;
  6335. padding:2px 2px 2px 2px;
  6336. box-sizing:border-box;
  6337. width:100%;
  6338. }
  6339. #u27644_text {
  6340. border-width:0px;
  6341. word-wrap:break-word;
  6342. text-transform:none;
  6343. visibility:hidden;
  6344. }
  6345. #u27645_input {
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:134px;
  6350. height:23px;
  6351. padding:2px 2px 2px 2px;
  6352. font-family:'ArialMT', 'Arial', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:12px;
  6356. letter-spacing:normal;
  6357. color:#AAAAAA;
  6358. vertical-align:none;
  6359. text-align:left;
  6360. text-transform:none;
  6361. background-color:transparent;
  6362. border-color:transparent;
  6363. }
  6364. #u27645_input.disabled {
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:134px;
  6369. height:23px;
  6370. padding:2px 2px 2px 2px;
  6371. font-family:'ArialMT', 'Arial', sans-serif;
  6372. font-weight:400;
  6373. font-style:normal;
  6374. font-size:12px;
  6375. letter-spacing:normal;
  6376. color:#AAAAAA;
  6377. vertical-align:none;
  6378. text-align:left;
  6379. text-transform:none;
  6380. background-color:transparent;
  6381. border-color:transparent;
  6382. }
  6383. #u27645_div {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:0px;
  6387. top:0px;
  6388. width:134px;
  6389. height:23px;
  6390. background:inherit;
  6391. background-color:rgba(255, 255, 255, 1);
  6392. border:none;
  6393. border-radius:0px;
  6394. -moz-box-shadow:none;
  6395. -webkit-box-shadow:none;
  6396. box-shadow:none;
  6397. font-size:12px;
  6398. color:#AAAAAA;
  6399. }
  6400. #u27645 {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:504px;
  6404. top:145px;
  6405. width:134px;
  6406. height:23px;
  6407. display:flex;
  6408. font-size:12px;
  6409. color:#AAAAAA;
  6410. }
  6411. #u27645 .text {
  6412. position:absolute;
  6413. align-self:flex-start;
  6414. padding:2px 2px 2px 2px;
  6415. box-sizing:border-box;
  6416. width:100%;
  6417. }
  6418. #u27645_div.disabled {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:0px;
  6422. top:0px;
  6423. width:134px;
  6424. height:23px;
  6425. background:inherit;
  6426. background-color:rgba(240, 240, 240, 1);
  6427. border:none;
  6428. border-radius:0px;
  6429. -moz-box-shadow:none;
  6430. -webkit-box-shadow:none;
  6431. box-shadow:none;
  6432. font-size:12px;
  6433. color:#AAAAAA;
  6434. }
  6435. #u27645.disabled {
  6436. }
  6437. .u27645_input_option {
  6438. font-size:12px;
  6439. }
  6440. #u27646 {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:0px;
  6444. top:0px;
  6445. width:0px;
  6446. height:0px;
  6447. }
  6448. #u27647_div {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:0px;
  6452. top:0px;
  6453. width:140px;
  6454. height:30px;
  6455. background:inherit;
  6456. background-color:rgba(255, 255, 255, 1);
  6457. box-sizing:border-box;
  6458. border-width:1px;
  6459. border-style:solid;
  6460. border-color:rgba(215, 215, 215, 1);
  6461. border-radius:4px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-size:12px;
  6466. }
  6467. #u27647 {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:650px;
  6471. top:143px;
  6472. width:140px;
  6473. height:30px;
  6474. display:flex;
  6475. font-size:12px;
  6476. }
  6477. #u27647 .text {
  6478. position:absolute;
  6479. align-self:center;
  6480. padding:2px 2px 2px 2px;
  6481. box-sizing:border-box;
  6482. width:100%;
  6483. }
  6484. #u27647_text {
  6485. border-width:0px;
  6486. word-wrap:break-word;
  6487. text-transform:none;
  6488. visibility:hidden;
  6489. }
  6490. #u27648_input {
  6491. position:absolute;
  6492. left:0px;
  6493. top:0px;
  6494. width:134px;
  6495. height:23px;
  6496. padding:2px 2px 2px 2px;
  6497. font-family:'ArialMT', 'Arial', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:12px;
  6501. letter-spacing:normal;
  6502. color:#AAAAAA;
  6503. vertical-align:none;
  6504. text-align:left;
  6505. text-transform:none;
  6506. background-color:transparent;
  6507. border-color:transparent;
  6508. }
  6509. #u27648_input.disabled {
  6510. position:absolute;
  6511. left:0px;
  6512. top:0px;
  6513. width:134px;
  6514. height:23px;
  6515. padding:2px 2px 2px 2px;
  6516. font-family:'ArialMT', 'Arial', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:12px;
  6520. letter-spacing:normal;
  6521. color:#AAAAAA;
  6522. vertical-align:none;
  6523. text-align:left;
  6524. text-transform:none;
  6525. background-color:transparent;
  6526. border-color:transparent;
  6527. }
  6528. #u27648_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:134px;
  6534. height:23px;
  6535. background:inherit;
  6536. background-color:rgba(255, 255, 255, 1);
  6537. border:none;
  6538. border-radius:0px;
  6539. -moz-box-shadow:none;
  6540. -webkit-box-shadow:none;
  6541. box-shadow:none;
  6542. font-size:12px;
  6543. color:#AAAAAA;
  6544. }
  6545. #u27648 {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:654px;
  6549. top:145px;
  6550. width:134px;
  6551. height:23px;
  6552. display:flex;
  6553. font-size:12px;
  6554. color:#AAAAAA;
  6555. }
  6556. #u27648 .text {
  6557. position:absolute;
  6558. align-self:flex-start;
  6559. padding:2px 2px 2px 2px;
  6560. box-sizing:border-box;
  6561. width:100%;
  6562. }
  6563. #u27648_div.disabled {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:134px;
  6569. height:23px;
  6570. background:inherit;
  6571. background-color:rgba(240, 240, 240, 1);
  6572. border:none;
  6573. border-radius:0px;
  6574. -moz-box-shadow:none;
  6575. -webkit-box-shadow:none;
  6576. box-shadow:none;
  6577. font-size:12px;
  6578. color:#AAAAAA;
  6579. }
  6580. #u27648.disabled {
  6581. }
  6582. .u27648_input_option {
  6583. font-size:12px;
  6584. }
  6585. #u27649 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:0px;
  6591. height:0px;
  6592. }
  6593. #u27650_div {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:600px;
  6599. height:313px;
  6600. background:inherit;
  6601. background-color:rgba(255, 255, 255, 1);
  6602. box-sizing:border-box;
  6603. border-width:1px;
  6604. border-style:solid;
  6605. border-color:rgba(215, 215, 215, 1);
  6606. border-radius:0px;
  6607. -moz-box-shadow:none;
  6608. -webkit-box-shadow:none;
  6609. box-shadow:none;
  6610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:14px;
  6614. color:#AAAAAA;
  6615. text-align:center;
  6616. line-height:30px;
  6617. }
  6618. #u27650 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:387px;
  6622. top:612px;
  6623. width:600px;
  6624. height:313px;
  6625. display:flex;
  6626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6627. font-weight:400;
  6628. font-style:normal;
  6629. font-size:14px;
  6630. color:#AAAAAA;
  6631. text-align:center;
  6632. line-height:30px;
  6633. }
  6634. #u27650 .text {
  6635. position:absolute;
  6636. align-self:center;
  6637. padding:5px 10px 5px 10px;
  6638. box-sizing:border-box;
  6639. width:100%;
  6640. }
  6641. #u27650_text {
  6642. border-width:0px;
  6643. word-wrap:break-word;
  6644. text-transform:none;
  6645. visibility:hidden;
  6646. }
  6647. #u27651_div {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:47px;
  6653. height:35px;
  6654. background:inherit;
  6655. background-color:rgba(255, 255, 255, 0);
  6656. border:none;
  6657. border-top:0px;
  6658. border-right:0px;
  6659. border-bottom:0px;
  6660. border-radius:0px;
  6661. border-top-left-radius:0px;
  6662. border-bottom-left-radius:0px;
  6663. -moz-box-shadow:none;
  6664. -webkit-box-shadow:none;
  6665. box-shadow:none;
  6666. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6667. font-weight:500;
  6668. font-style:normal;
  6669. font-size:18px;
  6670. }
  6671. #u27651 {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:407px;
  6675. top:630px;
  6676. width:47px;
  6677. height:35px;
  6678. display:flex;
  6679. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6680. font-weight:500;
  6681. font-style:normal;
  6682. font-size:18px;
  6683. }
  6684. #u27651 .text {
  6685. position:absolute;
  6686. align-self:center;
  6687. padding:5px 10px 5px 0px;
  6688. box-sizing:border-box;
  6689. width:100%;
  6690. }
  6691. #u27651_text {
  6692. border-width:0px;
  6693. white-space:nowrap;
  6694. text-transform:none;
  6695. }
  6696. #u27652 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:0px;
  6700. top:0px;
  6701. width:0px;
  6702. height:0px;
  6703. }
  6704. #u27653_div {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:0px;
  6708. top:0px;
  6709. width:600px;
  6710. height:60px;
  6711. background:inherit;
  6712. background-color:rgba(255, 255, 255, 1);
  6713. box-sizing:border-box;
  6714. border-width:1px;
  6715. border-style:solid;
  6716. border-color:rgba(215, 215, 215, 1);
  6717. border-radius:0px;
  6718. -moz-box-shadow:none;
  6719. -webkit-box-shadow:none;
  6720. box-shadow:none;
  6721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6722. font-weight:400;
  6723. font-style:normal;
  6724. font-size:14px;
  6725. color:#AAAAAA;
  6726. text-align:center;
  6727. line-height:30px;
  6728. }
  6729. #u27653 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:387px;
  6733. top:865px;
  6734. width:600px;
  6735. height:60px;
  6736. display:flex;
  6737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6738. font-weight:400;
  6739. font-style:normal;
  6740. font-size:14px;
  6741. color:#AAAAAA;
  6742. text-align:center;
  6743. line-height:30px;
  6744. }
  6745. #u27653 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:5px 10px 5px 10px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u27653_text {
  6753. border-width:0px;
  6754. word-wrap:break-word;
  6755. text-transform:none;
  6756. visibility:hidden;
  6757. }
  6758. #u27654_div {
  6759. border-width:0px;
  6760. position:absolute;
  6761. left:0px;
  6762. top:0px;
  6763. width:80px;
  6764. height:30px;
  6765. background:inherit;
  6766. background-color:rgba(24, 144, 255, 1);
  6767. border:none;
  6768. border-radius:4px;
  6769. -moz-box-shadow:none;
  6770. -webkit-box-shadow:none;
  6771. box-shadow:none;
  6772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6773. font-weight:400;
  6774. font-style:normal;
  6775. font-size:14px;
  6776. color:#FFFFFF;
  6777. }
  6778. #u27654 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:867px;
  6782. top:880px;
  6783. width:80px;
  6784. height:30px;
  6785. display:flex;
  6786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6787. font-weight:400;
  6788. font-style:normal;
  6789. font-size:14px;
  6790. color:#FFFFFF;
  6791. }
  6792. #u27654 .text {
  6793. position:absolute;
  6794. align-self:center;
  6795. padding:2px 2px 2px 2px;
  6796. box-sizing:border-box;
  6797. width:100%;
  6798. }
  6799. #u27654_text {
  6800. border-width:0px;
  6801. word-wrap:break-word;
  6802. text-transform:none;
  6803. }
  6804. #u27655_div {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:79px;
  6810. height:30px;
  6811. background:inherit;
  6812. background-color:rgba(255, 255, 255, 1);
  6813. box-sizing:border-box;
  6814. border-width:1px;
  6815. border-style:solid;
  6816. border-color:rgba(170, 170, 170, 1);
  6817. border-radius:4px;
  6818. -moz-box-shadow:none;
  6819. -webkit-box-shadow:none;
  6820. box-shadow:none;
  6821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6822. font-weight:400;
  6823. font-style:normal;
  6824. font-size:14px;
  6825. }
  6826. #u27655 {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:768px;
  6830. top:880px;
  6831. width:79px;
  6832. height:30px;
  6833. display:flex;
  6834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6835. font-weight:400;
  6836. font-style:normal;
  6837. font-size:14px;
  6838. }
  6839. #u27655 .text {
  6840. position:absolute;
  6841. align-self:center;
  6842. padding:2px 2px 2px 2px;
  6843. box-sizing:border-box;
  6844. width:100%;
  6845. }
  6846. #u27655_text {
  6847. border-width:0px;
  6848. word-wrap:break-word;
  6849. text-transform:none;
  6850. }
  6851. #u27656 {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:0px;
  6855. top:0px;
  6856. width:0px;
  6857. height:0px;
  6858. }
  6859. #u27657_div {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:0px;
  6863. top:0px;
  6864. width:379px;
  6865. height:40px;
  6866. background:inherit;
  6867. background-color:rgba(255, 255, 255, 1);
  6868. box-sizing:border-box;
  6869. border-width:1px;
  6870. border-style:solid;
  6871. border-color:rgba(215, 215, 215, 1);
  6872. border-radius:4px;
  6873. -moz-box-shadow:none;
  6874. -webkit-box-shadow:none;
  6875. box-shadow:none;
  6876. font-size:14px;
  6877. }
  6878. #u27657 {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:544px;
  6882. top:695px;
  6883. width:379px;
  6884. height:40px;
  6885. display:flex;
  6886. font-size:14px;
  6887. }
  6888. #u27657 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:2px 2px 2px 2px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u27657_text {
  6896. border-width:0px;
  6897. word-wrap:break-word;
  6898. text-transform:none;
  6899. visibility:hidden;
  6900. }
  6901. #u27658_input {
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:363px;
  6906. height:31px;
  6907. padding:2px 2px 2px 2px;
  6908. font-family:'ArialMT', 'Arial', sans-serif;
  6909. font-weight:400;
  6910. font-style:normal;
  6911. font-size:14px;
  6912. letter-spacing:normal;
  6913. color:#AAAAAA;
  6914. vertical-align:none;
  6915. text-align:left;
  6916. text-transform:none;
  6917. background-color:transparent;
  6918. border-color:transparent;
  6919. }
  6920. #u27658_input.disabled {
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:363px;
  6925. height:31px;
  6926. padding:2px 2px 2px 2px;
  6927. font-family:'ArialMT', 'Arial', sans-serif;
  6928. font-weight:400;
  6929. font-style:normal;
  6930. font-size:14px;
  6931. letter-spacing:normal;
  6932. color:#AAAAAA;
  6933. vertical-align:none;
  6934. text-align:left;
  6935. text-transform:none;
  6936. background-color:transparent;
  6937. border-color:transparent;
  6938. }
  6939. #u27658_div {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:0px;
  6943. top:0px;
  6944. width:363px;
  6945. height:31px;
  6946. background:inherit;
  6947. background-color:rgba(255, 255, 255, 1);
  6948. border:none;
  6949. border-radius:0px;
  6950. -moz-box-shadow:none;
  6951. -webkit-box-shadow:none;
  6952. box-shadow:none;
  6953. font-size:14px;
  6954. color:#AAAAAA;
  6955. }
  6956. #u27658 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:554px;
  6960. top:700px;
  6961. width:363px;
  6962. height:31px;
  6963. display:flex;
  6964. font-size:14px;
  6965. color:#AAAAAA;
  6966. }
  6967. #u27658 .text {
  6968. position:absolute;
  6969. align-self:flex-start;
  6970. padding:2px 2px 2px 2px;
  6971. box-sizing:border-box;
  6972. width:100%;
  6973. }
  6974. #u27658_div.disabled {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:363px;
  6980. height:31px;
  6981. background:inherit;
  6982. background-color:rgba(240, 240, 240, 1);
  6983. border:none;
  6984. border-radius:0px;
  6985. -moz-box-shadow:none;
  6986. -webkit-box-shadow:none;
  6987. box-shadow:none;
  6988. font-size:14px;
  6989. color:#AAAAAA;
  6990. }
  6991. #u27658.disabled {
  6992. }
  6993. .u27658_input_option {
  6994. font-size:14px;
  6995. }
  6996. #u27659_div {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:88px;
  7002. height:40px;
  7003. background:inherit;
  7004. background-color:rgba(255, 255, 255, 0);
  7005. border:none;
  7006. border-top:0px;
  7007. border-right:0px;
  7008. border-bottom:0px;
  7009. border-radius:0px;
  7010. border-top-left-radius:0px;
  7011. border-bottom-left-radius:0px;
  7012. -moz-box-shadow:none;
  7013. -webkit-box-shadow:none;
  7014. box-shadow:none;
  7015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7016. font-weight:400;
  7017. font-style:normal;
  7018. font-size:14px;
  7019. text-align:right;
  7020. }
  7021. #u27659 {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:446px;
  7025. top:695px;
  7026. width:88px;
  7027. height:40px;
  7028. display:flex;
  7029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7030. font-weight:400;
  7031. font-style:normal;
  7032. font-size:14px;
  7033. text-align:right;
  7034. }
  7035. #u27659 .text {
  7036. position:absolute;
  7037. align-self:center;
  7038. padding:5px 10px 5px 0px;
  7039. box-sizing:border-box;
  7040. width:100%;
  7041. }
  7042. #u27659_text {
  7043. border-width:0px;
  7044. white-space:nowrap;
  7045. text-transform:none;
  7046. }
  7047. #u27660_div {
  7048. border-width:0px;
  7049. position:absolute;
  7050. left:0px;
  7051. top:0px;
  7052. width:81px;
  7053. height:40px;
  7054. background:inherit;
  7055. background-color:rgba(255, 255, 255, 0);
  7056. border:none;
  7057. border-top:0px;
  7058. border-right:0px;
  7059. border-bottom:0px;
  7060. border-radius:0px;
  7061. border-top-left-radius:0px;
  7062. border-bottom-left-radius:0px;
  7063. -moz-box-shadow:none;
  7064. -webkit-box-shadow:none;
  7065. box-shadow:none;
  7066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:14px;
  7070. text-align:right;
  7071. }
  7072. #u27660 {
  7073. border-width:0px;
  7074. position:absolute;
  7075. left:453px;
  7076. top:745px;
  7077. width:81px;
  7078. height:40px;
  7079. display:flex;
  7080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7081. font-weight:400;
  7082. font-style:normal;
  7083. font-size:14px;
  7084. text-align:right;
  7085. }
  7086. #u27660 .text {
  7087. position:absolute;
  7088. align-self:center;
  7089. padding:5px 10px 5px 0px;
  7090. box-sizing:border-box;
  7091. width:100%;
  7092. }
  7093. #u27660_text {
  7094. border-width:0px;
  7095. white-space:nowrap;
  7096. text-transform:none;
  7097. }
  7098. #u27661 {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:0px;
  7102. top:0px;
  7103. width:0px;
  7104. height:0px;
  7105. }
  7106. #u27662_div {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:379px;
  7112. height:80px;
  7113. background:inherit;
  7114. background-color:rgba(255, 255, 255, 1);
  7115. box-sizing:border-box;
  7116. border-width:1px;
  7117. border-style:solid;
  7118. border-color:rgba(201, 201, 201, 1);
  7119. border-radius:4px;
  7120. -moz-box-shadow:none;
  7121. -webkit-box-shadow:none;
  7122. box-shadow:none;
  7123. font-family:'Microsoft YaHei', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:14px;
  7127. color:#CCCCCC;
  7128. text-align:left;
  7129. }
  7130. #u27662 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:544px;
  7134. top:745px;
  7135. width:379px;
  7136. height:80px;
  7137. display:flex;
  7138. font-family:'Microsoft YaHei', sans-serif;
  7139. font-weight:400;
  7140. font-style:normal;
  7141. font-size:14px;
  7142. color:#CCCCCC;
  7143. text-align:left;
  7144. }
  7145. #u27662 .text {
  7146. position:absolute;
  7147. align-self:center;
  7148. padding:2px 8px 2px 8px;
  7149. box-sizing:border-box;
  7150. width:100%;
  7151. }
  7152. #u27662_text {
  7153. border-width:0px;
  7154. word-wrap:break-word;
  7155. text-transform:none;
  7156. visibility:hidden;
  7157. }
  7158. #u27663_input {
  7159. position:absolute;
  7160. left:0px;
  7161. top:0px;
  7162. width:360px;
  7163. height:38px;
  7164. padding:2px 2px 2px 2px;
  7165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:14px;
  7169. letter-spacing:normal;
  7170. color:#000000;
  7171. vertical-align:none;
  7172. text-align:left;
  7173. text-transform:none;
  7174. background-color:transparent;
  7175. border-color:transparent;
  7176. }
  7177. #u27663_input.disabled {
  7178. position:absolute;
  7179. left:0px;
  7180. top:0px;
  7181. width:360px;
  7182. height:38px;
  7183. padding:2px 2px 2px 2px;
  7184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7185. font-weight:400;
  7186. font-style:normal;
  7187. font-size:14px;
  7188. letter-spacing:normal;
  7189. color:#000000;
  7190. vertical-align:none;
  7191. text-align:left;
  7192. text-transform:none;
  7193. background-color:transparent;
  7194. border-color:transparent;
  7195. }
  7196. #u27663_div {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:360px;
  7202. height:38px;
  7203. background:inherit;
  7204. background-color:rgba(255, 255, 255, 1);
  7205. border:none;
  7206. border-radius:0px;
  7207. -moz-box-shadow:none;
  7208. -webkit-box-shadow:none;
  7209. box-shadow:none;
  7210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7211. font-weight:400;
  7212. font-style:normal;
  7213. font-size:14px;
  7214. }
  7215. #u27663 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:554px;
  7219. top:746px;
  7220. width:360px;
  7221. height:38px;
  7222. display:flex;
  7223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:14px;
  7227. }
  7228. #u27663 .text {
  7229. position:absolute;
  7230. align-self:center;
  7231. padding:2px 2px 2px 2px;
  7232. box-sizing:border-box;
  7233. width:100%;
  7234. }
  7235. #u27663_div.disabled {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:0px;
  7239. top:0px;
  7240. width:360px;
  7241. height:38px;
  7242. background:inherit;
  7243. background-color:rgba(240, 240, 240, 1);
  7244. border:none;
  7245. border-radius:0px;
  7246. -moz-box-shadow:none;
  7247. -webkit-box-shadow:none;
  7248. box-shadow:none;
  7249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7250. font-weight:400;
  7251. font-style:normal;
  7252. font-size:14px;
  7253. }
  7254. #u27663.disabled {
  7255. }
  7256. #u27664_div {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:0px;
  7260. top:0px;
  7261. width:479px;
  7262. height:40px;
  7263. background:inherit;
  7264. background-color:rgba(255, 255, 255, 0);
  7265. border:none;
  7266. border-top:0px;
  7267. border-right:0px;
  7268. border-bottom:0px;
  7269. border-radius:0px;
  7270. border-top-left-radius:0px;
  7271. border-bottom-left-radius:0px;
  7272. -moz-box-shadow:none;
  7273. -webkit-box-shadow:none;
  7274. box-shadow:none;
  7275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7276. font-weight:400;
  7277. font-style:normal;
  7278. font-size:14px;
  7279. color:#D9001B;
  7280. }
  7281. #u27664 {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:380px;
  7285. top:539px;
  7286. width:479px;
  7287. height:40px;
  7288. display:flex;
  7289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7290. font-weight:400;
  7291. font-style:normal;
  7292. font-size:14px;
  7293. color:#D9001B;
  7294. }
  7295. #u27664 .text {
  7296. position:absolute;
  7297. align-self:center;
  7298. padding:5px 10px 5px 0px;
  7299. box-sizing:border-box;
  7300. width:100%;
  7301. }
  7302. #u27664_text {
  7303. border-width:0px;
  7304. white-space:nowrap;
  7305. text-transform:none;
  7306. }
  7307. #u27665 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:0px;
  7311. top:0px;
  7312. width:0px;
  7313. height:0px;
  7314. }
  7315. #u27666_div {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:600px;
  7321. height:233px;
  7322. background:inherit;
  7323. background-color:rgba(255, 255, 255, 1);
  7324. box-sizing:border-box;
  7325. border-width:1px;
  7326. border-style:solid;
  7327. border-color:rgba(215, 215, 215, 1);
  7328. border-radius:0px;
  7329. -moz-box-shadow:none;
  7330. -webkit-box-shadow:none;
  7331. box-shadow:none;
  7332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7333. font-weight:400;
  7334. font-style:normal;
  7335. font-size:14px;
  7336. color:#AAAAAA;
  7337. text-align:center;
  7338. line-height:30px;
  7339. }
  7340. #u27666 {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:1019px;
  7344. top:612px;
  7345. width:600px;
  7346. height:233px;
  7347. display:flex;
  7348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7349. font-weight:400;
  7350. font-style:normal;
  7351. font-size:14px;
  7352. color:#AAAAAA;
  7353. text-align:center;
  7354. line-height:30px;
  7355. }
  7356. #u27666 .text {
  7357. position:absolute;
  7358. align-self:center;
  7359. padding:5px 10px 5px 10px;
  7360. box-sizing:border-box;
  7361. width:100%;
  7362. }
  7363. #u27666_text {
  7364. border-width:0px;
  7365. word-wrap:break-word;
  7366. text-transform:none;
  7367. visibility:hidden;
  7368. }
  7369. #u27667_div {
  7370. border-width:0px;
  7371. position:absolute;
  7372. left:0px;
  7373. top:0px;
  7374. width:47px;
  7375. height:35px;
  7376. background:inherit;
  7377. background-color:rgba(255, 255, 255, 0);
  7378. border:none;
  7379. border-top:0px;
  7380. border-right:0px;
  7381. border-bottom:0px;
  7382. border-radius:0px;
  7383. border-top-left-radius:0px;
  7384. border-bottom-left-radius:0px;
  7385. -moz-box-shadow:none;
  7386. -webkit-box-shadow:none;
  7387. box-shadow:none;
  7388. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7389. font-weight:500;
  7390. font-style:normal;
  7391. font-size:18px;
  7392. }
  7393. #u27667 {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:1039px;
  7397. top:630px;
  7398. width:47px;
  7399. height:35px;
  7400. display:flex;
  7401. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7402. font-weight:500;
  7403. font-style:normal;
  7404. font-size:18px;
  7405. }
  7406. #u27667 .text {
  7407. position:absolute;
  7408. align-self:center;
  7409. padding:5px 10px 5px 0px;
  7410. box-sizing:border-box;
  7411. width:100%;
  7412. }
  7413. #u27667_text {
  7414. border-width:0px;
  7415. white-space:nowrap;
  7416. text-transform:none;
  7417. }
  7418. #u27668 {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:0px;
  7424. height:0px;
  7425. }
  7426. #u27669_div {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:600px;
  7432. height:60px;
  7433. background:inherit;
  7434. background-color:rgba(255, 255, 255, 1);
  7435. box-sizing:border-box;
  7436. border-width:1px;
  7437. border-style:solid;
  7438. border-color:rgba(215, 215, 215, 1);
  7439. border-radius:0px;
  7440. -moz-box-shadow:none;
  7441. -webkit-box-shadow:none;
  7442. box-shadow:none;
  7443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7444. font-weight:400;
  7445. font-style:normal;
  7446. font-size:14px;
  7447. color:#AAAAAA;
  7448. text-align:center;
  7449. line-height:30px;
  7450. }
  7451. #u27669 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:1019px;
  7455. top:785px;
  7456. width:600px;
  7457. height:60px;
  7458. display:flex;
  7459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7460. font-weight:400;
  7461. font-style:normal;
  7462. font-size:14px;
  7463. color:#AAAAAA;
  7464. text-align:center;
  7465. line-height:30px;
  7466. }
  7467. #u27669 .text {
  7468. position:absolute;
  7469. align-self:center;
  7470. padding:5px 10px 5px 10px;
  7471. box-sizing:border-box;
  7472. width:100%;
  7473. }
  7474. #u27669_text {
  7475. border-width:0px;
  7476. word-wrap:break-word;
  7477. text-transform:none;
  7478. visibility:hidden;
  7479. }
  7480. #u27670_div {
  7481. border-width:0px;
  7482. position:absolute;
  7483. left:0px;
  7484. top:0px;
  7485. width:80px;
  7486. height:30px;
  7487. background:inherit;
  7488. background-color:rgba(24, 144, 255, 1);
  7489. border:none;
  7490. border-radius:4px;
  7491. -moz-box-shadow:none;
  7492. -webkit-box-shadow:none;
  7493. box-shadow:none;
  7494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:14px;
  7498. color:#FFFFFF;
  7499. }
  7500. #u27670 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:1499px;
  7504. top:800px;
  7505. width:80px;
  7506. height:30px;
  7507. display:flex;
  7508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7509. font-weight:400;
  7510. font-style:normal;
  7511. font-size:14px;
  7512. color:#FFFFFF;
  7513. }
  7514. #u27670 .text {
  7515. position:absolute;
  7516. align-self:center;
  7517. padding:2px 2px 2px 2px;
  7518. box-sizing:border-box;
  7519. width:100%;
  7520. }
  7521. #u27670_text {
  7522. border-width:0px;
  7523. word-wrap:break-word;
  7524. text-transform:none;
  7525. }
  7526. #u27671_div {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:79px;
  7532. height:30px;
  7533. background:inherit;
  7534. background-color:rgba(255, 255, 255, 1);
  7535. box-sizing:border-box;
  7536. border-width:1px;
  7537. border-style:solid;
  7538. border-color:rgba(170, 170, 170, 1);
  7539. border-radius:4px;
  7540. -moz-box-shadow:none;
  7541. -webkit-box-shadow:none;
  7542. box-shadow:none;
  7543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:14px;
  7547. }
  7548. #u27671 {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:1400px;
  7552. top:800px;
  7553. width:79px;
  7554. height:30px;
  7555. display:flex;
  7556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7557. font-weight:400;
  7558. font-style:normal;
  7559. font-size:14px;
  7560. }
  7561. #u27671 .text {
  7562. position:absolute;
  7563. align-self:center;
  7564. padding:2px 2px 2px 2px;
  7565. box-sizing:border-box;
  7566. width:100%;
  7567. }
  7568. #u27671_text {
  7569. border-width:0px;
  7570. word-wrap:break-word;
  7571. text-transform:none;
  7572. }
  7573. #u27672 {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:0px;
  7577. top:0px;
  7578. width:0px;
  7579. height:0px;
  7580. }
  7581. #u27673_div {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:0px;
  7585. top:0px;
  7586. width:407px;
  7587. height:40px;
  7588. background:inherit;
  7589. background-color:rgba(255, 255, 255, 1);
  7590. box-sizing:border-box;
  7591. border-width:1px;
  7592. border-style:solid;
  7593. border-color:rgba(215, 215, 215, 1);
  7594. border-radius:4px;
  7595. -moz-box-shadow:none;
  7596. -webkit-box-shadow:none;
  7597. box-shadow:none;
  7598. font-size:14px;
  7599. }
  7600. #u27673 {
  7601. border-width:0px;
  7602. position:absolute;
  7603. left:1172px;
  7604. top:689px;
  7605. width:407px;
  7606. height:40px;
  7607. display:flex;
  7608. font-size:14px;
  7609. }
  7610. #u27673 .text {
  7611. position:absolute;
  7612. align-self:center;
  7613. padding:2px 2px 2px 2px;
  7614. box-sizing:border-box;
  7615. width:100%;
  7616. }
  7617. #u27673_text {
  7618. border-width:0px;
  7619. word-wrap:break-word;
  7620. text-transform:none;
  7621. visibility:hidden;
  7622. }
  7623. #u27674_input {
  7624. position:absolute;
  7625. left:0px;
  7626. top:0px;
  7627. width:390px;
  7628. height:31px;
  7629. padding:2px 2px 2px 2px;
  7630. font-family:'ArialMT', 'Arial', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:14px;
  7634. letter-spacing:normal;
  7635. color:#AAAAAA;
  7636. vertical-align:none;
  7637. text-align:left;
  7638. text-transform:none;
  7639. background-color:transparent;
  7640. border-color:transparent;
  7641. }
  7642. #u27674_input.disabled {
  7643. position:absolute;
  7644. left:0px;
  7645. top:0px;
  7646. width:390px;
  7647. height:31px;
  7648. padding:2px 2px 2px 2px;
  7649. font-family:'ArialMT', 'Arial', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:14px;
  7653. letter-spacing:normal;
  7654. color:#AAAAAA;
  7655. vertical-align:none;
  7656. text-align:left;
  7657. text-transform:none;
  7658. background-color:transparent;
  7659. border-color:transparent;
  7660. }
  7661. #u27674_div {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:390px;
  7667. height:31px;
  7668. background:inherit;
  7669. background-color:rgba(255, 255, 255, 1);
  7670. border:none;
  7671. border-radius:0px;
  7672. -moz-box-shadow:none;
  7673. -webkit-box-shadow:none;
  7674. box-shadow:none;
  7675. font-size:14px;
  7676. color:#AAAAAA;
  7677. }
  7678. #u27674 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:1184px;
  7682. top:692px;
  7683. width:390px;
  7684. height:31px;
  7685. display:flex;
  7686. font-size:14px;
  7687. color:#AAAAAA;
  7688. }
  7689. #u27674 .text {
  7690. position:absolute;
  7691. align-self:flex-start;
  7692. padding:2px 2px 2px 2px;
  7693. box-sizing:border-box;
  7694. width:100%;
  7695. }
  7696. #u27674_div.disabled {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:0px;
  7700. top:0px;
  7701. width:390px;
  7702. height:31px;
  7703. background:inherit;
  7704. background-color:rgba(240, 240, 240, 1);
  7705. border:none;
  7706. border-radius:0px;
  7707. -moz-box-shadow:none;
  7708. -webkit-box-shadow:none;
  7709. box-shadow:none;
  7710. font-size:14px;
  7711. color:#AAAAAA;
  7712. }
  7713. #u27674.disabled {
  7714. }
  7715. .u27674_input_option {
  7716. font-size:14px;
  7717. }
  7718. #u27675_div {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:0px;
  7722. top:0px;
  7723. width:116px;
  7724. height:40px;
  7725. background:inherit;
  7726. background-color:rgba(255, 255, 255, 0);
  7727. border:none;
  7728. border-top:0px;
  7729. border-right:0px;
  7730. border-bottom:0px;
  7731. border-radius:0px;
  7732. border-top-left-radius:0px;
  7733. border-bottom-left-radius:0px;
  7734. -moz-box-shadow:none;
  7735. -webkit-box-shadow:none;
  7736. box-shadow:none;
  7737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7738. font-weight:400;
  7739. font-style:normal;
  7740. font-size:14px;
  7741. }
  7742. #u27675 {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:1063px;
  7746. top:689px;
  7747. width:116px;
  7748. height:40px;
  7749. display:flex;
  7750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7751. font-weight:400;
  7752. font-style:normal;
  7753. font-size:14px;
  7754. }
  7755. #u27675 .text {
  7756. position:absolute;
  7757. align-self:center;
  7758. padding:5px 10px 5px 0px;
  7759. box-sizing:border-box;
  7760. width:100%;
  7761. }
  7762. #u27675_text {
  7763. border-width:0px;
  7764. white-space:nowrap;
  7765. text-transform:none;
  7766. }
  7767. #u27676_div {
  7768. border-width:0px;
  7769. position:absolute;
  7770. left:0px;
  7771. top:0px;
  7772. width:60px;
  7773. height:30px;
  7774. background:inherit;
  7775. background-color:rgba(24, 144, 255, 1);
  7776. border:none;
  7777. border-radius:4px;
  7778. -moz-box-shadow:none;
  7779. -webkit-box-shadow:none;
  7780. box-shadow:none;
  7781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7782. font-weight:400;
  7783. font-style:normal;
  7784. font-size:14px;
  7785. color:#FFFFFF;
  7786. }
  7787. #u27676 {
  7788. border-width:0px;
  7789. position:absolute;
  7790. left:350px;
  7791. top:192px;
  7792. width:60px;
  7793. height:30px;
  7794. display:flex;
  7795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7796. font-weight:400;
  7797. font-style:normal;
  7798. font-size:14px;
  7799. color:#FFFFFF;
  7800. }
  7801. #u27676 .text {
  7802. position:absolute;
  7803. align-self:center;
  7804. padding:2px 2px 2px 2px;
  7805. box-sizing:border-box;
  7806. width:100%;
  7807. }
  7808. #u27676_text {
  7809. border-width:0px;
  7810. word-wrap:break-word;
  7811. text-transform:none;
  7812. }
  7813. #u27677 {
  7814. border-width:0px;
  7815. position:absolute;
  7816. left:0px;
  7817. top:0px;
  7818. width:0px;
  7819. height:0px;
  7820. }
  7821. #u27678_div {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:0px;
  7825. top:0px;
  7826. width:600px;
  7827. height:357px;
  7828. background:inherit;
  7829. background-color:rgba(255, 255, 255, 1);
  7830. box-sizing:border-box;
  7831. border-width:1px;
  7832. border-style:solid;
  7833. border-color:rgba(215, 215, 215, 1);
  7834. border-radius:0px;
  7835. -moz-box-shadow:none;
  7836. -webkit-box-shadow:none;
  7837. box-shadow:none;
  7838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7839. font-weight:400;
  7840. font-style:normal;
  7841. font-size:14px;
  7842. color:#AAAAAA;
  7843. text-align:center;
  7844. line-height:30px;
  7845. }
  7846. #u27678 {
  7847. border-width:0px;
  7848. position:absolute;
  7849. left:1019px;
  7850. top:874px;
  7851. width:600px;
  7852. height:357px;
  7853. display:flex;
  7854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7855. font-weight:400;
  7856. font-style:normal;
  7857. font-size:14px;
  7858. color:#AAAAAA;
  7859. text-align:center;
  7860. line-height:30px;
  7861. }
  7862. #u27678 .text {
  7863. position:absolute;
  7864. align-self:center;
  7865. padding:5px 10px 5px 10px;
  7866. box-sizing:border-box;
  7867. width:100%;
  7868. }
  7869. #u27678_text {
  7870. border-width:0px;
  7871. word-wrap:break-word;
  7872. text-transform:none;
  7873. visibility:hidden;
  7874. }
  7875. #u27679_div {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:0px;
  7879. top:0px;
  7880. width:47px;
  7881. height:35px;
  7882. background:inherit;
  7883. background-color:rgba(255, 255, 255, 0);
  7884. border:none;
  7885. border-top:0px;
  7886. border-right:0px;
  7887. border-bottom:0px;
  7888. border-radius:0px;
  7889. border-top-left-radius:0px;
  7890. border-bottom-left-radius:0px;
  7891. -moz-box-shadow:none;
  7892. -webkit-box-shadow:none;
  7893. box-shadow:none;
  7894. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7895. font-weight:500;
  7896. font-style:normal;
  7897. font-size:18px;
  7898. }
  7899. #u27679 {
  7900. border-width:0px;
  7901. position:absolute;
  7902. left:1039px;
  7903. top:892px;
  7904. width:47px;
  7905. height:35px;
  7906. display:flex;
  7907. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7908. font-weight:500;
  7909. font-style:normal;
  7910. font-size:18px;
  7911. }
  7912. #u27679 .text {
  7913. position:absolute;
  7914. align-self:center;
  7915. padding:5px 10px 5px 0px;
  7916. box-sizing:border-box;
  7917. width:100%;
  7918. }
  7919. #u27679_text {
  7920. border-width:0px;
  7921. white-space:nowrap;
  7922. text-transform:none;
  7923. }
  7924. #u27680 {
  7925. border-width:0px;
  7926. position:absolute;
  7927. left:0px;
  7928. top:0px;
  7929. width:0px;
  7930. height:0px;
  7931. }
  7932. #u27681_div {
  7933. border-width:0px;
  7934. position:absolute;
  7935. left:0px;
  7936. top:0px;
  7937. width:600px;
  7938. height:60px;
  7939. background:inherit;
  7940. background-color:rgba(255, 255, 255, 1);
  7941. box-sizing:border-box;
  7942. border-width:1px;
  7943. border-style:solid;
  7944. border-color:rgba(215, 215, 215, 1);
  7945. border-radius:0px;
  7946. -moz-box-shadow:none;
  7947. -webkit-box-shadow:none;
  7948. box-shadow:none;
  7949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7950. font-weight:400;
  7951. font-style:normal;
  7952. font-size:14px;
  7953. color:#AAAAAA;
  7954. text-align:center;
  7955. line-height:30px;
  7956. }
  7957. #u27681 {
  7958. border-width:0px;
  7959. position:absolute;
  7960. left:1019px;
  7961. top:1171px;
  7962. width:600px;
  7963. height:60px;
  7964. display:flex;
  7965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7966. font-weight:400;
  7967. font-style:normal;
  7968. font-size:14px;
  7969. color:#AAAAAA;
  7970. text-align:center;
  7971. line-height:30px;
  7972. }
  7973. #u27681 .text {
  7974. position:absolute;
  7975. align-self:center;
  7976. padding:5px 10px 5px 10px;
  7977. box-sizing:border-box;
  7978. width:100%;
  7979. }
  7980. #u27681_text {
  7981. border-width:0px;
  7982. word-wrap:break-word;
  7983. text-transform:none;
  7984. visibility:hidden;
  7985. }
  7986. #u27682_div {
  7987. border-width:0px;
  7988. position:absolute;
  7989. left:0px;
  7990. top:0px;
  7991. width:80px;
  7992. height:30px;
  7993. background:inherit;
  7994. background-color:rgba(24, 144, 255, 1);
  7995. border:none;
  7996. border-radius:4px;
  7997. -moz-box-shadow:none;
  7998. -webkit-box-shadow:none;
  7999. box-shadow:none;
  8000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:14px;
  8004. color:#FFFFFF;
  8005. }
  8006. #u27682 {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:1499px;
  8010. top:1186px;
  8011. width:80px;
  8012. height:30px;
  8013. display:flex;
  8014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8015. font-weight:400;
  8016. font-style:normal;
  8017. font-size:14px;
  8018. color:#FFFFFF;
  8019. }
  8020. #u27682 .text {
  8021. position:absolute;
  8022. align-self:center;
  8023. padding:2px 2px 2px 2px;
  8024. box-sizing:border-box;
  8025. width:100%;
  8026. }
  8027. #u27682_text {
  8028. border-width:0px;
  8029. word-wrap:break-word;
  8030. text-transform:none;
  8031. }
  8032. #u27683_div {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:0px;
  8036. top:0px;
  8037. width:79px;
  8038. height:30px;
  8039. background:inherit;
  8040. background-color:rgba(255, 255, 255, 1);
  8041. box-sizing:border-box;
  8042. border-width:1px;
  8043. border-style:solid;
  8044. border-color:rgba(170, 170, 170, 1);
  8045. border-radius:4px;
  8046. -moz-box-shadow:none;
  8047. -webkit-box-shadow:none;
  8048. box-shadow:none;
  8049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8050. font-weight:400;
  8051. font-style:normal;
  8052. font-size:14px;
  8053. }
  8054. #u27683 {
  8055. border-width:0px;
  8056. position:absolute;
  8057. left:1400px;
  8058. top:1186px;
  8059. width:79px;
  8060. height:30px;
  8061. display:flex;
  8062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:14px;
  8066. }
  8067. #u27683 .text {
  8068. position:absolute;
  8069. align-self:center;
  8070. padding:2px 2px 2px 2px;
  8071. box-sizing:border-box;
  8072. width:100%;
  8073. }
  8074. #u27683_text {
  8075. border-width:0px;
  8076. word-wrap:break-word;
  8077. text-transform:none;
  8078. }
  8079. #u27684 {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:0px;
  8083. top:0px;
  8084. width:0px;
  8085. height:0px;
  8086. }
  8087. #u27685_div {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:0px;
  8091. top:0px;
  8092. width:407px;
  8093. height:40px;
  8094. background:inherit;
  8095. background-color:rgba(255, 255, 255, 1);
  8096. box-sizing:border-box;
  8097. border-width:1px;
  8098. border-style:solid;
  8099. border-color:rgba(215, 215, 215, 1);
  8100. border-radius:4px;
  8101. -moz-box-shadow:none;
  8102. -webkit-box-shadow:none;
  8103. box-shadow:none;
  8104. font-size:14px;
  8105. }
  8106. #u27685 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:1172px;
  8110. top:951px;
  8111. width:407px;
  8112. height:40px;
  8113. display:flex;
  8114. font-size:14px;
  8115. }
  8116. #u27685 .text {
  8117. position:absolute;
  8118. align-self:center;
  8119. padding:2px 2px 2px 2px;
  8120. box-sizing:border-box;
  8121. width:100%;
  8122. }
  8123. #u27685_text {
  8124. border-width:0px;
  8125. word-wrap:break-word;
  8126. text-transform:none;
  8127. visibility:hidden;
  8128. }
  8129. #u27686_input {
  8130. position:absolute;
  8131. left:0px;
  8132. top:0px;
  8133. width:390px;
  8134. height:31px;
  8135. padding:2px 2px 2px 2px;
  8136. font-family:'ArialMT', 'Arial', sans-serif;
  8137. font-weight:400;
  8138. font-style:normal;
  8139. font-size:14px;
  8140. letter-spacing:normal;
  8141. color:#AAAAAA;
  8142. vertical-align:none;
  8143. text-align:left;
  8144. text-transform:none;
  8145. background-color:transparent;
  8146. border-color:transparent;
  8147. }
  8148. #u27686_input.disabled {
  8149. position:absolute;
  8150. left:0px;
  8151. top:0px;
  8152. width:390px;
  8153. height:31px;
  8154. padding:2px 2px 2px 2px;
  8155. font-family:'ArialMT', 'Arial', sans-serif;
  8156. font-weight:400;
  8157. font-style:normal;
  8158. font-size:14px;
  8159. letter-spacing:normal;
  8160. color:#AAAAAA;
  8161. vertical-align:none;
  8162. text-align:left;
  8163. text-transform:none;
  8164. background-color:transparent;
  8165. border-color:transparent;
  8166. }
  8167. #u27686_div {
  8168. border-width:0px;
  8169. position:absolute;
  8170. left:0px;
  8171. top:0px;
  8172. width:390px;
  8173. height:31px;
  8174. background:inherit;
  8175. background-color:rgba(255, 255, 255, 1);
  8176. border:none;
  8177. border-radius:0px;
  8178. -moz-box-shadow:none;
  8179. -webkit-box-shadow:none;
  8180. box-shadow:none;
  8181. font-size:14px;
  8182. color:#AAAAAA;
  8183. }
  8184. #u27686 {
  8185. border-width:0px;
  8186. position:absolute;
  8187. left:1184px;
  8188. top:954px;
  8189. width:390px;
  8190. height:31px;
  8191. display:flex;
  8192. font-size:14px;
  8193. color:#AAAAAA;
  8194. }
  8195. #u27686 .text {
  8196. position:absolute;
  8197. align-self:flex-start;
  8198. padding:2px 2px 2px 2px;
  8199. box-sizing:border-box;
  8200. width:100%;
  8201. }
  8202. #u27686_div.disabled {
  8203. border-width:0px;
  8204. position:absolute;
  8205. left:0px;
  8206. top:0px;
  8207. width:390px;
  8208. height:31px;
  8209. background:inherit;
  8210. background-color:rgba(240, 240, 240, 1);
  8211. border:none;
  8212. border-radius:0px;
  8213. -moz-box-shadow:none;
  8214. -webkit-box-shadow:none;
  8215. box-shadow:none;
  8216. font-size:14px;
  8217. color:#AAAAAA;
  8218. }
  8219. #u27686.disabled {
  8220. }
  8221. .u27686_input_option {
  8222. font-size:14px;
  8223. }
  8224. #u27687_div {
  8225. border-width:0px;
  8226. position:absolute;
  8227. left:0px;
  8228. top:0px;
  8229. width:109px;
  8230. height:40px;
  8231. background:inherit;
  8232. background-color:rgba(255, 255, 255, 0);
  8233. border:none;
  8234. border-top:0px;
  8235. border-right:0px;
  8236. border-bottom:0px;
  8237. border-radius:0px;
  8238. border-top-left-radius:0px;
  8239. border-bottom-left-radius:0px;
  8240. -moz-box-shadow:none;
  8241. -webkit-box-shadow:none;
  8242. box-shadow:none;
  8243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8244. font-weight:400;
  8245. font-style:normal;
  8246. font-size:14px;
  8247. }
  8248. #u27687 {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:1063px;
  8252. top:951px;
  8253. width:109px;
  8254. height:40px;
  8255. display:flex;
  8256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8257. font-weight:400;
  8258. font-style:normal;
  8259. font-size:14px;
  8260. }
  8261. #u27687 .text {
  8262. position:absolute;
  8263. align-self:center;
  8264. padding:5px 10px 5px 0px;
  8265. box-sizing:border-box;
  8266. width:100%;
  8267. }
  8268. #u27687_text {
  8269. border-width:0px;
  8270. white-space:nowrap;
  8271. text-transform:none;
  8272. }
  8273. #u27688 {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:0px;
  8277. top:0px;
  8278. width:0px;
  8279. height:0px;
  8280. }
  8281. #u27689_div {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:0px;
  8285. top:0px;
  8286. width:407px;
  8287. height:40px;
  8288. background:inherit;
  8289. background-color:rgba(255, 255, 255, 1);
  8290. box-sizing:border-box;
  8291. border-width:1px;
  8292. border-style:solid;
  8293. border-color:rgba(215, 215, 215, 1);
  8294. border-radius:4px;
  8295. -moz-box-shadow:none;
  8296. -webkit-box-shadow:none;
  8297. box-shadow:none;
  8298. font-size:14px;
  8299. }
  8300. #u27689 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:1172px;
  8304. top:1001px;
  8305. width:407px;
  8306. height:40px;
  8307. display:flex;
  8308. font-size:14px;
  8309. }
  8310. #u27689 .text {
  8311. position:absolute;
  8312. align-self:center;
  8313. padding:2px 2px 2px 2px;
  8314. box-sizing:border-box;
  8315. width:100%;
  8316. }
  8317. #u27689_text {
  8318. border-width:0px;
  8319. word-wrap:break-word;
  8320. text-transform:none;
  8321. visibility:hidden;
  8322. }
  8323. #u27690_input {
  8324. position:absolute;
  8325. left:0px;
  8326. top:0px;
  8327. width:390px;
  8328. height:31px;
  8329. padding:2px 2px 2px 2px;
  8330. font-family:'ArialMT', 'Arial', sans-serif;
  8331. font-weight:400;
  8332. font-style:normal;
  8333. font-size:14px;
  8334. letter-spacing:normal;
  8335. color:#AAAAAA;
  8336. vertical-align:none;
  8337. text-align:left;
  8338. text-transform:none;
  8339. background-color:transparent;
  8340. border-color:transparent;
  8341. }
  8342. #u27690_input.disabled {
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:390px;
  8347. height:31px;
  8348. padding:2px 2px 2px 2px;
  8349. font-family:'ArialMT', 'Arial', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:14px;
  8353. letter-spacing:normal;
  8354. color:#AAAAAA;
  8355. vertical-align:none;
  8356. text-align:left;
  8357. text-transform:none;
  8358. background-color:transparent;
  8359. border-color:transparent;
  8360. }
  8361. #u27690_div {
  8362. border-width:0px;
  8363. position:absolute;
  8364. left:0px;
  8365. top:0px;
  8366. width:390px;
  8367. height:31px;
  8368. background:inherit;
  8369. background-color:rgba(255, 255, 255, 1);
  8370. border:none;
  8371. border-radius:0px;
  8372. -moz-box-shadow:none;
  8373. -webkit-box-shadow:none;
  8374. box-shadow:none;
  8375. font-size:14px;
  8376. color:#AAAAAA;
  8377. }
  8378. #u27690 {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:1184px;
  8382. top:1004px;
  8383. width:390px;
  8384. height:31px;
  8385. display:flex;
  8386. font-size:14px;
  8387. color:#AAAAAA;
  8388. }
  8389. #u27690 .text {
  8390. position:absolute;
  8391. align-self:flex-start;
  8392. padding:2px 2px 2px 2px;
  8393. box-sizing:border-box;
  8394. width:100%;
  8395. }
  8396. #u27690_div.disabled {
  8397. border-width:0px;
  8398. position:absolute;
  8399. left:0px;
  8400. top:0px;
  8401. width:390px;
  8402. height:31px;
  8403. background:inherit;
  8404. background-color:rgba(240, 240, 240, 1);
  8405. border:none;
  8406. border-radius:0px;
  8407. -moz-box-shadow:none;
  8408. -webkit-box-shadow:none;
  8409. box-shadow:none;
  8410. font-size:14px;
  8411. color:#AAAAAA;
  8412. }
  8413. #u27690.disabled {
  8414. }
  8415. .u27690_input_option {
  8416. font-size:14px;
  8417. }
  8418. #u27691_div {
  8419. border-width:0px;
  8420. position:absolute;
  8421. left:0px;
  8422. top:0px;
  8423. width:74px;
  8424. height:40px;
  8425. background:inherit;
  8426. background-color:rgba(255, 255, 255, 0);
  8427. border:none;
  8428. border-top:0px;
  8429. border-right:0px;
  8430. border-bottom:0px;
  8431. border-radius:0px;
  8432. border-top-left-radius:0px;
  8433. border-bottom-left-radius:0px;
  8434. -moz-box-shadow:none;
  8435. -webkit-box-shadow:none;
  8436. box-shadow:none;
  8437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8438. font-weight:400;
  8439. font-style:normal;
  8440. font-size:14px;
  8441. }
  8442. #u27691 {
  8443. border-width:0px;
  8444. position:absolute;
  8445. left:1063px;
  8446. top:1001px;
  8447. width:74px;
  8448. height:40px;
  8449. display:flex;
  8450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8451. font-weight:400;
  8452. font-style:normal;
  8453. font-size:14px;
  8454. }
  8455. #u27691 .text {
  8456. position:absolute;
  8457. align-self:center;
  8458. padding:5px 10px 5px 0px;
  8459. box-sizing:border-box;
  8460. width:100%;
  8461. }
  8462. #u27691_text {
  8463. border-width:0px;
  8464. white-space:nowrap;
  8465. text-transform:none;
  8466. }
  8467. #u27692_div {
  8468. border-width:0px;
  8469. position:absolute;
  8470. left:0px;
  8471. top:0px;
  8472. width:81px;
  8473. height:40px;
  8474. background:inherit;
  8475. background-color:rgba(255, 255, 255, 0);
  8476. border:none;
  8477. border-top:0px;
  8478. border-right:0px;
  8479. border-bottom:0px;
  8480. border-radius:0px;
  8481. border-top-left-radius:0px;
  8482. border-bottom-left-radius:0px;
  8483. -moz-box-shadow:none;
  8484. -webkit-box-shadow:none;
  8485. box-shadow:none;
  8486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8487. font-weight:400;
  8488. font-style:normal;
  8489. font-size:14px;
  8490. text-align:right;
  8491. }
  8492. #u27692 {
  8493. border-width:0px;
  8494. position:absolute;
  8495. left:1063px;
  8496. top:1051px;
  8497. width:81px;
  8498. height:40px;
  8499. display:flex;
  8500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8501. font-weight:400;
  8502. font-style:normal;
  8503. font-size:14px;
  8504. text-align:right;
  8505. }
  8506. #u27692 .text {
  8507. position:absolute;
  8508. align-self:center;
  8509. padding:5px 10px 5px 0px;
  8510. box-sizing:border-box;
  8511. width:100%;
  8512. }
  8513. #u27692_text {
  8514. border-width:0px;
  8515. white-space:nowrap;
  8516. text-transform:none;
  8517. }
  8518. #u27693 {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:0px;
  8522. top:0px;
  8523. width:0px;
  8524. height:0px;
  8525. }
  8526. #u27694_div {
  8527. border-width:0px;
  8528. position:absolute;
  8529. left:0px;
  8530. top:0px;
  8531. width:406px;
  8532. height:80px;
  8533. background:inherit;
  8534. background-color:rgba(255, 255, 255, 1);
  8535. box-sizing:border-box;
  8536. border-width:1px;
  8537. border-style:solid;
  8538. border-color:rgba(201, 201, 201, 1);
  8539. border-radius:4px;
  8540. -moz-box-shadow:none;
  8541. -webkit-box-shadow:none;
  8542. box-shadow:none;
  8543. font-family:'Microsoft YaHei', sans-serif;
  8544. font-weight:400;
  8545. font-style:normal;
  8546. font-size:14px;
  8547. color:#CCCCCC;
  8548. text-align:left;
  8549. }
  8550. #u27694 {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:1173px;
  8554. top:1051px;
  8555. width:406px;
  8556. height:80px;
  8557. display:flex;
  8558. font-family:'Microsoft YaHei', sans-serif;
  8559. font-weight:400;
  8560. font-style:normal;
  8561. font-size:14px;
  8562. color:#CCCCCC;
  8563. text-align:left;
  8564. }
  8565. #u27694 .text {
  8566. position:absolute;
  8567. align-self:center;
  8568. padding:2px 8px 2px 8px;
  8569. box-sizing:border-box;
  8570. width:100%;
  8571. }
  8572. #u27694_text {
  8573. border-width:0px;
  8574. word-wrap:break-word;
  8575. text-transform:none;
  8576. visibility:hidden;
  8577. }
  8578. #u27695_input {
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:386px;
  8583. height:38px;
  8584. padding:2px 2px 2px 2px;
  8585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8586. font-weight:400;
  8587. font-style:normal;
  8588. font-size:14px;
  8589. letter-spacing:normal;
  8590. color:#000000;
  8591. vertical-align:none;
  8592. text-align:left;
  8593. text-transform:none;
  8594. background-color:transparent;
  8595. border-color:transparent;
  8596. }
  8597. #u27695_input.disabled {
  8598. position:absolute;
  8599. left:0px;
  8600. top:0px;
  8601. width:386px;
  8602. height:38px;
  8603. padding:2px 2px 2px 2px;
  8604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8605. font-weight:400;
  8606. font-style:normal;
  8607. font-size:14px;
  8608. letter-spacing:normal;
  8609. color:#000000;
  8610. vertical-align:none;
  8611. text-align:left;
  8612. text-transform:none;
  8613. background-color:transparent;
  8614. border-color:transparent;
  8615. }
  8616. #u27695_div {
  8617. border-width:0px;
  8618. position:absolute;
  8619. left:0px;
  8620. top:0px;
  8621. width:386px;
  8622. height:38px;
  8623. background:inherit;
  8624. background-color:rgba(255, 255, 255, 1);
  8625. border:none;
  8626. border-radius:0px;
  8627. -moz-box-shadow:none;
  8628. -webkit-box-shadow:none;
  8629. box-shadow:none;
  8630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8631. font-weight:400;
  8632. font-style:normal;
  8633. font-size:14px;
  8634. }
  8635. #u27695 {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:1184px;
  8639. top:1052px;
  8640. width:386px;
  8641. height:38px;
  8642. display:flex;
  8643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8644. font-weight:400;
  8645. font-style:normal;
  8646. font-size:14px;
  8647. }
  8648. #u27695 .text {
  8649. position:absolute;
  8650. align-self:center;
  8651. padding:2px 2px 2px 2px;
  8652. box-sizing:border-box;
  8653. width:100%;
  8654. }
  8655. #u27695_div.disabled {
  8656. border-width:0px;
  8657. position:absolute;
  8658. left:0px;
  8659. top:0px;
  8660. width:386px;
  8661. height:38px;
  8662. background:inherit;
  8663. background-color:rgba(240, 240, 240, 1);
  8664. border:none;
  8665. border-radius:0px;
  8666. -moz-box-shadow:none;
  8667. -webkit-box-shadow:none;
  8668. box-shadow:none;
  8669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8670. font-weight:400;
  8671. font-style:normal;
  8672. font-size:14px;
  8673. }
  8674. #u27695.disabled {
  8675. }
  8676. #u27696 {
  8677. border-width:0px;
  8678. position:absolute;
  8679. left:0px;
  8680. top:0px;
  8681. width:0px;
  8682. height:0px;
  8683. }
  8684. #u27697_div {
  8685. border-width:0px;
  8686. position:absolute;
  8687. left:0px;
  8688. top:0px;
  8689. width:200px;
  8690. height:1180px;
  8691. background:inherit;
  8692. background-color:rgba(255, 255, 255, 1);
  8693. border:none;
  8694. border-radius:0px;
  8695. -moz-box-shadow:none;
  8696. -webkit-box-shadow:none;
  8697. box-shadow:none;
  8698. }
  8699. #u27697 {
  8700. border-width:0px;
  8701. position:absolute;
  8702. left:120px;
  8703. top:50px;
  8704. width:200px;
  8705. height:1180px;
  8706. display:flex;
  8707. }
  8708. #u27697 .text {
  8709. position:absolute;
  8710. align-self:center;
  8711. padding:2px 2px 2px 2px;
  8712. box-sizing:border-box;
  8713. width:100%;
  8714. }
  8715. #u27697_text {
  8716. border-width:0px;
  8717. word-wrap:break-word;
  8718. text-transform:none;
  8719. visibility:hidden;
  8720. }
  8721. #u27698_div {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:0px;
  8725. top:0px;
  8726. width:200px;
  8727. height:60px;
  8728. background:inherit;
  8729. background-color:rgba(224, 231, 247, 1);
  8730. border:none;
  8731. border-radius:0px;
  8732. -moz-box-shadow:none;
  8733. -webkit-box-shadow:none;
  8734. box-shadow:none;
  8735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8736. font-weight:500;
  8737. font-style:normal;
  8738. font-size:18px;
  8739. }
  8740. #u27698 {
  8741. border-width:0px;
  8742. position:absolute;
  8743. left:120px;
  8744. top:50px;
  8745. width:200px;
  8746. height:60px;
  8747. display:flex;
  8748. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8749. font-weight:500;
  8750. font-style:normal;
  8751. font-size:18px;
  8752. }
  8753. #u27698 .text {
  8754. position:absolute;
  8755. align-self:center;
  8756. padding:0px 0px 0px 20px;
  8757. box-sizing:border-box;
  8758. width:100%;
  8759. }
  8760. #u27698_text {
  8761. border-width:0px;
  8762. word-wrap:break-word;
  8763. text-transform:none;
  8764. }
  8765. #u27699_div {
  8766. border-width:0px;
  8767. position:absolute;
  8768. left:0px;
  8769. top:0px;
  8770. width:65px;
  8771. height:22px;
  8772. background:inherit;
  8773. background-color:rgba(255, 255, 255, 0);
  8774. border:none;
  8775. border-radius:0px;
  8776. -moz-box-shadow:none;
  8777. -webkit-box-shadow:none;
  8778. box-shadow:none;
  8779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8780. font-weight:400;
  8781. font-style:normal;
  8782. font-size:16px;
  8783. }
  8784. #u27699 {
  8785. border-width:0px;
  8786. position:absolute;
  8787. left:147px;
  8788. top:310px;
  8789. width:65px;
  8790. height:22px;
  8791. display:flex;
  8792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8793. font-weight:400;
  8794. font-style:normal;
  8795. font-size:16px;
  8796. }
  8797. #u27699 .text {
  8798. position:absolute;
  8799. align-self:flex-start;
  8800. padding:0px 0px 0px 0px;
  8801. box-sizing:border-box;
  8802. width:100%;
  8803. }
  8804. #u27699_text {
  8805. border-width:0px;
  8806. white-space:nowrap;
  8807. text-transform:none;
  8808. }
  8809. #u27700_div {
  8810. border-width:0px;
  8811. position:absolute;
  8812. left:0px;
  8813. top:0px;
  8814. width:49px;
  8815. height:17px;
  8816. background:inherit;
  8817. background-color:rgba(255, 255, 255, 0);
  8818. border:none;
  8819. border-radius:0px;
  8820. -moz-box-shadow:none;
  8821. -webkit-box-shadow:none;
  8822. box-shadow:none;
  8823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8824. font-weight:400;
  8825. font-style:normal;
  8826. font-size:12px;
  8827. color:#AAAAAA;
  8828. }
  8829. #u27700 {
  8830. border-width:0px;
  8831. position:absolute;
  8832. left:147px;
  8833. top:233px;
  8834. width:49px;
  8835. height:17px;
  8836. display:flex;
  8837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8838. font-weight:400;
  8839. font-style:normal;
  8840. font-size:12px;
  8841. color:#AAAAAA;
  8842. }
  8843. #u27700 .text {
  8844. position:absolute;
  8845. align-self:flex-start;
  8846. padding:0px 0px 0px 0px;
  8847. box-sizing:border-box;
  8848. width:100%;
  8849. }
  8850. #u27700_text {
  8851. border-width:0px;
  8852. white-space:nowrap;
  8853. text-transform:none;
  8854. }
  8855. #u27701_div {
  8856. border-width:0px;
  8857. position:absolute;
  8858. left:0px;
  8859. top:0px;
  8860. width:65px;
  8861. height:22px;
  8862. background:inherit;
  8863. background-color:rgba(255, 255, 255, 0);
  8864. border:none;
  8865. border-radius:0px;
  8866. -moz-box-shadow:none;
  8867. -webkit-box-shadow:none;
  8868. box-shadow:none;
  8869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8870. font-weight:400;
  8871. font-style:normal;
  8872. font-size:16px;
  8873. }
  8874. #u27701 {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:147px;
  8878. top:268px;
  8879. width:65px;
  8880. height:22px;
  8881. display:flex;
  8882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8883. font-weight:400;
  8884. font-style:normal;
  8885. font-size:16px;
  8886. }
  8887. #u27701 .text {
  8888. position:absolute;
  8889. align-self:flex-start;
  8890. padding:0px 0px 0px 0px;
  8891. box-sizing:border-box;
  8892. width:100%;
  8893. }
  8894. #u27701_text {
  8895. border-width:0px;
  8896. white-space:nowrap;
  8897. text-transform:none;
  8898. }
  8899. #u27702_img {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:0px;
  8903. top:0px;
  8904. width:201px;
  8905. height:2px;
  8906. }
  8907. #u27702 {
  8908. border-width:0px;
  8909. position:absolute;
  8910. left:120px;
  8911. top:352px;
  8912. width:200px;
  8913. height:1px;
  8914. display:flex;
  8915. }
  8916. #u27702 .text {
  8917. position:absolute;
  8918. align-self:center;
  8919. padding:2px 2px 2px 2px;
  8920. box-sizing:border-box;
  8921. width:100%;
  8922. }
  8923. #u27702_text {
  8924. border-width:0px;
  8925. word-wrap:break-word;
  8926. text-transform:none;
  8927. visibility:hidden;
  8928. }
  8929. #u27703_div {
  8930. border-width:0px;
  8931. position:absolute;
  8932. left:0px;
  8933. top:0px;
  8934. width:65px;
  8935. height:22px;
  8936. background:inherit;
  8937. background-color:rgba(255, 255, 255, 0);
  8938. border:none;
  8939. border-radius:0px;
  8940. -moz-box-shadow:none;
  8941. -webkit-box-shadow:none;
  8942. box-shadow:none;
  8943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8944. font-weight:400;
  8945. font-style:normal;
  8946. font-size:16px;
  8947. }
  8948. #u27703 {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:147px;
  8952. top:408px;
  8953. width:65px;
  8954. height:22px;
  8955. display:flex;
  8956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8957. font-weight:400;
  8958. font-style:normal;
  8959. font-size:16px;
  8960. }
  8961. #u27703 .text {
  8962. position:absolute;
  8963. align-self:flex-start;
  8964. padding:0px 0px 0px 0px;
  8965. box-sizing:border-box;
  8966. width:100%;
  8967. }
  8968. #u27703_text {
  8969. border-width:0px;
  8970. white-space:nowrap;
  8971. text-transform:none;
  8972. }
  8973. #u27704_div {
  8974. border-width:0px;
  8975. position:absolute;
  8976. left:0px;
  8977. top:0px;
  8978. width:49px;
  8979. height:17px;
  8980. background:inherit;
  8981. background-color:rgba(255, 255, 255, 0);
  8982. border:none;
  8983. border-radius:0px;
  8984. -moz-box-shadow:none;
  8985. -webkit-box-shadow:none;
  8986. box-shadow:none;
  8987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8988. font-weight:400;
  8989. font-style:normal;
  8990. font-size:12px;
  8991. color:#AAAAAA;
  8992. }
  8993. #u27704 {
  8994. border-width:0px;
  8995. position:absolute;
  8996. left:147px;
  8997. top:372px;
  8998. width:49px;
  8999. height:17px;
  9000. display:flex;
  9001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9002. font-weight:400;
  9003. font-style:normal;
  9004. font-size:12px;
  9005. color:#AAAAAA;
  9006. }
  9007. #u27704 .text {
  9008. position:absolute;
  9009. align-self:flex-start;
  9010. padding:0px 0px 0px 0px;
  9011. box-sizing:border-box;
  9012. width:100%;
  9013. }
  9014. #u27704_text {
  9015. border-width:0px;
  9016. white-space:nowrap;
  9017. text-transform:none;
  9018. }
  9019. #u27705_div {
  9020. border-width:0px;
  9021. position:absolute;
  9022. left:0px;
  9023. top:0px;
  9024. width:97px;
  9025. height:22px;
  9026. background:inherit;
  9027. background-color:rgba(255, 255, 255, 0);
  9028. border:none;
  9029. border-radius:0px;
  9030. -moz-box-shadow:none;
  9031. -webkit-box-shadow:none;
  9032. box-shadow:none;
  9033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9034. font-weight:400;
  9035. font-style:normal;
  9036. font-size:16px;
  9037. }
  9038. #u27705 {
  9039. border-width:0px;
  9040. position:absolute;
  9041. left:147px;
  9042. top:450px;
  9043. width:97px;
  9044. height:22px;
  9045. display:flex;
  9046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9047. font-weight:400;
  9048. font-style:normal;
  9049. font-size:16px;
  9050. }
  9051. #u27705 .text {
  9052. position:absolute;
  9053. align-self:flex-start;
  9054. padding:0px 0px 0px 0px;
  9055. box-sizing:border-box;
  9056. width:100%;
  9057. }
  9058. #u27705_text {
  9059. border-width:0px;
  9060. word-wrap:break-word;
  9061. text-transform:none;
  9062. }
  9063. #u27706_div {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:65px;
  9069. height:22px;
  9070. background:inherit;
  9071. background-color:rgba(255, 255, 255, 0);
  9072. border:none;
  9073. border-radius:0px;
  9074. -moz-box-shadow:none;
  9075. -webkit-box-shadow:none;
  9076. box-shadow:none;
  9077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9078. font-weight:400;
  9079. font-style:normal;
  9080. font-size:16px;
  9081. }
  9082. #u27706 {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:147px;
  9086. top:166px;
  9087. width:65px;
  9088. height:22px;
  9089. display:flex;
  9090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9091. font-weight:400;
  9092. font-style:normal;
  9093. font-size:16px;
  9094. }
  9095. #u27706 .text {
  9096. position:absolute;
  9097. align-self:flex-start;
  9098. padding:0px 0px 0px 0px;
  9099. box-sizing:border-box;
  9100. width:100%;
  9101. }
  9102. #u27706_text {
  9103. border-width:0px;
  9104. white-space:nowrap;
  9105. text-transform:none;
  9106. }
  9107. #u27707_div {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:0px;
  9111. top:0px;
  9112. width:49px;
  9113. height:17px;
  9114. background:inherit;
  9115. background-color:rgba(255, 255, 255, 0);
  9116. border:none;
  9117. border-radius:0px;
  9118. -moz-box-shadow:none;
  9119. -webkit-box-shadow:none;
  9120. box-shadow:none;
  9121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9122. font-weight:400;
  9123. font-style:normal;
  9124. font-size:12px;
  9125. color:#AAAAAA;
  9126. }
  9127. #u27707 {
  9128. border-width:0px;
  9129. position:absolute;
  9130. left:147px;
  9131. top:130px;
  9132. width:49px;
  9133. height:17px;
  9134. display:flex;
  9135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9136. font-weight:400;
  9137. font-style:normal;
  9138. font-size:12px;
  9139. color:#AAAAAA;
  9140. }
  9141. #u27707 .text {
  9142. position:absolute;
  9143. align-self:flex-start;
  9144. padding:0px 0px 0px 0px;
  9145. box-sizing:border-box;
  9146. width:100%;
  9147. }
  9148. #u27707_text {
  9149. border-width:0px;
  9150. white-space:nowrap;
  9151. text-transform:none;
  9152. }
  9153. #u27708_img {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:0px;
  9157. top:0px;
  9158. width:201px;
  9159. height:2px;
  9160. }
  9161. #u27708 {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:120px;
  9165. top:212px;
  9166. width:200px;
  9167. height:1px;
  9168. display:flex;
  9169. }
  9170. #u27708 .text {
  9171. position:absolute;
  9172. align-self:center;
  9173. padding:2px 2px 2px 2px;
  9174. box-sizing:border-box;
  9175. width:100%;
  9176. }
  9177. #u27708_text {
  9178. border-width:0px;
  9179. word-wrap:break-word;
  9180. text-transform:none;
  9181. visibility:hidden;
  9182. }