styles.css 110 KB

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