styles.css 105 KB

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