styles.css 152 KB

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