styles.css 126 KB

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