styles.css 201 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1822px;
  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. #u15920_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:800px;
  25. height:60px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 1);
  28. box-sizing:border-box;
  29. border-width:1px;
  30. border-style:solid;
  31. border-color:rgba(242, 242, 242, 1);
  32. border-radius:0px;
  33. -moz-box-shadow:none;
  34. -webkit-box-shadow:none;
  35. box-shadow:none;
  36. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  37. font-weight:400;
  38. font-style:normal;
  39. font-size:14px;
  40. color:#AAAAAA;
  41. text-align:center;
  42. line-height:30px;
  43. }
  44. #u15920 {
  45. border-width:0px;
  46. position:absolute;
  47. left:0px;
  48. top:-1157px;
  49. width:800px;
  50. height:60px;
  51. display:flex;
  52. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  53. font-weight:400;
  54. font-style:normal;
  55. font-size:14px;
  56. color:#AAAAAA;
  57. text-align:center;
  58. line-height:30px;
  59. }
  60. #u15920 .text {
  61. position:absolute;
  62. align-self:center;
  63. padding:5px 10px 5px 10px;
  64. box-sizing:border-box;
  65. width:100%;
  66. }
  67. #u15920_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. visibility:hidden;
  72. }
  73. #u15921_div {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:47px;
  79. height:35px;
  80. background:inherit;
  81. background-color:rgba(255, 255, 255, 0);
  82. border:none;
  83. border-top:0px;
  84. border-right:0px;
  85. border-bottom:0px;
  86. border-radius:0px;
  87. border-top-left-radius:0px;
  88. border-bottom-left-radius:0px;
  89. -moz-box-shadow:none;
  90. -webkit-box-shadow:none;
  91. box-shadow:none;
  92. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  93. font-weight:500;
  94. font-style:normal;
  95. font-size:18px;
  96. }
  97. #u15921 {
  98. border-width:0px;
  99. position:absolute;
  100. left:31px;
  101. top:-1144px;
  102. width:47px;
  103. height:35px;
  104. display:flex;
  105. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  106. font-weight:500;
  107. font-style:normal;
  108. font-size:18px;
  109. }
  110. #u15921 .text {
  111. position:absolute;
  112. align-self:center;
  113. padding:5px 10px 5px 0px;
  114. box-sizing:border-box;
  115. width:100%;
  116. }
  117. #u15921_text {
  118. border-width:0px;
  119. white-space:nowrap;
  120. text-transform:none;
  121. }
  122. #u15922_div {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:800px;
  128. height:1086px;
  129. background:inherit;
  130. background-color:rgba(255, 255, 255, 1);
  131. box-sizing:border-box;
  132. border-width:1px;
  133. border-style:solid;
  134. border-color:rgba(242, 242, 242, 1);
  135. border-radius:0px;
  136. -moz-box-shadow:none;
  137. -webkit-box-shadow:none;
  138. box-shadow:none;
  139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  140. font-weight:400;
  141. font-style:normal;
  142. font-size:14px;
  143. color:#AAAAAA;
  144. text-align:center;
  145. line-height:30px;
  146. }
  147. #u15922 {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:-1097px;
  152. width:800px;
  153. height:1086px;
  154. display:flex;
  155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  156. font-weight:400;
  157. font-style:normal;
  158. font-size:14px;
  159. color:#AAAAAA;
  160. text-align:center;
  161. line-height:30px;
  162. }
  163. #u15922 .text {
  164. position:absolute;
  165. align-self:center;
  166. padding:5px 10px 5px 10px;
  167. box-sizing:border-box;
  168. width:100%;
  169. }
  170. #u15922_text {
  171. border-width:0px;
  172. word-wrap:break-word;
  173. text-transform:none;
  174. visibility:hidden;
  175. }
  176. #u15923_div {
  177. border-width:0px;
  178. position:absolute;
  179. left:0px;
  180. top:0px;
  181. width:82px;
  182. height:40px;
  183. background:inherit;
  184. background-color:rgba(255, 255, 255, 0);
  185. border:none;
  186. border-left:0px;
  187. border-top:0px;
  188. border-right:0px;
  189. border-radius:0px;
  190. border-bottom-right-radius:0px;
  191. border-bottom-left-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  196. font-weight:500;
  197. font-style:normal;
  198. font-size:18px;
  199. }
  200. #u15923 {
  201. border-width:0px;
  202. position:absolute;
  203. left:39px;
  204. top:-1071px;
  205. width:82px;
  206. height:40px;
  207. display:flex;
  208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  209. font-weight:500;
  210. font-style:normal;
  211. font-size:18px;
  212. }
  213. #u15923 .text {
  214. position:absolute;
  215. align-self:center;
  216. padding:0px 0px 0px 0px;
  217. box-sizing:border-box;
  218. width:100%;
  219. }
  220. #u15923_text {
  221. border-width:0px;
  222. white-space:nowrap;
  223. text-transform:none;
  224. }
  225. #u15924_div {
  226. border-width:0px;
  227. position:absolute;
  228. left:0px;
  229. top:0px;
  230. width:40px;
  231. height:40px;
  232. background:inherit;
  233. background-color:rgba(255, 255, 255, 0);
  234. border:none;
  235. border-top:0px;
  236. border-right:0px;
  237. border-bottom:0px;
  238. border-radius:0px;
  239. border-top-left-radius:0px;
  240. border-bottom-left-radius:0px;
  241. -moz-box-shadow:none;
  242. -webkit-box-shadow:none;
  243. box-shadow:none;
  244. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  245. font-weight:500;
  246. font-style:normal;
  247. font-size:24px;
  248. text-align:center;
  249. }
  250. #u15924 {
  251. border-width:0px;
  252. position:absolute;
  253. left:760px;
  254. top:-1157px;
  255. width:40px;
  256. height:40px;
  257. display:flex;
  258. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  259. font-weight:500;
  260. font-style:normal;
  261. font-size:24px;
  262. text-align:center;
  263. }
  264. #u15924 .text {
  265. position:absolute;
  266. align-self:center;
  267. padding:5px 10px 5px 0px;
  268. box-sizing:border-box;
  269. width:100%;
  270. }
  271. #u15924_text {
  272. border-width:0px;
  273. word-wrap:break-word;
  274. text-transform:none;
  275. }
  276. #u15925_div {
  277. border-width:0px;
  278. position:absolute;
  279. left:0px;
  280. top:0px;
  281. width:57px;
  282. height:40px;
  283. background:inherit;
  284. background-color:rgba(255, 255, 255, 0);
  285. border:none;
  286. border-left:0px;
  287. border-top:0px;
  288. border-right:0px;
  289. border-radius:0px;
  290. border-bottom-right-radius:0px;
  291. border-bottom-left-radius:0px;
  292. -moz-box-shadow:none;
  293. -webkit-box-shadow:none;
  294. box-shadow:none;
  295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  296. font-weight:400;
  297. font-style:normal;
  298. font-size:14px;
  299. }
  300. #u15925 {
  301. border-width:0px;
  302. position:absolute;
  303. left:546px;
  304. top:-891px;
  305. width:57px;
  306. height:40px;
  307. display:flex;
  308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  309. font-weight:400;
  310. font-style:normal;
  311. font-size:14px;
  312. }
  313. #u15925 .text {
  314. position:absolute;
  315. align-self:center;
  316. padding:0px 0px 0px 0px;
  317. box-sizing:border-box;
  318. width:100%;
  319. }
  320. #u15925_text {
  321. border-width:0px;
  322. white-space:nowrap;
  323. text-transform:none;
  324. }
  325. #u15926_div {
  326. border-width:0px;
  327. position:absolute;
  328. left:0px;
  329. top:0px;
  330. width:180px;
  331. height:180px;
  332. background:inherit;
  333. background-color:rgba(255, 255, 255, 1);
  334. box-sizing:border-box;
  335. border-width:1px;
  336. border-style:solid;
  337. border-color:rgba(201, 201, 201, 1);
  338. border-radius:4px;
  339. -moz-box-shadow:none;
  340. -webkit-box-shadow:none;
  341. box-shadow:none;
  342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  343. font-weight:400;
  344. font-style:normal;
  345. font-size:38px;
  346. }
  347. #u15926 {
  348. border-width:0px;
  349. position:absolute;
  350. left:546px;
  351. top:-851px;
  352. width:180px;
  353. height:180px;
  354. display:flex;
  355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  356. font-weight:400;
  357. font-style:normal;
  358. font-size:38px;
  359. }
  360. #u15926 .text {
  361. position:absolute;
  362. align-self:center;
  363. padding:2px 8px 2px 8px;
  364. box-sizing:border-box;
  365. width:100%;
  366. }
  367. #u15926_text {
  368. border-width:0px;
  369. word-wrap:break-word;
  370. text-transform:none;
  371. }
  372. #u15927_div {
  373. border-width:0px;
  374. position:absolute;
  375. left:0px;
  376. top:0px;
  377. width:73px;
  378. height:40px;
  379. background:inherit;
  380. background-color:rgba(255, 255, 255, 0);
  381. border:none;
  382. border-left:0px;
  383. border-top:0px;
  384. border-right:0px;
  385. border-radius:0px;
  386. border-bottom-right-radius:0px;
  387. border-bottom-left-radius:0px;
  388. -moz-box-shadow:none;
  389. -webkit-box-shadow:none;
  390. box-shadow:none;
  391. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  392. font-weight:500;
  393. font-style:normal;
  394. font-size:18px;
  395. }
  396. #u15927 {
  397. border-width:0px;
  398. position:absolute;
  399. left:39px;
  400. top:-951px;
  401. width:73px;
  402. height:40px;
  403. display:flex;
  404. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  405. font-weight:500;
  406. font-style:normal;
  407. font-size:18px;
  408. }
  409. #u15927 .text {
  410. position:absolute;
  411. align-self:center;
  412. padding:0px 0px 0px 0px;
  413. box-sizing:border-box;
  414. width:100%;
  415. }
  416. #u15927_text {
  417. border-width:0px;
  418. white-space:nowrap;
  419. text-transform:none;
  420. }
  421. #u15928_div {
  422. border-width:0px;
  423. position:absolute;
  424. left:0px;
  425. top:0px;
  426. width:78px;
  427. height:40px;
  428. background:inherit;
  429. background-color:rgba(255, 255, 255, 0);
  430. border:none;
  431. border-left:0px;
  432. border-top:0px;
  433. border-right:0px;
  434. border-radius:0px;
  435. border-bottom-right-radius:0px;
  436. border-bottom-left-radius:0px;
  437. -moz-box-shadow:none;
  438. -webkit-box-shadow:none;
  439. box-shadow:none;
  440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  441. font-weight:400;
  442. font-style:normal;
  443. font-size:14px;
  444. }
  445. #u15928 {
  446. border-width:0px;
  447. position:absolute;
  448. left:39px;
  449. top:-538px;
  450. width:78px;
  451. height:40px;
  452. display:flex;
  453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  454. font-weight:400;
  455. font-style:normal;
  456. font-size:14px;
  457. }
  458. #u15928 .text {
  459. position:absolute;
  460. align-self:center;
  461. padding:0px 0px 0px 0px;
  462. box-sizing:border-box;
  463. width:100%;
  464. }
  465. #u15928_text {
  466. border-width:0px;
  467. white-space:nowrap;
  468. text-transform:none;
  469. }
  470. #u15929 {
  471. border-width:0px;
  472. position:absolute;
  473. left:0px;
  474. top:0px;
  475. width:0px;
  476. height:0px;
  477. }
  478. #u15930_div {
  479. border-width:0px;
  480. position:absolute;
  481. left:0px;
  482. top:0px;
  483. width:200px;
  484. height:40px;
  485. background:inherit;
  486. background-color:rgba(242, 242, 242, 1);
  487. box-sizing:border-box;
  488. border-width:1px;
  489. border-style:solid;
  490. border-color:rgba(215, 215, 215, 1);
  491. border-radius:4px;
  492. -moz-box-shadow:none;
  493. -webkit-box-shadow:none;
  494. box-shadow:none;
  495. font-size:14px;
  496. }
  497. #u15930 {
  498. border-width:0px;
  499. position:absolute;
  500. left:39px;
  501. top:-498px;
  502. width:200px;
  503. height:40px;
  504. display:flex;
  505. font-size:14px;
  506. }
  507. #u15930 .text {
  508. position:absolute;
  509. align-self:center;
  510. padding:2px 2px 2px 2px;
  511. box-sizing:border-box;
  512. width:100%;
  513. }
  514. #u15930_text {
  515. border-width:0px;
  516. word-wrap:break-word;
  517. text-transform:none;
  518. visibility:hidden;
  519. }
  520. #u15931_input {
  521. position:absolute;
  522. left:0px;
  523. top:0px;
  524. width:191px;
  525. height:31px;
  526. padding:2px 2px 2px 2px;
  527. font-family:'ArialMT', 'Arial', sans-serif;
  528. font-weight:400;
  529. font-style:normal;
  530. font-size:14px;
  531. letter-spacing:normal;
  532. color:#AAAAAA;
  533. vertical-align:none;
  534. text-align:left;
  535. text-transform:none;
  536. background-color:transparent;
  537. border-color:transparent;
  538. }
  539. #u15931_input.disabled {
  540. position:absolute;
  541. left:0px;
  542. top:0px;
  543. width:191px;
  544. height:31px;
  545. padding:2px 2px 2px 2px;
  546. font-family:'ArialMT', 'Arial', sans-serif;
  547. font-weight:400;
  548. font-style:normal;
  549. font-size:14px;
  550. letter-spacing:normal;
  551. color:#AAAAAA;
  552. vertical-align:none;
  553. text-align:left;
  554. text-transform:none;
  555. background-color:transparent;
  556. border-color:transparent;
  557. }
  558. #u15931_div {
  559. border-width:0px;
  560. position:absolute;
  561. left:0px;
  562. top:0px;
  563. width:191px;
  564. height:31px;
  565. background:inherit;
  566. background-color:rgba(242, 242, 242, 1);
  567. border:none;
  568. border-radius:0px;
  569. -moz-box-shadow:none;
  570. -webkit-box-shadow:none;
  571. box-shadow:none;
  572. font-size:14px;
  573. color:#AAAAAA;
  574. }
  575. #u15931 {
  576. border-width:0px;
  577. position:absolute;
  578. left:45px;
  579. top:-495px;
  580. width:191px;
  581. height:31px;
  582. display:flex;
  583. font-size:14px;
  584. color:#AAAAAA;
  585. }
  586. #u15931 .text {
  587. position:absolute;
  588. align-self:flex-start;
  589. padding:2px 2px 2px 2px;
  590. box-sizing:border-box;
  591. width:100%;
  592. }
  593. #u15931_div.disabled {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:191px;
  599. height:31px;
  600. background:inherit;
  601. background-color:rgba(240, 240, 240, 1);
  602. border:none;
  603. border-radius:0px;
  604. -moz-box-shadow:none;
  605. -webkit-box-shadow:none;
  606. box-shadow:none;
  607. font-size:14px;
  608. color:#AAAAAA;
  609. }
  610. #u15931.disabled {
  611. }
  612. .u15931_input_option {
  613. font-size:14px;
  614. }
  615. #u15932_div {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:57px;
  621. height:40px;
  622. background:inherit;
  623. background-color:rgba(255, 255, 255, 0);
  624. border:none;
  625. border-left:0px;
  626. border-top:0px;
  627. border-right:0px;
  628. border-radius:0px;
  629. border-bottom-right-radius:0px;
  630. border-bottom-left-radius:0px;
  631. -moz-box-shadow:none;
  632. -webkit-box-shadow:none;
  633. box-shadow:none;
  634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  635. font-weight:400;
  636. font-style:normal;
  637. font-size:14px;
  638. }
  639. #u15932 {
  640. border-width:0px;
  641. position:absolute;
  642. left:269px;
  643. top:-538px;
  644. width:57px;
  645. height:40px;
  646. display:flex;
  647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  648. font-weight:400;
  649. font-style:normal;
  650. font-size:14px;
  651. }
  652. #u15932 .text {
  653. position:absolute;
  654. align-self:center;
  655. padding:0px 0px 0px 0px;
  656. box-sizing:border-box;
  657. width:100%;
  658. }
  659. #u15932_text {
  660. border-width:0px;
  661. white-space:nowrap;
  662. text-transform:none;
  663. }
  664. #u15933 {
  665. border-width:0px;
  666. position:absolute;
  667. left:0px;
  668. top:0px;
  669. width:0px;
  670. height:0px;
  671. }
  672. #u15934_div {
  673. border-width:0px;
  674. position:absolute;
  675. left:0px;
  676. top:0px;
  677. width:200px;
  678. height:40px;
  679. background:inherit;
  680. background-color:rgba(255, 255, 255, 1);
  681. box-sizing:border-box;
  682. border-width:1px;
  683. border-style:solid;
  684. border-color:rgba(215, 215, 215, 1);
  685. border-radius:4px;
  686. -moz-box-shadow:none;
  687. -webkit-box-shadow:none;
  688. box-shadow:none;
  689. font-size:14px;
  690. }
  691. #u15934 {
  692. border-width:0px;
  693. position:absolute;
  694. left:269px;
  695. top:-498px;
  696. width:200px;
  697. height:40px;
  698. display:flex;
  699. font-size:14px;
  700. }
  701. #u15934 .text {
  702. position:absolute;
  703. align-self:center;
  704. padding:2px 2px 2px 2px;
  705. box-sizing:border-box;
  706. width:100%;
  707. }
  708. #u15934_text {
  709. border-width:0px;
  710. word-wrap:break-word;
  711. text-transform:none;
  712. visibility:hidden;
  713. }
  714. #u15935_input {
  715. position:absolute;
  716. left:0px;
  717. top:0px;
  718. width:191px;
  719. height:31px;
  720. padding:2px 2px 2px 2px;
  721. font-family:'ArialMT', 'Arial', sans-serif;
  722. font-weight:400;
  723. font-style:normal;
  724. font-size:14px;
  725. letter-spacing:normal;
  726. color:#AAAAAA;
  727. vertical-align:none;
  728. text-align:left;
  729. text-transform:none;
  730. background-color:transparent;
  731. border-color:transparent;
  732. }
  733. #u15935_input.disabled {
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:191px;
  738. height:31px;
  739. padding:2px 2px 2px 2px;
  740. font-family:'ArialMT', 'Arial', sans-serif;
  741. font-weight:400;
  742. font-style:normal;
  743. font-size:14px;
  744. letter-spacing:normal;
  745. color:#AAAAAA;
  746. vertical-align:none;
  747. text-align:left;
  748. text-transform:none;
  749. background-color:transparent;
  750. border-color:transparent;
  751. }
  752. #u15935_div {
  753. border-width:0px;
  754. position:absolute;
  755. left:0px;
  756. top:0px;
  757. width:191px;
  758. height:31px;
  759. background:inherit;
  760. background-color:rgba(255, 255, 255, 1);
  761. border:none;
  762. border-radius:0px;
  763. -moz-box-shadow:none;
  764. -webkit-box-shadow:none;
  765. box-shadow:none;
  766. font-size:14px;
  767. color:#AAAAAA;
  768. }
  769. #u15935 {
  770. border-width:0px;
  771. position:absolute;
  772. left:275px;
  773. top:-495px;
  774. width:191px;
  775. height:31px;
  776. display:flex;
  777. font-size:14px;
  778. color:#AAAAAA;
  779. }
  780. #u15935 .text {
  781. position:absolute;
  782. align-self:flex-start;
  783. padding:2px 2px 2px 2px;
  784. box-sizing:border-box;
  785. width:100%;
  786. }
  787. #u15935_div.disabled {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:191px;
  793. height:31px;
  794. background:inherit;
  795. background-color:rgba(240, 240, 240, 1);
  796. border:none;
  797. border-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. font-size:14px;
  802. color:#AAAAAA;
  803. }
  804. #u15935.disabled {
  805. }
  806. .u15935_input_option {
  807. font-size:14px;
  808. }
  809. #u15936 label {
  810. left:0px;
  811. width:100%;
  812. }
  813. #u15936_img {
  814. border-width:0px;
  815. position:absolute;
  816. left:0px;
  817. top:3px;
  818. width:12px;
  819. height:12px;
  820. }
  821. #u15936 {
  822. border-width:0px;
  823. position:absolute;
  824. left:198px;
  825. top:-527px;
  826. width:55px;
  827. height:18px;
  828. display:flex;
  829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  830. font-weight:400;
  831. font-style:normal;
  832. }
  833. #u15936 .text {
  834. position:absolute;
  835. align-self:center;
  836. padding:0px 2px 0px 2px;
  837. box-sizing:border-box;
  838. }
  839. #u15936_img.selected {
  840. }
  841. #u15936.selected {
  842. }
  843. #u15936_img.disabled {
  844. }
  845. #u15936.disabled {
  846. }
  847. #u15936_img.selectedDisabled {
  848. }
  849. #u15936.selectedDisabled {
  850. }
  851. #u15936_text {
  852. border-width:0px;
  853. position:absolute;
  854. left:14px;
  855. top:0px;
  856. width:39px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. }
  860. #u15936_input {
  861. border-width:0px;
  862. position:absolute;
  863. left:0px;
  864. top:0px;
  865. width:0px;
  866. height:0px;
  867. opacity:0;
  868. }
  869. #u15937_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:180px;
  875. height:40px;
  876. background:inherit;
  877. background-color:rgba(24, 144, 255, 1);
  878. border:none;
  879. border-radius:4px;
  880. -moz-box-shadow:none;
  881. -webkit-box-shadow:none;
  882. box-shadow:none;
  883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  884. font-weight:400;
  885. font-style:normal;
  886. font-size:14px;
  887. color:#FFFFFF;
  888. }
  889. #u15937 {
  890. border-width:0px;
  891. position:absolute;
  892. left:546px;
  893. top:-648px;
  894. width:180px;
  895. height:40px;
  896. display:flex;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:14px;
  901. color:#FFFFFF;
  902. }
  903. #u15937 .text {
  904. position:absolute;
  905. align-self:center;
  906. padding:2px 2px 2px 2px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u15937_text {
  911. border-width:0px;
  912. word-wrap:break-word;
  913. text-transform:none;
  914. }
  915. #u15938_div {
  916. border-width:0px;
  917. position:absolute;
  918. left:0px;
  919. top:0px;
  920. width:180px;
  921. height:40px;
  922. background:inherit;
  923. background-color:rgba(24, 144, 255, 1);
  924. border:none;
  925. border-radius:4px;
  926. -moz-box-shadow:none;
  927. -webkit-box-shadow:none;
  928. box-shadow:none;
  929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  930. font-weight:400;
  931. font-style:normal;
  932. font-size:14px;
  933. color:#FFFFFF;
  934. }
  935. #u15938 {
  936. border-width:0px;
  937. position:absolute;
  938. left:546px;
  939. top:-588px;
  940. width:180px;
  941. height:40px;
  942. display:flex;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:14px;
  947. color:#FFFFFF;
  948. }
  949. #u15938 .text {
  950. position:absolute;
  951. align-self:center;
  952. padding:2px 2px 2px 2px;
  953. box-sizing:border-box;
  954. width:100%;
  955. }
  956. #u15938_text {
  957. border-width:0px;
  958. word-wrap:break-word;
  959. text-transform:none;
  960. }
  961. #u15939 {
  962. border-width:0px;
  963. position:absolute;
  964. left:0px;
  965. top:0px;
  966. width:0px;
  967. height:0px;
  968. }
  969. #u15940_div {
  970. border-width:0px;
  971. position:absolute;
  972. left:0px;
  973. top:0px;
  974. width:800px;
  975. height:60px;
  976. background:inherit;
  977. background-color:rgba(255, 255, 255, 1);
  978. box-sizing:border-box;
  979. border-width:1px;
  980. border-style:solid;
  981. border-color:rgba(215, 215, 215, 1);
  982. border-radius:0px;
  983. -moz-box-shadow:none;
  984. -webkit-box-shadow:none;
  985. box-shadow:none;
  986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  987. font-weight:400;
  988. font-style:normal;
  989. font-size:14px;
  990. color:#AAAAAA;
  991. text-align:center;
  992. line-height:30px;
  993. }
  994. #u15940 {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:-11px;
  999. width:800px;
  1000. height:60px;
  1001. display:flex;
  1002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1003. font-weight:400;
  1004. font-style:normal;
  1005. font-size:14px;
  1006. color:#AAAAAA;
  1007. text-align:center;
  1008. line-height:30px;
  1009. }
  1010. #u15940 .text {
  1011. position:absolute;
  1012. align-self:center;
  1013. padding:5px 10px 5px 10px;
  1014. box-sizing:border-box;
  1015. width:100%;
  1016. }
  1017. #u15940_text {
  1018. border-width:0px;
  1019. word-wrap:break-word;
  1020. text-transform:none;
  1021. visibility:hidden;
  1022. }
  1023. #u15941_img {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:80px;
  1029. height:30px;
  1030. }
  1031. #u15941 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:680px;
  1035. top:4px;
  1036. width:80px;
  1037. height:30px;
  1038. display:flex;
  1039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1040. font-weight:400;
  1041. font-style:normal;
  1042. font-size:14px;
  1043. color:#FFFFFF;
  1044. }
  1045. #u15941 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:2px 2px 2px 2px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u15941_text {
  1053. border-width:0px;
  1054. word-wrap:break-word;
  1055. text-transform:none;
  1056. }
  1057. #u15942_div {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:80px;
  1063. height:30px;
  1064. background:inherit;
  1065. background-color:rgba(255, 255, 255, 1);
  1066. box-sizing:border-box;
  1067. border-width:1px;
  1068. border-style:solid;
  1069. border-color:rgba(170, 170, 170, 1);
  1070. border-radius:4px;
  1071. -moz-box-shadow:none;
  1072. -webkit-box-shadow:none;
  1073. box-shadow:none;
  1074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1075. font-weight:400;
  1076. font-style:normal;
  1077. font-size:14px;
  1078. }
  1079. #u15942 {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:590px;
  1083. top:4px;
  1084. width:80px;
  1085. height:30px;
  1086. display:flex;
  1087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1088. font-weight:400;
  1089. font-style:normal;
  1090. font-size:14px;
  1091. }
  1092. #u15942 .text {
  1093. position:absolute;
  1094. align-self:center;
  1095. padding:2px 2px 2px 2px;
  1096. box-sizing:border-box;
  1097. width:100%;
  1098. }
  1099. #u15942_text {
  1100. border-width:0px;
  1101. word-wrap:break-word;
  1102. text-transform:none;
  1103. }
  1104. #u15943_div {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:734px;
  1110. height:20px;
  1111. background:inherit;
  1112. background-color:rgba(255, 255, 255, 0);
  1113. border:none;
  1114. border-left:0px;
  1115. border-top:0px;
  1116. border-right:0px;
  1117. border-radius:0px;
  1118. border-bottom-right-radius:0px;
  1119. border-bottom-left-radius:0px;
  1120. -moz-box-shadow:none;
  1121. -webkit-box-shadow:none;
  1122. box-shadow:none;
  1123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1124. font-weight:400;
  1125. font-style:normal;
  1126. font-size:14px;
  1127. color:#D9001B;
  1128. }
  1129. #u15943 {
  1130. border-width:0px;
  1131. position:absolute;
  1132. left:114px;
  1133. top:-49px;
  1134. width:734px;
  1135. height:20px;
  1136. display:flex;
  1137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1138. font-weight:400;
  1139. font-style:normal;
  1140. font-size:14px;
  1141. color:#D9001B;
  1142. }
  1143. #u15943 .text {
  1144. position:absolute;
  1145. align-self:center;
  1146. padding:0px 0px 0px 0px;
  1147. box-sizing:border-box;
  1148. width:100%;
  1149. }
  1150. #u15943_text {
  1151. border-width:0px;
  1152. white-space:nowrap;
  1153. text-transform:none;
  1154. }
  1155. #u15944_div {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:0px;
  1159. top:0px;
  1160. width:36px;
  1161. height:40px;
  1162. background:inherit;
  1163. background-color:rgba(255, 255, 255, 0);
  1164. border:none;
  1165. border-left:0px;
  1166. border-top:0px;
  1167. border-right:0px;
  1168. border-radius:0px;
  1169. border-bottom-right-radius:0px;
  1170. border-bottom-left-radius:0px;
  1171. -moz-box-shadow:none;
  1172. -webkit-box-shadow:none;
  1173. box-shadow:none;
  1174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1175. font-weight:400;
  1176. font-style:normal;
  1177. font-size:14px;
  1178. }
  1179. #u15944 {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:39px;
  1183. top:-806px;
  1184. width:36px;
  1185. height:40px;
  1186. display:flex;
  1187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1188. font-weight:400;
  1189. font-style:normal;
  1190. font-size:14px;
  1191. }
  1192. #u15944 .text {
  1193. position:absolute;
  1194. align-self:center;
  1195. padding:0px 0px 0px 0px;
  1196. box-sizing:border-box;
  1197. width:100%;
  1198. }
  1199. #u15944_text {
  1200. border-width:0px;
  1201. white-space:nowrap;
  1202. text-transform:none;
  1203. }
  1204. #u15945 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:0px;
  1210. height:0px;
  1211. }
  1212. #u15946_div {
  1213. border-width:0px;
  1214. position:absolute;
  1215. left:0px;
  1216. top:0px;
  1217. width:200px;
  1218. height:40px;
  1219. background:inherit;
  1220. background-color:rgba(255, 255, 255, 1);
  1221. box-sizing:border-box;
  1222. border-width:1px;
  1223. border-style:solid;
  1224. border-color:rgba(201, 201, 201, 1);
  1225. border-radius:4px;
  1226. -moz-box-shadow:none;
  1227. -webkit-box-shadow:none;
  1228. box-shadow:none;
  1229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1230. font-weight:400;
  1231. font-style:normal;
  1232. font-size:14px;
  1233. text-align:right;
  1234. }
  1235. #u15946 {
  1236. border-width:0px;
  1237. position:absolute;
  1238. left:269px;
  1239. top:-767px;
  1240. width:200px;
  1241. height:40px;
  1242. display:flex;
  1243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1244. font-weight:400;
  1245. font-style:normal;
  1246. font-size:14px;
  1247. text-align:right;
  1248. }
  1249. #u15946 .text {
  1250. position:absolute;
  1251. align-self:center;
  1252. padding:2px 8px 2px 8px;
  1253. box-sizing:border-box;
  1254. width:100%;
  1255. }
  1256. #u15946_text {
  1257. border-width:0px;
  1258. word-wrap:break-word;
  1259. text-transform:none;
  1260. visibility:hidden;
  1261. }
  1262. #u15947_input {
  1263. position:absolute;
  1264. left:0px;
  1265. top:0px;
  1266. width:161px;
  1267. height:33px;
  1268. padding:2px 2px 2px 2px;
  1269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1270. font-weight:400;
  1271. font-style:normal;
  1272. font-size:14px;
  1273. letter-spacing:normal;
  1274. color:#D7D7D7;
  1275. vertical-align:none;
  1276. text-align:left;
  1277. text-transform:none;
  1278. background-color:transparent;
  1279. border-color:transparent;
  1280. }
  1281. #u15947_input.disabled {
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:161px;
  1286. height:33px;
  1287. padding:2px 2px 2px 2px;
  1288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1289. font-weight:400;
  1290. font-style:normal;
  1291. font-size:14px;
  1292. letter-spacing:normal;
  1293. color:#D7D7D7;
  1294. vertical-align:none;
  1295. text-align:left;
  1296. text-transform:none;
  1297. background-color:transparent;
  1298. border-color:transparent;
  1299. }
  1300. #u15947_div {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:161px;
  1306. height:33px;
  1307. background:inherit;
  1308. background-color:rgba(255, 255, 255, 0);
  1309. border:none;
  1310. border-radius:0px;
  1311. -moz-box-shadow:none;
  1312. -webkit-box-shadow:none;
  1313. box-shadow:none;
  1314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1315. font-weight:400;
  1316. font-style:normal;
  1317. font-size:14px;
  1318. color:#D7D7D7;
  1319. }
  1320. #u15947 {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:277px;
  1324. top:-764px;
  1325. width:161px;
  1326. height:33px;
  1327. display:flex;
  1328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1329. font-weight:400;
  1330. font-style:normal;
  1331. font-size:14px;
  1332. color:#D7D7D7;
  1333. }
  1334. #u15947 .text {
  1335. position:absolute;
  1336. align-self:center;
  1337. padding:2px 2px 2px 2px;
  1338. box-sizing:border-box;
  1339. width:100%;
  1340. }
  1341. #u15947_div.disabled {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:161px;
  1347. height:33px;
  1348. background:inherit;
  1349. background-color:rgba(240, 240, 240, 1);
  1350. border:none;
  1351. border-radius:0px;
  1352. -moz-box-shadow:none;
  1353. -webkit-box-shadow:none;
  1354. box-shadow:none;
  1355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1356. font-weight:400;
  1357. font-style:normal;
  1358. font-size:14px;
  1359. color:#D7D7D7;
  1360. }
  1361. #u15947.disabled {
  1362. }
  1363. #u15948_div {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:50px;
  1369. height:40px;
  1370. background:inherit;
  1371. background-color:rgba(255, 255, 255, 0);
  1372. border:none;
  1373. border-left:0px;
  1374. border-top:0px;
  1375. border-right:0px;
  1376. border-radius:0px;
  1377. border-bottom-right-radius:0px;
  1378. border-bottom-left-radius:0px;
  1379. -moz-box-shadow:none;
  1380. -webkit-box-shadow:none;
  1381. box-shadow:none;
  1382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1383. font-weight:400;
  1384. font-style:normal;
  1385. font-size:14px;
  1386. }
  1387. #u15948 {
  1388. border-width:0px;
  1389. position:absolute;
  1390. left:269px;
  1391. top:-806px;
  1392. width:50px;
  1393. height:40px;
  1394. display:flex;
  1395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1396. font-weight:400;
  1397. font-style:normal;
  1398. font-size:14px;
  1399. }
  1400. #u15948 .text {
  1401. position:absolute;
  1402. align-self:center;
  1403. padding:0px 0px 0px 0px;
  1404. box-sizing:border-box;
  1405. width:100%;
  1406. }
  1407. #u15948_text {
  1408. border-width:0px;
  1409. white-space:nowrap;
  1410. text-transform:none;
  1411. }
  1412. #u15949 {
  1413. border-width:0px;
  1414. position:absolute;
  1415. left:0px;
  1416. top:0px;
  1417. width:0px;
  1418. height:0px;
  1419. }
  1420. #u15950_div {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:200px;
  1426. height:40px;
  1427. background:inherit;
  1428. background-color:rgba(255, 255, 255, 1);
  1429. box-sizing:border-box;
  1430. border-width:1px;
  1431. border-style:solid;
  1432. border-color:rgba(201, 201, 201, 1);
  1433. border-radius:4px;
  1434. -moz-box-shadow:none;
  1435. -webkit-box-shadow:none;
  1436. box-shadow:none;
  1437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1438. font-weight:400;
  1439. font-style:normal;
  1440. font-size:14px;
  1441. text-align:right;
  1442. }
  1443. #u15950 {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:39px;
  1447. top:-588px;
  1448. width:200px;
  1449. height:40px;
  1450. display:flex;
  1451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1452. font-weight:400;
  1453. font-style:normal;
  1454. font-size:14px;
  1455. text-align:right;
  1456. }
  1457. #u15950 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 8px 2px 8px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u15950_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u15951_input {
  1471. position:absolute;
  1472. left:0px;
  1473. top:0px;
  1474. width:161px;
  1475. height:33px;
  1476. padding:2px 2px 2px 2px;
  1477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1478. font-weight:400;
  1479. font-style:normal;
  1480. font-size:14px;
  1481. letter-spacing:normal;
  1482. color:#D7D7D7;
  1483. vertical-align:none;
  1484. text-align:left;
  1485. text-transform:none;
  1486. background-color:transparent;
  1487. border-color:transparent;
  1488. }
  1489. #u15951_input.disabled {
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:161px;
  1494. height:33px;
  1495. padding:2px 2px 2px 2px;
  1496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1497. font-weight:400;
  1498. font-style:normal;
  1499. font-size:14px;
  1500. letter-spacing:normal;
  1501. color:#D7D7D7;
  1502. vertical-align:none;
  1503. text-align:left;
  1504. text-transform:none;
  1505. background-color:transparent;
  1506. border-color:transparent;
  1507. }
  1508. #u15951_div {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:161px;
  1514. height:33px;
  1515. background:inherit;
  1516. background-color:rgba(255, 255, 255, 0);
  1517. border:none;
  1518. border-radius:0px;
  1519. -moz-box-shadow:none;
  1520. -webkit-box-shadow:none;
  1521. box-shadow:none;
  1522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1523. font-weight:400;
  1524. font-style:normal;
  1525. font-size:14px;
  1526. color:#D7D7D7;
  1527. }
  1528. #u15951 {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:47px;
  1532. top:-585px;
  1533. width:161px;
  1534. height:33px;
  1535. display:flex;
  1536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1537. font-weight:400;
  1538. font-style:normal;
  1539. font-size:14px;
  1540. color:#D7D7D7;
  1541. }
  1542. #u15951 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u15951_div.disabled {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:0px;
  1553. top:0px;
  1554. width:161px;
  1555. height:33px;
  1556. background:inherit;
  1557. background-color:rgba(240, 240, 240, 1);
  1558. border:none;
  1559. border-radius:0px;
  1560. -moz-box-shadow:none;
  1561. -webkit-box-shadow:none;
  1562. box-shadow:none;
  1563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1564. font-weight:400;
  1565. font-style:normal;
  1566. font-size:14px;
  1567. color:#D7D7D7;
  1568. }
  1569. #u15951.disabled {
  1570. }
  1571. #u15952_div {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:0px;
  1575. top:0px;
  1576. width:78px;
  1577. height:40px;
  1578. background:inherit;
  1579. background-color:rgba(255, 255, 255, 0);
  1580. border:none;
  1581. border-left:0px;
  1582. border-top:0px;
  1583. border-right:0px;
  1584. border-radius:0px;
  1585. border-bottom-right-radius:0px;
  1586. border-bottom-left-radius:0px;
  1587. -moz-box-shadow:none;
  1588. -webkit-box-shadow:none;
  1589. box-shadow:none;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:14px;
  1594. }
  1595. #u15952 {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:39px;
  1599. top:-627px;
  1600. width:78px;
  1601. height:40px;
  1602. display:flex;
  1603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1604. font-weight:400;
  1605. font-style:normal;
  1606. font-size:14px;
  1607. }
  1608. #u15952 .text {
  1609. position:absolute;
  1610. align-self:center;
  1611. padding:0px 0px 0px 0px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u15952_text {
  1616. border-width:0px;
  1617. white-space:nowrap;
  1618. text-transform:none;
  1619. }
  1620. #u15953_div {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:36px;
  1626. height:40px;
  1627. background:inherit;
  1628. background-color:rgba(255, 255, 255, 0);
  1629. border:none;
  1630. border-left:0px;
  1631. border-top:0px;
  1632. border-right:0px;
  1633. border-radius:0px;
  1634. border-bottom-right-radius:0px;
  1635. border-bottom-left-radius:0px;
  1636. -moz-box-shadow:none;
  1637. -webkit-box-shadow:none;
  1638. box-shadow:none;
  1639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1640. font-weight:400;
  1641. font-style:normal;
  1642. font-size:14px;
  1643. }
  1644. #u15953 {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:39px;
  1648. top:-717px;
  1649. width:36px;
  1650. height:40px;
  1651. display:flex;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:14px;
  1656. }
  1657. #u15953 .text {
  1658. position:absolute;
  1659. align-self:center;
  1660. padding:0px 0px 0px 0px;
  1661. box-sizing:border-box;
  1662. width:100%;
  1663. }
  1664. #u15953_text {
  1665. border-width:0px;
  1666. white-space:nowrap;
  1667. text-transform:none;
  1668. }
  1669. #u15954 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:0px;
  1675. height:0px;
  1676. }
  1677. #u15955_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:200px;
  1683. height:40px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 1);
  1686. box-sizing:border-box;
  1687. border-width:1px;
  1688. border-style:solid;
  1689. border-color:rgba(215, 215, 215, 1);
  1690. border-radius:4px;
  1691. -moz-box-shadow:none;
  1692. -webkit-box-shadow:none;
  1693. box-shadow:none;
  1694. font-size:14px;
  1695. }
  1696. #u15955 {
  1697. border-width:0px;
  1698. position:absolute;
  1699. left:39px;
  1700. top:-677px;
  1701. width:200px;
  1702. height:40px;
  1703. display:flex;
  1704. font-size:14px;
  1705. }
  1706. #u15955 .text {
  1707. position:absolute;
  1708. align-self:center;
  1709. padding:2px 2px 2px 2px;
  1710. box-sizing:border-box;
  1711. width:100%;
  1712. }
  1713. #u15955_text {
  1714. border-width:0px;
  1715. word-wrap:break-word;
  1716. text-transform:none;
  1717. visibility:hidden;
  1718. }
  1719. #u15956_input {
  1720. position:absolute;
  1721. left:0px;
  1722. top:0px;
  1723. width:191px;
  1724. height:31px;
  1725. padding:2px 2px 2px 2px;
  1726. font-family:'ArialMT', 'Arial', sans-serif;
  1727. font-weight:400;
  1728. font-style:normal;
  1729. font-size:14px;
  1730. letter-spacing:normal;
  1731. color:#AAAAAA;
  1732. vertical-align:none;
  1733. text-align:left;
  1734. text-transform:none;
  1735. background-color:transparent;
  1736. border-color:transparent;
  1737. }
  1738. #u15956_input.disabled {
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:191px;
  1743. height:31px;
  1744. padding:2px 2px 2px 2px;
  1745. font-family:'ArialMT', 'Arial', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:14px;
  1749. letter-spacing:normal;
  1750. color:#AAAAAA;
  1751. vertical-align:none;
  1752. text-align:left;
  1753. text-transform:none;
  1754. background-color:transparent;
  1755. border-color:transparent;
  1756. }
  1757. #u15956_div {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:191px;
  1763. height:31px;
  1764. background:inherit;
  1765. background-color:rgba(255, 255, 255, 1);
  1766. border:none;
  1767. border-radius:0px;
  1768. -moz-box-shadow:none;
  1769. -webkit-box-shadow:none;
  1770. box-shadow:none;
  1771. font-size:14px;
  1772. color:#AAAAAA;
  1773. }
  1774. #u15956 {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:45px;
  1778. top:-674px;
  1779. width:191px;
  1780. height:31px;
  1781. display:flex;
  1782. font-size:14px;
  1783. color:#AAAAAA;
  1784. }
  1785. #u15956 .text {
  1786. position:absolute;
  1787. align-self:flex-start;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u15956_div.disabled {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:191px;
  1798. height:31px;
  1799. background:inherit;
  1800. background-color:rgba(240, 240, 240, 1);
  1801. border:none;
  1802. border-radius:0px;
  1803. -moz-box-shadow:none;
  1804. -webkit-box-shadow:none;
  1805. box-shadow:none;
  1806. font-size:14px;
  1807. color:#AAAAAA;
  1808. }
  1809. #u15956.disabled {
  1810. }
  1811. .u15956_input_option {
  1812. font-size:14px;
  1813. }
  1814. #u15957 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:0px;
  1820. height:0px;
  1821. }
  1822. #u15958_div {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:200px;
  1828. height:40px;
  1829. background:inherit;
  1830. background-color:rgba(255, 255, 255, 1);
  1831. box-sizing:border-box;
  1832. border-width:1px;
  1833. border-style:solid;
  1834. border-color:rgba(201, 201, 201, 1);
  1835. border-radius:4px;
  1836. -moz-box-shadow:none;
  1837. -webkit-box-shadow:none;
  1838. box-shadow:none;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:14px;
  1843. text-align:right;
  1844. }
  1845. #u15958 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:269px;
  1849. top:-588px;
  1850. width:200px;
  1851. height:40px;
  1852. display:flex;
  1853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1854. font-weight:400;
  1855. font-style:normal;
  1856. font-size:14px;
  1857. text-align:right;
  1858. }
  1859. #u15958 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 8px 2px 8px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u15958_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. visibility:hidden;
  1871. }
  1872. #u15959_input {
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:161px;
  1877. height:33px;
  1878. padding:2px 2px 2px 2px;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:14px;
  1883. letter-spacing:normal;
  1884. color:#D7D7D7;
  1885. vertical-align:none;
  1886. text-align:left;
  1887. text-transform:none;
  1888. background-color:transparent;
  1889. border-color:transparent;
  1890. }
  1891. #u15959_input.disabled {
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:161px;
  1896. height:33px;
  1897. padding:2px 2px 2px 2px;
  1898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:14px;
  1902. letter-spacing:normal;
  1903. color:#D7D7D7;
  1904. vertical-align:none;
  1905. text-align:left;
  1906. text-transform:none;
  1907. background-color:transparent;
  1908. border-color:transparent;
  1909. }
  1910. #u15959_div {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:161px;
  1916. height:33px;
  1917. background:inherit;
  1918. background-color:rgba(255, 255, 255, 0);
  1919. border:none;
  1920. border-radius:0px;
  1921. -moz-box-shadow:none;
  1922. -webkit-box-shadow:none;
  1923. box-shadow:none;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:14px;
  1928. color:#D7D7D7;
  1929. }
  1930. #u15959 {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:277px;
  1934. top:-585px;
  1935. width:161px;
  1936. height:33px;
  1937. display:flex;
  1938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1939. font-weight:400;
  1940. font-style:normal;
  1941. font-size:14px;
  1942. color:#D7D7D7;
  1943. }
  1944. #u15959 .text {
  1945. position:absolute;
  1946. align-self:center;
  1947. padding:2px 2px 2px 2px;
  1948. box-sizing:border-box;
  1949. width:100%;
  1950. }
  1951. #u15959_div.disabled {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:161px;
  1957. height:33px;
  1958. background:inherit;
  1959. background-color:rgba(240, 240, 240, 1);
  1960. border:none;
  1961. border-radius:0px;
  1962. -moz-box-shadow:none;
  1963. -webkit-box-shadow:none;
  1964. box-shadow:none;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:14px;
  1969. color:#D7D7D7;
  1970. }
  1971. #u15959.disabled {
  1972. }
  1973. #u15960_div {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:78px;
  1979. height:40px;
  1980. background:inherit;
  1981. background-color:rgba(255, 255, 255, 0);
  1982. border:none;
  1983. border-left:0px;
  1984. border-top:0px;
  1985. border-right:0px;
  1986. border-radius:0px;
  1987. border-bottom-right-radius:0px;
  1988. border-bottom-left-radius:0px;
  1989. -moz-box-shadow:none;
  1990. -webkit-box-shadow:none;
  1991. box-shadow:none;
  1992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1993. font-weight:400;
  1994. font-style:normal;
  1995. font-size:14px;
  1996. }
  1997. #u15960 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:269px;
  2001. top:-627px;
  2002. width:78px;
  2003. height:40px;
  2004. display:flex;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:14px;
  2009. }
  2010. #u15960 .text {
  2011. position:absolute;
  2012. align-self:center;
  2013. padding:0px 0px 0px 0px;
  2014. box-sizing:border-box;
  2015. width:100%;
  2016. }
  2017. #u15960_text {
  2018. border-width:0px;
  2019. white-space:nowrap;
  2020. text-transform:none;
  2021. }
  2022. #u15961_div {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:0px;
  2026. top:0px;
  2027. width:64px;
  2028. height:40px;
  2029. background:inherit;
  2030. background-color:rgba(255, 255, 255, 0);
  2031. border:none;
  2032. border-left:0px;
  2033. border-top:0px;
  2034. border-right:0px;
  2035. border-radius:0px;
  2036. border-bottom-right-radius:0px;
  2037. border-bottom-left-radius:0px;
  2038. -moz-box-shadow:none;
  2039. -webkit-box-shadow:none;
  2040. box-shadow:none;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:14px;
  2045. }
  2046. #u15961 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:39px;
  2050. top:-891px;
  2051. width:64px;
  2052. height:40px;
  2053. display:flex;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:14px;
  2058. }
  2059. #u15961 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:0px 0px 0px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u15961_text {
  2067. border-width:0px;
  2068. white-space:nowrap;
  2069. text-transform:none;
  2070. }
  2071. #u15962 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:0px;
  2077. height:0px;
  2078. }
  2079. #u15963_div {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:200px;
  2085. height:40px;
  2086. background:inherit;
  2087. background-color:rgba(255, 255, 255, 1);
  2088. box-sizing:border-box;
  2089. border-width:1px;
  2090. border-style:solid;
  2091. border-color:rgba(201, 201, 201, 1);
  2092. border-radius:4px;
  2093. -moz-box-shadow:none;
  2094. -webkit-box-shadow:none;
  2095. box-shadow:none;
  2096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:14px;
  2100. text-align:right;
  2101. }
  2102. #u15963 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:39px;
  2106. top:-767px;
  2107. width:200px;
  2108. height:40px;
  2109. display:flex;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. font-size:14px;
  2114. text-align:right;
  2115. }
  2116. #u15963 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 8px 2px 8px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u15963_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. visibility:hidden;
  2128. }
  2129. #u15964_input {
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:161px;
  2134. height:33px;
  2135. padding:2px 2px 2px 2px;
  2136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:14px;
  2140. letter-spacing:normal;
  2141. color:#D7D7D7;
  2142. vertical-align:none;
  2143. text-align:left;
  2144. text-transform:none;
  2145. background-color:transparent;
  2146. border-color:transparent;
  2147. }
  2148. #u15964_input.disabled {
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:161px;
  2153. height:33px;
  2154. padding:2px 2px 2px 2px;
  2155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:14px;
  2159. letter-spacing:normal;
  2160. color:#D7D7D7;
  2161. vertical-align:none;
  2162. text-align:left;
  2163. text-transform:none;
  2164. background-color:transparent;
  2165. border-color:transparent;
  2166. }
  2167. #u15964_div {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:161px;
  2173. height:33px;
  2174. background:inherit;
  2175. background-color:rgba(255, 255, 255, 0);
  2176. border:none;
  2177. border-radius:0px;
  2178. -moz-box-shadow:none;
  2179. -webkit-box-shadow:none;
  2180. box-shadow:none;
  2181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. font-size:14px;
  2185. color:#D7D7D7;
  2186. }
  2187. #u15964 {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:47px;
  2191. top:-764px;
  2192. width:161px;
  2193. height:33px;
  2194. display:flex;
  2195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. font-size:14px;
  2199. color:#D7D7D7;
  2200. }
  2201. #u15964 .text {
  2202. position:absolute;
  2203. align-self:center;
  2204. padding:2px 2px 2px 2px;
  2205. box-sizing:border-box;
  2206. width:100%;
  2207. }
  2208. #u15964_div.disabled {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:161px;
  2214. height:33px;
  2215. background:inherit;
  2216. background-color:rgba(240, 240, 240, 1);
  2217. border:none;
  2218. border-radius:0px;
  2219. -moz-box-shadow:none;
  2220. -webkit-box-shadow:none;
  2221. box-shadow:none;
  2222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:14px;
  2226. color:#D7D7D7;
  2227. }
  2228. #u15964.disabled {
  2229. }
  2230. #u15965_img {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:13px;
  2236. height:13px;
  2237. }
  2238. #u15965 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:217px;
  2242. top:-754px;
  2243. width:13px;
  2244. height:13px;
  2245. display:flex;
  2246. }
  2247. #u15965 .text {
  2248. position:absolute;
  2249. align-self:center;
  2250. padding:2px 2px 2px 2px;
  2251. box-sizing:border-box;
  2252. width:100%;
  2253. }
  2254. #u15965_text {
  2255. border-width:0px;
  2256. word-wrap:break-word;
  2257. text-transform:none;
  2258. visibility:hidden;
  2259. }
  2260. #u15966_div {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:64px;
  2266. height:40px;
  2267. background:inherit;
  2268. background-color:rgba(255, 255, 255, 0);
  2269. border:none;
  2270. border-left:0px;
  2271. border-top:0px;
  2272. border-right:0px;
  2273. border-radius:0px;
  2274. border-bottom-right-radius:0px;
  2275. border-bottom-left-radius:0px;
  2276. -moz-box-shadow:none;
  2277. -webkit-box-shadow:none;
  2278. box-shadow:none;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:14px;
  2283. }
  2284. #u15966 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:269px;
  2288. top:-717px;
  2289. width:64px;
  2290. height:40px;
  2291. display:flex;
  2292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2293. font-weight:400;
  2294. font-style:normal;
  2295. font-size:14px;
  2296. }
  2297. #u15966 .text {
  2298. position:absolute;
  2299. align-self:center;
  2300. padding:0px 0px 0px 0px;
  2301. box-sizing:border-box;
  2302. width:100%;
  2303. }
  2304. #u15966_text {
  2305. border-width:0px;
  2306. white-space:nowrap;
  2307. text-transform:none;
  2308. }
  2309. #u15967 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:0px;
  2313. top:0px;
  2314. width:0px;
  2315. height:0px;
  2316. }
  2317. #u15968_div {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:200px;
  2323. height:40px;
  2324. background:inherit;
  2325. background-color:rgba(255, 255, 255, 1);
  2326. box-sizing:border-box;
  2327. border-width:1px;
  2328. border-style:solid;
  2329. border-color:rgba(215, 215, 215, 1);
  2330. border-radius:4px;
  2331. -moz-box-shadow:none;
  2332. -webkit-box-shadow:none;
  2333. box-shadow:none;
  2334. font-size:14px;
  2335. }
  2336. #u15968 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:269px;
  2340. top:-677px;
  2341. width:200px;
  2342. height:40px;
  2343. display:flex;
  2344. font-size:14px;
  2345. }
  2346. #u15968 .text {
  2347. position:absolute;
  2348. align-self:center;
  2349. padding:2px 2px 2px 2px;
  2350. box-sizing:border-box;
  2351. width:100%;
  2352. }
  2353. #u15968_text {
  2354. border-width:0px;
  2355. word-wrap:break-word;
  2356. text-transform:none;
  2357. visibility:hidden;
  2358. }
  2359. #u15969_input {
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:191px;
  2364. height:31px;
  2365. padding:2px 2px 2px 2px;
  2366. font-family:'ArialMT', 'Arial', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:14px;
  2370. letter-spacing:normal;
  2371. color:#AAAAAA;
  2372. vertical-align:none;
  2373. text-align:left;
  2374. text-transform:none;
  2375. background-color:transparent;
  2376. border-color:transparent;
  2377. }
  2378. #u15969_input.disabled {
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:191px;
  2383. height:31px;
  2384. padding:2px 2px 2px 2px;
  2385. font-family:'ArialMT', 'Arial', sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. font-size:14px;
  2389. letter-spacing:normal;
  2390. color:#AAAAAA;
  2391. vertical-align:none;
  2392. text-align:left;
  2393. text-transform:none;
  2394. background-color:transparent;
  2395. border-color:transparent;
  2396. }
  2397. #u15969_div {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:191px;
  2403. height:31px;
  2404. background:inherit;
  2405. background-color:rgba(255, 255, 255, 1);
  2406. border:none;
  2407. border-radius:0px;
  2408. -moz-box-shadow:none;
  2409. -webkit-box-shadow:none;
  2410. box-shadow:none;
  2411. font-size:14px;
  2412. color:#AAAAAA;
  2413. }
  2414. #u15969 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:275px;
  2418. top:-674px;
  2419. width:191px;
  2420. height:31px;
  2421. display:flex;
  2422. font-size:14px;
  2423. color:#AAAAAA;
  2424. }
  2425. #u15969 .text {
  2426. position:absolute;
  2427. align-self:flex-start;
  2428. padding:2px 2px 2px 2px;
  2429. box-sizing:border-box;
  2430. width:100%;
  2431. }
  2432. #u15969_div.disabled {
  2433. border-width:0px;
  2434. position:absolute;
  2435. left:0px;
  2436. top:0px;
  2437. width:191px;
  2438. height:31px;
  2439. background:inherit;
  2440. background-color:rgba(240, 240, 240, 1);
  2441. border:none;
  2442. border-radius:0px;
  2443. -moz-box-shadow:none;
  2444. -webkit-box-shadow:none;
  2445. box-shadow:none;
  2446. font-size:14px;
  2447. color:#AAAAAA;
  2448. }
  2449. #u15969.disabled {
  2450. }
  2451. .u15969_input_option {
  2452. font-size:14px;
  2453. }
  2454. #u15970 label {
  2455. left:0px;
  2456. width:100%;
  2457. }
  2458. #u15970_img {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:4px;
  2463. width:12px;
  2464. height:12px;
  2465. }
  2466. #u15970 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:47px;
  2470. top:-841px;
  2471. width:100px;
  2472. height:20px;
  2473. display:flex;
  2474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:14px;
  2478. }
  2479. #u15970 .text {
  2480. position:absolute;
  2481. align-self:center;
  2482. padding:0px 2px 0px 2px;
  2483. box-sizing:border-box;
  2484. }
  2485. #u15970_img.selected {
  2486. }
  2487. #u15970.selected {
  2488. }
  2489. #u15970_img.disabled {
  2490. }
  2491. #u15970.disabled {
  2492. }
  2493. #u15970_img.selectedDisabled {
  2494. }
  2495. #u15970.selectedDisabled {
  2496. }
  2497. #u15970_text {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:14px;
  2501. top:0px;
  2502. width:84px;
  2503. word-wrap:break-word;
  2504. text-transform:none;
  2505. }
  2506. #u15970_input {
  2507. border-width:0px;
  2508. position:absolute;
  2509. left:0px;
  2510. top:0px;
  2511. width:0px;
  2512. height:0px;
  2513. opacity:0;
  2514. }
  2515. #u15971 label {
  2516. left:0px;
  2517. width:100%;
  2518. }
  2519. #u15971_img {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:4px;
  2524. width:12px;
  2525. height:12px;
  2526. }
  2527. #u15971 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:269px;
  2531. top:-841px;
  2532. width:100px;
  2533. height:20px;
  2534. display:flex;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:14px;
  2539. }
  2540. #u15971 .text {
  2541. position:absolute;
  2542. align-self:center;
  2543. padding:0px 2px 0px 2px;
  2544. box-sizing:border-box;
  2545. }
  2546. #u15971_img.selected {
  2547. }
  2548. #u15971.selected {
  2549. }
  2550. #u15971_img.disabled {
  2551. }
  2552. #u15971.disabled {
  2553. }
  2554. #u15971_img.selectedDisabled {
  2555. }
  2556. #u15971.selectedDisabled {
  2557. }
  2558. #u15971_text {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:14px;
  2562. top:0px;
  2563. width:84px;
  2564. word-wrap:break-word;
  2565. text-transform:none;
  2566. }
  2567. #u15971_input {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:0px;
  2573. height:0px;
  2574. opacity:0;
  2575. }
  2576. #u15972_div {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:0px;
  2580. top:0px;
  2581. width:298px;
  2582. height:85px;
  2583. background:inherit;
  2584. background-color:rgba(255, 255, 255, 0);
  2585. border:none;
  2586. border-left:0px;
  2587. border-top:0px;
  2588. border-right:0px;
  2589. border-radius:0px;
  2590. border-bottom-right-radius:0px;
  2591. border-bottom-left-radius:0px;
  2592. -moz-box-shadow:none;
  2593. -webkit-box-shadow:none;
  2594. box-shadow:none;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. color:#D9001B;
  2600. }
  2601. #u15972 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:496px;
  2605. top:-538px;
  2606. width:298px;
  2607. height:85px;
  2608. display:flex;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:12px;
  2613. color:#D9001B;
  2614. }
  2615. #u15972 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:0px 0px 0px 0px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u15972_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. }
  2627. #u15973_div {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:121px;
  2633. height:17px;
  2634. background:inherit;
  2635. background-color:rgba(255, 255, 255, 0);
  2636. border:none;
  2637. border-left:0px;
  2638. border-top:0px;
  2639. border-right:0px;
  2640. border-radius:0px;
  2641. border-bottom-right-radius:0px;
  2642. border-bottom-left-radius:0px;
  2643. -moz-box-shadow:none;
  2644. -webkit-box-shadow:none;
  2645. box-shadow:none;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:12px;
  2650. color:#D9001B;
  2651. }
  2652. #u15973 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:348px;
  2656. top:-794px;
  2657. width:121px;
  2658. height:17px;
  2659. display:flex;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:12px;
  2664. color:#D9001B;
  2665. }
  2666. #u15973 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:0px 0px 0px 0px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u15973_text {
  2674. border-width:0px;
  2675. white-space:nowrap;
  2676. text-transform:none;
  2677. }
  2678. #u15974_div {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:800px;
  2684. height:60px;
  2685. background:inherit;
  2686. background-color:rgba(255, 255, 255, 1);
  2687. box-sizing:border-box;
  2688. border-width:1px;
  2689. border-style:solid;
  2690. border-color:rgba(242, 242, 242, 1);
  2691. border-radius:0px;
  2692. -moz-box-shadow:none;
  2693. -webkit-box-shadow:none;
  2694. box-shadow:none;
  2695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. font-size:14px;
  2699. color:#AAAAAA;
  2700. text-align:center;
  2701. line-height:30px;
  2702. }
  2703. #u15974 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:820px;
  2707. top:-1158px;
  2708. width:800px;
  2709. height:60px;
  2710. display:flex;
  2711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:14px;
  2715. color:#AAAAAA;
  2716. text-align:center;
  2717. line-height:30px;
  2718. }
  2719. #u15974 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:5px 10px 5px 10px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u15974_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. visibility:hidden;
  2731. }
  2732. #u15975_div {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:0px;
  2736. top:0px;
  2737. width:47px;
  2738. height:35px;
  2739. background:inherit;
  2740. background-color:rgba(255, 255, 255, 0);
  2741. border:none;
  2742. border-top:0px;
  2743. border-right:0px;
  2744. border-bottom:0px;
  2745. border-radius:0px;
  2746. border-top-left-radius:0px;
  2747. border-bottom-left-radius:0px;
  2748. -moz-box-shadow:none;
  2749. -webkit-box-shadow:none;
  2750. box-shadow:none;
  2751. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2752. font-weight:500;
  2753. font-style:normal;
  2754. font-size:18px;
  2755. }
  2756. #u15975 {
  2757. border-width:0px;
  2758. position:absolute;
  2759. left:851px;
  2760. top:-1145px;
  2761. width:47px;
  2762. height:35px;
  2763. display:flex;
  2764. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2765. font-weight:500;
  2766. font-style:normal;
  2767. font-size:18px;
  2768. }
  2769. #u15975 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:5px 10px 5px 0px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u15975_text {
  2777. border-width:0px;
  2778. white-space:nowrap;
  2779. text-transform:none;
  2780. }
  2781. #u15976_div {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:800px;
  2787. height:1069px;
  2788. background:inherit;
  2789. background-color:rgba(255, 255, 255, 1);
  2790. box-sizing:border-box;
  2791. border-width:1px;
  2792. border-style:solid;
  2793. border-color:rgba(242, 242, 242, 1);
  2794. border-radius:0px;
  2795. -moz-box-shadow:none;
  2796. -webkit-box-shadow:none;
  2797. box-shadow:none;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:14px;
  2802. color:#AAAAAA;
  2803. text-align:center;
  2804. line-height:30px;
  2805. }
  2806. #u15976 {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:820px;
  2810. top:-1098px;
  2811. width:800px;
  2812. height:1069px;
  2813. display:flex;
  2814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2815. font-weight:400;
  2816. font-style:normal;
  2817. font-size:14px;
  2818. color:#AAAAAA;
  2819. text-align:center;
  2820. line-height:30px;
  2821. }
  2822. #u15976 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:5px 10px 5px 10px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u15976_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u15977_div {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:82px;
  2841. height:40px;
  2842. background:inherit;
  2843. background-color:rgba(255, 255, 255, 0);
  2844. border:none;
  2845. border-left:0px;
  2846. border-top:0px;
  2847. border-right:0px;
  2848. border-radius:0px;
  2849. border-bottom-right-radius:0px;
  2850. border-bottom-left-radius:0px;
  2851. -moz-box-shadow:none;
  2852. -webkit-box-shadow:none;
  2853. box-shadow:none;
  2854. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2855. font-weight:500;
  2856. font-style:normal;
  2857. font-size:18px;
  2858. }
  2859. #u15977 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:859px;
  2863. top:-1072px;
  2864. width:82px;
  2865. height:40px;
  2866. display:flex;
  2867. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2868. font-weight:500;
  2869. font-style:normal;
  2870. font-size:18px;
  2871. }
  2872. #u15977 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:0px 0px 0px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u15977_text {
  2880. border-width:0px;
  2881. white-space:nowrap;
  2882. text-transform:none;
  2883. }
  2884. #u15978_div {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:40px;
  2890. height:40px;
  2891. background:inherit;
  2892. background-color:rgba(255, 255, 255, 0);
  2893. border:none;
  2894. border-top:0px;
  2895. border-right:0px;
  2896. border-bottom:0px;
  2897. border-radius:0px;
  2898. border-top-left-radius:0px;
  2899. border-bottom-left-radius:0px;
  2900. -moz-box-shadow:none;
  2901. -webkit-box-shadow:none;
  2902. box-shadow:none;
  2903. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2904. font-weight:500;
  2905. font-style:normal;
  2906. font-size:24px;
  2907. text-align:center;
  2908. }
  2909. #u15978 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:1580px;
  2913. top:-1158px;
  2914. width:40px;
  2915. height:40px;
  2916. display:flex;
  2917. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2918. font-weight:500;
  2919. font-style:normal;
  2920. font-size:24px;
  2921. text-align:center;
  2922. }
  2923. #u15978 .text {
  2924. position:absolute;
  2925. align-self:center;
  2926. padding:5px 10px 5px 0px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u15978_text {
  2931. border-width:0px;
  2932. word-wrap:break-word;
  2933. text-transform:none;
  2934. }
  2935. #u15979_div {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:64px;
  2941. height:40px;
  2942. background:inherit;
  2943. background-color:rgba(255, 255, 255, 0);
  2944. border:none;
  2945. border-left:0px;
  2946. border-top:0px;
  2947. border-right:0px;
  2948. border-radius:0px;
  2949. border-bottom-right-radius:0px;
  2950. border-bottom-left-radius:0px;
  2951. -moz-box-shadow:none;
  2952. -webkit-box-shadow:none;
  2953. box-shadow:none;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:14px;
  2958. }
  2959. #u15979 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:1366px;
  2963. top:-892px;
  2964. width:64px;
  2965. height:40px;
  2966. display:flex;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:14px;
  2971. }
  2972. #u15979 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:0px 0px 0px 0px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u15979_text {
  2980. border-width:0px;
  2981. white-space:nowrap;
  2982. text-transform:none;
  2983. }
  2984. #u15980_div {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:180px;
  2990. height:180px;
  2991. background:inherit;
  2992. background-color:rgba(255, 255, 255, 1);
  2993. box-sizing:border-box;
  2994. border-width:1px;
  2995. border-style:solid;
  2996. border-color:rgba(201, 201, 201, 1);
  2997. border-radius:4px;
  2998. -moz-box-shadow:none;
  2999. -webkit-box-shadow:none;
  3000. box-shadow:none;
  3001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:38px;
  3005. }
  3006. #u15980 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:1366px;
  3010. top:-852px;
  3011. width:180px;
  3012. height:180px;
  3013. display:flex;
  3014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3015. font-weight:400;
  3016. font-style:normal;
  3017. font-size:38px;
  3018. }
  3019. #u15980 .text {
  3020. position:absolute;
  3021. align-self:center;
  3022. padding:2px 8px 2px 8px;
  3023. box-sizing:border-box;
  3024. width:100%;
  3025. }
  3026. #u15980_text {
  3027. border-width:0px;
  3028. word-wrap:break-word;
  3029. text-transform:none;
  3030. }
  3031. #u15981_div {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:73px;
  3037. height:40px;
  3038. background:inherit;
  3039. background-color:rgba(255, 255, 255, 0);
  3040. border:none;
  3041. border-left:0px;
  3042. border-top:0px;
  3043. border-right:0px;
  3044. border-radius:0px;
  3045. border-bottom-right-radius:0px;
  3046. border-bottom-left-radius:0px;
  3047. -moz-box-shadow:none;
  3048. -webkit-box-shadow:none;
  3049. box-shadow:none;
  3050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3051. font-weight:500;
  3052. font-style:normal;
  3053. font-size:18px;
  3054. }
  3055. #u15981 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:859px;
  3059. top:-952px;
  3060. width:73px;
  3061. height:40px;
  3062. display:flex;
  3063. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3064. font-weight:500;
  3065. font-style:normal;
  3066. font-size:18px;
  3067. }
  3068. #u15981 .text {
  3069. position:absolute;
  3070. align-self:center;
  3071. padding:0px 0px 0px 0px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u15981_text {
  3076. border-width:0px;
  3077. white-space:nowrap;
  3078. text-transform:none;
  3079. }
  3080. #u15982 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:0px;
  3086. height:0px;
  3087. }
  3088. #u15983_div {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:800px;
  3094. height:60px;
  3095. background:inherit;
  3096. background-color:rgba(255, 255, 255, 1);
  3097. box-sizing:border-box;
  3098. border-width:1px;
  3099. border-style:solid;
  3100. border-color:rgba(215, 215, 215, 1);
  3101. border-radius:0px;
  3102. -moz-box-shadow:none;
  3103. -webkit-box-shadow:none;
  3104. box-shadow:none;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:14px;
  3109. color:#AAAAAA;
  3110. text-align:center;
  3111. line-height:30px;
  3112. }
  3113. #u15983 {
  3114. border-width:0px;
  3115. position:absolute;
  3116. left:820px;
  3117. top:-89px;
  3118. width:800px;
  3119. height:60px;
  3120. display:flex;
  3121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3122. font-weight:400;
  3123. font-style:normal;
  3124. font-size:14px;
  3125. color:#AAAAAA;
  3126. text-align:center;
  3127. line-height:30px;
  3128. }
  3129. #u15983 .text {
  3130. position:absolute;
  3131. align-self:center;
  3132. padding:5px 10px 5px 10px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u15983_text {
  3137. border-width:0px;
  3138. word-wrap:break-word;
  3139. text-transform:none;
  3140. visibility:hidden;
  3141. }
  3142. #u15984_img {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:0px;
  3146. top:0px;
  3147. width:80px;
  3148. height:30px;
  3149. }
  3150. #u15984 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:1500px;
  3154. top:-74px;
  3155. width:80px;
  3156. height:30px;
  3157. display:flex;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. font-size:14px;
  3162. color:#FFFFFF;
  3163. }
  3164. #u15984 .text {
  3165. position:absolute;
  3166. align-self:center;
  3167. padding:2px 2px 2px 2px;
  3168. box-sizing:border-box;
  3169. width:100%;
  3170. }
  3171. #u15984_text {
  3172. border-width:0px;
  3173. word-wrap:break-word;
  3174. text-transform:none;
  3175. }
  3176. #u15985_div {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:80px;
  3182. height:30px;
  3183. background:inherit;
  3184. background-color:rgba(255, 255, 255, 1);
  3185. box-sizing:border-box;
  3186. border-width:1px;
  3187. border-style:solid;
  3188. border-color:rgba(170, 170, 170, 1);
  3189. border-radius:4px;
  3190. -moz-box-shadow:none;
  3191. -webkit-box-shadow:none;
  3192. box-shadow:none;
  3193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3194. font-weight:400;
  3195. font-style:normal;
  3196. font-size:14px;
  3197. }
  3198. #u15985 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:1410px;
  3202. top:-74px;
  3203. width:80px;
  3204. height:30px;
  3205. display:flex;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:14px;
  3210. }
  3211. #u15985 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 2px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u15985_text {
  3219. border-width:0px;
  3220. word-wrap:break-word;
  3221. text-transform:none;
  3222. }
  3223. #u15986_div {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:64px;
  3229. height:40px;
  3230. background:inherit;
  3231. background-color:rgba(255, 255, 255, 0);
  3232. border:none;
  3233. border-left:0px;
  3234. border-top:0px;
  3235. border-right:0px;
  3236. border-radius:0px;
  3237. border-bottom-right-radius:0px;
  3238. border-bottom-left-radius:0px;
  3239. -moz-box-shadow:none;
  3240. -webkit-box-shadow:none;
  3241. box-shadow:none;
  3242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3243. font-weight:400;
  3244. font-style:normal;
  3245. font-size:14px;
  3246. }
  3247. #u15986 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:859px;
  3251. top:-817px;
  3252. width:64px;
  3253. height:40px;
  3254. display:flex;
  3255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3256. font-weight:400;
  3257. font-style:normal;
  3258. font-size:14px;
  3259. }
  3260. #u15986 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:0px 0px 0px 0px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u15986_text {
  3268. border-width:0px;
  3269. white-space:nowrap;
  3270. text-transform:none;
  3271. }
  3272. #u15987 {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:0px;
  3278. height:0px;
  3279. }
  3280. #u15988_div {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:200px;
  3286. height:40px;
  3287. background:inherit;
  3288. background-color:rgba(255, 255, 255, 1);
  3289. box-sizing:border-box;
  3290. border-width:1px;
  3291. border-style:solid;
  3292. border-color:rgba(201, 201, 201, 1);
  3293. border-radius:4px;
  3294. -moz-box-shadow:none;
  3295. -webkit-box-shadow:none;
  3296. box-shadow:none;
  3297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:14px;
  3301. text-align:right;
  3302. }
  3303. #u15988 {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:1089px;
  3307. top:-778px;
  3308. width:200px;
  3309. height:40px;
  3310. display:flex;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:14px;
  3315. text-align:right;
  3316. }
  3317. #u15988 .text {
  3318. position:absolute;
  3319. align-self:center;
  3320. padding:2px 8px 2px 8px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u15988_text {
  3325. border-width:0px;
  3326. word-wrap:break-word;
  3327. text-transform:none;
  3328. visibility:hidden;
  3329. }
  3330. #u15989_input {
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:161px;
  3335. height:33px;
  3336. padding:2px 2px 2px 2px;
  3337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3338. font-weight:400;
  3339. font-style:normal;
  3340. font-size:14px;
  3341. letter-spacing:normal;
  3342. color:#D7D7D7;
  3343. vertical-align:none;
  3344. text-align:left;
  3345. text-transform:none;
  3346. background-color:transparent;
  3347. border-color:transparent;
  3348. }
  3349. #u15989_input.disabled {
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:161px;
  3354. height:33px;
  3355. padding:2px 2px 2px 2px;
  3356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:14px;
  3360. letter-spacing:normal;
  3361. color:#D7D7D7;
  3362. vertical-align:none;
  3363. text-align:left;
  3364. text-transform:none;
  3365. background-color:transparent;
  3366. border-color:transparent;
  3367. }
  3368. #u15989_div {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:0px;
  3372. top:0px;
  3373. width:161px;
  3374. height:33px;
  3375. background:inherit;
  3376. background-color:rgba(255, 255, 255, 0);
  3377. border:none;
  3378. border-radius:0px;
  3379. -moz-box-shadow:none;
  3380. -webkit-box-shadow:none;
  3381. box-shadow:none;
  3382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:14px;
  3386. color:#D7D7D7;
  3387. }
  3388. #u15989 {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:1097px;
  3392. top:-775px;
  3393. width:161px;
  3394. height:33px;
  3395. display:flex;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:14px;
  3400. color:#D7D7D7;
  3401. }
  3402. #u15989 .text {
  3403. position:absolute;
  3404. align-self:center;
  3405. padding:2px 2px 2px 2px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u15989_div.disabled {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:161px;
  3415. height:33px;
  3416. background:inherit;
  3417. background-color:rgba(240, 240, 240, 1);
  3418. border:none;
  3419. border-radius:0px;
  3420. -moz-box-shadow:none;
  3421. -webkit-box-shadow:none;
  3422. box-shadow:none;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:14px;
  3427. color:#D7D7D7;
  3428. }
  3429. #u15989.disabled {
  3430. }
  3431. #u15990_div {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:78px;
  3437. height:40px;
  3438. background:inherit;
  3439. background-color:rgba(255, 255, 255, 0);
  3440. border:none;
  3441. border-left:0px;
  3442. border-top:0px;
  3443. border-right:0px;
  3444. border-radius:0px;
  3445. border-bottom-right-radius:0px;
  3446. border-bottom-left-radius:0px;
  3447. -moz-box-shadow:none;
  3448. -webkit-box-shadow:none;
  3449. box-shadow:none;
  3450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:14px;
  3454. }
  3455. #u15990 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:1089px;
  3459. top:-817px;
  3460. width:78px;
  3461. height:40px;
  3462. display:flex;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:14px;
  3467. }
  3468. #u15990 .text {
  3469. position:absolute;
  3470. align-self:center;
  3471. padding:0px 0px 0px 0px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u15990_text {
  3476. border-width:0px;
  3477. white-space:nowrap;
  3478. text-transform:none;
  3479. }
  3480. #u15991 {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:0px;
  3486. height:0px;
  3487. }
  3488. #u15992_div {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:200px;
  3494. height:40px;
  3495. background:inherit;
  3496. background-color:rgba(255, 255, 255, 1);
  3497. box-sizing:border-box;
  3498. border-width:1px;
  3499. border-style:solid;
  3500. border-color:rgba(201, 201, 201, 1);
  3501. border-radius:4px;
  3502. -moz-box-shadow:none;
  3503. -webkit-box-shadow:none;
  3504. box-shadow:none;
  3505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:14px;
  3509. text-align:right;
  3510. }
  3511. #u15992 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:859px;
  3515. top:-599px;
  3516. width:200px;
  3517. height:40px;
  3518. display:flex;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:14px;
  3523. text-align:right;
  3524. }
  3525. #u15992 .text {
  3526. position:absolute;
  3527. align-self:center;
  3528. padding:2px 8px 2px 8px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u15992_text {
  3533. border-width:0px;
  3534. word-wrap:break-word;
  3535. text-transform:none;
  3536. visibility:hidden;
  3537. }
  3538. #u15993_input {
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:161px;
  3543. height:33px;
  3544. padding:2px 2px 2px 2px;
  3545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3546. font-weight:400;
  3547. font-style:normal;
  3548. font-size:14px;
  3549. letter-spacing:normal;
  3550. color:#D7D7D7;
  3551. vertical-align:none;
  3552. text-align:left;
  3553. text-transform:none;
  3554. background-color:transparent;
  3555. border-color:transparent;
  3556. }
  3557. #u15993_input.disabled {
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:161px;
  3562. height:33px;
  3563. padding:2px 2px 2px 2px;
  3564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3565. font-weight:400;
  3566. font-style:normal;
  3567. font-size:14px;
  3568. letter-spacing:normal;
  3569. color:#D7D7D7;
  3570. vertical-align:none;
  3571. text-align:left;
  3572. text-transform:none;
  3573. background-color:transparent;
  3574. border-color:transparent;
  3575. }
  3576. #u15993_div {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:161px;
  3582. height:33px;
  3583. background:inherit;
  3584. background-color:rgba(255, 255, 255, 0);
  3585. border:none;
  3586. border-radius:0px;
  3587. -moz-box-shadow:none;
  3588. -webkit-box-shadow:none;
  3589. box-shadow:none;
  3590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:14px;
  3594. color:#D7D7D7;
  3595. }
  3596. #u15993 {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:867px;
  3600. top:-596px;
  3601. width:161px;
  3602. height:33px;
  3603. display:flex;
  3604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3605. font-weight:400;
  3606. font-style:normal;
  3607. font-size:14px;
  3608. color:#D7D7D7;
  3609. }
  3610. #u15993 .text {
  3611. position:absolute;
  3612. align-self:center;
  3613. padding:2px 2px 2px 2px;
  3614. box-sizing:border-box;
  3615. width:100%;
  3616. }
  3617. #u15993_div.disabled {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:161px;
  3623. height:33px;
  3624. background:inherit;
  3625. background-color:rgba(240, 240, 240, 1);
  3626. border:none;
  3627. border-radius:0px;
  3628. -moz-box-shadow:none;
  3629. -webkit-box-shadow:none;
  3630. box-shadow:none;
  3631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3632. font-weight:400;
  3633. font-style:normal;
  3634. font-size:14px;
  3635. color:#D7D7D7;
  3636. }
  3637. #u15993.disabled {
  3638. }
  3639. #u15994_div {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:50px;
  3645. height:40px;
  3646. background:inherit;
  3647. background-color:rgba(255, 255, 255, 0);
  3648. border:none;
  3649. border-left:0px;
  3650. border-top:0px;
  3651. border-right:0px;
  3652. border-radius:0px;
  3653. border-bottom-right-radius:0px;
  3654. border-bottom-left-radius:0px;
  3655. -moz-box-shadow:none;
  3656. -webkit-box-shadow:none;
  3657. box-shadow:none;
  3658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3659. font-weight:400;
  3660. font-style:normal;
  3661. font-size:14px;
  3662. }
  3663. #u15994 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:859px;
  3667. top:-638px;
  3668. width:50px;
  3669. height:40px;
  3670. display:flex;
  3671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3672. font-weight:400;
  3673. font-style:normal;
  3674. font-size:14px;
  3675. }
  3676. #u15994 .text {
  3677. position:absolute;
  3678. align-self:center;
  3679. padding:0px 0px 0px 0px;
  3680. box-sizing:border-box;
  3681. width:100%;
  3682. }
  3683. #u15994_text {
  3684. border-width:0px;
  3685. white-space:nowrap;
  3686. text-transform:none;
  3687. }
  3688. #u15995_div {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:0px;
  3692. top:0px;
  3693. width:64px;
  3694. height:40px;
  3695. background:inherit;
  3696. background-color:rgba(255, 255, 255, 0);
  3697. border:none;
  3698. border-left:0px;
  3699. border-top:0px;
  3700. border-right:0px;
  3701. border-radius:0px;
  3702. border-bottom-right-radius:0px;
  3703. border-bottom-left-radius:0px;
  3704. -moz-box-shadow:none;
  3705. -webkit-box-shadow:none;
  3706. box-shadow:none;
  3707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:14px;
  3711. }
  3712. #u15995 {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:859px;
  3716. top:-728px;
  3717. width:64px;
  3718. height:40px;
  3719. display:flex;
  3720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3721. font-weight:400;
  3722. font-style:normal;
  3723. font-size:14px;
  3724. }
  3725. #u15995 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:0px 0px 0px 0px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u15995_text {
  3733. border-width:0px;
  3734. white-space:nowrap;
  3735. text-transform:none;
  3736. }
  3737. #u15996 {
  3738. border-width:0px;
  3739. position:absolute;
  3740. left:0px;
  3741. top:0px;
  3742. width:0px;
  3743. height:0px;
  3744. }
  3745. #u15997_div {
  3746. border-width:0px;
  3747. position:absolute;
  3748. left:0px;
  3749. top:0px;
  3750. width:200px;
  3751. height:40px;
  3752. background:inherit;
  3753. background-color:rgba(255, 255, 255, 1);
  3754. box-sizing:border-box;
  3755. border-width:1px;
  3756. border-style:solid;
  3757. border-color:rgba(215, 215, 215, 1);
  3758. border-radius:4px;
  3759. -moz-box-shadow:none;
  3760. -webkit-box-shadow:none;
  3761. box-shadow:none;
  3762. font-size:14px;
  3763. }
  3764. #u15997 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:859px;
  3768. top:-688px;
  3769. width:200px;
  3770. height:40px;
  3771. display:flex;
  3772. font-size:14px;
  3773. }
  3774. #u15997 .text {
  3775. position:absolute;
  3776. align-self:center;
  3777. padding:2px 2px 2px 2px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u15997_text {
  3782. border-width:0px;
  3783. word-wrap:break-word;
  3784. text-transform:none;
  3785. visibility:hidden;
  3786. }
  3787. #u15998_input {
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:191px;
  3792. height:31px;
  3793. padding:2px 2px 2px 2px;
  3794. font-family:'ArialMT', 'Arial', sans-serif;
  3795. font-weight:400;
  3796. font-style:normal;
  3797. font-size:14px;
  3798. letter-spacing:normal;
  3799. color:#AAAAAA;
  3800. vertical-align:none;
  3801. text-align:left;
  3802. text-transform:none;
  3803. background-color:transparent;
  3804. border-color:transparent;
  3805. }
  3806. #u15998_input.disabled {
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:191px;
  3811. height:31px;
  3812. padding:2px 2px 2px 2px;
  3813. font-family:'ArialMT', 'Arial', sans-serif;
  3814. font-weight:400;
  3815. font-style:normal;
  3816. font-size:14px;
  3817. letter-spacing:normal;
  3818. color:#AAAAAA;
  3819. vertical-align:none;
  3820. text-align:left;
  3821. text-transform:none;
  3822. background-color:transparent;
  3823. border-color:transparent;
  3824. }
  3825. #u15998_div {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:191px;
  3831. height:31px;
  3832. background:inherit;
  3833. background-color:rgba(255, 255, 255, 1);
  3834. border:none;
  3835. border-radius:0px;
  3836. -moz-box-shadow:none;
  3837. -webkit-box-shadow:none;
  3838. box-shadow:none;
  3839. font-size:14px;
  3840. color:#AAAAAA;
  3841. }
  3842. #u15998 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:865px;
  3846. top:-685px;
  3847. width:191px;
  3848. height:31px;
  3849. display:flex;
  3850. font-size:14px;
  3851. color:#AAAAAA;
  3852. }
  3853. #u15998 .text {
  3854. position:absolute;
  3855. align-self:flex-start;
  3856. padding:2px 2px 2px 2px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u15998_div.disabled {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:191px;
  3866. height:31px;
  3867. background:inherit;
  3868. background-color:rgba(240, 240, 240, 1);
  3869. border:none;
  3870. border-radius:0px;
  3871. -moz-box-shadow:none;
  3872. -webkit-box-shadow:none;
  3873. box-shadow:none;
  3874. font-size:14px;
  3875. color:#AAAAAA;
  3876. }
  3877. #u15998.disabled {
  3878. }
  3879. .u15998_input_option {
  3880. font-size:14px;
  3881. }
  3882. #u15999_div {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:64px;
  3888. height:40px;
  3889. background:inherit;
  3890. background-color:rgba(255, 255, 255, 0);
  3891. border:none;
  3892. border-left:0px;
  3893. border-top:0px;
  3894. border-right:0px;
  3895. border-radius:0px;
  3896. border-bottom-right-radius:0px;
  3897. border-bottom-left-radius:0px;
  3898. -moz-box-shadow:none;
  3899. -webkit-box-shadow:none;
  3900. box-shadow:none;
  3901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3902. font-weight:400;
  3903. font-style:normal;
  3904. font-size:14px;
  3905. }
  3906. #u15999 {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:859px;
  3910. top:-902px;
  3911. width:64px;
  3912. height:40px;
  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. }
  3919. #u15999 .text {
  3920. position:absolute;
  3921. align-self:center;
  3922. padding:0px 0px 0px 0px;
  3923. box-sizing:border-box;
  3924. width:100%;
  3925. }
  3926. #u15999_text {
  3927. border-width:0px;
  3928. white-space:nowrap;
  3929. text-transform:none;
  3930. }
  3931. #u16000 {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:0px;
  3937. height:0px;
  3938. }
  3939. #u16001_div {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:200px;
  3945. height:40px;
  3946. background:inherit;
  3947. background-color:rgba(255, 255, 255, 1);
  3948. box-sizing:border-box;
  3949. border-width:1px;
  3950. border-style:solid;
  3951. border-color:rgba(201, 201, 201, 1);
  3952. border-radius:4px;
  3953. -moz-box-shadow:none;
  3954. -webkit-box-shadow:none;
  3955. box-shadow:none;
  3956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. font-size:14px;
  3960. text-align:right;
  3961. }
  3962. #u16001 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:859px;
  3966. top:-778px;
  3967. width:200px;
  3968. height:40px;
  3969. display:flex;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:14px;
  3974. text-align:right;
  3975. }
  3976. #u16001 .text {
  3977. position:absolute;
  3978. align-self:center;
  3979. padding:2px 8px 2px 8px;
  3980. box-sizing:border-box;
  3981. width:100%;
  3982. }
  3983. #u16001_text {
  3984. border-width:0px;
  3985. word-wrap:break-word;
  3986. text-transform:none;
  3987. visibility:hidden;
  3988. }
  3989. #u16002_input {
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:161px;
  3994. height:33px;
  3995. padding:2px 2px 2px 2px;
  3996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3997. font-weight:400;
  3998. font-style:normal;
  3999. font-size:14px;
  4000. letter-spacing:normal;
  4001. color:#D7D7D7;
  4002. vertical-align:none;
  4003. text-align:left;
  4004. text-transform:none;
  4005. background-color:transparent;
  4006. border-color:transparent;
  4007. }
  4008. #u16002_input.disabled {
  4009. position:absolute;
  4010. left:0px;
  4011. top:0px;
  4012. width:161px;
  4013. height:33px;
  4014. padding:2px 2px 2px 2px;
  4015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4016. font-weight:400;
  4017. font-style:normal;
  4018. font-size:14px;
  4019. letter-spacing:normal;
  4020. color:#D7D7D7;
  4021. vertical-align:none;
  4022. text-align:left;
  4023. text-transform:none;
  4024. background-color:transparent;
  4025. border-color:transparent;
  4026. }
  4027. #u16002_div {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:161px;
  4033. height:33px;
  4034. background:inherit;
  4035. background-color:rgba(255, 255, 255, 0);
  4036. border:none;
  4037. border-radius:0px;
  4038. -moz-box-shadow:none;
  4039. -webkit-box-shadow:none;
  4040. box-shadow:none;
  4041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:14px;
  4045. color:#D7D7D7;
  4046. }
  4047. #u16002 {
  4048. border-width:0px;
  4049. position:absolute;
  4050. left:867px;
  4051. top:-775px;
  4052. width:161px;
  4053. height:33px;
  4054. display:flex;
  4055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4056. font-weight:400;
  4057. font-style:normal;
  4058. font-size:14px;
  4059. color:#D7D7D7;
  4060. }
  4061. #u16002 .text {
  4062. position:absolute;
  4063. align-self:center;
  4064. padding:2px 2px 2px 2px;
  4065. box-sizing:border-box;
  4066. width:100%;
  4067. }
  4068. #u16002_div.disabled {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:161px;
  4074. height:33px;
  4075. background:inherit;
  4076. background-color:rgba(240, 240, 240, 1);
  4077. border:none;
  4078. border-radius:0px;
  4079. -moz-box-shadow:none;
  4080. -webkit-box-shadow:none;
  4081. box-shadow:none;
  4082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:14px;
  4086. color:#D7D7D7;
  4087. }
  4088. #u16002.disabled {
  4089. }
  4090. #u16003_img {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:13px;
  4096. height:13px;
  4097. }
  4098. #u16003 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:1037px;
  4102. top:-765px;
  4103. width:13px;
  4104. height:13px;
  4105. display:flex;
  4106. }
  4107. #u16003 .text {
  4108. position:absolute;
  4109. align-self:center;
  4110. padding:2px 2px 2px 2px;
  4111. box-sizing:border-box;
  4112. width:100%;
  4113. }
  4114. #u16003_text {
  4115. border-width:0px;
  4116. word-wrap:break-word;
  4117. text-transform:none;
  4118. visibility:hidden;
  4119. }
  4120. #u16004_div {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:0px;
  4124. top:0px;
  4125. width:57px;
  4126. height:40px;
  4127. background:inherit;
  4128. background-color:rgba(255, 255, 255, 0);
  4129. border:none;
  4130. border-left:0px;
  4131. border-top:0px;
  4132. border-right:0px;
  4133. border-radius:0px;
  4134. border-bottom-right-radius:0px;
  4135. border-bottom-left-radius:0px;
  4136. -moz-box-shadow:none;
  4137. -webkit-box-shadow:none;
  4138. box-shadow:none;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:14px;
  4143. }
  4144. #u16004 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:1089px;
  4148. top:-728px;
  4149. width:57px;
  4150. height:40px;
  4151. display:flex;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:14px;
  4156. }
  4157. #u16004 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:0px 0px 0px 0px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u16004_text {
  4165. border-width:0px;
  4166. white-space:nowrap;
  4167. text-transform:none;
  4168. }
  4169. #u16005 label {
  4170. left:0px;
  4171. width:100%;
  4172. }
  4173. #u16005_img {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:4px;
  4178. width:12px;
  4179. height:12px;
  4180. }
  4181. #u16005 {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:867px;
  4185. top:-852px;
  4186. width:100px;
  4187. height:20px;
  4188. display:flex;
  4189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4190. font-weight:400;
  4191. font-style:normal;
  4192. font-size:14px;
  4193. }
  4194. #u16005 .text {
  4195. position:absolute;
  4196. align-self:center;
  4197. padding:0px 2px 0px 2px;
  4198. box-sizing:border-box;
  4199. }
  4200. #u16005_img.selected {
  4201. }
  4202. #u16005.selected {
  4203. }
  4204. #u16005_img.disabled {
  4205. }
  4206. #u16005.disabled {
  4207. }
  4208. #u16005_img.selectedDisabled {
  4209. }
  4210. #u16005.selectedDisabled {
  4211. }
  4212. #u16005_text {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:14px;
  4216. top:0px;
  4217. width:84px;
  4218. word-wrap:break-word;
  4219. text-transform:none;
  4220. }
  4221. #u16005_input {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:0px;
  4227. height:0px;
  4228. opacity:0;
  4229. }
  4230. #u16006 label {
  4231. left:0px;
  4232. width:100%;
  4233. }
  4234. #u16006_img {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:4px;
  4239. width:12px;
  4240. height:12px;
  4241. }
  4242. #u16006 {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:1089px;
  4246. top:-852px;
  4247. width:100px;
  4248. height:20px;
  4249. display:flex;
  4250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:14px;
  4254. }
  4255. #u16006 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:0px 2px 0px 2px;
  4259. box-sizing:border-box;
  4260. }
  4261. #u16006_img.selected {
  4262. }
  4263. #u16006.selected {
  4264. }
  4265. #u16006_img.disabled {
  4266. }
  4267. #u16006.disabled {
  4268. }
  4269. #u16006_img.selectedDisabled {
  4270. }
  4271. #u16006.selectedDisabled {
  4272. }
  4273. #u16006_text {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:14px;
  4277. top:0px;
  4278. width:84px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. }
  4282. #u16006_input {
  4283. border-width:0px;
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:0px;
  4288. height:0px;
  4289. opacity:0;
  4290. }
  4291. #u16007 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:0px;
  4297. height:0px;
  4298. }
  4299. #u16008_div {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:200px;
  4305. height:40px;
  4306. background:inherit;
  4307. background-color:rgba(255, 255, 255, 1);
  4308. box-sizing:border-box;
  4309. border-width:1px;
  4310. border-style:solid;
  4311. border-color:rgba(215, 215, 215, 1);
  4312. border-radius:4px;
  4313. -moz-box-shadow:none;
  4314. -webkit-box-shadow:none;
  4315. box-shadow:none;
  4316. font-size:14px;
  4317. }
  4318. #u16008 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:1089px;
  4322. top:-688px;
  4323. width:200px;
  4324. height:40px;
  4325. display:flex;
  4326. font-size:14px;
  4327. }
  4328. #u16008 .text {
  4329. position:absolute;
  4330. align-self:center;
  4331. padding:2px 2px 2px 2px;
  4332. box-sizing:border-box;
  4333. width:100%;
  4334. }
  4335. #u16008_text {
  4336. border-width:0px;
  4337. word-wrap:break-word;
  4338. text-transform:none;
  4339. visibility:hidden;
  4340. }
  4341. #u16009_input {
  4342. position:absolute;
  4343. left:0px;
  4344. top:0px;
  4345. width:191px;
  4346. height:31px;
  4347. padding:2px 2px 2px 2px;
  4348. font-family:'ArialMT', 'Arial', sans-serif;
  4349. font-weight:400;
  4350. font-style:normal;
  4351. font-size:14px;
  4352. letter-spacing:normal;
  4353. color:#AAAAAA;
  4354. vertical-align:none;
  4355. text-align:left;
  4356. text-transform:none;
  4357. background-color:transparent;
  4358. border-color:transparent;
  4359. }
  4360. #u16009_input.disabled {
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:191px;
  4365. height:31px;
  4366. padding:2px 2px 2px 2px;
  4367. font-family:'ArialMT', 'Arial', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. font-size:14px;
  4371. letter-spacing:normal;
  4372. color:#AAAAAA;
  4373. vertical-align:none;
  4374. text-align:left;
  4375. text-transform:none;
  4376. background-color:transparent;
  4377. border-color:transparent;
  4378. }
  4379. #u16009_div {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:0px;
  4383. top:0px;
  4384. width:191px;
  4385. height:31px;
  4386. background:inherit;
  4387. background-color:rgba(255, 255, 255, 1);
  4388. border:none;
  4389. border-radius:0px;
  4390. -moz-box-shadow:none;
  4391. -webkit-box-shadow:none;
  4392. box-shadow:none;
  4393. font-size:14px;
  4394. color:#AAAAAA;
  4395. }
  4396. #u16009 {
  4397. border-width:0px;
  4398. position:absolute;
  4399. left:1095px;
  4400. top:-685px;
  4401. width:191px;
  4402. height:31px;
  4403. display:flex;
  4404. font-size:14px;
  4405. color:#AAAAAA;
  4406. }
  4407. #u16009 .text {
  4408. position:absolute;
  4409. align-self:flex-start;
  4410. padding:2px 2px 2px 2px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u16009_div.disabled {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:0px;
  4418. top:0px;
  4419. width:191px;
  4420. height:31px;
  4421. background:inherit;
  4422. background-color:rgba(240, 240, 240, 1);
  4423. border:none;
  4424. border-radius:0px;
  4425. -moz-box-shadow:none;
  4426. -webkit-box-shadow:none;
  4427. box-shadow:none;
  4428. font-size:14px;
  4429. color:#AAAAAA;
  4430. }
  4431. #u16009.disabled {
  4432. }
  4433. .u16009_input_option {
  4434. font-size:14px;
  4435. }
  4436. #u16010 {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:0px;
  4442. height:0px;
  4443. }
  4444. #u16011_div {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:0px;
  4448. top:0px;
  4449. width:200px;
  4450. height:40px;
  4451. background:inherit;
  4452. background-color:rgba(255, 255, 255, 1);
  4453. box-sizing:border-box;
  4454. border-width:1px;
  4455. border-style:solid;
  4456. border-color:rgba(201, 201, 201, 1);
  4457. border-radius:4px;
  4458. -moz-box-shadow:none;
  4459. -webkit-box-shadow:none;
  4460. box-shadow:none;
  4461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4462. font-weight:400;
  4463. font-style:normal;
  4464. font-size:14px;
  4465. text-align:right;
  4466. }
  4467. #u16011 {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:1089px;
  4471. top:-599px;
  4472. width:200px;
  4473. height:40px;
  4474. display:flex;
  4475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4476. font-weight:400;
  4477. font-style:normal;
  4478. font-size:14px;
  4479. text-align:right;
  4480. }
  4481. #u16011 .text {
  4482. position:absolute;
  4483. align-self:center;
  4484. padding:2px 8px 2px 8px;
  4485. box-sizing:border-box;
  4486. width:100%;
  4487. }
  4488. #u16011_text {
  4489. border-width:0px;
  4490. word-wrap:break-word;
  4491. text-transform:none;
  4492. visibility:hidden;
  4493. }
  4494. #u16012_input {
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:161px;
  4499. height:33px;
  4500. padding:2px 2px 2px 2px;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:14px;
  4505. letter-spacing:normal;
  4506. color:#D7D7D7;
  4507. vertical-align:none;
  4508. text-align:left;
  4509. text-transform:none;
  4510. background-color:transparent;
  4511. border-color:transparent;
  4512. }
  4513. #u16012_input.disabled {
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:161px;
  4518. height:33px;
  4519. padding:2px 2px 2px 2px;
  4520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4521. font-weight:400;
  4522. font-style:normal;
  4523. font-size:14px;
  4524. letter-spacing:normal;
  4525. color:#D7D7D7;
  4526. vertical-align:none;
  4527. text-align:left;
  4528. text-transform:none;
  4529. background-color:transparent;
  4530. border-color:transparent;
  4531. }
  4532. #u16012_div {
  4533. border-width:0px;
  4534. position:absolute;
  4535. left:0px;
  4536. top:0px;
  4537. width:161px;
  4538. height:33px;
  4539. background:inherit;
  4540. background-color:rgba(255, 255, 255, 0);
  4541. border:none;
  4542. border-radius:0px;
  4543. -moz-box-shadow:none;
  4544. -webkit-box-shadow:none;
  4545. box-shadow:none;
  4546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4547. font-weight:400;
  4548. font-style:normal;
  4549. font-size:14px;
  4550. color:#D7D7D7;
  4551. }
  4552. #u16012 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:1097px;
  4556. top:-596px;
  4557. width:161px;
  4558. height:33px;
  4559. display:flex;
  4560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4561. font-weight:400;
  4562. font-style:normal;
  4563. font-size:14px;
  4564. color:#D7D7D7;
  4565. }
  4566. #u16012 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 2px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u16012_div.disabled {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:161px;
  4579. height:33px;
  4580. background:inherit;
  4581. background-color:rgba(240, 240, 240, 1);
  4582. border:none;
  4583. border-radius:0px;
  4584. -moz-box-shadow:none;
  4585. -webkit-box-shadow:none;
  4586. box-shadow:none;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:14px;
  4591. color:#D7D7D7;
  4592. }
  4593. #u16012.disabled {
  4594. }
  4595. #u16013_div {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:78px;
  4601. height:40px;
  4602. background:inherit;
  4603. background-color:rgba(255, 255, 255, 0);
  4604. border:none;
  4605. border-left:0px;
  4606. border-top:0px;
  4607. border-right:0px;
  4608. border-radius:0px;
  4609. border-bottom-right-radius:0px;
  4610. border-bottom-left-radius:0px;
  4611. -moz-box-shadow:none;
  4612. -webkit-box-shadow:none;
  4613. box-shadow:none;
  4614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:14px;
  4618. }
  4619. #u16013 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:1089px;
  4623. top:-638px;
  4624. width:78px;
  4625. height:40px;
  4626. display:flex;
  4627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4628. font-weight:400;
  4629. font-style:normal;
  4630. font-size:14px;
  4631. }
  4632. #u16013 .text {
  4633. position:absolute;
  4634. align-self:center;
  4635. padding:0px 0px 0px 0px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u16013_text {
  4640. border-width:0px;
  4641. white-space:nowrap;
  4642. text-transform:none;
  4643. }
  4644. #u16014_div {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:64px;
  4650. height:40px;
  4651. background:inherit;
  4652. background-color:rgba(255, 255, 255, 0);
  4653. border:none;
  4654. border-left:0px;
  4655. border-top:0px;
  4656. border-right:0px;
  4657. border-radius:0px;
  4658. border-bottom-right-radius:0px;
  4659. border-bottom-left-radius:0px;
  4660. -moz-box-shadow:none;
  4661. -webkit-box-shadow:none;
  4662. box-shadow:none;
  4663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. font-size:14px;
  4667. }
  4668. #u16014 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:859px;
  4672. top:-549px;
  4673. width:64px;
  4674. height:40px;
  4675. display:flex;
  4676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. font-size:14px;
  4680. }
  4681. #u16014 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:0px 0px 0px 0px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u16014_text {
  4689. border-width:0px;
  4690. white-space:nowrap;
  4691. text-transform:none;
  4692. }
  4693. #u16015 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:0px;
  4699. height:0px;
  4700. }
  4701. #u16016_div {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:200px;
  4707. height:40px;
  4708. background:inherit;
  4709. background-color:rgba(255, 255, 255, 1);
  4710. box-sizing:border-box;
  4711. border-width:1px;
  4712. border-style:solid;
  4713. border-color:rgba(215, 215, 215, 1);
  4714. border-radius:4px;
  4715. -moz-box-shadow:none;
  4716. -webkit-box-shadow:none;
  4717. box-shadow:none;
  4718. font-size:14px;
  4719. }
  4720. #u16016 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:859px;
  4724. top:-509px;
  4725. width:200px;
  4726. height:40px;
  4727. display:flex;
  4728. font-size:14px;
  4729. }
  4730. #u16016 .text {
  4731. position:absolute;
  4732. align-self:center;
  4733. padding:2px 2px 2px 2px;
  4734. box-sizing:border-box;
  4735. width:100%;
  4736. }
  4737. #u16016_text {
  4738. border-width:0px;
  4739. word-wrap:break-word;
  4740. text-transform:none;
  4741. visibility:hidden;
  4742. }
  4743. #u16017_input {
  4744. position:absolute;
  4745. left:0px;
  4746. top:0px;
  4747. width:191px;
  4748. height:31px;
  4749. padding:2px 2px 2px 2px;
  4750. font-family:'ArialMT', 'Arial', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. font-size:14px;
  4754. letter-spacing:normal;
  4755. color:#AAAAAA;
  4756. vertical-align:none;
  4757. text-align:left;
  4758. text-transform:none;
  4759. background-color:transparent;
  4760. border-color:transparent;
  4761. }
  4762. #u16017_input.disabled {
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:191px;
  4767. height:31px;
  4768. padding:2px 2px 2px 2px;
  4769. font-family:'ArialMT', 'Arial', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:14px;
  4773. letter-spacing:normal;
  4774. color:#AAAAAA;
  4775. vertical-align:none;
  4776. text-align:left;
  4777. text-transform:none;
  4778. background-color:transparent;
  4779. border-color:transparent;
  4780. }
  4781. #u16017_div {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:191px;
  4787. height:31px;
  4788. background:inherit;
  4789. background-color:rgba(255, 255, 255, 1);
  4790. border:none;
  4791. border-radius:0px;
  4792. -moz-box-shadow:none;
  4793. -webkit-box-shadow:none;
  4794. box-shadow:none;
  4795. font-size:14px;
  4796. color:#AAAAAA;
  4797. }
  4798. #u16017 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:865px;
  4802. top:-506px;
  4803. width:191px;
  4804. height:31px;
  4805. display:flex;
  4806. font-size:14px;
  4807. color:#AAAAAA;
  4808. }
  4809. #u16017 .text {
  4810. position:absolute;
  4811. align-self:flex-start;
  4812. padding:2px 2px 2px 2px;
  4813. box-sizing:border-box;
  4814. width:100%;
  4815. }
  4816. #u16017_div.disabled {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:191px;
  4822. height:31px;
  4823. background:inherit;
  4824. background-color:rgba(240, 240, 240, 1);
  4825. border:none;
  4826. border-radius:0px;
  4827. -moz-box-shadow:none;
  4828. -webkit-box-shadow:none;
  4829. box-shadow:none;
  4830. font-size:14px;
  4831. color:#AAAAAA;
  4832. }
  4833. #u16017.disabled {
  4834. }
  4835. .u16017_input_option {
  4836. font-size:14px;
  4837. }
  4838. #u16018 {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:0px;
  4844. height:0px;
  4845. }
  4846. #u16019_div {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:200px;
  4852. height:40px;
  4853. background:inherit;
  4854. background-color:rgba(255, 255, 255, 1);
  4855. box-sizing:border-box;
  4856. border-width:1px;
  4857. border-style:solid;
  4858. border-color:rgba(201, 201, 201, 1);
  4859. border-radius:4px;
  4860. -moz-box-shadow:none;
  4861. -webkit-box-shadow:none;
  4862. box-shadow:none;
  4863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4864. font-weight:400;
  4865. font-style:normal;
  4866. font-size:14px;
  4867. text-align:right;
  4868. }
  4869. #u16019 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:1089px;
  4873. top:-509px;
  4874. width:200px;
  4875. height:40px;
  4876. display:flex;
  4877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4878. font-weight:400;
  4879. font-style:normal;
  4880. font-size:14px;
  4881. text-align:right;
  4882. }
  4883. #u16019 .text {
  4884. position:absolute;
  4885. align-self:center;
  4886. padding:2px 8px 2px 8px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u16019_text {
  4891. border-width:0px;
  4892. word-wrap:break-word;
  4893. text-transform:none;
  4894. visibility:hidden;
  4895. }
  4896. #u16020_input {
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:161px;
  4901. height:33px;
  4902. padding:2px 2px 2px 2px;
  4903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4904. font-weight:400;
  4905. font-style:normal;
  4906. font-size:14px;
  4907. letter-spacing:normal;
  4908. color:#D7D7D7;
  4909. vertical-align:none;
  4910. text-align:left;
  4911. text-transform:none;
  4912. background-color:transparent;
  4913. border-color:transparent;
  4914. }
  4915. #u16020_input.disabled {
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:161px;
  4920. height:33px;
  4921. padding:2px 2px 2px 2px;
  4922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:14px;
  4926. letter-spacing:normal;
  4927. color:#D7D7D7;
  4928. vertical-align:none;
  4929. text-align:left;
  4930. text-transform:none;
  4931. background-color:transparent;
  4932. border-color:transparent;
  4933. }
  4934. #u16020_div {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:161px;
  4940. height:33px;
  4941. background:inherit;
  4942. background-color:rgba(255, 255, 255, 0);
  4943. border:none;
  4944. border-radius:0px;
  4945. -moz-box-shadow:none;
  4946. -webkit-box-shadow:none;
  4947. box-shadow:none;
  4948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4949. font-weight:400;
  4950. font-style:normal;
  4951. font-size:14px;
  4952. color:#D7D7D7;
  4953. }
  4954. #u16020 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:1097px;
  4958. top:-506px;
  4959. width:161px;
  4960. height:33px;
  4961. display:flex;
  4962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:14px;
  4966. color:#D7D7D7;
  4967. }
  4968. #u16020 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 2px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u16020_div.disabled {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:161px;
  4981. height:33px;
  4982. background:inherit;
  4983. background-color:rgba(240, 240, 240, 1);
  4984. border:none;
  4985. border-radius:0px;
  4986. -moz-box-shadow:none;
  4987. -webkit-box-shadow:none;
  4988. box-shadow:none;
  4989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4990. font-weight:400;
  4991. font-style:normal;
  4992. font-size:14px;
  4993. color:#D7D7D7;
  4994. }
  4995. #u16020.disabled {
  4996. }
  4997. #u16021_div {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:64px;
  5003. height:40px;
  5004. background:inherit;
  5005. background-color:rgba(255, 255, 255, 0);
  5006. border:none;
  5007. border-left:0px;
  5008. border-top:0px;
  5009. border-right:0px;
  5010. border-radius:0px;
  5011. border-bottom-right-radius:0px;
  5012. border-bottom-left-radius:0px;
  5013. -moz-box-shadow:none;
  5014. -webkit-box-shadow:none;
  5015. box-shadow:none;
  5016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:14px;
  5020. }
  5021. #u16021 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:1089px;
  5025. top:-548px;
  5026. width:64px;
  5027. height:40px;
  5028. display:flex;
  5029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:14px;
  5033. }
  5034. #u16021 .text {
  5035. position:absolute;
  5036. align-self:center;
  5037. padding:0px 0px 0px 0px;
  5038. box-sizing:border-box;
  5039. width:100%;
  5040. }
  5041. #u16021_text {
  5042. border-width:0px;
  5043. white-space:nowrap;
  5044. text-transform:none;
  5045. }
  5046. #u16022_div {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:502px;
  5052. height:100px;
  5053. background:inherit;
  5054. background-color:rgba(255, 255, 255, 0);
  5055. border:none;
  5056. border-left:0px;
  5057. border-top:0px;
  5058. border-right:0px;
  5059. border-radius:0px;
  5060. border-bottom-right-radius:0px;
  5061. border-bottom-left-radius:0px;
  5062. -moz-box-shadow:none;
  5063. -webkit-box-shadow:none;
  5064. box-shadow:none;
  5065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5066. font-weight:400;
  5067. font-style:normal;
  5068. font-size:14px;
  5069. color:#D9001B;
  5070. }
  5071. #u16022 {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:1320px;
  5075. top:-559px;
  5076. width:502px;
  5077. height:100px;
  5078. display:flex;
  5079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5080. font-weight:400;
  5081. font-style:normal;
  5082. font-size:14px;
  5083. color:#D9001B;
  5084. }
  5085. #u16022 .text {
  5086. position:absolute;
  5087. align-self:center;
  5088. padding:0px 0px 0px 0px;
  5089. box-sizing:border-box;
  5090. width:100%;
  5091. }
  5092. #u16022_text {
  5093. border-width:0px;
  5094. word-wrap:break-word;
  5095. text-transform:none;
  5096. }
  5097. #u16023_div {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:109px;
  5103. height:17px;
  5104. background:inherit;
  5105. background-color:rgba(255, 255, 255, 0);
  5106. border:none;
  5107. border-left:0px;
  5108. border-top:0px;
  5109. border-right:0px;
  5110. border-radius:0px;
  5111. border-bottom-right-radius:0px;
  5112. border-bottom-left-radius:0px;
  5113. -moz-box-shadow:none;
  5114. -webkit-box-shadow:none;
  5115. box-shadow:none;
  5116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:12px;
  5120. color:#D9001B;
  5121. }
  5122. #u16023 {
  5123. border-width:0px;
  5124. position:absolute;
  5125. left:944px;
  5126. top:-805px;
  5127. width:109px;
  5128. height:17px;
  5129. display:flex;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:12px;
  5134. color:#D9001B;
  5135. }
  5136. #u16023 .text {
  5137. position:absolute;
  5138. align-self:center;
  5139. padding:0px 0px 0px 0px;
  5140. box-sizing:border-box;
  5141. width:100%;
  5142. }
  5143. #u16023_text {
  5144. border-width:0px;
  5145. white-space:nowrap;
  5146. text-transform:none;
  5147. }
  5148. #u16024_div {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:0px;
  5152. top:0px;
  5153. width:109px;
  5154. height:17px;
  5155. background:inherit;
  5156. background-color:rgba(255, 255, 255, 0);
  5157. border:none;
  5158. border-left:0px;
  5159. border-top:0px;
  5160. border-right:0px;
  5161. border-radius:0px;
  5162. border-bottom-right-radius:0px;
  5163. border-bottom-left-radius:0px;
  5164. -moz-box-shadow:none;
  5165. -webkit-box-shadow:none;
  5166. box-shadow:none;
  5167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5168. font-weight:400;
  5169. font-style:normal;
  5170. font-size:12px;
  5171. color:#D9001B;
  5172. }
  5173. #u16024 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:1180px;
  5177. top:-536px;
  5178. width:109px;
  5179. height:17px;
  5180. display:flex;
  5181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:12px;
  5185. color:#D9001B;
  5186. }
  5187. #u16024 .text {
  5188. position:absolute;
  5189. align-self:center;
  5190. padding:0px 0px 0px 0px;
  5191. box-sizing:border-box;
  5192. width:100%;
  5193. }
  5194. #u16024_text {
  5195. border-width:0px;
  5196. white-space:nowrap;
  5197. text-transform:none;
  5198. }
  5199. #u16025_div {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:271px;
  5205. height:40px;
  5206. background:inherit;
  5207. background-color:rgba(255, 255, 255, 0);
  5208. border:none;
  5209. border-left:0px;
  5210. border-top:0px;
  5211. border-right:0px;
  5212. border-radius:0px;
  5213. border-bottom-right-radius:0px;
  5214. border-bottom-left-radius:0px;
  5215. -moz-box-shadow:none;
  5216. -webkit-box-shadow:none;
  5217. box-shadow:none;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. }
  5222. #u16025 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:1089px;
  5226. top:-459px;
  5227. width:271px;
  5228. height:40px;
  5229. display:flex;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. }
  5234. #u16025 .text {
  5235. position:absolute;
  5236. align-self:center;
  5237. padding:0px 0px 0px 0px;
  5238. box-sizing:border-box;
  5239. width:100%;
  5240. }
  5241. #u16025_text {
  5242. border-width:0px;
  5243. white-space:nowrap;
  5244. text-transform:none;
  5245. }
  5246. #u16026_div {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:0px;
  5250. top:0px;
  5251. width:120px;
  5252. height:40px;
  5253. background:inherit;
  5254. background-color:rgba(24, 144, 255, 1);
  5255. border:none;
  5256. border-radius:4px;
  5257. -moz-box-shadow:none;
  5258. -webkit-box-shadow:none;
  5259. box-shadow:none;
  5260. font-size:14px;
  5261. color:#FFFFFF;
  5262. }
  5263. #u16026 {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:1089px;
  5267. top:-419px;
  5268. width:120px;
  5269. height:40px;
  5270. display:flex;
  5271. font-size:14px;
  5272. color:#FFFFFF;
  5273. }
  5274. #u16026 .text {
  5275. position:absolute;
  5276. align-self:center;
  5277. padding:2px 8px 2px 8px;
  5278. box-sizing:border-box;
  5279. width:100%;
  5280. }
  5281. #u16026_text {
  5282. border-width:0px;
  5283. word-wrap:break-word;
  5284. text-transform:none;
  5285. }
  5286. #u16027 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:0px;
  5292. height:0px;
  5293. }
  5294. #u16028 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:0px;
  5300. height:0px;
  5301. }
  5302. #u16029_div {
  5303. border-width:0px;
  5304. position:absolute;
  5305. left:0px;
  5306. top:0px;
  5307. width:380px;
  5308. height:200px;
  5309. background:inherit;
  5310. background-color:rgba(255, 255, 255, 1);
  5311. box-sizing:border-box;
  5312. border-width:1px;
  5313. border-style:solid;
  5314. border-color:rgba(242, 242, 242, 1);
  5315. border-radius:4px;
  5316. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5317. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5318. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5319. font-family:'Microsoft YaHei', sans-serif;
  5320. font-weight:400;
  5321. font-style:normal;
  5322. }
  5323. #u16029 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:420px;
  5327. top:71px;
  5328. width:380px;
  5329. height:200px;
  5330. display:flex;
  5331. font-family:'Microsoft YaHei', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. }
  5335. #u16029 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:2px 2px 2px 2px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u16029_text {
  5343. border-width:0px;
  5344. word-wrap:break-word;
  5345. text-transform:none;
  5346. visibility:hidden;
  5347. }
  5348. #u16030_div {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:163px;
  5354. height:21px;
  5355. background:inherit;
  5356. background-color:rgba(255, 255, 255, 0);
  5357. border:none;
  5358. border-radius:0px;
  5359. -moz-box-shadow:none;
  5360. -webkit-box-shadow:none;
  5361. box-shadow:none;
  5362. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5363. font-weight:650;
  5364. font-style:normal;
  5365. font-size:18px;
  5366. color:#000000;
  5367. line-height:22px;
  5368. }
  5369. #u16030 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:480px;
  5373. top:96px;
  5374. width:163px;
  5375. height:21px;
  5376. display:flex;
  5377. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5378. font-weight:650;
  5379. font-style:normal;
  5380. font-size:18px;
  5381. color:#000000;
  5382. line-height:22px;
  5383. }
  5384. #u16030 .text {
  5385. position:absolute;
  5386. align-self:flex-start;
  5387. padding:0px 0px 0px 0px;
  5388. box-sizing:border-box;
  5389. width:100%;
  5390. }
  5391. #u16030_text {
  5392. border-width:0px;
  5393. white-space:nowrap;
  5394. text-transform:none;
  5395. }
  5396. #u16031_div {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:0px;
  5400. top:0px;
  5401. width:61px;
  5402. height:32px;
  5403. background:inherit;
  5404. background-color:rgba(24, 144, 255, 1);
  5405. border:none;
  5406. border-radius:4px;
  5407. -moz-box-shadow:none;
  5408. -webkit-box-shadow:none;
  5409. box-shadow:none;
  5410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5411. font-weight:400;
  5412. font-style:normal;
  5413. font-size:14px;
  5414. color:#FFFFFF;
  5415. }
  5416. #u16031 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:719px;
  5420. top:223px;
  5421. width:61px;
  5422. height:32px;
  5423. display:flex;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:14px;
  5428. color:#FFFFFF;
  5429. }
  5430. #u16031 .text {
  5431. position:absolute;
  5432. align-self:center;
  5433. padding:2px 16px 2px 16px;
  5434. box-sizing:border-box;
  5435. width:100%;
  5436. }
  5437. #u16031_text {
  5438. border-width:0px;
  5439. white-space:nowrap;
  5440. text-transform:none;
  5441. }
  5442. #u16032_img {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:20px;
  5448. height:20px;
  5449. }
  5450. #u16032 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:449px;
  5454. top:100px;
  5455. width:20px;
  5456. height:20px;
  5457. display:flex;
  5458. }
  5459. #u16032 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:2px 2px 2px 2px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u16032_text {
  5467. border-width:0px;
  5468. word-wrap:break-word;
  5469. text-transform:none;
  5470. visibility:hidden;
  5471. }
  5472. #u16033_div {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:300px;
  5478. height:88px;
  5479. background:inherit;
  5480. background-color:rgba(255, 255, 255, 0);
  5481. border:none;
  5482. border-radius:0px;
  5483. -moz-box-shadow:none;
  5484. -webkit-box-shadow:none;
  5485. box-shadow:none;
  5486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:14px;
  5490. color:#7F7F7F;
  5491. line-height:22px;
  5492. }
  5493. #u16033 {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:480px;
  5497. top:130px;
  5498. width:300px;
  5499. height:88px;
  5500. display:flex;
  5501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5502. font-weight:400;
  5503. font-style:normal;
  5504. font-size:14px;
  5505. color:#7F7F7F;
  5506. line-height:22px;
  5507. }
  5508. #u16033 .text {
  5509. position:absolute;
  5510. align-self:flex-start;
  5511. padding:0px 0px 0px 0px;
  5512. box-sizing:border-box;
  5513. width:100%;
  5514. }
  5515. #u16033_text {
  5516. border-width:0px;
  5517. word-wrap:break-word;
  5518. text-transform:none;
  5519. }
  5520. #u16034_div {
  5521. border-width:0px;
  5522. position:absolute;
  5523. left:0px;
  5524. top:0px;
  5525. width:66px;
  5526. height:32px;
  5527. background:inherit;
  5528. background-color:rgba(255, 255, 255, 1);
  5529. box-sizing:border-box;
  5530. border-width:1px;
  5531. border-style:solid;
  5532. border-color:rgba(217, 217, 217, 1);
  5533. border-radius:4px;
  5534. -moz-box-shadow:none;
  5535. -webkit-box-shadow:none;
  5536. box-shadow:none;
  5537. font-family:'Microsoft YaHei', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. font-size:14px;
  5541. color:rgba(0, 0, 0, 0.647058823529412);
  5542. line-height:21px;
  5543. }
  5544. #u16034 {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:636px;
  5548. top:223px;
  5549. width:66px;
  5550. height:32px;
  5551. display:flex;
  5552. font-family:'Microsoft YaHei', sans-serif;
  5553. font-weight:400;
  5554. font-style:normal;
  5555. font-size:14px;
  5556. color:rgba(0, 0, 0, 0.647058823529412);
  5557. line-height:21px;
  5558. }
  5559. #u16034 .text {
  5560. position:absolute;
  5561. align-self:center;
  5562. padding:2px 16px 2px 16px;
  5563. box-sizing:border-box;
  5564. width:100%;
  5565. }
  5566. #u16034_text {
  5567. border-width:0px;
  5568. white-space:nowrap;
  5569. text-transform:none;
  5570. }
  5571. #u16035_div {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:145px;
  5577. height:17px;
  5578. background:inherit;
  5579. background-color:rgba(255, 255, 255, 0);
  5580. border:none;
  5581. border-left:0px;
  5582. border-top:0px;
  5583. border-right:0px;
  5584. border-radius:0px;
  5585. border-bottom-right-radius:0px;
  5586. border-bottom-left-radius:0px;
  5587. -moz-box-shadow:none;
  5588. -webkit-box-shadow:none;
  5589. box-shadow:none;
  5590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5591. font-weight:400;
  5592. font-style:normal;
  5593. font-size:12px;
  5594. color:#D9001B;
  5595. }
  5596. #u16035 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:85px;
  5600. top:-515px;
  5601. width:145px;
  5602. height:17px;
  5603. display:flex;
  5604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5605. font-weight:400;
  5606. font-style:normal;
  5607. font-size:12px;
  5608. color:#D9001B;
  5609. }
  5610. #u16035 .text {
  5611. position:absolute;
  5612. align-self:center;
  5613. padding:0px 0px 0px 0px;
  5614. box-sizing:border-box;
  5615. width:100%;
  5616. }
  5617. #u16035_text {
  5618. border-width:0px;
  5619. white-space:nowrap;
  5620. text-transform:none;
  5621. }
  5622. #u16036 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:0px;
  5628. height:0px;
  5629. }
  5630. #u16037_div {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:0px;
  5634. top:0px;
  5635. width:140px;
  5636. height:40px;
  5637. background:inherit;
  5638. background-color:rgba(242, 242, 242, 1);
  5639. box-sizing:border-box;
  5640. border-width:1px;
  5641. border-style:solid;
  5642. border-color:rgba(215, 215, 215, 1);
  5643. border-radius:4px;
  5644. -moz-box-shadow:none;
  5645. -webkit-box-shadow:none;
  5646. box-shadow:none;
  5647. font-size:14px;
  5648. }
  5649. #u16037 {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:39px;
  5653. top:-1021px;
  5654. width:140px;
  5655. height:40px;
  5656. display:flex;
  5657. font-size:14px;
  5658. }
  5659. #u16037 .text {
  5660. position:absolute;
  5661. align-self:center;
  5662. padding:2px 2px 2px 2px;
  5663. box-sizing:border-box;
  5664. width:100%;
  5665. }
  5666. #u16037_text {
  5667. border-width:0px;
  5668. word-wrap:break-word;
  5669. text-transform:none;
  5670. visibility:hidden;
  5671. }
  5672. #u16038_input {
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:134px;
  5677. height:31px;
  5678. padding:2px 2px 2px 2px;
  5679. font-family:'ArialMT', 'Arial', sans-serif;
  5680. font-weight:400;
  5681. font-style:normal;
  5682. font-size:14px;
  5683. letter-spacing:normal;
  5684. color:#AAAAAA;
  5685. vertical-align:none;
  5686. text-align:left;
  5687. text-transform:none;
  5688. background-color:transparent;
  5689. border-color:transparent;
  5690. }
  5691. #u16038_input.disabled {
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:134px;
  5696. height:31px;
  5697. padding:2px 2px 2px 2px;
  5698. font-family:'ArialMT', 'Arial', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:14px;
  5702. letter-spacing:normal;
  5703. color:#AAAAAA;
  5704. vertical-align:none;
  5705. text-align:left;
  5706. text-transform:none;
  5707. background-color:transparent;
  5708. border-color:transparent;
  5709. }
  5710. #u16038_div {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:134px;
  5716. height:31px;
  5717. background:inherit;
  5718. background-color:rgba(242, 242, 242, 1);
  5719. border:none;
  5720. border-radius:0px;
  5721. -moz-box-shadow:none;
  5722. -webkit-box-shadow:none;
  5723. box-shadow:none;
  5724. font-size:14px;
  5725. color:#AAAAAA;
  5726. }
  5727. #u16038 {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:43px;
  5731. top:-1018px;
  5732. width:134px;
  5733. height:31px;
  5734. display:flex;
  5735. font-size:14px;
  5736. color:#AAAAAA;
  5737. }
  5738. #u16038 .text {
  5739. position:absolute;
  5740. align-self:flex-start;
  5741. padding:2px 2px 2px 2px;
  5742. box-sizing:border-box;
  5743. width:100%;
  5744. }
  5745. #u16038_div.disabled {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:134px;
  5751. height:31px;
  5752. background:inherit;
  5753. background-color:rgba(240, 240, 240, 1);
  5754. border:none;
  5755. border-radius:0px;
  5756. -moz-box-shadow:none;
  5757. -webkit-box-shadow:none;
  5758. box-shadow:none;
  5759. font-size:14px;
  5760. color:#AAAAAA;
  5761. }
  5762. #u16038.disabled {
  5763. }
  5764. .u16038_input_option {
  5765. font-size:14px;
  5766. }
  5767. #u16039 {
  5768. border-width:0px;
  5769. position:absolute;
  5770. left:0px;
  5771. top:0px;
  5772. width:0px;
  5773. height:0px;
  5774. }
  5775. #u16040_div {
  5776. border-width:0px;
  5777. position:absolute;
  5778. left:0px;
  5779. top:0px;
  5780. width:120px;
  5781. height:40px;
  5782. background:inherit;
  5783. background-color:rgba(242, 242, 242, 1);
  5784. box-sizing:border-box;
  5785. border-width:1px;
  5786. border-style:solid;
  5787. border-color:rgba(215, 215, 215, 1);
  5788. border-radius:4px;
  5789. -moz-box-shadow:none;
  5790. -webkit-box-shadow:none;
  5791. box-shadow:none;
  5792. font-size:14px;
  5793. }
  5794. #u16040 {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:189px;
  5798. top:-1021px;
  5799. width:120px;
  5800. height:40px;
  5801. display:flex;
  5802. font-size:14px;
  5803. }
  5804. #u16040 .text {
  5805. position:absolute;
  5806. align-self:center;
  5807. padding:2px 2px 2px 2px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u16040_text {
  5812. border-width:0px;
  5813. word-wrap:break-word;
  5814. text-transform:none;
  5815. visibility:hidden;
  5816. }
  5817. #u16041_input {
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:115px;
  5822. height:31px;
  5823. padding:2px 2px 2px 2px;
  5824. font-family:'ArialMT', 'Arial', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:14px;
  5828. letter-spacing:normal;
  5829. color:#AAAAAA;
  5830. vertical-align:none;
  5831. text-align:left;
  5832. text-transform:none;
  5833. background-color:transparent;
  5834. border-color:transparent;
  5835. }
  5836. #u16041_input.disabled {
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:115px;
  5841. height:31px;
  5842. padding:2px 2px 2px 2px;
  5843. font-family:'ArialMT', 'Arial', sans-serif;
  5844. font-weight:400;
  5845. font-style:normal;
  5846. font-size:14px;
  5847. letter-spacing:normal;
  5848. color:#AAAAAA;
  5849. vertical-align:none;
  5850. text-align:left;
  5851. text-transform:none;
  5852. background-color:transparent;
  5853. border-color:transparent;
  5854. }
  5855. #u16041_div {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:115px;
  5861. height:31px;
  5862. background:inherit;
  5863. background-color:rgba(242, 242, 242, 1);
  5864. border:none;
  5865. border-radius:0px;
  5866. -moz-box-shadow:none;
  5867. -webkit-box-shadow:none;
  5868. box-shadow:none;
  5869. font-size:14px;
  5870. color:#AAAAAA;
  5871. }
  5872. #u16041 {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:193px;
  5876. top:-1018px;
  5877. width:115px;
  5878. height:31px;
  5879. display:flex;
  5880. font-size:14px;
  5881. color:#AAAAAA;
  5882. }
  5883. #u16041 .text {
  5884. position:absolute;
  5885. align-self:flex-start;
  5886. padding:2px 2px 2px 2px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u16041_div.disabled {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:115px;
  5896. height:31px;
  5897. background:inherit;
  5898. background-color:rgba(240, 240, 240, 1);
  5899. border:none;
  5900. border-radius:0px;
  5901. -moz-box-shadow:none;
  5902. -webkit-box-shadow:none;
  5903. box-shadow:none;
  5904. font-size:14px;
  5905. color:#AAAAAA;
  5906. }
  5907. #u16041.disabled {
  5908. }
  5909. .u16041_input_option {
  5910. font-size:14px;
  5911. }
  5912. #u16042 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:0px;
  5916. top:0px;
  5917. width:0px;
  5918. height:0px;
  5919. }
  5920. #u16043_div {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:120px;
  5926. height:40px;
  5927. background:inherit;
  5928. background-color:rgba(242, 242, 242, 1);
  5929. box-sizing:border-box;
  5930. border-width:1px;
  5931. border-style:solid;
  5932. border-color:rgba(215, 215, 215, 1);
  5933. border-radius:4px;
  5934. -moz-box-shadow:none;
  5935. -webkit-box-shadow:none;
  5936. box-shadow:none;
  5937. font-size:14px;
  5938. }
  5939. #u16043 {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:319px;
  5943. top:-1021px;
  5944. width:120px;
  5945. height:40px;
  5946. display:flex;
  5947. font-size:14px;
  5948. }
  5949. #u16043 .text {
  5950. position:absolute;
  5951. align-self:center;
  5952. padding:2px 2px 2px 2px;
  5953. box-sizing:border-box;
  5954. width:100%;
  5955. }
  5956. #u16043_text {
  5957. border-width:0px;
  5958. word-wrap:break-word;
  5959. text-transform:none;
  5960. visibility:hidden;
  5961. }
  5962. #u16044_input {
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:115px;
  5967. height:31px;
  5968. padding:2px 2px 2px 2px;
  5969. font-family:'ArialMT', 'Arial', sans-serif;
  5970. font-weight:400;
  5971. font-style:normal;
  5972. font-size:14px;
  5973. letter-spacing:normal;
  5974. color:#AAAAAA;
  5975. vertical-align:none;
  5976. text-align:left;
  5977. text-transform:none;
  5978. background-color:transparent;
  5979. border-color:transparent;
  5980. }
  5981. #u16044_input.disabled {
  5982. position:absolute;
  5983. left:0px;
  5984. top:0px;
  5985. width:115px;
  5986. height:31px;
  5987. padding:2px 2px 2px 2px;
  5988. font-family:'ArialMT', 'Arial', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:14px;
  5992. letter-spacing:normal;
  5993. color:#AAAAAA;
  5994. vertical-align:none;
  5995. text-align:left;
  5996. text-transform:none;
  5997. background-color:transparent;
  5998. border-color:transparent;
  5999. }
  6000. #u16044_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:115px;
  6006. height:31px;
  6007. background:inherit;
  6008. background-color:rgba(242, 242, 242, 1);
  6009. border:none;
  6010. border-radius:0px;
  6011. -moz-box-shadow:none;
  6012. -webkit-box-shadow:none;
  6013. box-shadow:none;
  6014. font-size:14px;
  6015. color:#AAAAAA;
  6016. }
  6017. #u16044 {
  6018. border-width:0px;
  6019. position:absolute;
  6020. left:323px;
  6021. top:-1018px;
  6022. width:115px;
  6023. height:31px;
  6024. display:flex;
  6025. font-size:14px;
  6026. color:#AAAAAA;
  6027. }
  6028. #u16044 .text {
  6029. position:absolute;
  6030. align-self:flex-start;
  6031. padding:2px 2px 2px 2px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u16044_div.disabled {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:0px;
  6039. top:0px;
  6040. width:115px;
  6041. height:31px;
  6042. background:inherit;
  6043. background-color:rgba(240, 240, 240, 1);
  6044. border:none;
  6045. border-radius:0px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-size:14px;
  6050. color:#AAAAAA;
  6051. }
  6052. #u16044.disabled {
  6053. }
  6054. .u16044_input_option {
  6055. font-size:14px;
  6056. }
  6057. #u16045 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:0px;
  6063. height:0px;
  6064. }
  6065. #u16046_div {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:140px;
  6071. height:40px;
  6072. background:inherit;
  6073. background-color:rgba(242, 242, 242, 1);
  6074. box-sizing:border-box;
  6075. border-width:1px;
  6076. border-style:solid;
  6077. border-color:rgba(215, 215, 215, 1);
  6078. border-radius:4px;
  6079. -moz-box-shadow:none;
  6080. -webkit-box-shadow:none;
  6081. box-shadow:none;
  6082. font-size:14px;
  6083. }
  6084. #u16046 {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:859px;
  6088. top:-1021px;
  6089. width:140px;
  6090. height:40px;
  6091. display:flex;
  6092. font-size:14px;
  6093. }
  6094. #u16046 .text {
  6095. position:absolute;
  6096. align-self:center;
  6097. padding:2px 2px 2px 2px;
  6098. box-sizing:border-box;
  6099. width:100%;
  6100. }
  6101. #u16046_text {
  6102. border-width:0px;
  6103. word-wrap:break-word;
  6104. text-transform:none;
  6105. visibility:hidden;
  6106. }
  6107. #u16047_input {
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:134px;
  6112. height:31px;
  6113. padding:2px 2px 2px 2px;
  6114. font-family:'ArialMT', 'Arial', sans-serif;
  6115. font-weight:400;
  6116. font-style:normal;
  6117. font-size:14px;
  6118. letter-spacing:normal;
  6119. color:#AAAAAA;
  6120. vertical-align:none;
  6121. text-align:left;
  6122. text-transform:none;
  6123. background-color:transparent;
  6124. border-color:transparent;
  6125. }
  6126. #u16047_input.disabled {
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:134px;
  6131. height:31px;
  6132. padding:2px 2px 2px 2px;
  6133. font-family:'ArialMT', 'Arial', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:14px;
  6137. letter-spacing:normal;
  6138. color:#AAAAAA;
  6139. vertical-align:none;
  6140. text-align:left;
  6141. text-transform:none;
  6142. background-color:transparent;
  6143. border-color:transparent;
  6144. }
  6145. #u16047_div {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:134px;
  6151. height:31px;
  6152. background:inherit;
  6153. background-color:rgba(242, 242, 242, 1);
  6154. border:none;
  6155. border-radius:0px;
  6156. -moz-box-shadow:none;
  6157. -webkit-box-shadow:none;
  6158. box-shadow:none;
  6159. font-size:14px;
  6160. color:#AAAAAA;
  6161. }
  6162. #u16047 {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:863px;
  6166. top:-1018px;
  6167. width:134px;
  6168. height:31px;
  6169. display:flex;
  6170. font-size:14px;
  6171. color:#AAAAAA;
  6172. }
  6173. #u16047 .text {
  6174. position:absolute;
  6175. align-self:flex-start;
  6176. padding:2px 2px 2px 2px;
  6177. box-sizing:border-box;
  6178. width:100%;
  6179. }
  6180. #u16047_div.disabled {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:0px;
  6184. top:0px;
  6185. width:134px;
  6186. height:31px;
  6187. background:inherit;
  6188. background-color:rgba(240, 240, 240, 1);
  6189. border:none;
  6190. border-radius:0px;
  6191. -moz-box-shadow:none;
  6192. -webkit-box-shadow:none;
  6193. box-shadow:none;
  6194. font-size:14px;
  6195. color:#AAAAAA;
  6196. }
  6197. #u16047.disabled {
  6198. }
  6199. .u16047_input_option {
  6200. font-size:14px;
  6201. }
  6202. #u16048 {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:0px;
  6208. height:0px;
  6209. }
  6210. #u16049_div {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:120px;
  6216. height:40px;
  6217. background:inherit;
  6218. background-color:rgba(242, 242, 242, 1);
  6219. box-sizing:border-box;
  6220. border-width:1px;
  6221. border-style:solid;
  6222. border-color:rgba(215, 215, 215, 1);
  6223. border-radius:4px;
  6224. -moz-box-shadow:none;
  6225. -webkit-box-shadow:none;
  6226. box-shadow:none;
  6227. font-size:14px;
  6228. }
  6229. #u16049 {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:1009px;
  6233. top:-1021px;
  6234. width:120px;
  6235. height:40px;
  6236. display:flex;
  6237. font-size:14px;
  6238. }
  6239. #u16049 .text {
  6240. position:absolute;
  6241. align-self:center;
  6242. padding:2px 2px 2px 2px;
  6243. box-sizing:border-box;
  6244. width:100%;
  6245. }
  6246. #u16049_text {
  6247. border-width:0px;
  6248. word-wrap:break-word;
  6249. text-transform:none;
  6250. visibility:hidden;
  6251. }
  6252. #u16050_input {
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:115px;
  6257. height:31px;
  6258. padding:2px 2px 2px 2px;
  6259. font-family:'ArialMT', 'Arial', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:14px;
  6263. letter-spacing:normal;
  6264. color:#AAAAAA;
  6265. vertical-align:none;
  6266. text-align:left;
  6267. text-transform:none;
  6268. background-color:transparent;
  6269. border-color:transparent;
  6270. }
  6271. #u16050_input.disabled {
  6272. position:absolute;
  6273. left:0px;
  6274. top:0px;
  6275. width:115px;
  6276. height:31px;
  6277. padding:2px 2px 2px 2px;
  6278. font-family:'ArialMT', 'Arial', sans-serif;
  6279. font-weight:400;
  6280. font-style:normal;
  6281. font-size:14px;
  6282. letter-spacing:normal;
  6283. color:#AAAAAA;
  6284. vertical-align:none;
  6285. text-align:left;
  6286. text-transform:none;
  6287. background-color:transparent;
  6288. border-color:transparent;
  6289. }
  6290. #u16050_div {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:115px;
  6296. height:31px;
  6297. background:inherit;
  6298. background-color:rgba(242, 242, 242, 1);
  6299. border:none;
  6300. border-radius:0px;
  6301. -moz-box-shadow:none;
  6302. -webkit-box-shadow:none;
  6303. box-shadow:none;
  6304. font-size:14px;
  6305. color:#AAAAAA;
  6306. }
  6307. #u16050 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:1013px;
  6311. top:-1018px;
  6312. width:115px;
  6313. height:31px;
  6314. display:flex;
  6315. font-size:14px;
  6316. color:#AAAAAA;
  6317. }
  6318. #u16050 .text {
  6319. position:absolute;
  6320. align-self:flex-start;
  6321. padding:2px 2px 2px 2px;
  6322. box-sizing:border-box;
  6323. width:100%;
  6324. }
  6325. #u16050_div.disabled {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:115px;
  6331. height:31px;
  6332. background:inherit;
  6333. background-color:rgba(240, 240, 240, 1);
  6334. border:none;
  6335. border-radius:0px;
  6336. -moz-box-shadow:none;
  6337. -webkit-box-shadow:none;
  6338. box-shadow:none;
  6339. font-size:14px;
  6340. color:#AAAAAA;
  6341. }
  6342. #u16050.disabled {
  6343. }
  6344. .u16050_input_option {
  6345. font-size:14px;
  6346. }
  6347. #u16051 {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:0px;
  6353. height:0px;
  6354. }
  6355. #u16052_div {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:0px;
  6359. top:0px;
  6360. width:120px;
  6361. height:40px;
  6362. background:inherit;
  6363. background-color:rgba(242, 242, 242, 1);
  6364. box-sizing:border-box;
  6365. border-width:1px;
  6366. border-style:solid;
  6367. border-color:rgba(215, 215, 215, 1);
  6368. border-radius:4px;
  6369. -moz-box-shadow:none;
  6370. -webkit-box-shadow:none;
  6371. box-shadow:none;
  6372. font-size:14px;
  6373. }
  6374. #u16052 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:1139px;
  6378. top:-1021px;
  6379. width:120px;
  6380. height:40px;
  6381. display:flex;
  6382. font-size:14px;
  6383. }
  6384. #u16052 .text {
  6385. position:absolute;
  6386. align-self:center;
  6387. padding:2px 2px 2px 2px;
  6388. box-sizing:border-box;
  6389. width:100%;
  6390. }
  6391. #u16052_text {
  6392. border-width:0px;
  6393. word-wrap:break-word;
  6394. text-transform:none;
  6395. visibility:hidden;
  6396. }
  6397. #u16053_input {
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:115px;
  6402. height:31px;
  6403. padding:2px 2px 2px 2px;
  6404. font-family:'ArialMT', 'Arial', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:14px;
  6408. letter-spacing:normal;
  6409. color:#AAAAAA;
  6410. vertical-align:none;
  6411. text-align:left;
  6412. text-transform:none;
  6413. background-color:transparent;
  6414. border-color:transparent;
  6415. }
  6416. #u16053_input.disabled {
  6417. position:absolute;
  6418. left:0px;
  6419. top:0px;
  6420. width:115px;
  6421. height:31px;
  6422. padding:2px 2px 2px 2px;
  6423. font-family:'ArialMT', 'Arial', sans-serif;
  6424. font-weight:400;
  6425. font-style:normal;
  6426. font-size:14px;
  6427. letter-spacing:normal;
  6428. color:#AAAAAA;
  6429. vertical-align:none;
  6430. text-align:left;
  6431. text-transform:none;
  6432. background-color:transparent;
  6433. border-color:transparent;
  6434. }
  6435. #u16053_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:115px;
  6441. height:31px;
  6442. background:inherit;
  6443. background-color:rgba(242, 242, 242, 1);
  6444. border:none;
  6445. border-radius:0px;
  6446. -moz-box-shadow:none;
  6447. -webkit-box-shadow:none;
  6448. box-shadow:none;
  6449. font-size:14px;
  6450. color:#AAAAAA;
  6451. }
  6452. #u16053 {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:1143px;
  6456. top:-1018px;
  6457. width:115px;
  6458. height:31px;
  6459. display:flex;
  6460. font-size:14px;
  6461. color:#AAAAAA;
  6462. }
  6463. #u16053 .text {
  6464. position:absolute;
  6465. align-self:flex-start;
  6466. padding:2px 2px 2px 2px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u16053_div.disabled {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:115px;
  6476. height:31px;
  6477. background:inherit;
  6478. background-color:rgba(240, 240, 240, 1);
  6479. border:none;
  6480. border-radius:0px;
  6481. -moz-box-shadow:none;
  6482. -webkit-box-shadow:none;
  6483. box-shadow:none;
  6484. font-size:14px;
  6485. color:#AAAAAA;
  6486. }
  6487. #u16053.disabled {
  6488. }
  6489. .u16053_input_option {
  6490. font-size:14px;
  6491. }
  6492. #u16054 {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:0px;
  6498. height:0px;
  6499. }
  6500. #u16055_div {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:427px;
  6506. height:80px;
  6507. background:inherit;
  6508. background-color:rgba(255, 255, 255, 1);
  6509. box-sizing:border-box;
  6510. border-width:1px;
  6511. border-style:solid;
  6512. border-color:rgba(201, 201, 201, 1);
  6513. border-radius:4px;
  6514. -moz-box-shadow:none;
  6515. -webkit-box-shadow:none;
  6516. box-shadow:none;
  6517. font-family:'Microsoft YaHei', sans-serif;
  6518. font-weight:400;
  6519. font-style:normal;
  6520. font-size:14px;
  6521. color:#CCCCCC;
  6522. text-align:left;
  6523. }
  6524. #u16055 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:859px;
  6528. top:-329px;
  6529. width:427px;
  6530. height:80px;
  6531. display:flex;
  6532. font-family:'Microsoft YaHei', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:14px;
  6536. color:#CCCCCC;
  6537. text-align:left;
  6538. }
  6539. #u16055 .text {
  6540. position:absolute;
  6541. align-self:center;
  6542. padding:2px 8px 2px 8px;
  6543. box-sizing:border-box;
  6544. width:100%;
  6545. }
  6546. #u16055_text {
  6547. border-width:0px;
  6548. word-wrap:break-word;
  6549. text-transform:none;
  6550. visibility:hidden;
  6551. }
  6552. #u16056_input {
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:389px;
  6557. height:33px;
  6558. padding:2px 2px 2px 2px;
  6559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6560. font-weight:400;
  6561. font-style:normal;
  6562. font-size:14px;
  6563. letter-spacing:normal;
  6564. color:#D7D7D7;
  6565. vertical-align:none;
  6566. text-align:left;
  6567. text-transform:none;
  6568. background-color:transparent;
  6569. border-color:transparent;
  6570. }
  6571. #u16056_input.disabled {
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:389px;
  6576. height:33px;
  6577. padding:2px 2px 2px 2px;
  6578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6579. font-weight:400;
  6580. font-style:normal;
  6581. font-size:14px;
  6582. letter-spacing:normal;
  6583. color:#D7D7D7;
  6584. vertical-align:none;
  6585. text-align:left;
  6586. text-transform:none;
  6587. background-color:transparent;
  6588. border-color:transparent;
  6589. }
  6590. #u16056_div {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:0px;
  6594. top:0px;
  6595. width:389px;
  6596. height:33px;
  6597. background:inherit;
  6598. background-color:rgba(255, 255, 255, 0);
  6599. border:none;
  6600. border-radius:0px;
  6601. -moz-box-shadow:none;
  6602. -webkit-box-shadow:none;
  6603. box-shadow:none;
  6604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6605. font-weight:400;
  6606. font-style:normal;
  6607. font-size:14px;
  6608. color:#D7D7D7;
  6609. }
  6610. #u16056 {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:876px;
  6614. top:-326px;
  6615. width:389px;
  6616. height:33px;
  6617. display:flex;
  6618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6619. font-weight:400;
  6620. font-style:normal;
  6621. font-size:14px;
  6622. color:#D7D7D7;
  6623. }
  6624. #u16056 .text {
  6625. position:absolute;
  6626. align-self:center;
  6627. padding:2px 2px 2px 2px;
  6628. box-sizing:border-box;
  6629. width:100%;
  6630. }
  6631. #u16056_div.disabled {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:389px;
  6637. height:33px;
  6638. background:inherit;
  6639. background-color:rgba(240, 240, 240, 1);
  6640. border:none;
  6641. border-radius:0px;
  6642. -moz-box-shadow:none;
  6643. -webkit-box-shadow:none;
  6644. box-shadow:none;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:14px;
  6649. color:#D7D7D7;
  6650. }
  6651. #u16056.disabled {
  6652. }
  6653. #u16057_div {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:71px;
  6659. height:40px;
  6660. background:inherit;
  6661. background-color:rgba(255, 255, 255, 0);
  6662. border:none;
  6663. border-left:0px;
  6664. border-top:0px;
  6665. border-right:0px;
  6666. border-radius:0px;
  6667. border-bottom-right-radius:0px;
  6668. border-bottom-left-radius:0px;
  6669. -moz-box-shadow:none;
  6670. -webkit-box-shadow:none;
  6671. box-shadow:none;
  6672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6673. font-weight:400;
  6674. font-style:normal;
  6675. font-size:14px;
  6676. }
  6677. #u16057 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:859px;
  6681. top:-369px;
  6682. width:71px;
  6683. height:40px;
  6684. display:flex;
  6685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:14px;
  6689. }
  6690. #u16057 .text {
  6691. position:absolute;
  6692. align-self:center;
  6693. padding:0px 0px 0px 0px;
  6694. box-sizing:border-box;
  6695. width:100%;
  6696. }
  6697. #u16057_text {
  6698. border-width:0px;
  6699. white-space:nowrap;
  6700. text-transform:none;
  6701. }
  6702. #u16058_div {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:0px;
  6706. top:0px;
  6707. width:78px;
  6708. height:40px;
  6709. background:inherit;
  6710. background-color:rgba(255, 255, 255, 0);
  6711. border:none;
  6712. border-left:0px;
  6713. border-top:0px;
  6714. border-right:0px;
  6715. border-radius:0px;
  6716. border-bottom-right-radius:0px;
  6717. border-bottom-left-radius:0px;
  6718. -moz-box-shadow:none;
  6719. -webkit-box-shadow:none;
  6720. box-shadow:none;
  6721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6722. font-weight:400;
  6723. font-style:normal;
  6724. font-size:14px;
  6725. }
  6726. #u16058 {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:859px;
  6730. top:-459px;
  6731. width:78px;
  6732. height:40px;
  6733. display:flex;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:14px;
  6738. }
  6739. #u16058 .text {
  6740. position:absolute;
  6741. align-self:center;
  6742. padding:0px 0px 0px 0px;
  6743. box-sizing:border-box;
  6744. width:100%;
  6745. }
  6746. #u16058_text {
  6747. border-width:0px;
  6748. white-space:nowrap;
  6749. text-transform:none;
  6750. }
  6751. #u16059 {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:0px;
  6757. height:0px;
  6758. }
  6759. #u16060_div {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:0px;
  6763. top:0px;
  6764. width:200px;
  6765. height:40px;
  6766. background:inherit;
  6767. background-color:rgba(242, 242, 242, 1);
  6768. box-sizing:border-box;
  6769. border-width:1px;
  6770. border-style:solid;
  6771. border-color:rgba(215, 215, 215, 1);
  6772. border-radius:4px;
  6773. -moz-box-shadow:none;
  6774. -webkit-box-shadow:none;
  6775. box-shadow:none;
  6776. font-size:14px;
  6777. }
  6778. #u16060 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:859px;
  6782. top:-419px;
  6783. width:200px;
  6784. height:40px;
  6785. display:flex;
  6786. font-size:14px;
  6787. }
  6788. #u16060 .text {
  6789. position:absolute;
  6790. align-self:center;
  6791. padding:2px 2px 2px 2px;
  6792. box-sizing:border-box;
  6793. width:100%;
  6794. }
  6795. #u16060_text {
  6796. border-width:0px;
  6797. word-wrap:break-word;
  6798. text-transform:none;
  6799. visibility:hidden;
  6800. }
  6801. #u16061_input {
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:191px;
  6806. height:31px;
  6807. padding:2px 2px 2px 2px;
  6808. font-family:'ArialMT', 'Arial', sans-serif;
  6809. font-weight:400;
  6810. font-style:normal;
  6811. font-size:14px;
  6812. letter-spacing:normal;
  6813. color:#AAAAAA;
  6814. vertical-align:none;
  6815. text-align:left;
  6816. text-transform:none;
  6817. background-color:transparent;
  6818. border-color:transparent;
  6819. }
  6820. #u16061_input.disabled {
  6821. position:absolute;
  6822. left:0px;
  6823. top:0px;
  6824. width:191px;
  6825. height:31px;
  6826. padding:2px 2px 2px 2px;
  6827. font-family:'ArialMT', 'Arial', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:14px;
  6831. letter-spacing:normal;
  6832. color:#AAAAAA;
  6833. vertical-align:none;
  6834. text-align:left;
  6835. text-transform:none;
  6836. background-color:transparent;
  6837. border-color:transparent;
  6838. }
  6839. #u16061_div {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:0px;
  6843. top:0px;
  6844. width:191px;
  6845. height:31px;
  6846. background:inherit;
  6847. background-color:rgba(242, 242, 242, 1);
  6848. border:none;
  6849. border-radius:0px;
  6850. -moz-box-shadow:none;
  6851. -webkit-box-shadow:none;
  6852. box-shadow:none;
  6853. font-size:14px;
  6854. color:#AAAAAA;
  6855. }
  6856. #u16061 {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:865px;
  6860. top:-416px;
  6861. width:191px;
  6862. height:31px;
  6863. display:flex;
  6864. font-size:14px;
  6865. color:#AAAAAA;
  6866. }
  6867. #u16061 .text {
  6868. position:absolute;
  6869. align-self:flex-start;
  6870. padding:2px 2px 2px 2px;
  6871. box-sizing:border-box;
  6872. width:100%;
  6873. }
  6874. #u16061_div.disabled {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:191px;
  6880. height:31px;
  6881. background:inherit;
  6882. background-color:rgba(240, 240, 240, 1);
  6883. border:none;
  6884. border-radius:0px;
  6885. -moz-box-shadow:none;
  6886. -webkit-box-shadow:none;
  6887. box-shadow:none;
  6888. font-size:14px;
  6889. color:#AAAAAA;
  6890. }
  6891. #u16061.disabled {
  6892. }
  6893. .u16061_input_option {
  6894. font-size:14px;
  6895. }
  6896. #u16062 label {
  6897. left:0px;
  6898. width:100%;
  6899. }
  6900. #u16062_img {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:3px;
  6905. width:12px;
  6906. height:12px;
  6907. }
  6908. #u16062 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:1018px;
  6912. top:-448px;
  6913. width:55px;
  6914. height:18px;
  6915. display:flex;
  6916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6917. font-weight:400;
  6918. font-style:normal;
  6919. }
  6920. #u16062 .text {
  6921. position:absolute;
  6922. align-self:center;
  6923. padding:0px 2px 0px 2px;
  6924. box-sizing:border-box;
  6925. }
  6926. #u16062_img.selected {
  6927. }
  6928. #u16062.selected {
  6929. }
  6930. #u16062_img.disabled {
  6931. }
  6932. #u16062.disabled {
  6933. }
  6934. #u16062_img.selectedDisabled {
  6935. }
  6936. #u16062.selectedDisabled {
  6937. }
  6938. #u16062_text {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:14px;
  6942. top:0px;
  6943. width:39px;
  6944. word-wrap:break-word;
  6945. text-transform:none;
  6946. }
  6947. #u16062_input {
  6948. border-width:0px;
  6949. position:absolute;
  6950. left:0px;
  6951. top:0px;
  6952. width:0px;
  6953. height:0px;
  6954. opacity:0;
  6955. }
  6956. #u16063 label {
  6957. left:0px;
  6958. width:100%;
  6959. }
  6960. #u16063_img {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:0px;
  6964. top:3px;
  6965. width:12px;
  6966. height:12px;
  6967. }
  6968. #u16063 {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:201px;
  6972. top:-615px;
  6973. width:55px;
  6974. height:18px;
  6975. display:flex;
  6976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6977. font-weight:400;
  6978. font-style:normal;
  6979. }
  6980. #u16063 .text {
  6981. position:absolute;
  6982. align-self:center;
  6983. padding:0px 2px 0px 2px;
  6984. box-sizing:border-box;
  6985. }
  6986. #u16063_img.selected {
  6987. }
  6988. #u16063.selected {
  6989. }
  6990. #u16063_img.disabled {
  6991. }
  6992. #u16063.disabled {
  6993. }
  6994. #u16063_img.selectedDisabled {
  6995. }
  6996. #u16063.selectedDisabled {
  6997. }
  6998. #u16063_text {
  6999. border-width:0px;
  7000. position:absolute;
  7001. left:14px;
  7002. top:0px;
  7003. width:39px;
  7004. word-wrap:break-word;
  7005. text-transform:none;
  7006. }
  7007. #u16063_input {
  7008. border-width:0px;
  7009. position:absolute;
  7010. left:0px;
  7011. top:0px;
  7012. width:0px;
  7013. height:0px;
  7014. opacity:0;
  7015. }
  7016. #u16064_div {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:121px;
  7022. height:17px;
  7023. background:inherit;
  7024. background-color:rgba(255, 255, 255, 0);
  7025. border:none;
  7026. border-left:0px;
  7027. border-top:0px;
  7028. border-right:0px;
  7029. border-radius:0px;
  7030. border-bottom-right-radius:0px;
  7031. border-bottom-left-radius:0px;
  7032. -moz-box-shadow:none;
  7033. -webkit-box-shadow:none;
  7034. box-shadow:none;
  7035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:12px;
  7039. color:#D9001B;
  7040. }
  7041. #u16064 {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:118px;
  7045. top:-625px;
  7046. width:121px;
  7047. height:17px;
  7048. display:flex;
  7049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7050. font-weight:400;
  7051. font-style:normal;
  7052. font-size:12px;
  7053. color:#D9001B;
  7054. }
  7055. #u16064 .text {
  7056. position:absolute;
  7057. align-self:center;
  7058. padding:0px 0px 0px 0px;
  7059. box-sizing:border-box;
  7060. width:100%;
  7061. }
  7062. #u16064_text {
  7063. border-width:0px;
  7064. white-space:nowrap;
  7065. text-transform:none;
  7066. }
  7067. #u16065 {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:0px;
  7071. top:0px;
  7072. width:0px;
  7073. height:0px;
  7074. }
  7075. #u16066_div {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:427px;
  7081. height:80px;
  7082. background:inherit;
  7083. background-color:rgba(255, 255, 255, 1);
  7084. box-sizing:border-box;
  7085. border-width:1px;
  7086. border-style:solid;
  7087. border-color:rgba(201, 201, 201, 1);
  7088. border-radius:4px;
  7089. -moz-box-shadow:none;
  7090. -webkit-box-shadow:none;
  7091. box-shadow:none;
  7092. font-family:'Microsoft YaHei', sans-serif;
  7093. font-weight:400;
  7094. font-style:normal;
  7095. font-size:14px;
  7096. color:#CCCCCC;
  7097. text-align:left;
  7098. }
  7099. #u16066 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:39px;
  7103. top:-147px;
  7104. width:427px;
  7105. height:80px;
  7106. display:flex;
  7107. font-family:'Microsoft YaHei', sans-serif;
  7108. font-weight:400;
  7109. font-style:normal;
  7110. font-size:14px;
  7111. color:#CCCCCC;
  7112. text-align:left;
  7113. }
  7114. #u16066 .text {
  7115. position:absolute;
  7116. align-self:center;
  7117. padding:2px 8px 2px 8px;
  7118. box-sizing:border-box;
  7119. width:100%;
  7120. }
  7121. #u16066_text {
  7122. border-width:0px;
  7123. word-wrap:break-word;
  7124. text-transform:none;
  7125. visibility:hidden;
  7126. }
  7127. #u16067_input {
  7128. position:absolute;
  7129. left:0px;
  7130. top:0px;
  7131. width:389px;
  7132. height:33px;
  7133. padding:2px 2px 2px 2px;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:14px;
  7138. letter-spacing:normal;
  7139. color:#D7D7D7;
  7140. vertical-align:none;
  7141. text-align:left;
  7142. text-transform:none;
  7143. background-color:transparent;
  7144. border-color:transparent;
  7145. }
  7146. #u16067_input.disabled {
  7147. position:absolute;
  7148. left:0px;
  7149. top:0px;
  7150. width:389px;
  7151. height:33px;
  7152. padding:2px 2px 2px 2px;
  7153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7154. font-weight:400;
  7155. font-style:normal;
  7156. font-size:14px;
  7157. letter-spacing:normal;
  7158. color:#D7D7D7;
  7159. vertical-align:none;
  7160. text-align:left;
  7161. text-transform:none;
  7162. background-color:transparent;
  7163. border-color:transparent;
  7164. }
  7165. #u16067_div {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:0px;
  7169. top:0px;
  7170. width:389px;
  7171. height:33px;
  7172. background:inherit;
  7173. background-color:rgba(255, 255, 255, 0);
  7174. border:none;
  7175. border-radius:0px;
  7176. -moz-box-shadow:none;
  7177. -webkit-box-shadow:none;
  7178. box-shadow:none;
  7179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7180. font-weight:400;
  7181. font-style:normal;
  7182. font-size:14px;
  7183. color:#D7D7D7;
  7184. }
  7185. #u16067 {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:56px;
  7189. top:-144px;
  7190. width:389px;
  7191. height:33px;
  7192. display:flex;
  7193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7194. font-weight:400;
  7195. font-style:normal;
  7196. font-size:14px;
  7197. color:#D7D7D7;
  7198. }
  7199. #u16067 .text {
  7200. position:absolute;
  7201. align-self:center;
  7202. padding:2px 2px 2px 2px;
  7203. box-sizing:border-box;
  7204. width:100%;
  7205. }
  7206. #u16067_div.disabled {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:389px;
  7212. height:33px;
  7213. background:inherit;
  7214. background-color:rgba(240, 240, 240, 1);
  7215. border:none;
  7216. border-radius:0px;
  7217. -moz-box-shadow:none;
  7218. -webkit-box-shadow:none;
  7219. box-shadow:none;
  7220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7221. font-weight:400;
  7222. font-style:normal;
  7223. font-size:14px;
  7224. color:#D7D7D7;
  7225. }
  7226. #u16067.disabled {
  7227. }
  7228. #u16068_div {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:71px;
  7234. height:40px;
  7235. background:inherit;
  7236. background-color:rgba(255, 255, 255, 0);
  7237. border:none;
  7238. border-left:0px;
  7239. border-top:0px;
  7240. border-right:0px;
  7241. border-radius:0px;
  7242. border-bottom-right-radius:0px;
  7243. border-bottom-left-radius:0px;
  7244. -moz-box-shadow:none;
  7245. -webkit-box-shadow:none;
  7246. box-shadow:none;
  7247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7248. font-weight:400;
  7249. font-style:normal;
  7250. font-size:14px;
  7251. }
  7252. #u16068 {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:39px;
  7256. top:-187px;
  7257. width:71px;
  7258. height:40px;
  7259. display:flex;
  7260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7261. font-weight:400;
  7262. font-style:normal;
  7263. font-size:14px;
  7264. }
  7265. #u16068 .text {
  7266. position:absolute;
  7267. align-self:center;
  7268. padding:0px 0px 0px 0px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u16068_text {
  7273. border-width:0px;
  7274. white-space:nowrap;
  7275. text-transform:none;
  7276. }
  7277. #u16069_div {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:271px;
  7283. height:40px;
  7284. background:inherit;
  7285. background-color:rgba(255, 255, 255, 0);
  7286. border:none;
  7287. border-left:0px;
  7288. border-top:0px;
  7289. border-right:0px;
  7290. border-radius:0px;
  7291. border-bottom-right-radius:0px;
  7292. border-bottom-left-radius:0px;
  7293. -moz-box-shadow:none;
  7294. -webkit-box-shadow:none;
  7295. box-shadow:none;
  7296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7297. font-weight:400;
  7298. font-style:normal;
  7299. }
  7300. #u16069 {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:39px;
  7304. top:-277px;
  7305. width:271px;
  7306. height:40px;
  7307. display:flex;
  7308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. }
  7312. #u16069 .text {
  7313. position:absolute;
  7314. align-self:center;
  7315. padding:0px 0px 0px 0px;
  7316. box-sizing:border-box;
  7317. width:100%;
  7318. }
  7319. #u16069_text {
  7320. border-width:0px;
  7321. white-space:nowrap;
  7322. text-transform:none;
  7323. }
  7324. #u16070_div {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:0px;
  7328. top:0px;
  7329. width:156px;
  7330. height:40px;
  7331. background:inherit;
  7332. background-color:rgba(255, 255, 255, 0);
  7333. border:none;
  7334. border-left:0px;
  7335. border-top:0px;
  7336. border-right:0px;
  7337. border-radius:0px;
  7338. border-bottom-right-radius:0px;
  7339. border-bottom-left-radius:0px;
  7340. -moz-box-shadow:none;
  7341. -webkit-box-shadow:none;
  7342. box-shadow:none;
  7343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7344. font-weight:400;
  7345. font-style:normal;
  7346. }
  7347. #u16070 {
  7348. border-width:0px;
  7349. position:absolute;
  7350. left:39px;
  7351. top:-448px;
  7352. width:156px;
  7353. height:40px;
  7354. display:flex;
  7355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7356. font-weight:400;
  7357. font-style:normal;
  7358. }
  7359. #u16070 .text {
  7360. position:absolute;
  7361. align-self:center;
  7362. padding:0px 0px 0px 0px;
  7363. box-sizing:border-box;
  7364. width:100%;
  7365. }
  7366. #u16070_text {
  7367. border-width:0px;
  7368. white-space:nowrap;
  7369. text-transform:none;
  7370. }
  7371. #u16071_div {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:0px;
  7375. top:0px;
  7376. width:120px;
  7377. height:40px;
  7378. background:inherit;
  7379. background-color:rgba(24, 144, 255, 1);
  7380. border:none;
  7381. border-radius:4px;
  7382. -moz-box-shadow:none;
  7383. -webkit-box-shadow:none;
  7384. box-shadow:none;
  7385. font-size:14px;
  7386. color:#FFFFFF;
  7387. }
  7388. #u16071 {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:39px;
  7392. top:-237px;
  7393. width:120px;
  7394. height:40px;
  7395. display:flex;
  7396. font-size:14px;
  7397. color:#FFFFFF;
  7398. }
  7399. #u16071 .text {
  7400. position:absolute;
  7401. align-self:center;
  7402. padding:2px 8px 2px 8px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u16071_text {
  7407. border-width:0px;
  7408. word-wrap:break-word;
  7409. text-transform:none;
  7410. }
  7411. #u16072_img {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:0px;
  7415. top:0px;
  7416. width:361px;
  7417. height:121px;
  7418. }
  7419. #u16072 {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:39px;
  7423. top:-408px;
  7424. width:361px;
  7425. height:121px;
  7426. display:flex;
  7427. }
  7428. #u16072 .text {
  7429. position:absolute;
  7430. align-self:center;
  7431. padding:2px 2px 2px 2px;
  7432. box-sizing:border-box;
  7433. width:100%;
  7434. }
  7435. #u16072_text {
  7436. border-width:0px;
  7437. word-wrap:break-word;
  7438. text-transform:none;
  7439. visibility:hidden;
  7440. }
  7441. #u16073_div {
  7442. border-width:0px;
  7443. position:absolute;
  7444. left:0px;
  7445. top:0px;
  7446. width:675px;
  7447. height:80px;
  7448. background:inherit;
  7449. background-color:rgba(255, 255, 255, 0);
  7450. border:none;
  7451. border-left:0px;
  7452. border-top:0px;
  7453. border-right:0px;
  7454. border-radius:0px;
  7455. border-bottom-right-radius:0px;
  7456. border-bottom-left-radius:0px;
  7457. -moz-box-shadow:none;
  7458. -webkit-box-shadow:none;
  7459. box-shadow:none;
  7460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7461. font-weight:400;
  7462. font-style:normal;
  7463. font-size:14px;
  7464. color:#D9001B;
  7465. }
  7466. #u16073 {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:201px;
  7470. top:-217px;
  7471. width:675px;
  7472. height:80px;
  7473. display:flex;
  7474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7475. font-weight:400;
  7476. font-style:normal;
  7477. font-size:14px;
  7478. color:#D9001B;
  7479. }
  7480. #u16073 .text {
  7481. position:absolute;
  7482. align-self:center;
  7483. padding:0px 0px 0px 0px;
  7484. box-sizing:border-box;
  7485. width:100%;
  7486. }
  7487. #u16073_text {
  7488. border-width:0px;
  7489. word-wrap:break-word;
  7490. text-transform:none;
  7491. }
  7492. #u16074 {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:0px;
  7498. height:0px;
  7499. }
  7500. #u16075_div {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:0px;
  7504. top:0px;
  7505. width:800px;
  7506. height:1000px;
  7507. background:inherit;
  7508. background-color:rgba(255, 255, 255, 1);
  7509. box-sizing:border-box;
  7510. border-width:1px;
  7511. border-style:solid;
  7512. border-color:rgba(242, 242, 242, 1);
  7513. border-radius:0px;
  7514. -moz-box-shadow:none;
  7515. -webkit-box-shadow:none;
  7516. box-shadow:none;
  7517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7518. font-weight:400;
  7519. font-style:normal;
  7520. font-size:14px;
  7521. color:#AAAAAA;
  7522. text-align:center;
  7523. }
  7524. #u16075 {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:890px;
  7528. top:378px;
  7529. width:800px;
  7530. height:1000px;
  7531. display:flex;
  7532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7533. font-weight:400;
  7534. font-style:normal;
  7535. font-size:14px;
  7536. color:#AAAAAA;
  7537. text-align:center;
  7538. }
  7539. #u16075 .text {
  7540. position:absolute;
  7541. align-self:center;
  7542. padding:5px 10px 5px 10px;
  7543. box-sizing:border-box;
  7544. width:100%;
  7545. }
  7546. #u16075_text {
  7547. border-width:0px;
  7548. word-wrap:break-word;
  7549. text-transform:none;
  7550. visibility:hidden;
  7551. }
  7552. #u16076_div {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:0px;
  7556. top:0px;
  7557. width:800px;
  7558. height:60px;
  7559. background:inherit;
  7560. background-color:rgba(255, 255, 255, 1);
  7561. box-sizing:border-box;
  7562. border-width:1px;
  7563. border-style:solid;
  7564. border-color:rgba(242, 242, 242, 1);
  7565. border-radius:0px;
  7566. -moz-box-shadow:none;
  7567. -webkit-box-shadow:none;
  7568. box-shadow:none;
  7569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:14px;
  7573. color:#AAAAAA;
  7574. text-align:center;
  7575. }
  7576. #u16076 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:890px;
  7580. top:318px;
  7581. width:800px;
  7582. height:60px;
  7583. display:flex;
  7584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:14px;
  7588. color:#AAAAAA;
  7589. text-align:center;
  7590. }
  7591. #u16076 .text {
  7592. position:absolute;
  7593. align-self:center;
  7594. padding:5px 10px 5px 10px;
  7595. box-sizing:border-box;
  7596. width:100%;
  7597. }
  7598. #u16076_text {
  7599. border-width:0px;
  7600. word-wrap:break-word;
  7601. text-transform:none;
  7602. visibility:hidden;
  7603. }
  7604. #u16077_div {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:0px;
  7608. top:0px;
  7609. width:47px;
  7610. height:35px;
  7611. background:inherit;
  7612. background-color:rgba(255, 255, 255, 0);
  7613. border:none;
  7614. border-top:0px;
  7615. border-right:0px;
  7616. border-bottom:0px;
  7617. border-radius:0px;
  7618. border-top-left-radius:0px;
  7619. border-bottom-left-radius:0px;
  7620. -moz-box-shadow:none;
  7621. -webkit-box-shadow:none;
  7622. box-shadow:none;
  7623. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7624. font-weight:500;
  7625. font-style:normal;
  7626. font-size:18px;
  7627. }
  7628. #u16077 {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:921px;
  7632. top:331px;
  7633. width:47px;
  7634. height:35px;
  7635. display:flex;
  7636. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7637. font-weight:500;
  7638. font-style:normal;
  7639. font-size:18px;
  7640. }
  7641. #u16077 .text {
  7642. position:absolute;
  7643. align-self:center;
  7644. padding:5px 10px 5px 0px;
  7645. box-sizing:border-box;
  7646. width:100%;
  7647. }
  7648. #u16077_text {
  7649. border-width:0px;
  7650. white-space:nowrap;
  7651. text-transform:none;
  7652. }
  7653. #u16078_div {
  7654. border-width:0px;
  7655. position:absolute;
  7656. left:0px;
  7657. top:0px;
  7658. width:40px;
  7659. height:40px;
  7660. background:inherit;
  7661. background-color:rgba(255, 255, 255, 0);
  7662. border:none;
  7663. border-top:0px;
  7664. border-right:0px;
  7665. border-bottom:0px;
  7666. border-radius:0px;
  7667. border-top-left-radius:0px;
  7668. border-bottom-left-radius:0px;
  7669. -moz-box-shadow:none;
  7670. -webkit-box-shadow:none;
  7671. box-shadow:none;
  7672. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7673. font-weight:500;
  7674. font-style:normal;
  7675. font-size:24px;
  7676. text-align:center;
  7677. }
  7678. #u16078 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:1650px;
  7682. top:318px;
  7683. width:40px;
  7684. height:40px;
  7685. display:flex;
  7686. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7687. font-weight:500;
  7688. font-style:normal;
  7689. font-size:24px;
  7690. text-align:center;
  7691. }
  7692. #u16078 .text {
  7693. position:absolute;
  7694. align-self:center;
  7695. padding:5px 10px 5px 0px;
  7696. box-sizing:border-box;
  7697. width:100%;
  7698. }
  7699. #u16078_text {
  7700. border-width:0px;
  7701. word-wrap:break-word;
  7702. text-transform:none;
  7703. }
  7704. #u16079 {
  7705. border-width:0px;
  7706. position:absolute;
  7707. left:0px;
  7708. top:0px;
  7709. width:0px;
  7710. height:0px;
  7711. }
  7712. #u16080_div {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:800px;
  7718. height:60px;
  7719. background:inherit;
  7720. background-color:rgba(255, 255, 255, 1);
  7721. box-sizing:border-box;
  7722. border-width:1px;
  7723. border-style:solid;
  7724. border-color:rgba(215, 215, 215, 1);
  7725. border-radius:0px;
  7726. -moz-box-shadow:none;
  7727. -webkit-box-shadow:none;
  7728. box-shadow:none;
  7729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7730. font-weight:400;
  7731. font-style:normal;
  7732. font-size:14px;
  7733. color:#AAAAAA;
  7734. text-align:center;
  7735. }
  7736. #u16080 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:890px;
  7740. top:1318px;
  7741. width:800px;
  7742. height:60px;
  7743. display:flex;
  7744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7745. font-weight:400;
  7746. font-style:normal;
  7747. font-size:14px;
  7748. color:#AAAAAA;
  7749. text-align:center;
  7750. }
  7751. #u16080 .text {
  7752. position:absolute;
  7753. align-self:center;
  7754. padding:5px 10px 5px 10px;
  7755. box-sizing:border-box;
  7756. width:100%;
  7757. }
  7758. #u16080_text {
  7759. border-width:0px;
  7760. word-wrap:break-word;
  7761. text-transform:none;
  7762. visibility:hidden;
  7763. }
  7764. #u16081_img {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:0px;
  7768. top:0px;
  7769. width:80px;
  7770. height:30px;
  7771. }
  7772. #u16081 {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:1570px;
  7776. top:1333px;
  7777. width:80px;
  7778. height:30px;
  7779. display:flex;
  7780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7781. font-weight:400;
  7782. font-style:normal;
  7783. font-size:14px;
  7784. color:#FFFFFF;
  7785. }
  7786. #u16081 .text {
  7787. position:absolute;
  7788. align-self:center;
  7789. padding:2px 2px 2px 2px;
  7790. box-sizing:border-box;
  7791. width:100%;
  7792. }
  7793. #u16081_text {
  7794. border-width:0px;
  7795. word-wrap:break-word;
  7796. text-transform:none;
  7797. }
  7798. #u16082_div {
  7799. border-width:0px;
  7800. position:absolute;
  7801. left:0px;
  7802. top:0px;
  7803. width:80px;
  7804. height:30px;
  7805. background:inherit;
  7806. background-color:rgba(255, 255, 255, 1);
  7807. box-sizing:border-box;
  7808. border-width:1px;
  7809. border-style:solid;
  7810. border-color:rgba(170, 170, 170, 1);
  7811. border-radius:4px;
  7812. -moz-box-shadow:none;
  7813. -webkit-box-shadow:none;
  7814. box-shadow:none;
  7815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7816. font-weight:400;
  7817. font-style:normal;
  7818. font-size:14px;
  7819. }
  7820. #u16082 {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:1480px;
  7824. top:1333px;
  7825. width:80px;
  7826. height:30px;
  7827. display:flex;
  7828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:14px;
  7832. }
  7833. #u16082 .text {
  7834. position:absolute;
  7835. align-self:center;
  7836. padding:2px 2px 2px 2px;
  7837. box-sizing:border-box;
  7838. width:100%;
  7839. }
  7840. #u16082_text {
  7841. border-width:0px;
  7842. word-wrap:break-word;
  7843. text-transform:none;
  7844. }
  7845. #u16083 {
  7846. border-width:0px;
  7847. position:absolute;
  7848. left:0px;
  7849. top:0px;
  7850. width:0px;
  7851. height:0px;
  7852. }
  7853. #u16084_div {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:0px;
  7857. top:0px;
  7858. width:427px;
  7859. height:80px;
  7860. background:inherit;
  7861. background-color:rgba(255, 255, 255, 1);
  7862. box-sizing:border-box;
  7863. border-width:1px;
  7864. border-style:solid;
  7865. border-color:rgba(201, 201, 201, 1);
  7866. border-radius:4px;
  7867. -moz-box-shadow:none;
  7868. -webkit-box-shadow:none;
  7869. box-shadow:none;
  7870. font-family:'Microsoft YaHei', sans-serif;
  7871. font-weight:400;
  7872. font-style:normal;
  7873. font-size:14px;
  7874. color:#CCCCCC;
  7875. text-align:left;
  7876. }
  7877. #u16084 {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:929px;
  7881. top:1057px;
  7882. width:427px;
  7883. height:80px;
  7884. display:flex;
  7885. font-family:'Microsoft YaHei', sans-serif;
  7886. font-weight:400;
  7887. font-style:normal;
  7888. font-size:14px;
  7889. color:#CCCCCC;
  7890. text-align:left;
  7891. }
  7892. #u16084 .text {
  7893. position:absolute;
  7894. align-self:center;
  7895. padding:2px 8px 2px 8px;
  7896. box-sizing:border-box;
  7897. width:100%;
  7898. }
  7899. #u16084_text {
  7900. border-width:0px;
  7901. word-wrap:break-word;
  7902. text-transform:none;
  7903. visibility:hidden;
  7904. }
  7905. #u16085_input {
  7906. position:absolute;
  7907. left:0px;
  7908. top:0px;
  7909. width:389px;
  7910. height:33px;
  7911. padding:2px 2px 2px 2px;
  7912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:14px;
  7916. letter-spacing:normal;
  7917. color:#D7D7D7;
  7918. vertical-align:none;
  7919. text-align:left;
  7920. text-transform:none;
  7921. background-color:transparent;
  7922. border-color:transparent;
  7923. }
  7924. #u16085_input.disabled {
  7925. position:absolute;
  7926. left:0px;
  7927. top:0px;
  7928. width:389px;
  7929. height:33px;
  7930. padding:2px 2px 2px 2px;
  7931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7932. font-weight:400;
  7933. font-style:normal;
  7934. font-size:14px;
  7935. letter-spacing:normal;
  7936. color:#D7D7D7;
  7937. vertical-align:none;
  7938. text-align:left;
  7939. text-transform:none;
  7940. background-color:transparent;
  7941. border-color:transparent;
  7942. }
  7943. #u16085_div {
  7944. border-width:0px;
  7945. position:absolute;
  7946. left:0px;
  7947. top:0px;
  7948. width:389px;
  7949. height:33px;
  7950. background:inherit;
  7951. background-color:rgba(255, 255, 255, 0);
  7952. border:none;
  7953. border-radius:0px;
  7954. -moz-box-shadow:none;
  7955. -webkit-box-shadow:none;
  7956. box-shadow:none;
  7957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7958. font-weight:400;
  7959. font-style:normal;
  7960. font-size:14px;
  7961. color:#D7D7D7;
  7962. }
  7963. #u16085 {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:946px;
  7967. top:1060px;
  7968. width:389px;
  7969. height:33px;
  7970. display:flex;
  7971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:14px;
  7975. color:#D7D7D7;
  7976. }
  7977. #u16085 .text {
  7978. position:absolute;
  7979. align-self:center;
  7980. padding:2px 2px 2px 2px;
  7981. box-sizing:border-box;
  7982. width:100%;
  7983. }
  7984. #u16085_div.disabled {
  7985. border-width:0px;
  7986. position:absolute;
  7987. left:0px;
  7988. top:0px;
  7989. width:389px;
  7990. height:33px;
  7991. background:inherit;
  7992. background-color:rgba(240, 240, 240, 1);
  7993. border:none;
  7994. border-radius:0px;
  7995. -moz-box-shadow:none;
  7996. -webkit-box-shadow:none;
  7997. box-shadow:none;
  7998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7999. font-weight:400;
  8000. font-style:normal;
  8001. font-size:14px;
  8002. color:#D7D7D7;
  8003. }
  8004. #u16085.disabled {
  8005. }
  8006. #u16086_div {
  8007. border-width:0px;
  8008. position:absolute;
  8009. left:0px;
  8010. top:0px;
  8011. width:71px;
  8012. height:40px;
  8013. background:inherit;
  8014. background-color:rgba(255, 255, 255, 0);
  8015. border:none;
  8016. border-left:0px;
  8017. border-top:0px;
  8018. border-right:0px;
  8019. border-radius:0px;
  8020. border-bottom-right-radius:0px;
  8021. border-bottom-left-radius:0px;
  8022. -moz-box-shadow:none;
  8023. -webkit-box-shadow:none;
  8024. box-shadow:none;
  8025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8026. font-weight:400;
  8027. font-style:normal;
  8028. font-size:14px;
  8029. }
  8030. #u16086 {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:929px;
  8034. top:1017px;
  8035. width:71px;
  8036. height:40px;
  8037. display:flex;
  8038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8039. font-weight:400;
  8040. font-style:normal;
  8041. font-size:14px;
  8042. }
  8043. #u16086 .text {
  8044. position:absolute;
  8045. align-self:center;
  8046. padding:0px 0px 0px 0px;
  8047. box-sizing:border-box;
  8048. width:100%;
  8049. }
  8050. #u16086_text {
  8051. border-width:0px;
  8052. white-space:nowrap;
  8053. text-transform:none;
  8054. }
  8055. #u16087_div {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:0px;
  8059. top:0px;
  8060. width:271px;
  8061. height:40px;
  8062. background:inherit;
  8063. background-color:rgba(255, 255, 255, 0);
  8064. border:none;
  8065. border-left:0px;
  8066. border-top:0px;
  8067. border-right:0px;
  8068. border-radius:0px;
  8069. border-bottom-right-radius:0px;
  8070. border-bottom-left-radius:0px;
  8071. -moz-box-shadow:none;
  8072. -webkit-box-shadow:none;
  8073. box-shadow:none;
  8074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8075. font-weight:400;
  8076. font-style:normal;
  8077. }
  8078. #u16087 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:929px;
  8082. top:927px;
  8083. width:271px;
  8084. height:40px;
  8085. display:flex;
  8086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8087. font-weight:400;
  8088. font-style:normal;
  8089. }
  8090. #u16087 .text {
  8091. position:absolute;
  8092. align-self:center;
  8093. padding:0px 0px 0px 0px;
  8094. box-sizing:border-box;
  8095. width:100%;
  8096. }
  8097. #u16087_text {
  8098. border-width:0px;
  8099. white-space:nowrap;
  8100. text-transform:none;
  8101. }
  8102. #u16088_div {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:0px;
  8106. top:0px;
  8107. width:120px;
  8108. height:40px;
  8109. background:inherit;
  8110. background-color:rgba(24, 144, 255, 1);
  8111. border:none;
  8112. border-radius:4px;
  8113. -moz-box-shadow:none;
  8114. -webkit-box-shadow:none;
  8115. box-shadow:none;
  8116. font-size:14px;
  8117. color:#FFFFFF;
  8118. }
  8119. #u16088 {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:929px;
  8123. top:967px;
  8124. width:120px;
  8125. height:40px;
  8126. display:flex;
  8127. font-size:14px;
  8128. color:#FFFFFF;
  8129. }
  8130. #u16088 .text {
  8131. position:absolute;
  8132. align-self:center;
  8133. padding:2px 8px 2px 8px;
  8134. box-sizing:border-box;
  8135. width:100%;
  8136. }
  8137. #u16088_text {
  8138. border-width:0px;
  8139. word-wrap:break-word;
  8140. text-transform:none;
  8141. }
  8142. #u16089 {
  8143. border-width:0px;
  8144. position:absolute;
  8145. left:0px;
  8146. top:0px;
  8147. width:0px;
  8148. height:0px;
  8149. }
  8150. #u16090_div {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:0px;
  8154. top:0px;
  8155. width:713px;
  8156. height:380px;
  8157. background:inherit;
  8158. background-color:rgba(242, 242, 242, 1);
  8159. box-sizing:border-box;
  8160. border-width:1px;
  8161. border-style:solid;
  8162. border-color:rgba(215, 215, 215, 1);
  8163. border-radius:4px;
  8164. -moz-box-shadow:none;
  8165. -webkit-box-shadow:none;
  8166. box-shadow:none;
  8167. font-size:14px;
  8168. }
  8169. #u16090 {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:929px;
  8173. top:527px;
  8174. width:713px;
  8175. height:380px;
  8176. display:flex;
  8177. font-size:14px;
  8178. }
  8179. #u16090 .text {
  8180. position:absolute;
  8181. align-self:center;
  8182. padding:2px 2px 2px 2px;
  8183. box-sizing:border-box;
  8184. width:100%;
  8185. }
  8186. #u16090_text {
  8187. border-width:0px;
  8188. word-wrap:break-word;
  8189. text-transform:none;
  8190. visibility:hidden;
  8191. }
  8192. #u16091_div {
  8193. border-width:0px;
  8194. position:absolute;
  8195. left:0px;
  8196. top:0px;
  8197. width:71px;
  8198. height:40px;
  8199. background:inherit;
  8200. background-color:rgba(255, 255, 255, 0);
  8201. border:none;
  8202. border-left:0px;
  8203. border-top:0px;
  8204. border-right:0px;
  8205. border-radius:0px;
  8206. border-bottom-right-radius:0px;
  8207. border-bottom-left-radius:0px;
  8208. -moz-box-shadow:none;
  8209. -webkit-box-shadow:none;
  8210. box-shadow:none;
  8211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8212. font-weight:400;
  8213. font-style:normal;
  8214. font-size:14px;
  8215. }
  8216. #u16091 {
  8217. border-width:0px;
  8218. position:absolute;
  8219. left:953px;
  8220. top:597px;
  8221. width:71px;
  8222. height:40px;
  8223. display:flex;
  8224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8225. font-weight:400;
  8226. font-style:normal;
  8227. font-size:14px;
  8228. }
  8229. #u16091 .text {
  8230. position:absolute;
  8231. align-self:center;
  8232. padding:0px 0px 0px 0px;
  8233. box-sizing:border-box;
  8234. width:100%;
  8235. }
  8236. #u16091_text {
  8237. border-width:0px;
  8238. white-space:nowrap;
  8239. text-transform:none;
  8240. }
  8241. #u16092_div {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:161px;
  8247. height:40px;
  8248. background:inherit;
  8249. background-color:rgba(255, 255, 255, 0);
  8250. border:none;
  8251. border-left:0px;
  8252. border-top:0px;
  8253. border-right:0px;
  8254. border-radius:0px;
  8255. border-bottom-right-radius:0px;
  8256. border-bottom-left-radius:0px;
  8257. -moz-box-shadow:none;
  8258. -webkit-box-shadow:none;
  8259. box-shadow:none;
  8260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8261. font-weight:400;
  8262. font-style:normal;
  8263. font-size:14px;
  8264. }
  8265. #u16092 {
  8266. border-width:0px;
  8267. position:absolute;
  8268. left:1176px;
  8269. top:597px;
  8270. width:161px;
  8271. height:40px;
  8272. display:flex;
  8273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8274. font-weight:400;
  8275. font-style:normal;
  8276. font-size:14px;
  8277. }
  8278. #u16092 .text {
  8279. position:absolute;
  8280. align-self:center;
  8281. padding:0px 0px 0px 0px;
  8282. box-sizing:border-box;
  8283. width:100%;
  8284. }
  8285. #u16092_text {
  8286. border-width:0px;
  8287. white-space:nowrap;
  8288. text-transform:none;
  8289. }
  8290. #u16093_div {
  8291. border-width:0px;
  8292. position:absolute;
  8293. left:0px;
  8294. top:0px;
  8295. width:57px;
  8296. height:40px;
  8297. background:inherit;
  8298. background-color:rgba(255, 255, 255, 0);
  8299. border:none;
  8300. border-left:0px;
  8301. border-top:0px;
  8302. border-right:0px;
  8303. border-radius:0px;
  8304. border-bottom-right-radius:0px;
  8305. border-bottom-left-radius:0px;
  8306. -moz-box-shadow:none;
  8307. -webkit-box-shadow:none;
  8308. box-shadow:none;
  8309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8310. font-weight:400;
  8311. font-style:normal;
  8312. font-size:14px;
  8313. }
  8314. #u16093 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:953px;
  8318. top:637px;
  8319. width:57px;
  8320. height:40px;
  8321. display:flex;
  8322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8323. font-weight:400;
  8324. font-style:normal;
  8325. font-size:14px;
  8326. }
  8327. #u16093 .text {
  8328. position:absolute;
  8329. align-self:center;
  8330. padding:0px 0px 0px 0px;
  8331. box-sizing:border-box;
  8332. width:100%;
  8333. }
  8334. #u16093_text {
  8335. border-width:0px;
  8336. white-space:nowrap;
  8337. text-transform:none;
  8338. }
  8339. #u16094_div {
  8340. border-width:0px;
  8341. position:absolute;
  8342. left:0px;
  8343. top:0px;
  8344. width:113px;
  8345. height:40px;
  8346. background:inherit;
  8347. background-color:rgba(255, 255, 255, 0);
  8348. border:none;
  8349. border-left:0px;
  8350. border-top:0px;
  8351. border-right:0px;
  8352. border-radius:0px;
  8353. border-bottom-right-radius:0px;
  8354. border-bottom-left-radius:0px;
  8355. -moz-box-shadow:none;
  8356. -webkit-box-shadow:none;
  8357. box-shadow:none;
  8358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8359. font-weight:400;
  8360. font-style:normal;
  8361. font-size:14px;
  8362. }
  8363. #u16094 {
  8364. border-width:0px;
  8365. position:absolute;
  8366. left:1176px;
  8367. top:637px;
  8368. width:113px;
  8369. height:40px;
  8370. display:flex;
  8371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8372. font-weight:400;
  8373. font-style:normal;
  8374. font-size:14px;
  8375. }
  8376. #u16094 .text {
  8377. position:absolute;
  8378. align-self:center;
  8379. padding:0px 0px 0px 0px;
  8380. box-sizing:border-box;
  8381. width:100%;
  8382. }
  8383. #u16094_text {
  8384. border-width:0px;
  8385. white-space:nowrap;
  8386. text-transform:none;
  8387. }
  8388. #u16095_div {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:0px;
  8392. top:0px;
  8393. width:184px;
  8394. height:40px;
  8395. background:inherit;
  8396. background-color:rgba(255, 255, 255, 0);
  8397. border:none;
  8398. border-left:0px;
  8399. border-top:0px;
  8400. border-right:0px;
  8401. border-radius:0px;
  8402. border-bottom-right-radius:0px;
  8403. border-bottom-left-radius:0px;
  8404. -moz-box-shadow:none;
  8405. -webkit-box-shadow:none;
  8406. box-shadow:none;
  8407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8408. font-weight:400;
  8409. font-style:normal;
  8410. font-size:14px;
  8411. }
  8412. #u16095 {
  8413. border-width:0px;
  8414. position:absolute;
  8415. left:953px;
  8416. top:677px;
  8417. width:184px;
  8418. height:40px;
  8419. display:flex;
  8420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8421. font-weight:400;
  8422. font-style:normal;
  8423. font-size:14px;
  8424. }
  8425. #u16095 .text {
  8426. position:absolute;
  8427. align-self:center;
  8428. padding:0px 0px 0px 0px;
  8429. box-sizing:border-box;
  8430. width:100%;
  8431. }
  8432. #u16095_text {
  8433. border-width:0px;
  8434. white-space:nowrap;
  8435. text-transform:none;
  8436. }
  8437. #u16096_div {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:0px;
  8441. top:0px;
  8442. width:107px;
  8443. height:40px;
  8444. background:inherit;
  8445. background-color:rgba(255, 255, 255, 0);
  8446. border:none;
  8447. border-left:0px;
  8448. border-top:0px;
  8449. border-right:0px;
  8450. border-radius:0px;
  8451. border-bottom-right-radius:0px;
  8452. border-bottom-left-radius:0px;
  8453. -moz-box-shadow:none;
  8454. -webkit-box-shadow:none;
  8455. box-shadow:none;
  8456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8457. font-weight:400;
  8458. font-style:normal;
  8459. font-size:14px;
  8460. }
  8461. #u16096 {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:1176px;
  8465. top:677px;
  8466. width:107px;
  8467. height:40px;
  8468. display:flex;
  8469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8470. font-weight:400;
  8471. font-style:normal;
  8472. font-size:14px;
  8473. }
  8474. #u16096 .text {
  8475. position:absolute;
  8476. align-self:center;
  8477. padding:0px 0px 0px 0px;
  8478. box-sizing:border-box;
  8479. width:100%;
  8480. }
  8481. #u16096_text {
  8482. border-width:0px;
  8483. white-space:nowrap;
  8484. text-transform:none;
  8485. }
  8486. #u16097_div {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:0px;
  8490. top:0px;
  8491. width:57px;
  8492. height:40px;
  8493. background:inherit;
  8494. background-color:rgba(255, 255, 255, 0);
  8495. border:none;
  8496. border-left:0px;
  8497. border-top:0px;
  8498. border-right:0px;
  8499. border-radius:0px;
  8500. border-bottom-right-radius:0px;
  8501. border-bottom-left-radius:0px;
  8502. -moz-box-shadow:none;
  8503. -webkit-box-shadow:none;
  8504. box-shadow:none;
  8505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8506. font-weight:400;
  8507. font-style:normal;
  8508. font-size:14px;
  8509. }
  8510. #u16097 {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:953px;
  8514. top:717px;
  8515. width:57px;
  8516. height:40px;
  8517. display:flex;
  8518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8519. font-weight:400;
  8520. font-style:normal;
  8521. font-size:14px;
  8522. }
  8523. #u16097 .text {
  8524. position:absolute;
  8525. align-self:center;
  8526. padding:0px 0px 0px 0px;
  8527. box-sizing:border-box;
  8528. width:100%;
  8529. }
  8530. #u16097_text {
  8531. border-width:0px;
  8532. white-space:nowrap;
  8533. text-transform:none;
  8534. }
  8535. #u16098_div {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:0px;
  8539. top:0px;
  8540. width:107px;
  8541. height:40px;
  8542. background:inherit;
  8543. background-color:rgba(255, 255, 255, 0);
  8544. border:none;
  8545. border-left:0px;
  8546. border-top:0px;
  8547. border-right:0px;
  8548. border-radius:0px;
  8549. border-bottom-right-radius:0px;
  8550. border-bottom-left-radius:0px;
  8551. -moz-box-shadow:none;
  8552. -webkit-box-shadow:none;
  8553. box-shadow:none;
  8554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8555. font-weight:400;
  8556. font-style:normal;
  8557. font-size:14px;
  8558. }
  8559. #u16098 {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:1176px;
  8563. top:717px;
  8564. width:107px;
  8565. height:40px;
  8566. display:flex;
  8567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8568. font-weight:400;
  8569. font-style:normal;
  8570. font-size:14px;
  8571. }
  8572. #u16098 .text {
  8573. position:absolute;
  8574. align-self:center;
  8575. padding:0px 0px 0px 0px;
  8576. box-sizing:border-box;
  8577. width:100%;
  8578. }
  8579. #u16098_text {
  8580. border-width:0px;
  8581. white-space:nowrap;
  8582. text-transform:none;
  8583. }
  8584. #u16099_img {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:0px;
  8588. top:0px;
  8589. width:361px;
  8590. height:121px;
  8591. }
  8592. #u16099 {
  8593. border-width:0px;
  8594. position:absolute;
  8595. left:953px;
  8596. top:767px;
  8597. width:361px;
  8598. height:121px;
  8599. display:flex;
  8600. }
  8601. #u16099 .text {
  8602. position:absolute;
  8603. align-self:center;
  8604. padding:2px 2px 2px 2px;
  8605. box-sizing:border-box;
  8606. width:100%;
  8607. }
  8608. #u16099_text {
  8609. border-width:0px;
  8610. word-wrap:break-word;
  8611. text-transform:none;
  8612. visibility:hidden;
  8613. }
  8614. #u16100_img {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:0px;
  8618. top:0px;
  8619. width:196px;
  8620. height:215px;
  8621. }
  8622. #u16100 {
  8623. border-width:0px;
  8624. position:absolute;
  8625. left:1403px;
  8626. top:580px;
  8627. width:196px;
  8628. height:215px;
  8629. display:flex;
  8630. }
  8631. #u16100 .text {
  8632. position:absolute;
  8633. align-self:center;
  8634. padding:2px 2px 2px 2px;
  8635. box-sizing:border-box;
  8636. width:100%;
  8637. }
  8638. #u16100_text {
  8639. border-width:0px;
  8640. word-wrap:break-word;
  8641. text-transform:none;
  8642. visibility:hidden;
  8643. }
  8644. #u16101_div {
  8645. border-width:0px;
  8646. position:absolute;
  8647. left:0px;
  8648. top:0px;
  8649. width:29px;
  8650. height:40px;
  8651. background:inherit;
  8652. background-color:rgba(255, 255, 255, 0);
  8653. border:none;
  8654. border-left:0px;
  8655. border-top:0px;
  8656. border-right:0px;
  8657. border-radius:0px;
  8658. border-bottom-right-radius:0px;
  8659. border-bottom-left-radius:0px;
  8660. -moz-box-shadow:none;
  8661. -webkit-box-shadow:none;
  8662. box-shadow:none;
  8663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8664. font-weight:400;
  8665. font-style:normal;
  8666. font-size:14px;
  8667. color:#1890FF;
  8668. }
  8669. #u16101 {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:1593px;
  8673. top:527px;
  8674. width:29px;
  8675. height:40px;
  8676. display:flex;
  8677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:14px;
  8681. color:#1890FF;
  8682. }
  8683. #u16101 .text {
  8684. position:absolute;
  8685. align-self:center;
  8686. padding:0px 0px 0px 0px;
  8687. box-sizing:border-box;
  8688. width:100%;
  8689. }
  8690. #u16101_text {
  8691. border-width:0px;
  8692. white-space:nowrap;
  8693. text-transform:none;
  8694. }
  8695. #u16102_div {
  8696. border-width:0px;
  8697. position:absolute;
  8698. left:0px;
  8699. top:0px;
  8700. width:57px;
  8701. height:40px;
  8702. background:inherit;
  8703. background-color:rgba(255, 255, 255, 0);
  8704. border:none;
  8705. border-left:0px;
  8706. border-top:0px;
  8707. border-right:0px;
  8708. border-radius:0px;
  8709. border-bottom-right-radius:0px;
  8710. border-bottom-left-radius:0px;
  8711. -moz-box-shadow:none;
  8712. -webkit-box-shadow:none;
  8713. box-shadow:none;
  8714. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8715. font-weight:500;
  8716. font-style:normal;
  8717. font-size:14px;
  8718. }
  8719. #u16102 {
  8720. border-width:0px;
  8721. position:absolute;
  8722. left:953px;
  8723. top:536px;
  8724. width:57px;
  8725. height:40px;
  8726. display:flex;
  8727. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8728. font-weight:500;
  8729. font-style:normal;
  8730. font-size:14px;
  8731. }
  8732. #u16102 .text {
  8733. position:absolute;
  8734. align-self:center;
  8735. padding:0px 0px 0px 0px;
  8736. box-sizing:border-box;
  8737. width:100%;
  8738. }
  8739. #u16102_text {
  8740. border-width:0px;
  8741. white-space:nowrap;
  8742. text-transform:none;
  8743. }
  8744. #u16103_div {
  8745. border-width:0px;
  8746. position:absolute;
  8747. left:0px;
  8748. top:0px;
  8749. width:155px;
  8750. height:40px;
  8751. background:inherit;
  8752. background-color:rgba(255, 255, 255, 0);
  8753. border:none;
  8754. border-left:0px;
  8755. border-top:0px;
  8756. border-right:0px;
  8757. border-radius:0px;
  8758. border-bottom-right-radius:0px;
  8759. border-bottom-left-radius:0px;
  8760. -moz-box-shadow:none;
  8761. -webkit-box-shadow:none;
  8762. box-shadow:none;
  8763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8764. font-weight:400;
  8765. font-style:normal;
  8766. font-size:14px;
  8767. }
  8768. #u16103 {
  8769. border-width:0px;
  8770. position:absolute;
  8771. left:929px;
  8772. top:417px;
  8773. width:155px;
  8774. height:40px;
  8775. display:flex;
  8776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8777. font-weight:400;
  8778. font-style:normal;
  8779. font-size:14px;
  8780. }
  8781. #u16103 .text {
  8782. position:absolute;
  8783. align-self:center;
  8784. padding:0px 0px 0px 0px;
  8785. box-sizing:border-box;
  8786. width:100%;
  8787. }
  8788. #u16103_text {
  8789. border-width:0px;
  8790. white-space:nowrap;
  8791. text-transform:none;
  8792. }
  8793. #u16104_div {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:0px;
  8797. top:0px;
  8798. width:97px;
  8799. height:40px;
  8800. background:inherit;
  8801. background-color:rgba(255, 255, 255, 0);
  8802. border:none;
  8803. border-left:0px;
  8804. border-top:0px;
  8805. border-right:0px;
  8806. border-radius:0px;
  8807. border-bottom-right-radius:0px;
  8808. border-bottom-left-radius:0px;
  8809. -moz-box-shadow:none;
  8810. -webkit-box-shadow:none;
  8811. box-shadow:none;
  8812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8813. font-weight:400;
  8814. font-style:normal;
  8815. font-size:14px;
  8816. }
  8817. #u16104 {
  8818. border-width:0px;
  8819. position:absolute;
  8820. left:929px;
  8821. top:457px;
  8822. width:97px;
  8823. height:40px;
  8824. display:flex;
  8825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8826. font-weight:400;
  8827. font-style:normal;
  8828. font-size:14px;
  8829. }
  8830. #u16104 .text {
  8831. position:absolute;
  8832. align-self:center;
  8833. padding:0px 0px 0px 0px;
  8834. box-sizing:border-box;
  8835. width:100%;
  8836. }
  8837. #u16104_text {
  8838. border-width:0px;
  8839. white-space:nowrap;
  8840. text-transform:none;
  8841. }
  8842. #u16105_div {
  8843. border-width:0px;
  8844. position:absolute;
  8845. left:0px;
  8846. top:0px;
  8847. width:197px;
  8848. height:40px;
  8849. background:inherit;
  8850. background-color:rgba(255, 255, 255, 0);
  8851. border:none;
  8852. border-left:0px;
  8853. border-top:0px;
  8854. border-right:0px;
  8855. border-radius:0px;
  8856. border-bottom-right-radius:0px;
  8857. border-bottom-left-radius:0px;
  8858. -moz-box-shadow:none;
  8859. -webkit-box-shadow:none;
  8860. box-shadow:none;
  8861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8862. font-weight:400;
  8863. font-style:normal;
  8864. font-size:14px;
  8865. }
  8866. #u16105 {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:1233px;
  8870. top:417px;
  8871. width:197px;
  8872. height:40px;
  8873. display:flex;
  8874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8875. font-weight:400;
  8876. font-style:normal;
  8877. font-size:14px;
  8878. }
  8879. #u16105 .text {
  8880. position:absolute;
  8881. align-self:center;
  8882. padding:0px 0px 0px 0px;
  8883. box-sizing:border-box;
  8884. width:100%;
  8885. }
  8886. #u16105_text {
  8887. border-width:0px;
  8888. white-space:nowrap;
  8889. text-transform:none;
  8890. }
  8891. #u16106_div {
  8892. border-width:0px;
  8893. position:absolute;
  8894. left:0px;
  8895. top:0px;
  8896. width:127px;
  8897. height:40px;
  8898. background:inherit;
  8899. background-color:rgba(255, 255, 255, 0);
  8900. border:none;
  8901. border-left:0px;
  8902. border-top:0px;
  8903. border-right:0px;
  8904. border-radius:0px;
  8905. border-bottom-right-radius:0px;
  8906. border-bottom-left-radius:0px;
  8907. -moz-box-shadow:none;
  8908. -webkit-box-shadow:none;
  8909. box-shadow:none;
  8910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8911. font-weight:400;
  8912. font-style:normal;
  8913. font-size:14px;
  8914. }
  8915. #u16106 {
  8916. border-width:0px;
  8917. position:absolute;
  8918. left:1233px;
  8919. top:457px;
  8920. width:127px;
  8921. height:40px;
  8922. display:flex;
  8923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8924. font-weight:400;
  8925. font-style:normal;
  8926. font-size:14px;
  8927. }
  8928. #u16106 .text {
  8929. position:absolute;
  8930. align-self:center;
  8931. padding:0px 0px 0px 0px;
  8932. box-sizing:border-box;
  8933. width:100%;
  8934. }
  8935. #u16106_text {
  8936. border-width:0px;
  8937. white-space:nowrap;
  8938. text-transform:none;
  8939. }
  8940. #u16107 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:0px;
  8944. top:0px;
  8945. width:0px;
  8946. height:0px;
  8947. }
  8948. #u16108_div {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:800px;
  8954. height:1000px;
  8955. background:inherit;
  8956. background-color:rgba(255, 255, 255, 1);
  8957. box-sizing:border-box;
  8958. border-width:1px;
  8959. border-style:solid;
  8960. border-color:rgba(242, 242, 242, 1);
  8961. border-radius:0px;
  8962. -moz-box-shadow:none;
  8963. -webkit-box-shadow:none;
  8964. box-shadow:none;
  8965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8966. font-weight:400;
  8967. font-style:normal;
  8968. font-size:14px;
  8969. color:#AAAAAA;
  8970. text-align:center;
  8971. }
  8972. #u16108 {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:70px;
  8976. top:378px;
  8977. width:800px;
  8978. height:1000px;
  8979. display:flex;
  8980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8981. font-weight:400;
  8982. font-style:normal;
  8983. font-size:14px;
  8984. color:#AAAAAA;
  8985. text-align:center;
  8986. }
  8987. #u16108 .text {
  8988. position:absolute;
  8989. align-self:center;
  8990. padding:5px 10px 5px 10px;
  8991. box-sizing:border-box;
  8992. width:100%;
  8993. }
  8994. #u16108_text {
  8995. border-width:0px;
  8996. word-wrap:break-word;
  8997. text-transform:none;
  8998. visibility:hidden;
  8999. }
  9000. #u16109_div {
  9001. border-width:0px;
  9002. position:absolute;
  9003. left:0px;
  9004. top:0px;
  9005. width:800px;
  9006. height:60px;
  9007. background:inherit;
  9008. background-color:rgba(255, 255, 255, 1);
  9009. box-sizing:border-box;
  9010. border-width:1px;
  9011. border-style:solid;
  9012. border-color:rgba(242, 242, 242, 1);
  9013. border-radius:0px;
  9014. -moz-box-shadow:none;
  9015. -webkit-box-shadow:none;
  9016. box-shadow:none;
  9017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9018. font-weight:400;
  9019. font-style:normal;
  9020. font-size:14px;
  9021. color:#AAAAAA;
  9022. text-align:center;
  9023. }
  9024. #u16109 {
  9025. border-width:0px;
  9026. position:absolute;
  9027. left:70px;
  9028. top:318px;
  9029. width:800px;
  9030. height:60px;
  9031. display:flex;
  9032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9033. font-weight:400;
  9034. font-style:normal;
  9035. font-size:14px;
  9036. color:#AAAAAA;
  9037. text-align:center;
  9038. }
  9039. #u16109 .text {
  9040. position:absolute;
  9041. align-self:center;
  9042. padding:5px 10px 5px 10px;
  9043. box-sizing:border-box;
  9044. width:100%;
  9045. }
  9046. #u16109_text {
  9047. border-width:0px;
  9048. word-wrap:break-word;
  9049. text-transform:none;
  9050. visibility:hidden;
  9051. }
  9052. #u16110_div {
  9053. border-width:0px;
  9054. position:absolute;
  9055. left:0px;
  9056. top:0px;
  9057. width:47px;
  9058. height:35px;
  9059. background:inherit;
  9060. background-color:rgba(255, 255, 255, 0);
  9061. border:none;
  9062. border-top:0px;
  9063. border-right:0px;
  9064. border-bottom:0px;
  9065. border-radius:0px;
  9066. border-top-left-radius:0px;
  9067. border-bottom-left-radius:0px;
  9068. -moz-box-shadow:none;
  9069. -webkit-box-shadow:none;
  9070. box-shadow:none;
  9071. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9072. font-weight:500;
  9073. font-style:normal;
  9074. font-size:18px;
  9075. }
  9076. #u16110 {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:101px;
  9080. top:331px;
  9081. width:47px;
  9082. height:35px;
  9083. display:flex;
  9084. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9085. font-weight:500;
  9086. font-style:normal;
  9087. font-size:18px;
  9088. }
  9089. #u16110 .text {
  9090. position:absolute;
  9091. align-self:center;
  9092. padding:5px 10px 5px 0px;
  9093. box-sizing:border-box;
  9094. width:100%;
  9095. }
  9096. #u16110_text {
  9097. border-width:0px;
  9098. white-space:nowrap;
  9099. text-transform:none;
  9100. }
  9101. #u16111_div {
  9102. border-width:0px;
  9103. position:absolute;
  9104. left:0px;
  9105. top:0px;
  9106. width:40px;
  9107. height:40px;
  9108. background:inherit;
  9109. background-color:rgba(255, 255, 255, 0);
  9110. border:none;
  9111. border-top:0px;
  9112. border-right:0px;
  9113. border-bottom:0px;
  9114. border-radius:0px;
  9115. border-top-left-radius:0px;
  9116. border-bottom-left-radius:0px;
  9117. -moz-box-shadow:none;
  9118. -webkit-box-shadow:none;
  9119. box-shadow:none;
  9120. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9121. font-weight:500;
  9122. font-style:normal;
  9123. font-size:24px;
  9124. text-align:center;
  9125. }
  9126. #u16111 {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:830px;
  9130. top:318px;
  9131. width:40px;
  9132. height:40px;
  9133. display:flex;
  9134. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9135. font-weight:500;
  9136. font-style:normal;
  9137. font-size:24px;
  9138. text-align:center;
  9139. }
  9140. #u16111 .text {
  9141. position:absolute;
  9142. align-self:center;
  9143. padding:5px 10px 5px 0px;
  9144. box-sizing:border-box;
  9145. width:100%;
  9146. }
  9147. #u16111_text {
  9148. border-width:0px;
  9149. word-wrap:break-word;
  9150. text-transform:none;
  9151. }
  9152. #u16112 {
  9153. border-width:0px;
  9154. position:absolute;
  9155. left:0px;
  9156. top:0px;
  9157. width:0px;
  9158. height:0px;
  9159. }
  9160. #u16113_div {
  9161. border-width:0px;
  9162. position:absolute;
  9163. left:0px;
  9164. top:0px;
  9165. width:800px;
  9166. height:60px;
  9167. background:inherit;
  9168. background-color:rgba(255, 255, 255, 1);
  9169. box-sizing:border-box;
  9170. border-width:1px;
  9171. border-style:solid;
  9172. border-color:rgba(215, 215, 215, 1);
  9173. border-radius:0px;
  9174. -moz-box-shadow:none;
  9175. -webkit-box-shadow:none;
  9176. box-shadow:none;
  9177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9178. font-weight:400;
  9179. font-style:normal;
  9180. font-size:14px;
  9181. color:#AAAAAA;
  9182. text-align:center;
  9183. }
  9184. #u16113 {
  9185. border-width:0px;
  9186. position:absolute;
  9187. left:70px;
  9188. top:1318px;
  9189. width:800px;
  9190. height:60px;
  9191. display:flex;
  9192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9193. font-weight:400;
  9194. font-style:normal;
  9195. font-size:14px;
  9196. color:#AAAAAA;
  9197. text-align:center;
  9198. }
  9199. #u16113 .text {
  9200. position:absolute;
  9201. align-self:center;
  9202. padding:5px 10px 5px 10px;
  9203. box-sizing:border-box;
  9204. width:100%;
  9205. }
  9206. #u16113_text {
  9207. border-width:0px;
  9208. word-wrap:break-word;
  9209. text-transform:none;
  9210. visibility:hidden;
  9211. }
  9212. #u16114_img {
  9213. border-width:0px;
  9214. position:absolute;
  9215. left:0px;
  9216. top:0px;
  9217. width:80px;
  9218. height:30px;
  9219. }
  9220. #u16114 {
  9221. border-width:0px;
  9222. position:absolute;
  9223. left:750px;
  9224. top:1333px;
  9225. width:80px;
  9226. height:30px;
  9227. display:flex;
  9228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9229. font-weight:400;
  9230. font-style:normal;
  9231. font-size:14px;
  9232. color:#FFFFFF;
  9233. }
  9234. #u16114 .text {
  9235. position:absolute;
  9236. align-self:center;
  9237. padding:2px 2px 2px 2px;
  9238. box-sizing:border-box;
  9239. width:100%;
  9240. }
  9241. #u16114_text {
  9242. border-width:0px;
  9243. word-wrap:break-word;
  9244. text-transform:none;
  9245. }
  9246. #u16115_div {
  9247. border-width:0px;
  9248. position:absolute;
  9249. left:0px;
  9250. top:0px;
  9251. width:80px;
  9252. height:30px;
  9253. background:inherit;
  9254. background-color:rgba(255, 255, 255, 1);
  9255. box-sizing:border-box;
  9256. border-width:1px;
  9257. border-style:solid;
  9258. border-color:rgba(170, 170, 170, 1);
  9259. border-radius:4px;
  9260. -moz-box-shadow:none;
  9261. -webkit-box-shadow:none;
  9262. box-shadow:none;
  9263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9264. font-weight:400;
  9265. font-style:normal;
  9266. font-size:14px;
  9267. }
  9268. #u16115 {
  9269. border-width:0px;
  9270. position:absolute;
  9271. left:660px;
  9272. top:1333px;
  9273. width:80px;
  9274. height:30px;
  9275. display:flex;
  9276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9277. font-weight:400;
  9278. font-style:normal;
  9279. font-size:14px;
  9280. }
  9281. #u16115 .text {
  9282. position:absolute;
  9283. align-self:center;
  9284. padding:2px 2px 2px 2px;
  9285. box-sizing:border-box;
  9286. width:100%;
  9287. }
  9288. #u16115_text {
  9289. border-width:0px;
  9290. word-wrap:break-word;
  9291. text-transform:none;
  9292. }
  9293. #u16116 {
  9294. border-width:0px;
  9295. position:absolute;
  9296. left:0px;
  9297. top:0px;
  9298. width:0px;
  9299. height:0px;
  9300. }
  9301. #u16117_div {
  9302. border-width:0px;
  9303. position:absolute;
  9304. left:0px;
  9305. top:0px;
  9306. width:427px;
  9307. height:80px;
  9308. background:inherit;
  9309. background-color:rgba(255, 255, 255, 1);
  9310. box-sizing:border-box;
  9311. border-width:1px;
  9312. border-style:solid;
  9313. border-color:rgba(201, 201, 201, 1);
  9314. border-radius:4px;
  9315. -moz-box-shadow:none;
  9316. -webkit-box-shadow:none;
  9317. box-shadow:none;
  9318. font-family:'Microsoft YaHei', sans-serif;
  9319. font-weight:400;
  9320. font-style:normal;
  9321. font-size:14px;
  9322. color:#CCCCCC;
  9323. text-align:left;
  9324. }
  9325. #u16117 {
  9326. border-width:0px;
  9327. position:absolute;
  9328. left:109px;
  9329. top:1057px;
  9330. width:427px;
  9331. height:80px;
  9332. display:flex;
  9333. font-family:'Microsoft YaHei', sans-serif;
  9334. font-weight:400;
  9335. font-style:normal;
  9336. font-size:14px;
  9337. color:#CCCCCC;
  9338. text-align:left;
  9339. }
  9340. #u16117 .text {
  9341. position:absolute;
  9342. align-self:center;
  9343. padding:2px 8px 2px 8px;
  9344. box-sizing:border-box;
  9345. width:100%;
  9346. }
  9347. #u16117_text {
  9348. border-width:0px;
  9349. word-wrap:break-word;
  9350. text-transform:none;
  9351. visibility:hidden;
  9352. }
  9353. #u16118_input {
  9354. position:absolute;
  9355. left:0px;
  9356. top:0px;
  9357. width:389px;
  9358. height:33px;
  9359. padding:2px 2px 2px 2px;
  9360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9361. font-weight:400;
  9362. font-style:normal;
  9363. font-size:14px;
  9364. letter-spacing:normal;
  9365. color:#D7D7D7;
  9366. vertical-align:none;
  9367. text-align:left;
  9368. text-transform:none;
  9369. background-color:transparent;
  9370. border-color:transparent;
  9371. }
  9372. #u16118_input.disabled {
  9373. position:absolute;
  9374. left:0px;
  9375. top:0px;
  9376. width:389px;
  9377. height:33px;
  9378. padding:2px 2px 2px 2px;
  9379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9380. font-weight:400;
  9381. font-style:normal;
  9382. font-size:14px;
  9383. letter-spacing:normal;
  9384. color:#D7D7D7;
  9385. vertical-align:none;
  9386. text-align:left;
  9387. text-transform:none;
  9388. background-color:transparent;
  9389. border-color:transparent;
  9390. }
  9391. #u16118_div {
  9392. border-width:0px;
  9393. position:absolute;
  9394. left:0px;
  9395. top:0px;
  9396. width:389px;
  9397. height:33px;
  9398. background:inherit;
  9399. background-color:rgba(255, 255, 255, 0);
  9400. border:none;
  9401. border-radius:0px;
  9402. -moz-box-shadow:none;
  9403. -webkit-box-shadow:none;
  9404. box-shadow:none;
  9405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9406. font-weight:400;
  9407. font-style:normal;
  9408. font-size:14px;
  9409. color:#D7D7D7;
  9410. }
  9411. #u16118 {
  9412. border-width:0px;
  9413. position:absolute;
  9414. left:126px;
  9415. top:1060px;
  9416. width:389px;
  9417. height:33px;
  9418. display:flex;
  9419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9420. font-weight:400;
  9421. font-style:normal;
  9422. font-size:14px;
  9423. color:#D7D7D7;
  9424. }
  9425. #u16118 .text {
  9426. position:absolute;
  9427. align-self:center;
  9428. padding:2px 2px 2px 2px;
  9429. box-sizing:border-box;
  9430. width:100%;
  9431. }
  9432. #u16118_div.disabled {
  9433. border-width:0px;
  9434. position:absolute;
  9435. left:0px;
  9436. top:0px;
  9437. width:389px;
  9438. height:33px;
  9439. background:inherit;
  9440. background-color:rgba(240, 240, 240, 1);
  9441. border:none;
  9442. border-radius:0px;
  9443. -moz-box-shadow:none;
  9444. -webkit-box-shadow:none;
  9445. box-shadow:none;
  9446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9447. font-weight:400;
  9448. font-style:normal;
  9449. font-size:14px;
  9450. color:#D7D7D7;
  9451. }
  9452. #u16118.disabled {
  9453. }
  9454. #u16119_div {
  9455. border-width:0px;
  9456. position:absolute;
  9457. left:0px;
  9458. top:0px;
  9459. width:71px;
  9460. height:40px;
  9461. background:inherit;
  9462. background-color:rgba(255, 255, 255, 0);
  9463. border:none;
  9464. border-left:0px;
  9465. border-top:0px;
  9466. border-right:0px;
  9467. border-radius:0px;
  9468. border-bottom-right-radius:0px;
  9469. border-bottom-left-radius:0px;
  9470. -moz-box-shadow:none;
  9471. -webkit-box-shadow:none;
  9472. box-shadow:none;
  9473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9474. font-weight:400;
  9475. font-style:normal;
  9476. font-size:14px;
  9477. }
  9478. #u16119 {
  9479. border-width:0px;
  9480. position:absolute;
  9481. left:109px;
  9482. top:1017px;
  9483. width:71px;
  9484. height:40px;
  9485. display:flex;
  9486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9487. font-weight:400;
  9488. font-style:normal;
  9489. font-size:14px;
  9490. }
  9491. #u16119 .text {
  9492. position:absolute;
  9493. align-self:center;
  9494. padding:0px 0px 0px 0px;
  9495. box-sizing:border-box;
  9496. width:100%;
  9497. }
  9498. #u16119_text {
  9499. border-width:0px;
  9500. white-space:nowrap;
  9501. text-transform:none;
  9502. }
  9503. #u16120_div {
  9504. border-width:0px;
  9505. position:absolute;
  9506. left:0px;
  9507. top:0px;
  9508. width:271px;
  9509. height:40px;
  9510. background:inherit;
  9511. background-color:rgba(255, 255, 255, 0);
  9512. border:none;
  9513. border-left:0px;
  9514. border-top:0px;
  9515. border-right:0px;
  9516. border-radius:0px;
  9517. border-bottom-right-radius:0px;
  9518. border-bottom-left-radius:0px;
  9519. -moz-box-shadow:none;
  9520. -webkit-box-shadow:none;
  9521. box-shadow:none;
  9522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9523. font-weight:400;
  9524. font-style:normal;
  9525. }
  9526. #u16120 {
  9527. border-width:0px;
  9528. position:absolute;
  9529. left:109px;
  9530. top:927px;
  9531. width:271px;
  9532. height:40px;
  9533. display:flex;
  9534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9535. font-weight:400;
  9536. font-style:normal;
  9537. }
  9538. #u16120 .text {
  9539. position:absolute;
  9540. align-self:center;
  9541. padding:0px 0px 0px 0px;
  9542. box-sizing:border-box;
  9543. width:100%;
  9544. }
  9545. #u16120_text {
  9546. border-width:0px;
  9547. white-space:nowrap;
  9548. text-transform:none;
  9549. }
  9550. #u16121_div {
  9551. border-width:0px;
  9552. position:absolute;
  9553. left:0px;
  9554. top:0px;
  9555. width:120px;
  9556. height:40px;
  9557. background:inherit;
  9558. background-color:rgba(24, 144, 255, 1);
  9559. border:none;
  9560. border-radius:4px;
  9561. -moz-box-shadow:none;
  9562. -webkit-box-shadow:none;
  9563. box-shadow:none;
  9564. font-size:14px;
  9565. color:#FFFFFF;
  9566. }
  9567. #u16121 {
  9568. border-width:0px;
  9569. position:absolute;
  9570. left:109px;
  9571. top:967px;
  9572. width:120px;
  9573. height:40px;
  9574. display:flex;
  9575. font-size:14px;
  9576. color:#FFFFFF;
  9577. }
  9578. #u16121 .text {
  9579. position:absolute;
  9580. align-self:center;
  9581. padding:2px 8px 2px 8px;
  9582. box-sizing:border-box;
  9583. width:100%;
  9584. }
  9585. #u16121_text {
  9586. border-width:0px;
  9587. word-wrap:break-word;
  9588. text-transform:none;
  9589. }
  9590. #u16122_div {
  9591. border-width:0px;
  9592. position:absolute;
  9593. left:0px;
  9594. top:0px;
  9595. width:155px;
  9596. height:40px;
  9597. background:inherit;
  9598. background-color:rgba(255, 255, 255, 0);
  9599. border:none;
  9600. border-left:0px;
  9601. border-top:0px;
  9602. border-right:0px;
  9603. border-radius:0px;
  9604. border-bottom-right-radius:0px;
  9605. border-bottom-left-radius:0px;
  9606. -moz-box-shadow:none;
  9607. -webkit-box-shadow:none;
  9608. box-shadow:none;
  9609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9610. font-weight:400;
  9611. font-style:normal;
  9612. font-size:14px;
  9613. }
  9614. #u16122 {
  9615. border-width:0px;
  9616. position:absolute;
  9617. left:109px;
  9618. top:417px;
  9619. width:155px;
  9620. height:40px;
  9621. display:flex;
  9622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9623. font-weight:400;
  9624. font-style:normal;
  9625. font-size:14px;
  9626. }
  9627. #u16122 .text {
  9628. position:absolute;
  9629. align-self:center;
  9630. padding:0px 0px 0px 0px;
  9631. box-sizing:border-box;
  9632. width:100%;
  9633. }
  9634. #u16122_text {
  9635. border-width:0px;
  9636. white-space:nowrap;
  9637. text-transform:none;
  9638. }
  9639. #u16123 {
  9640. border-width:0px;
  9641. position:absolute;
  9642. left:0px;
  9643. top:0px;
  9644. width:0px;
  9645. height:0px;
  9646. }
  9647. #u16124_div {
  9648. border-width:0px;
  9649. position:absolute;
  9650. left:0px;
  9651. top:0px;
  9652. width:713px;
  9653. height:380px;
  9654. background:inherit;
  9655. background-color:rgba(242, 242, 242, 1);
  9656. box-sizing:border-box;
  9657. border-width:1px;
  9658. border-style:solid;
  9659. border-color:rgba(215, 215, 215, 1);
  9660. border-radius:4px;
  9661. -moz-box-shadow:none;
  9662. -webkit-box-shadow:none;
  9663. box-shadow:none;
  9664. font-size:14px;
  9665. }
  9666. #u16124 {
  9667. border-width:0px;
  9668. position:absolute;
  9669. left:109px;
  9670. top:527px;
  9671. width:713px;
  9672. height:380px;
  9673. display:flex;
  9674. font-size:14px;
  9675. }
  9676. #u16124 .text {
  9677. position:absolute;
  9678. align-self:center;
  9679. padding:2px 2px 2px 2px;
  9680. box-sizing:border-box;
  9681. width:100%;
  9682. }
  9683. #u16124_text {
  9684. border-width:0px;
  9685. word-wrap:break-word;
  9686. text-transform:none;
  9687. visibility:hidden;
  9688. }
  9689. #u16125_div {
  9690. border-width:0px;
  9691. position:absolute;
  9692. left:0px;
  9693. top:0px;
  9694. width:211px;
  9695. height:40px;
  9696. background:inherit;
  9697. background-color:rgba(255, 255, 255, 0);
  9698. border:none;
  9699. border-left:0px;
  9700. border-top:0px;
  9701. border-right:0px;
  9702. border-radius:0px;
  9703. border-bottom-right-radius:0px;
  9704. border-bottom-left-radius:0px;
  9705. -moz-box-shadow:none;
  9706. -webkit-box-shadow:none;
  9707. box-shadow:none;
  9708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9709. font-weight:400;
  9710. font-style:normal;
  9711. font-size:14px;
  9712. }
  9713. #u16125 {
  9714. border-width:0px;
  9715. position:absolute;
  9716. left:133px;
  9717. top:597px;
  9718. width:211px;
  9719. height:40px;
  9720. display:flex;
  9721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9722. font-weight:400;
  9723. font-style:normal;
  9724. font-size:14px;
  9725. }
  9726. #u16125 .text {
  9727. position:absolute;
  9728. align-self:center;
  9729. padding:0px 0px 0px 0px;
  9730. box-sizing:border-box;
  9731. width:100%;
  9732. }
  9733. #u16125_text {
  9734. border-width:0px;
  9735. white-space:nowrap;
  9736. text-transform:none;
  9737. }
  9738. #u16126_div {
  9739. border-width:0px;
  9740. position:absolute;
  9741. left:0px;
  9742. top:0px;
  9743. width:113px;
  9744. height:40px;
  9745. background:inherit;
  9746. background-color:rgba(255, 255, 255, 0);
  9747. border:none;
  9748. border-left:0px;
  9749. border-top:0px;
  9750. border-right:0px;
  9751. border-radius:0px;
  9752. border-bottom-right-radius:0px;
  9753. border-bottom-left-radius:0px;
  9754. -moz-box-shadow:none;
  9755. -webkit-box-shadow:none;
  9756. box-shadow:none;
  9757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9758. font-weight:400;
  9759. font-style:normal;
  9760. font-size:14px;
  9761. }
  9762. #u16126 {
  9763. border-width:0px;
  9764. position:absolute;
  9765. left:356px;
  9766. top:597px;
  9767. width:113px;
  9768. height:40px;
  9769. display:flex;
  9770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9771. font-weight:400;
  9772. font-style:normal;
  9773. font-size:14px;
  9774. }
  9775. #u16126 .text {
  9776. position:absolute;
  9777. align-self:center;
  9778. padding:0px 0px 0px 0px;
  9779. box-sizing:border-box;
  9780. width:100%;
  9781. }
  9782. #u16126_text {
  9783. border-width:0px;
  9784. white-space:nowrap;
  9785. text-transform:none;
  9786. }
  9787. #u16127_div {
  9788. border-width:0px;
  9789. position:absolute;
  9790. left:0px;
  9791. top:0px;
  9792. width:85px;
  9793. height:40px;
  9794. background:inherit;
  9795. background-color:rgba(255, 255, 255, 0);
  9796. border:none;
  9797. border-left:0px;
  9798. border-top:0px;
  9799. border-right:0px;
  9800. border-radius:0px;
  9801. border-bottom-right-radius:0px;
  9802. border-bottom-left-radius:0px;
  9803. -moz-box-shadow:none;
  9804. -webkit-box-shadow:none;
  9805. box-shadow:none;
  9806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9807. font-weight:400;
  9808. font-style:normal;
  9809. font-size:14px;
  9810. }
  9811. #u16127 {
  9812. border-width:0px;
  9813. position:absolute;
  9814. left:133px;
  9815. top:637px;
  9816. width:85px;
  9817. height:40px;
  9818. display:flex;
  9819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9820. font-weight:400;
  9821. font-style:normal;
  9822. font-size:14px;
  9823. }
  9824. #u16127 .text {
  9825. position:absolute;
  9826. align-self:center;
  9827. padding:0px 0px 0px 0px;
  9828. box-sizing:border-box;
  9829. width:100%;
  9830. }
  9831. #u16127_text {
  9832. border-width:0px;
  9833. white-space:nowrap;
  9834. text-transform:none;
  9835. }
  9836. #u16128_div {
  9837. border-width:0px;
  9838. position:absolute;
  9839. left:0px;
  9840. top:0px;
  9841. width:152px;
  9842. height:40px;
  9843. background:inherit;
  9844. background-color:rgba(255, 255, 255, 0);
  9845. border:none;
  9846. border-left:0px;
  9847. border-top:0px;
  9848. border-right:0px;
  9849. border-radius:0px;
  9850. border-bottom-right-radius:0px;
  9851. border-bottom-left-radius:0px;
  9852. -moz-box-shadow:none;
  9853. -webkit-box-shadow:none;
  9854. box-shadow:none;
  9855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9856. font-weight:400;
  9857. font-style:normal;
  9858. font-size:14px;
  9859. }
  9860. #u16128 {
  9861. border-width:0px;
  9862. position:absolute;
  9863. left:356px;
  9864. top:637px;
  9865. width:152px;
  9866. height:40px;
  9867. display:flex;
  9868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9869. font-weight:400;
  9870. font-style:normal;
  9871. font-size:14px;
  9872. }
  9873. #u16128 .text {
  9874. position:absolute;
  9875. align-self:center;
  9876. padding:0px 0px 0px 0px;
  9877. box-sizing:border-box;
  9878. width:100%;
  9879. }
  9880. #u16128_text {
  9881. border-width:0px;
  9882. white-space:nowrap;
  9883. text-transform:none;
  9884. }
  9885. #u16129_div {
  9886. border-width:0px;
  9887. position:absolute;
  9888. left:0px;
  9889. top:0px;
  9890. width:127px;
  9891. height:40px;
  9892. background:inherit;
  9893. background-color:rgba(255, 255, 255, 0);
  9894. border:none;
  9895. border-left:0px;
  9896. border-top:0px;
  9897. border-right:0px;
  9898. border-radius:0px;
  9899. border-bottom-right-radius:0px;
  9900. border-bottom-left-radius:0px;
  9901. -moz-box-shadow:none;
  9902. -webkit-box-shadow:none;
  9903. box-shadow:none;
  9904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9905. font-weight:400;
  9906. font-style:normal;
  9907. font-size:14px;
  9908. }
  9909. #u16129 {
  9910. border-width:0px;
  9911. position:absolute;
  9912. left:133px;
  9913. top:677px;
  9914. width:127px;
  9915. height:40px;
  9916. display:flex;
  9917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9918. font-weight:400;
  9919. font-style:normal;
  9920. font-size:14px;
  9921. }
  9922. #u16129 .text {
  9923. position:absolute;
  9924. align-self:center;
  9925. padding:0px 0px 0px 0px;
  9926. box-sizing:border-box;
  9927. width:100%;
  9928. }
  9929. #u16129_text {
  9930. border-width:0px;
  9931. white-space:nowrap;
  9932. text-transform:none;
  9933. }
  9934. #u16130_div {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:0px;
  9938. top:0px;
  9939. width:155px;
  9940. height:40px;
  9941. background:inherit;
  9942. background-color:rgba(255, 255, 255, 0);
  9943. border:none;
  9944. border-left:0px;
  9945. border-top:0px;
  9946. border-right:0px;
  9947. border-radius:0px;
  9948. border-bottom-right-radius:0px;
  9949. border-bottom-left-radius:0px;
  9950. -moz-box-shadow:none;
  9951. -webkit-box-shadow:none;
  9952. box-shadow:none;
  9953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9954. font-weight:400;
  9955. font-style:normal;
  9956. font-size:14px;
  9957. }
  9958. #u16130 {
  9959. border-width:0px;
  9960. position:absolute;
  9961. left:356px;
  9962. top:677px;
  9963. width:155px;
  9964. height:40px;
  9965. display:flex;
  9966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9967. font-weight:400;
  9968. font-style:normal;
  9969. font-size:14px;
  9970. }
  9971. #u16130 .text {
  9972. position:absolute;
  9973. align-self:center;
  9974. padding:0px 0px 0px 0px;
  9975. box-sizing:border-box;
  9976. width:100%;
  9977. }
  9978. #u16130_text {
  9979. border-width:0px;
  9980. white-space:nowrap;
  9981. text-transform:none;
  9982. }
  9983. #u16131_div {
  9984. border-width:0px;
  9985. position:absolute;
  9986. left:0px;
  9987. top:0px;
  9988. width:57px;
  9989. height:40px;
  9990. background:inherit;
  9991. background-color:rgba(255, 255, 255, 0);
  9992. border:none;
  9993. border-left:0px;
  9994. border-top:0px;
  9995. border-right:0px;
  9996. border-radius:0px;
  9997. border-bottom-right-radius:0px;
  9998. border-bottom-left-radius:0px;
  9999. -moz-box-shadow:none;
  10000. -webkit-box-shadow:none;
  10001. box-shadow:none;
  10002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10003. font-weight:400;
  10004. font-style:normal;
  10005. font-size:14px;
  10006. }
  10007. #u16131 {
  10008. border-width:0px;
  10009. position:absolute;
  10010. left:133px;
  10011. top:717px;
  10012. width:57px;
  10013. height:40px;
  10014. display:flex;
  10015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10016. font-weight:400;
  10017. font-style:normal;
  10018. font-size:14px;
  10019. }
  10020. #u16131 .text {
  10021. position:absolute;
  10022. align-self:center;
  10023. padding:0px 0px 0px 0px;
  10024. box-sizing:border-box;
  10025. width:100%;
  10026. }
  10027. #u16131_text {
  10028. border-width:0px;
  10029. white-space:nowrap;
  10030. text-transform:none;
  10031. }
  10032. #u16132_div {
  10033. border-width:0px;
  10034. position:absolute;
  10035. left:0px;
  10036. top:0px;
  10037. width:107px;
  10038. height:40px;
  10039. background:inherit;
  10040. background-color:rgba(255, 255, 255, 0);
  10041. border:none;
  10042. border-left:0px;
  10043. border-top:0px;
  10044. border-right:0px;
  10045. border-radius:0px;
  10046. border-bottom-right-radius:0px;
  10047. border-bottom-left-radius:0px;
  10048. -moz-box-shadow:none;
  10049. -webkit-box-shadow:none;
  10050. box-shadow:none;
  10051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10052. font-weight:400;
  10053. font-style:normal;
  10054. font-size:14px;
  10055. }
  10056. #u16132 {
  10057. border-width:0px;
  10058. position:absolute;
  10059. left:356px;
  10060. top:717px;
  10061. width:107px;
  10062. height:40px;
  10063. display:flex;
  10064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10065. font-weight:400;
  10066. font-style:normal;
  10067. font-size:14px;
  10068. }
  10069. #u16132 .text {
  10070. position:absolute;
  10071. align-self:center;
  10072. padding:0px 0px 0px 0px;
  10073. box-sizing:border-box;
  10074. width:100%;
  10075. }
  10076. #u16132_text {
  10077. border-width:0px;
  10078. white-space:nowrap;
  10079. text-transform:none;
  10080. }
  10081. #u16133_img {
  10082. border-width:0px;
  10083. position:absolute;
  10084. left:0px;
  10085. top:0px;
  10086. width:361px;
  10087. height:121px;
  10088. }
  10089. #u16133 {
  10090. border-width:0px;
  10091. position:absolute;
  10092. left:133px;
  10093. top:767px;
  10094. width:361px;
  10095. height:121px;
  10096. display:flex;
  10097. }
  10098. #u16133 .text {
  10099. position:absolute;
  10100. align-self:center;
  10101. padding:2px 2px 2px 2px;
  10102. box-sizing:border-box;
  10103. width:100%;
  10104. }
  10105. #u16133_text {
  10106. border-width:0px;
  10107. word-wrap:break-word;
  10108. text-transform:none;
  10109. visibility:hidden;
  10110. }
  10111. #u16134_img {
  10112. border-width:0px;
  10113. position:absolute;
  10114. left:0px;
  10115. top:0px;
  10116. width:196px;
  10117. height:215px;
  10118. }
  10119. #u16134 {
  10120. border-width:0px;
  10121. position:absolute;
  10122. left:583px;
  10123. top:580px;
  10124. width:196px;
  10125. height:215px;
  10126. display:flex;
  10127. }
  10128. #u16134 .text {
  10129. position:absolute;
  10130. align-self:center;
  10131. padding:2px 2px 2px 2px;
  10132. box-sizing:border-box;
  10133. width:100%;
  10134. }
  10135. #u16134_text {
  10136. border-width:0px;
  10137. word-wrap:break-word;
  10138. text-transform:none;
  10139. visibility:hidden;
  10140. }
  10141. #u16135_div {
  10142. border-width:0px;
  10143. position:absolute;
  10144. left:0px;
  10145. top:0px;
  10146. width:29px;
  10147. height:40px;
  10148. background:inherit;
  10149. background-color:rgba(255, 255, 255, 0);
  10150. border:none;
  10151. border-left:0px;
  10152. border-top:0px;
  10153. border-right:0px;
  10154. border-radius:0px;
  10155. border-bottom-right-radius:0px;
  10156. border-bottom-left-radius:0px;
  10157. -moz-box-shadow:none;
  10158. -webkit-box-shadow:none;
  10159. box-shadow:none;
  10160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10161. font-weight:400;
  10162. font-style:normal;
  10163. font-size:14px;
  10164. color:#1890FF;
  10165. }
  10166. #u16135 {
  10167. border-width:0px;
  10168. position:absolute;
  10169. left:773px;
  10170. top:527px;
  10171. width:29px;
  10172. height:40px;
  10173. display:flex;
  10174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10175. font-weight:400;
  10176. font-style:normal;
  10177. font-size:14px;
  10178. color:#1890FF;
  10179. }
  10180. #u16135 .text {
  10181. position:absolute;
  10182. align-self:center;
  10183. padding:0px 0px 0px 0px;
  10184. box-sizing:border-box;
  10185. width:100%;
  10186. }
  10187. #u16135_text {
  10188. border-width:0px;
  10189. white-space:nowrap;
  10190. text-transform:none;
  10191. }
  10192. #u16136_div {
  10193. border-width:0px;
  10194. position:absolute;
  10195. left:0px;
  10196. top:0px;
  10197. width:57px;
  10198. height:40px;
  10199. background:inherit;
  10200. background-color:rgba(255, 255, 255, 0);
  10201. border:none;
  10202. border-left:0px;
  10203. border-top:0px;
  10204. border-right:0px;
  10205. border-radius:0px;
  10206. border-bottom-right-radius:0px;
  10207. border-bottom-left-radius:0px;
  10208. -moz-box-shadow:none;
  10209. -webkit-box-shadow:none;
  10210. box-shadow:none;
  10211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10212. font-weight:500;
  10213. font-style:normal;
  10214. font-size:14px;
  10215. }
  10216. #u16136 {
  10217. border-width:0px;
  10218. position:absolute;
  10219. left:133px;
  10220. top:536px;
  10221. width:57px;
  10222. height:40px;
  10223. display:flex;
  10224. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10225. font-weight:500;
  10226. font-style:normal;
  10227. font-size:14px;
  10228. }
  10229. #u16136 .text {
  10230. position:absolute;
  10231. align-self:center;
  10232. padding:0px 0px 0px 0px;
  10233. box-sizing:border-box;
  10234. width:100%;
  10235. }
  10236. #u16136_text {
  10237. border-width:0px;
  10238. white-space:nowrap;
  10239. text-transform:none;
  10240. }
  10241. #u16137_div {
  10242. border-width:0px;
  10243. position:absolute;
  10244. left:0px;
  10245. top:0px;
  10246. width:97px;
  10247. height:40px;
  10248. background:inherit;
  10249. background-color:rgba(255, 255, 255, 0);
  10250. border:none;
  10251. border-left:0px;
  10252. border-top:0px;
  10253. border-right:0px;
  10254. border-radius:0px;
  10255. border-bottom-right-radius:0px;
  10256. border-bottom-left-radius:0px;
  10257. -moz-box-shadow:none;
  10258. -webkit-box-shadow:none;
  10259. box-shadow:none;
  10260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10261. font-weight:400;
  10262. font-style:normal;
  10263. font-size:14px;
  10264. }
  10265. #u16137 {
  10266. border-width:0px;
  10267. position:absolute;
  10268. left:109px;
  10269. top:457px;
  10270. width:97px;
  10271. height:40px;
  10272. display:flex;
  10273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10274. font-weight:400;
  10275. font-style:normal;
  10276. font-size:14px;
  10277. }
  10278. #u16137 .text {
  10279. position:absolute;
  10280. align-self:center;
  10281. padding:0px 0px 0px 0px;
  10282. box-sizing:border-box;
  10283. width:100%;
  10284. }
  10285. #u16137_text {
  10286. border-width:0px;
  10287. white-space:nowrap;
  10288. text-transform:none;
  10289. }
  10290. #u16138_div {
  10291. border-width:0px;
  10292. position:absolute;
  10293. left:0px;
  10294. top:0px;
  10295. width:197px;
  10296. height:40px;
  10297. background:inherit;
  10298. background-color:rgba(255, 255, 255, 0);
  10299. border:none;
  10300. border-left:0px;
  10301. border-top:0px;
  10302. border-right:0px;
  10303. border-radius:0px;
  10304. border-bottom-right-radius:0px;
  10305. border-bottom-left-radius:0px;
  10306. -moz-box-shadow:none;
  10307. -webkit-box-shadow:none;
  10308. box-shadow:none;
  10309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10310. font-weight:400;
  10311. font-style:normal;
  10312. font-size:14px;
  10313. }
  10314. #u16138 {
  10315. border-width:0px;
  10316. position:absolute;
  10317. left:413px;
  10318. top:417px;
  10319. width:197px;
  10320. height:40px;
  10321. display:flex;
  10322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10323. font-weight:400;
  10324. font-style:normal;
  10325. font-size:14px;
  10326. }
  10327. #u16138 .text {
  10328. position:absolute;
  10329. align-self:center;
  10330. padding:0px 0px 0px 0px;
  10331. box-sizing:border-box;
  10332. width:100%;
  10333. }
  10334. #u16138_text {
  10335. border-width:0px;
  10336. white-space:nowrap;
  10337. text-transform:none;
  10338. }
  10339. #u16139_div {
  10340. border-width:0px;
  10341. position:absolute;
  10342. left:0px;
  10343. top:0px;
  10344. width:127px;
  10345. height:40px;
  10346. background:inherit;
  10347. background-color:rgba(255, 255, 255, 0);
  10348. border:none;
  10349. border-left:0px;
  10350. border-top:0px;
  10351. border-right:0px;
  10352. border-radius:0px;
  10353. border-bottom-right-radius:0px;
  10354. border-bottom-left-radius:0px;
  10355. -moz-box-shadow:none;
  10356. -webkit-box-shadow:none;
  10357. box-shadow:none;
  10358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10359. font-weight:400;
  10360. font-style:normal;
  10361. font-size:14px;
  10362. }
  10363. #u16139 {
  10364. border-width:0px;
  10365. position:absolute;
  10366. left:413px;
  10367. top:457px;
  10368. width:127px;
  10369. height:40px;
  10370. display:flex;
  10371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10372. font-weight:400;
  10373. font-style:normal;
  10374. font-size:14px;
  10375. }
  10376. #u16139 .text {
  10377. position:absolute;
  10378. align-self:center;
  10379. padding:0px 0px 0px 0px;
  10380. box-sizing:border-box;
  10381. width:100%;
  10382. }
  10383. #u16139_text {
  10384. border-width:0px;
  10385. white-space:nowrap;
  10386. text-transform:none;
  10387. }
  10388. #u16140 {
  10389. border-width:0px;
  10390. position:absolute;
  10391. left:0px;
  10392. top:0px;
  10393. width:0px;
  10394. height:0px;
  10395. }
  10396. #u16141 {
  10397. border-width:0px;
  10398. position:absolute;
  10399. left:0px;
  10400. top:0px;
  10401. width:0px;
  10402. height:0px;
  10403. }
  10404. #u16142_div {
  10405. border-width:0px;
  10406. position:absolute;
  10407. left:0px;
  10408. top:0px;
  10409. width:380px;
  10410. height:180px;
  10411. background:inherit;
  10412. background-color:rgba(255, 255, 255, 1);
  10413. box-sizing:border-box;
  10414. border-width:1px;
  10415. border-style:solid;
  10416. border-color:rgba(242, 242, 242, 1);
  10417. border-radius:4px;
  10418. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10419. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10420. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10421. font-family:'Microsoft YaHei', sans-serif;
  10422. font-weight:400;
  10423. font-style:normal;
  10424. }
  10425. #u16142 {
  10426. border-width:0px;
  10427. position:absolute;
  10428. left:442px;
  10429. top:1077px;
  10430. width:380px;
  10431. height:180px;
  10432. display:flex;
  10433. font-family:'Microsoft YaHei', sans-serif;
  10434. font-weight:400;
  10435. font-style:normal;
  10436. }
  10437. #u16142 .text {
  10438. position:absolute;
  10439. align-self:center;
  10440. padding:2px 2px 2px 2px;
  10441. box-sizing:border-box;
  10442. width:100%;
  10443. }
  10444. #u16142_text {
  10445. border-width:0px;
  10446. word-wrap:break-word;
  10447. text-transform:none;
  10448. visibility:hidden;
  10449. }
  10450. #u16143_div {
  10451. border-width:0px;
  10452. position:absolute;
  10453. left:0px;
  10454. top:0px;
  10455. width:163px;
  10456. height:21px;
  10457. background:inherit;
  10458. background-color:rgba(255, 255, 255, 0);
  10459. border:none;
  10460. border-radius:0px;
  10461. -moz-box-shadow:none;
  10462. -webkit-box-shadow:none;
  10463. box-shadow:none;
  10464. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10465. font-weight:650;
  10466. font-style:normal;
  10467. font-size:18px;
  10468. color:#000000;
  10469. line-height:22px;
  10470. }
  10471. #u16143 {
  10472. border-width:0px;
  10473. position:absolute;
  10474. left:502px;
  10475. top:1102px;
  10476. width:163px;
  10477. height:21px;
  10478. display:flex;
  10479. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10480. font-weight:650;
  10481. font-style:normal;
  10482. font-size:18px;
  10483. color:#000000;
  10484. line-height:22px;
  10485. }
  10486. #u16143 .text {
  10487. position:absolute;
  10488. align-self:flex-start;
  10489. padding:0px 0px 0px 0px;
  10490. box-sizing:border-box;
  10491. width:100%;
  10492. }
  10493. #u16143_text {
  10494. border-width:0px;
  10495. white-space:nowrap;
  10496. text-transform:none;
  10497. }
  10498. #u16144_div {
  10499. border-width:0px;
  10500. position:absolute;
  10501. left:0px;
  10502. top:0px;
  10503. width:61px;
  10504. height:32px;
  10505. background:inherit;
  10506. background-color:rgba(24, 144, 255, 1);
  10507. border:none;
  10508. border-radius:4px;
  10509. -moz-box-shadow:none;
  10510. -webkit-box-shadow:none;
  10511. box-shadow:none;
  10512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10513. font-weight:400;
  10514. font-style:normal;
  10515. font-size:14px;
  10516. color:#FFFFFF;
  10517. }
  10518. #u16144 {
  10519. border-width:0px;
  10520. position:absolute;
  10521. left:741px;
  10522. top:1209px;
  10523. width:61px;
  10524. height:32px;
  10525. display:flex;
  10526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10527. font-weight:400;
  10528. font-style:normal;
  10529. font-size:14px;
  10530. color:#FFFFFF;
  10531. }
  10532. #u16144 .text {
  10533. position:absolute;
  10534. align-self:center;
  10535. padding:2px 16px 2px 16px;
  10536. box-sizing:border-box;
  10537. width:100%;
  10538. }
  10539. #u16144_text {
  10540. border-width:0px;
  10541. white-space:nowrap;
  10542. text-transform:none;
  10543. }
  10544. #u16145_img {
  10545. border-width:0px;
  10546. position:absolute;
  10547. left:0px;
  10548. top:0px;
  10549. width:20px;
  10550. height:20px;
  10551. }
  10552. #u16145 {
  10553. border-width:0px;
  10554. position:absolute;
  10555. left:471px;
  10556. top:1106px;
  10557. width:20px;
  10558. height:20px;
  10559. display:flex;
  10560. }
  10561. #u16145 .text {
  10562. position:absolute;
  10563. align-self:center;
  10564. padding:2px 2px 2px 2px;
  10565. box-sizing:border-box;
  10566. width:100%;
  10567. }
  10568. #u16145_text {
  10569. border-width:0px;
  10570. word-wrap:break-word;
  10571. text-transform:none;
  10572. visibility:hidden;
  10573. }
  10574. #u16146_div {
  10575. border-width:0px;
  10576. position:absolute;
  10577. left:0px;
  10578. top:0px;
  10579. width:300px;
  10580. height:44px;
  10581. background:inherit;
  10582. background-color:rgba(255, 255, 255, 0);
  10583. border:none;
  10584. border-radius:0px;
  10585. -moz-box-shadow:none;
  10586. -webkit-box-shadow:none;
  10587. box-shadow:none;
  10588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10589. font-weight:400;
  10590. font-style:normal;
  10591. font-size:14px;
  10592. color:#7F7F7F;
  10593. line-height:22px;
  10594. }
  10595. #u16146 {
  10596. border-width:0px;
  10597. position:absolute;
  10598. left:502px;
  10599. top:1136px;
  10600. width:300px;
  10601. height:44px;
  10602. display:flex;
  10603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10604. font-weight:400;
  10605. font-style:normal;
  10606. font-size:14px;
  10607. color:#7F7F7F;
  10608. line-height:22px;
  10609. }
  10610. #u16146 .text {
  10611. position:absolute;
  10612. align-self:flex-start;
  10613. padding:0px 0px 0px 0px;
  10614. box-sizing:border-box;
  10615. width:100%;
  10616. }
  10617. #u16146_text {
  10618. border-width:0px;
  10619. word-wrap:break-word;
  10620. text-transform:none;
  10621. }
  10622. #u16147_div {
  10623. border-width:0px;
  10624. position:absolute;
  10625. left:0px;
  10626. top:0px;
  10627. width:66px;
  10628. height:32px;
  10629. background:inherit;
  10630. background-color:rgba(255, 255, 255, 1);
  10631. box-sizing:border-box;
  10632. border-width:1px;
  10633. border-style:solid;
  10634. border-color:rgba(217, 217, 217, 1);
  10635. border-radius:4px;
  10636. -moz-box-shadow:none;
  10637. -webkit-box-shadow:none;
  10638. box-shadow:none;
  10639. font-family:'Microsoft YaHei', sans-serif;
  10640. font-weight:400;
  10641. font-style:normal;
  10642. font-size:14px;
  10643. color:rgba(0, 0, 0, 0.647058823529412);
  10644. line-height:21px;
  10645. }
  10646. #u16147 {
  10647. border-width:0px;
  10648. position:absolute;
  10649. left:658px;
  10650. top:1209px;
  10651. width:66px;
  10652. height:32px;
  10653. display:flex;
  10654. font-family:'Microsoft YaHei', sans-serif;
  10655. font-weight:400;
  10656. font-style:normal;
  10657. font-size:14px;
  10658. color:rgba(0, 0, 0, 0.647058823529412);
  10659. line-height:21px;
  10660. }
  10661. #u16147 .text {
  10662. position:absolute;
  10663. align-self:center;
  10664. padding:2px 16px 2px 16px;
  10665. box-sizing:border-box;
  10666. width:100%;
  10667. }
  10668. #u16147_text {
  10669. border-width:0px;
  10670. white-space:nowrap;
  10671. text-transform:none;
  10672. }