styles.css 113 KB

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