styles.css 105 KB

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