styles.css 110 KB

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