styles.css 218 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-97px;
  6. width:1826px;
  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. #u15839 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u15840_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:800px;
  33. height:60px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(242, 242, 242, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u15840 {
  53. border-width:0px;
  54. position:absolute;
  55. left:2534px;
  56. top:93px;
  57. width:800px;
  58. height:60px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u15840 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u15840_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u15841_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:119px;
  87. height:35px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  101. font-weight:500;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u15841 {
  106. border-width:0px;
  107. position:absolute;
  108. left:2565px;
  109. top:106px;
  110. width:119px;
  111. height:35px;
  112. display:flex;
  113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  114. font-weight:500;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u15841 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:5px 10px 5px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u15841_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u15842_div {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:800px;
  136. height:1142px;
  137. background:inherit;
  138. background-color:rgba(255, 255, 255, 1);
  139. box-sizing:border-box;
  140. border-width:1px;
  141. border-style:solid;
  142. border-color:rgba(242, 242, 242, 1);
  143. border-radius:0px;
  144. -moz-box-shadow:none;
  145. -webkit-box-shadow:none;
  146. box-shadow:none;
  147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  148. font-weight:400;
  149. font-style:normal;
  150. font-size:14px;
  151. color:#AAAAAA;
  152. text-align:center;
  153. line-height:30px;
  154. }
  155. #u15842 {
  156. border-width:0px;
  157. position:absolute;
  158. left:2534px;
  159. top:153px;
  160. width:800px;
  161. height:1142px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:14px;
  167. color:#AAAAAA;
  168. text-align:center;
  169. line-height:30px;
  170. }
  171. #u15842 .text {
  172. position:absolute;
  173. align-self:center;
  174. padding:5px 10px 5px 10px;
  175. box-sizing:border-box;
  176. width:100%;
  177. }
  178. #u15842_text {
  179. border-width:0px;
  180. word-wrap:break-word;
  181. text-transform:none;
  182. visibility:hidden;
  183. }
  184. #u15843 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u15844_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:800px;
  198. height:60px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 1);
  201. box-sizing:border-box;
  202. border-width:1px;
  203. border-style:solid;
  204. border-color:rgba(215, 215, 215, 1);
  205. border-radius:0px;
  206. -moz-box-shadow:none;
  207. -webkit-box-shadow:none;
  208. box-shadow:none;
  209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:14px;
  213. color:#AAAAAA;
  214. text-align:center;
  215. line-height:30px;
  216. }
  217. #u15844 {
  218. border-width:0px;
  219. position:absolute;
  220. left:2534px;
  221. top:1234px;
  222. width:800px;
  223. height:60px;
  224. display:flex;
  225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  226. font-weight:400;
  227. font-style:normal;
  228. font-size:14px;
  229. color:#AAAAAA;
  230. text-align:center;
  231. line-height:30px;
  232. }
  233. #u15844 .text {
  234. position:absolute;
  235. align-self:center;
  236. padding:5px 10px 5px 10px;
  237. box-sizing:border-box;
  238. width:100%;
  239. }
  240. #u15844_text {
  241. border-width:0px;
  242. word-wrap:break-word;
  243. text-transform:none;
  244. visibility:hidden;
  245. }
  246. #u15845_img {
  247. border-width:0px;
  248. position:absolute;
  249. left:0px;
  250. top:0px;
  251. width:80px;
  252. height:30px;
  253. }
  254. #u15845 {
  255. border-width:0px;
  256. position:absolute;
  257. left:3214px;
  258. top:1249px;
  259. width:80px;
  260. height:30px;
  261. display:flex;
  262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  263. font-weight:400;
  264. font-style:normal;
  265. font-size:14px;
  266. color:#FFFFFF;
  267. }
  268. #u15845 .text {
  269. position:absolute;
  270. align-self:center;
  271. padding:2px 2px 2px 2px;
  272. box-sizing:border-box;
  273. width:100%;
  274. }
  275. #u15845_text {
  276. border-width:0px;
  277. word-wrap:break-word;
  278. text-transform:none;
  279. }
  280. #u15846_div {
  281. border-width:0px;
  282. position:absolute;
  283. left:0px;
  284. top:0px;
  285. width:80px;
  286. height:30px;
  287. background:inherit;
  288. background-color:rgba(255, 255, 255, 1);
  289. box-sizing:border-box;
  290. border-width:1px;
  291. border-style:solid;
  292. border-color:rgba(170, 170, 170, 1);
  293. border-radius:4px;
  294. -moz-box-shadow:none;
  295. -webkit-box-shadow:none;
  296. box-shadow:none;
  297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  298. font-weight:400;
  299. font-style:normal;
  300. font-size:14px;
  301. }
  302. #u15846 {
  303. border-width:0px;
  304. position:absolute;
  305. left:3124px;
  306. top:1249px;
  307. width:80px;
  308. height:30px;
  309. display:flex;
  310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  311. font-weight:400;
  312. font-style:normal;
  313. font-size:14px;
  314. }
  315. #u15846 .text {
  316. position:absolute;
  317. align-self:center;
  318. padding:2px 2px 2px 2px;
  319. box-sizing:border-box;
  320. width:100%;
  321. }
  322. #u15846_text {
  323. border-width:0px;
  324. word-wrap:break-word;
  325. text-transform:none;
  326. }
  327. #u15847_div {
  328. border-width:0px;
  329. position:absolute;
  330. left:0px;
  331. top:0px;
  332. width:73px;
  333. height:40px;
  334. background:inherit;
  335. background-color:rgba(255, 255, 255, 0);
  336. border:none;
  337. border-left:0px;
  338. border-top:0px;
  339. border-right:0px;
  340. border-radius:0px;
  341. border-bottom-right-radius:0px;
  342. border-bottom-left-radius:0px;
  343. -moz-box-shadow:none;
  344. -webkit-box-shadow:none;
  345. box-shadow:none;
  346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  347. font-weight:500;
  348. font-style:normal;
  349. font-size:18px;
  350. }
  351. #u15847 {
  352. border-width:0px;
  353. position:absolute;
  354. left:2573px;
  355. top:179px;
  356. width:73px;
  357. height:40px;
  358. display:flex;
  359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  360. font-weight:500;
  361. font-style:normal;
  362. font-size:18px;
  363. }
  364. #u15847 .text {
  365. position:absolute;
  366. align-self:center;
  367. padding:0px 0px 0px 0px;
  368. box-sizing:border-box;
  369. width:100%;
  370. }
  371. #u15847_text {
  372. border-width:0px;
  373. white-space:nowrap;
  374. text-transform:none;
  375. }
  376. #u15848_div {
  377. border-width:0px;
  378. position:absolute;
  379. left:0px;
  380. top:0px;
  381. width:40px;
  382. height:40px;
  383. background:inherit;
  384. background-color:rgba(255, 255, 255, 0);
  385. border:none;
  386. border-top:0px;
  387. border-right:0px;
  388. border-bottom:0px;
  389. border-radius:0px;
  390. border-top-left-radius:0px;
  391. border-bottom-left-radius:0px;
  392. -moz-box-shadow:none;
  393. -webkit-box-shadow:none;
  394. box-shadow:none;
  395. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  396. font-weight:500;
  397. font-style:normal;
  398. font-size:24px;
  399. text-align:center;
  400. }
  401. #u15848 {
  402. border-width:0px;
  403. position:absolute;
  404. left:3294px;
  405. top:93px;
  406. width:40px;
  407. height:40px;
  408. display:flex;
  409. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  410. font-weight:500;
  411. font-style:normal;
  412. font-size:24px;
  413. text-align:center;
  414. }
  415. #u15848 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:5px 10px 5px 0px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u15848_text {
  423. border-width:0px;
  424. word-wrap:break-word;
  425. text-transform:none;
  426. }
  427. #u15849 {
  428. border-width:0px;
  429. position:absolute;
  430. left:0px;
  431. top:0px;
  432. width:0px;
  433. height:0px;
  434. }
  435. #u15850_div {
  436. border-width:0px;
  437. position:absolute;
  438. left:0px;
  439. top:0px;
  440. width:140px;
  441. height:40px;
  442. background:inherit;
  443. background-color:rgba(255, 255, 255, 1);
  444. box-sizing:border-box;
  445. border-width:1px;
  446. border-style:solid;
  447. border-color:rgba(215, 215, 215, 1);
  448. border-radius:4px;
  449. -moz-box-shadow:none;
  450. -webkit-box-shadow:none;
  451. box-shadow:none;
  452. font-size:14px;
  453. }
  454. #u15850 {
  455. border-width:0px;
  456. position:absolute;
  457. left:2573px;
  458. top:229px;
  459. width:140px;
  460. height:40px;
  461. display:flex;
  462. font-size:14px;
  463. }
  464. #u15850 .text {
  465. position:absolute;
  466. align-self:center;
  467. padding:2px 2px 2px 2px;
  468. box-sizing:border-box;
  469. width:100%;
  470. }
  471. #u15850_text {
  472. border-width:0px;
  473. word-wrap:break-word;
  474. text-transform:none;
  475. visibility:hidden;
  476. }
  477. #u15851_input {
  478. position:absolute;
  479. left:0px;
  480. top:0px;
  481. width:134px;
  482. height:31px;
  483. padding:2px 2px 2px 2px;
  484. font-family:'ArialMT', 'Arial', sans-serif;
  485. font-weight:400;
  486. font-style:normal;
  487. font-size:14px;
  488. letter-spacing:normal;
  489. color:#AAAAAA;
  490. vertical-align:none;
  491. text-align:left;
  492. text-transform:none;
  493. background-color:transparent;
  494. border-color:transparent;
  495. }
  496. #u15851_input.disabled {
  497. position:absolute;
  498. left:0px;
  499. top:0px;
  500. width:134px;
  501. height:31px;
  502. padding:2px 2px 2px 2px;
  503. font-family:'ArialMT', 'Arial', sans-serif;
  504. font-weight:400;
  505. font-style:normal;
  506. font-size:14px;
  507. letter-spacing:normal;
  508. color:#AAAAAA;
  509. vertical-align:none;
  510. text-align:left;
  511. text-transform:none;
  512. background-color:transparent;
  513. border-color:transparent;
  514. }
  515. #u15851_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:134px;
  521. height:31px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 1);
  524. border:none;
  525. border-radius:0px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-size:14px;
  530. color:#AAAAAA;
  531. }
  532. #u15851 {
  533. border-width:0px;
  534. position:absolute;
  535. left:2577px;
  536. top:232px;
  537. width:134px;
  538. height:31px;
  539. display:flex;
  540. font-size:14px;
  541. color:#AAAAAA;
  542. }
  543. #u15851 .text {
  544. position:absolute;
  545. align-self:flex-start;
  546. padding:2px 2px 2px 2px;
  547. box-sizing:border-box;
  548. width:100%;
  549. }
  550. #u15851_div.disabled {
  551. border-width:0px;
  552. position:absolute;
  553. left:0px;
  554. top:0px;
  555. width:134px;
  556. height:31px;
  557. background:inherit;
  558. background-color:rgba(240, 240, 240, 1);
  559. border:none;
  560. border-radius:0px;
  561. -moz-box-shadow:none;
  562. -webkit-box-shadow:none;
  563. box-shadow:none;
  564. font-size:14px;
  565. color:#AAAAAA;
  566. }
  567. #u15851.disabled {
  568. }
  569. .u15851_input_option {
  570. font-size:14px;
  571. }
  572. #u15852 {
  573. border-width:0px;
  574. position:absolute;
  575. left:0px;
  576. top:0px;
  577. width:0px;
  578. height:0px;
  579. }
  580. #u15853_div {
  581. border-width:0px;
  582. position:absolute;
  583. left:0px;
  584. top:0px;
  585. width:120px;
  586. height:40px;
  587. background:inherit;
  588. background-color:rgba(255, 255, 255, 1);
  589. box-sizing:border-box;
  590. border-width:1px;
  591. border-style:solid;
  592. border-color:rgba(215, 215, 215, 1);
  593. border-radius:4px;
  594. -moz-box-shadow:none;
  595. -webkit-box-shadow:none;
  596. box-shadow:none;
  597. font-size:14px;
  598. }
  599. #u15853 {
  600. border-width:0px;
  601. position:absolute;
  602. left:2723px;
  603. top:229px;
  604. width:120px;
  605. height:40px;
  606. display:flex;
  607. font-size:14px;
  608. }
  609. #u15853 .text {
  610. position:absolute;
  611. align-self:center;
  612. padding:2px 2px 2px 2px;
  613. box-sizing:border-box;
  614. width:100%;
  615. }
  616. #u15853_text {
  617. border-width:0px;
  618. word-wrap:break-word;
  619. text-transform:none;
  620. visibility:hidden;
  621. }
  622. #u15854_input {
  623. position:absolute;
  624. left:0px;
  625. top:0px;
  626. width:115px;
  627. height:31px;
  628. padding:2px 2px 2px 2px;
  629. font-family:'ArialMT', 'Arial', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:14px;
  633. letter-spacing:normal;
  634. color:#AAAAAA;
  635. vertical-align:none;
  636. text-align:left;
  637. text-transform:none;
  638. background-color:transparent;
  639. border-color:transparent;
  640. }
  641. #u15854_input.disabled {
  642. position:absolute;
  643. left:0px;
  644. top:0px;
  645. width:115px;
  646. height:31px;
  647. padding:2px 2px 2px 2px;
  648. font-family:'ArialMT', 'Arial', sans-serif;
  649. font-weight:400;
  650. font-style:normal;
  651. font-size:14px;
  652. letter-spacing:normal;
  653. color:#AAAAAA;
  654. vertical-align:none;
  655. text-align:left;
  656. text-transform:none;
  657. background-color:transparent;
  658. border-color:transparent;
  659. }
  660. #u15854_div {
  661. border-width:0px;
  662. position:absolute;
  663. left:0px;
  664. top:0px;
  665. width:115px;
  666. height:31px;
  667. background:inherit;
  668. background-color:rgba(255, 255, 255, 1);
  669. border:none;
  670. border-radius:0px;
  671. -moz-box-shadow:none;
  672. -webkit-box-shadow:none;
  673. box-shadow:none;
  674. font-size:14px;
  675. color:#AAAAAA;
  676. }
  677. #u15854 {
  678. border-width:0px;
  679. position:absolute;
  680. left:2727px;
  681. top:232px;
  682. width:115px;
  683. height:31px;
  684. display:flex;
  685. font-size:14px;
  686. color:#AAAAAA;
  687. }
  688. #u15854 .text {
  689. position:absolute;
  690. align-self:flex-start;
  691. padding:2px 2px 2px 2px;
  692. box-sizing:border-box;
  693. width:100%;
  694. }
  695. #u15854_div.disabled {
  696. border-width:0px;
  697. position:absolute;
  698. left:0px;
  699. top:0px;
  700. width:115px;
  701. height:31px;
  702. background:inherit;
  703. background-color:rgba(240, 240, 240, 1);
  704. border:none;
  705. border-radius:0px;
  706. -moz-box-shadow:none;
  707. -webkit-box-shadow:none;
  708. box-shadow:none;
  709. font-size:14px;
  710. color:#AAAAAA;
  711. }
  712. #u15854.disabled {
  713. }
  714. .u15854_input_option {
  715. font-size:14px;
  716. }
  717. #u15855_div {
  718. border-width:0px;
  719. position:absolute;
  720. left:0px;
  721. top:0px;
  722. width:64px;
  723. height:40px;
  724. background:inherit;
  725. background-color:rgba(255, 255, 255, 0);
  726. border:none;
  727. border-left:0px;
  728. border-top:0px;
  729. border-right:0px;
  730. border-radius:0px;
  731. border-bottom-right-radius:0px;
  732. border-bottom-left-radius:0px;
  733. -moz-box-shadow:none;
  734. -webkit-box-shadow:none;
  735. box-shadow:none;
  736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  737. font-weight:400;
  738. font-style:normal;
  739. font-size:14px;
  740. }
  741. #u15855 {
  742. border-width:0px;
  743. position:absolute;
  744. left:2773px;
  745. top:444px;
  746. width:64px;
  747. height:40px;
  748. display:flex;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:14px;
  753. }
  754. #u15855 .text {
  755. position:absolute;
  756. align-self:center;
  757. padding:0px 0px 0px 0px;
  758. box-sizing:border-box;
  759. width:100%;
  760. }
  761. #u15855_text {
  762. border-width:0px;
  763. white-space:nowrap;
  764. text-transform:none;
  765. }
  766. #u15856 {
  767. border-width:0px;
  768. position:absolute;
  769. left:0px;
  770. top:0px;
  771. width:0px;
  772. height:0px;
  773. }
  774. #u15857_div {
  775. border-width:0px;
  776. position:absolute;
  777. left:0px;
  778. top:0px;
  779. width:200px;
  780. height:40px;
  781. background:inherit;
  782. background-color:rgba(255, 255, 255, 1);
  783. box-sizing:border-box;
  784. border-width:1px;
  785. border-style:solid;
  786. border-color:rgba(201, 201, 201, 1);
  787. border-radius:4px;
  788. -moz-box-shadow:none;
  789. -webkit-box-shadow:none;
  790. box-shadow:none;
  791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  792. font-weight:400;
  793. font-style:normal;
  794. font-size:14px;
  795. text-align:right;
  796. }
  797. #u15857 {
  798. border-width:0px;
  799. position:absolute;
  800. left:3003px;
  801. top:483px;
  802. width:200px;
  803. height:40px;
  804. display:flex;
  805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  806. font-weight:400;
  807. font-style:normal;
  808. font-size:14px;
  809. text-align:right;
  810. }
  811. #u15857 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 8px 2px 8px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u15857_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u15858_input {
  825. position:absolute;
  826. left:0px;
  827. top:0px;
  828. width:161px;
  829. height:33px;
  830. padding:2px 2px 2px 2px;
  831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  832. font-weight:400;
  833. font-style:normal;
  834. font-size:14px;
  835. letter-spacing:normal;
  836. color:#D7D7D7;
  837. vertical-align:none;
  838. text-align:left;
  839. text-transform:none;
  840. background-color:transparent;
  841. border-color:transparent;
  842. }
  843. #u15858_input.disabled {
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:161px;
  848. height:33px;
  849. padding:2px 2px 2px 2px;
  850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  851. font-weight:400;
  852. font-style:normal;
  853. font-size:14px;
  854. letter-spacing:normal;
  855. color:#D7D7D7;
  856. vertical-align:none;
  857. text-align:left;
  858. text-transform:none;
  859. background-color:transparent;
  860. border-color:transparent;
  861. }
  862. #u15858_div {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:161px;
  868. height:33px;
  869. background:inherit;
  870. background-color:rgba(255, 255, 255, 0);
  871. border:none;
  872. border-radius:0px;
  873. -moz-box-shadow:none;
  874. -webkit-box-shadow:none;
  875. box-shadow:none;
  876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  877. font-weight:400;
  878. font-style:normal;
  879. font-size:14px;
  880. color:#D7D7D7;
  881. }
  882. #u15858 {
  883. border-width:0px;
  884. position:absolute;
  885. left:3011px;
  886. top:486px;
  887. width:161px;
  888. height:33px;
  889. display:flex;
  890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  891. font-weight:400;
  892. font-style:normal;
  893. font-size:14px;
  894. color:#D7D7D7;
  895. }
  896. #u15858 .text {
  897. position:absolute;
  898. align-self:center;
  899. padding:2px 2px 2px 2px;
  900. box-sizing:border-box;
  901. width:100%;
  902. }
  903. #u15858_div.disabled {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:161px;
  909. height:33px;
  910. background:inherit;
  911. background-color:rgba(240, 240, 240, 1);
  912. border:none;
  913. border-radius:0px;
  914. -moz-box-shadow:none;
  915. -webkit-box-shadow:none;
  916. box-shadow:none;
  917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  918. font-weight:400;
  919. font-style:normal;
  920. font-size:14px;
  921. color:#D7D7D7;
  922. }
  923. #u15858.disabled {
  924. }
  925. #u15859_div {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:78px;
  931. height:40px;
  932. background:inherit;
  933. background-color:rgba(255, 255, 255, 0);
  934. border:none;
  935. border-left:0px;
  936. border-top:0px;
  937. border-right:0px;
  938. border-radius:0px;
  939. border-bottom-right-radius:0px;
  940. border-bottom-left-radius:0px;
  941. -moz-box-shadow:none;
  942. -webkit-box-shadow:none;
  943. box-shadow:none;
  944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  945. font-weight:400;
  946. font-style:normal;
  947. font-size:14px;
  948. }
  949. #u15859 {
  950. border-width:0px;
  951. position:absolute;
  952. left:3003px;
  953. top:444px;
  954. width:78px;
  955. height:40px;
  956. display:flex;
  957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  958. font-weight:400;
  959. font-style:normal;
  960. font-size:14px;
  961. }
  962. #u15859 .text {
  963. position:absolute;
  964. align-self:center;
  965. padding:0px 0px 0px 0px;
  966. box-sizing:border-box;
  967. width:100%;
  968. }
  969. #u15859_text {
  970. border-width:0px;
  971. white-space:nowrap;
  972. text-transform:none;
  973. }
  974. #u15860 {
  975. border-width:0px;
  976. position:absolute;
  977. left:0px;
  978. top:0px;
  979. width:0px;
  980. height:0px;
  981. }
  982. #u15861_div {
  983. border-width:0px;
  984. position:absolute;
  985. left:0px;
  986. top:0px;
  987. width:200px;
  988. height:40px;
  989. background:inherit;
  990. background-color:rgba(255, 255, 255, 1);
  991. box-sizing:border-box;
  992. border-width:1px;
  993. border-style:solid;
  994. border-color:rgba(201, 201, 201, 1);
  995. border-radius:4px;
  996. -moz-box-shadow:none;
  997. -webkit-box-shadow:none;
  998. box-shadow:none;
  999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1000. font-weight:400;
  1001. font-style:normal;
  1002. font-size:14px;
  1003. text-align:right;
  1004. }
  1005. #u15861 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:2773px;
  1009. top:662px;
  1010. width:200px;
  1011. height:40px;
  1012. display:flex;
  1013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1014. font-weight:400;
  1015. font-style:normal;
  1016. font-size:14px;
  1017. text-align:right;
  1018. }
  1019. #u15861 .text {
  1020. position:absolute;
  1021. align-self:center;
  1022. padding:2px 8px 2px 8px;
  1023. box-sizing:border-box;
  1024. width:100%;
  1025. }
  1026. #u15861_text {
  1027. border-width:0px;
  1028. word-wrap:break-word;
  1029. text-transform:none;
  1030. visibility:hidden;
  1031. }
  1032. #u15862_input {
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:161px;
  1037. height:33px;
  1038. padding:2px 2px 2px 2px;
  1039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1040. font-weight:400;
  1041. font-style:normal;
  1042. font-size:14px;
  1043. letter-spacing:normal;
  1044. color:#D7D7D7;
  1045. vertical-align:none;
  1046. text-align:left;
  1047. text-transform:none;
  1048. background-color:transparent;
  1049. border-color:transparent;
  1050. }
  1051. #u15862_input.disabled {
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:161px;
  1056. height:33px;
  1057. padding:2px 2px 2px 2px;
  1058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1059. font-weight:400;
  1060. font-style:normal;
  1061. font-size:14px;
  1062. letter-spacing:normal;
  1063. color:#D7D7D7;
  1064. vertical-align:none;
  1065. text-align:left;
  1066. text-transform:none;
  1067. background-color:transparent;
  1068. border-color:transparent;
  1069. }
  1070. #u15862_div {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:161px;
  1076. height:33px;
  1077. background:inherit;
  1078. background-color:rgba(255, 255, 255, 0);
  1079. border:none;
  1080. border-radius:0px;
  1081. -moz-box-shadow:none;
  1082. -webkit-box-shadow:none;
  1083. box-shadow:none;
  1084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1085. font-weight:400;
  1086. font-style:normal;
  1087. font-size:14px;
  1088. color:#D7D7D7;
  1089. }
  1090. #u15862 {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:2781px;
  1094. top:665px;
  1095. width:161px;
  1096. height:33px;
  1097. display:flex;
  1098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1099. font-weight:400;
  1100. font-style:normal;
  1101. font-size:14px;
  1102. color:#D7D7D7;
  1103. }
  1104. #u15862 .text {
  1105. position:absolute;
  1106. align-self:center;
  1107. padding:2px 2px 2px 2px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u15862_div.disabled {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:161px;
  1117. height:33px;
  1118. background:inherit;
  1119. background-color:rgba(240, 240, 240, 1);
  1120. border:none;
  1121. border-radius:0px;
  1122. -moz-box-shadow:none;
  1123. -webkit-box-shadow:none;
  1124. box-shadow:none;
  1125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1126. font-weight:400;
  1127. font-style:normal;
  1128. font-size:14px;
  1129. color:#D7D7D7;
  1130. }
  1131. #u15862.disabled {
  1132. }
  1133. #u15863_div {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:0px;
  1137. top:0px;
  1138. width:50px;
  1139. height:40px;
  1140. background:inherit;
  1141. background-color:rgba(255, 255, 255, 0);
  1142. border:none;
  1143. border-left:0px;
  1144. border-top:0px;
  1145. border-right:0px;
  1146. border-radius:0px;
  1147. border-bottom-right-radius:0px;
  1148. border-bottom-left-radius:0px;
  1149. -moz-box-shadow:none;
  1150. -webkit-box-shadow:none;
  1151. box-shadow:none;
  1152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1153. font-weight:400;
  1154. font-style:normal;
  1155. font-size:14px;
  1156. }
  1157. #u15863 {
  1158. border-width:0px;
  1159. position:absolute;
  1160. left:2773px;
  1161. top:623px;
  1162. width:50px;
  1163. height:40px;
  1164. display:flex;
  1165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1166. font-weight:400;
  1167. font-style:normal;
  1168. font-size:14px;
  1169. }
  1170. #u15863 .text {
  1171. position:absolute;
  1172. align-self:center;
  1173. padding:0px 0px 0px 0px;
  1174. box-sizing:border-box;
  1175. width:100%;
  1176. }
  1177. #u15863_text {
  1178. border-width:0px;
  1179. white-space:nowrap;
  1180. text-transform:none;
  1181. }
  1182. #u15864_div {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:0px;
  1186. top:0px;
  1187. width:71px;
  1188. height:40px;
  1189. background:inherit;
  1190. background-color:rgba(255, 255, 255, 0);
  1191. border:none;
  1192. border-left:0px;
  1193. border-top:0px;
  1194. border-right:0px;
  1195. border-radius:0px;
  1196. border-bottom-right-radius:0px;
  1197. border-bottom-left-radius:0px;
  1198. -moz-box-shadow:none;
  1199. -webkit-box-shadow:none;
  1200. box-shadow:none;
  1201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1202. font-weight:400;
  1203. font-style:normal;
  1204. font-size:14px;
  1205. }
  1206. #u15864 {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:2773px;
  1210. top:802px;
  1211. width:71px;
  1212. height:40px;
  1213. display:flex;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. font-size:14px;
  1218. }
  1219. #u15864 .text {
  1220. position:absolute;
  1221. align-self:center;
  1222. padding:0px 0px 0px 0px;
  1223. box-sizing:border-box;
  1224. width:100%;
  1225. }
  1226. #u15864_text {
  1227. border-width:0px;
  1228. white-space:nowrap;
  1229. text-transform:none;
  1230. }
  1231. #u15865 {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:0px;
  1237. height:0px;
  1238. }
  1239. #u15866_div {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:200px;
  1245. height:40px;
  1246. background:inherit;
  1247. background-color:rgba(255, 255, 255, 1);
  1248. box-sizing:border-box;
  1249. border-width:1px;
  1250. border-style:solid;
  1251. border-color:rgba(201, 201, 201, 1);
  1252. border-radius:4px;
  1253. -moz-box-shadow:none;
  1254. -webkit-box-shadow:none;
  1255. box-shadow:none;
  1256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1257. font-weight:400;
  1258. font-style:normal;
  1259. font-size:14px;
  1260. text-align:right;
  1261. }
  1262. #u15866 {
  1263. border-width:0px;
  1264. position:absolute;
  1265. left:3003px;
  1266. top:841px;
  1267. width:200px;
  1268. height:40px;
  1269. display:flex;
  1270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1271. font-weight:400;
  1272. font-style:normal;
  1273. font-size:14px;
  1274. text-align:right;
  1275. }
  1276. #u15866 .text {
  1277. position:absolute;
  1278. align-self:center;
  1279. padding:2px 8px 2px 8px;
  1280. box-sizing:border-box;
  1281. width:100%;
  1282. }
  1283. #u15866_text {
  1284. border-width:0px;
  1285. word-wrap:break-word;
  1286. text-transform:none;
  1287. visibility:hidden;
  1288. }
  1289. #u15867_input {
  1290. position:absolute;
  1291. left:0px;
  1292. top:0px;
  1293. width:161px;
  1294. height:33px;
  1295. padding:2px 2px 2px 2px;
  1296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1297. font-weight:400;
  1298. font-style:normal;
  1299. font-size:14px;
  1300. letter-spacing:normal;
  1301. color:#D7D7D7;
  1302. vertical-align:none;
  1303. text-align:left;
  1304. text-transform:none;
  1305. background-color:transparent;
  1306. border-color:transparent;
  1307. }
  1308. #u15867_input.disabled {
  1309. position:absolute;
  1310. left:0px;
  1311. top:0px;
  1312. width:161px;
  1313. height:33px;
  1314. padding:2px 2px 2px 2px;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:14px;
  1319. letter-spacing:normal;
  1320. color:#D7D7D7;
  1321. vertical-align:none;
  1322. text-align:left;
  1323. text-transform:none;
  1324. background-color:transparent;
  1325. border-color:transparent;
  1326. }
  1327. #u15867_div {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:161px;
  1333. height:33px;
  1334. background:inherit;
  1335. background-color:rgba(255, 255, 255, 0);
  1336. border:none;
  1337. border-radius:0px;
  1338. -moz-box-shadow:none;
  1339. -webkit-box-shadow:none;
  1340. box-shadow:none;
  1341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. font-size:14px;
  1345. color:#D7D7D7;
  1346. }
  1347. #u15867 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:3011px;
  1351. top:844px;
  1352. width:161px;
  1353. height:33px;
  1354. display:flex;
  1355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1356. font-weight:400;
  1357. font-style:normal;
  1358. font-size:14px;
  1359. color:#D7D7D7;
  1360. }
  1361. #u15867 .text {
  1362. position:absolute;
  1363. align-self:center;
  1364. padding:2px 2px 2px 2px;
  1365. box-sizing:border-box;
  1366. width:100%;
  1367. }
  1368. #u15867_div.disabled {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:0px;
  1372. top:0px;
  1373. width:161px;
  1374. height:33px;
  1375. background:inherit;
  1376. background-color:rgba(240, 240, 240, 1);
  1377. border:none;
  1378. border-radius:0px;
  1379. -moz-box-shadow:none;
  1380. -webkit-box-shadow:none;
  1381. box-shadow:none;
  1382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1383. font-weight:400;
  1384. font-style:normal;
  1385. font-size:14px;
  1386. color:#D7D7D7;
  1387. }
  1388. #u15867.disabled {
  1389. }
  1390. #u15868_div {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:0px;
  1394. top:0px;
  1395. width:85px;
  1396. height:40px;
  1397. background:inherit;
  1398. background-color:rgba(255, 255, 255, 0);
  1399. border:none;
  1400. border-left:0px;
  1401. border-top:0px;
  1402. border-right:0px;
  1403. border-radius:0px;
  1404. border-bottom-right-radius:0px;
  1405. border-bottom-left-radius:0px;
  1406. -moz-box-shadow:none;
  1407. -webkit-box-shadow:none;
  1408. box-shadow:none;
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. font-size:14px;
  1413. }
  1414. #u15868 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:3003px;
  1418. top:802px;
  1419. width:85px;
  1420. height:40px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:14px;
  1426. }
  1427. #u15868 .text {
  1428. position:absolute;
  1429. align-self:center;
  1430. padding:0px 0px 0px 0px;
  1431. box-sizing:border-box;
  1432. width:100%;
  1433. }
  1434. #u15868_text {
  1435. border-width:0px;
  1436. white-space:nowrap;
  1437. text-transform:none;
  1438. }
  1439. #u15869 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:0px;
  1443. top:0px;
  1444. width:0px;
  1445. height:0px;
  1446. }
  1447. #u15870_div {
  1448. border-width:0px;
  1449. position:absolute;
  1450. left:0px;
  1451. top:0px;
  1452. width:200px;
  1453. height:40px;
  1454. background:inherit;
  1455. background-color:rgba(255, 255, 255, 1);
  1456. box-sizing:border-box;
  1457. border-width:1px;
  1458. border-style:solid;
  1459. border-color:rgba(201, 201, 201, 1);
  1460. border-radius:4px;
  1461. -moz-box-shadow:none;
  1462. -webkit-box-shadow:none;
  1463. box-shadow:none;
  1464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1465. font-weight:400;
  1466. font-style:normal;
  1467. font-size:14px;
  1468. text-align:right;
  1469. }
  1470. #u15870 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:2773px;
  1474. top:842px;
  1475. width:200px;
  1476. height:40px;
  1477. display:flex;
  1478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1479. font-weight:400;
  1480. font-style:normal;
  1481. font-size:14px;
  1482. text-align:right;
  1483. }
  1484. #u15870 .text {
  1485. position:absolute;
  1486. align-self:center;
  1487. padding:2px 8px 2px 8px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u15870_text {
  1492. border-width:0px;
  1493. word-wrap:break-word;
  1494. text-transform:none;
  1495. visibility:hidden;
  1496. }
  1497. #u15871_input {
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:161px;
  1502. height:33px;
  1503. padding:2px 2px 2px 2px;
  1504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1505. font-weight:400;
  1506. font-style:normal;
  1507. font-size:14px;
  1508. letter-spacing:normal;
  1509. color:#D7D7D7;
  1510. vertical-align:none;
  1511. text-align:left;
  1512. text-transform:none;
  1513. background-color:transparent;
  1514. border-color:transparent;
  1515. }
  1516. #u15871_input.disabled {
  1517. position:absolute;
  1518. left:0px;
  1519. top:0px;
  1520. width:161px;
  1521. height:33px;
  1522. padding:2px 2px 2px 2px;
  1523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1524. font-weight:400;
  1525. font-style:normal;
  1526. font-size:14px;
  1527. letter-spacing:normal;
  1528. color:#D7D7D7;
  1529. vertical-align:none;
  1530. text-align:left;
  1531. text-transform:none;
  1532. background-color:transparent;
  1533. border-color:transparent;
  1534. }
  1535. #u15871_div {
  1536. border-width:0px;
  1537. position:absolute;
  1538. left:0px;
  1539. top:0px;
  1540. width:161px;
  1541. height:33px;
  1542. background:inherit;
  1543. background-color:rgba(255, 255, 255, 0);
  1544. border:none;
  1545. border-radius:0px;
  1546. -moz-box-shadow:none;
  1547. -webkit-box-shadow:none;
  1548. box-shadow:none;
  1549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:14px;
  1553. color:#D7D7D7;
  1554. }
  1555. #u15871 {
  1556. border-width:0px;
  1557. position:absolute;
  1558. left:2781px;
  1559. top:845px;
  1560. width:161px;
  1561. height:33px;
  1562. display:flex;
  1563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1564. font-weight:400;
  1565. font-style:normal;
  1566. font-size:14px;
  1567. color:#D7D7D7;
  1568. }
  1569. #u15871 .text {
  1570. position:absolute;
  1571. align-self:center;
  1572. padding:2px 2px 2px 2px;
  1573. box-sizing:border-box;
  1574. width:100%;
  1575. }
  1576. #u15871_div.disabled {
  1577. border-width:0px;
  1578. position:absolute;
  1579. left:0px;
  1580. top:0px;
  1581. width:161px;
  1582. height:33px;
  1583. background:inherit;
  1584. background-color:rgba(240, 240, 240, 1);
  1585. border:none;
  1586. border-radius:0px;
  1587. -moz-box-shadow:none;
  1588. -webkit-box-shadow:none;
  1589. box-shadow:none;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:14px;
  1594. color:#D7D7D7;
  1595. }
  1596. #u15871.disabled {
  1597. }
  1598. #u15872_div {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:0px;
  1602. top:0px;
  1603. width:64px;
  1604. height:40px;
  1605. background:inherit;
  1606. background-color:rgba(255, 255, 255, 0);
  1607. border:none;
  1608. border-left:0px;
  1609. border-top:0px;
  1610. border-right:0px;
  1611. border-radius:0px;
  1612. border-bottom-right-radius:0px;
  1613. border-bottom-left-radius:0px;
  1614. -moz-box-shadow:none;
  1615. -webkit-box-shadow:none;
  1616. box-shadow:none;
  1617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1618. font-weight:400;
  1619. font-style:normal;
  1620. font-size:14px;
  1621. }
  1622. #u15872 {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:2773px;
  1626. top:533px;
  1627. width:64px;
  1628. height:40px;
  1629. display:flex;
  1630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1631. font-weight:400;
  1632. font-style:normal;
  1633. font-size:14px;
  1634. }
  1635. #u15872 .text {
  1636. position:absolute;
  1637. align-self:center;
  1638. padding:0px 0px 0px 0px;
  1639. box-sizing:border-box;
  1640. width:100%;
  1641. }
  1642. #u15872_text {
  1643. border-width:0px;
  1644. white-space:nowrap;
  1645. text-transform:none;
  1646. }
  1647. #u15873 {
  1648. border-width:0px;
  1649. position:absolute;
  1650. left:0px;
  1651. top:0px;
  1652. width:0px;
  1653. height:0px;
  1654. }
  1655. #u15874_div {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:200px;
  1661. height:40px;
  1662. background:inherit;
  1663. background-color:rgba(255, 255, 255, 1);
  1664. box-sizing:border-box;
  1665. border-width:1px;
  1666. border-style:solid;
  1667. border-color:rgba(215, 215, 215, 1);
  1668. border-radius:4px;
  1669. -moz-box-shadow:none;
  1670. -webkit-box-shadow:none;
  1671. box-shadow:none;
  1672. font-size:14px;
  1673. }
  1674. #u15874 {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:2773px;
  1678. top:573px;
  1679. width:200px;
  1680. height:40px;
  1681. display:flex;
  1682. font-size:14px;
  1683. }
  1684. #u15874 .text {
  1685. position:absolute;
  1686. align-self:center;
  1687. padding:2px 2px 2px 2px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u15874_text {
  1692. border-width:0px;
  1693. word-wrap:break-word;
  1694. text-transform:none;
  1695. visibility:hidden;
  1696. }
  1697. #u15875_input {
  1698. position:absolute;
  1699. left:0px;
  1700. top:0px;
  1701. width:191px;
  1702. height:31px;
  1703. padding:2px 2px 2px 2px;
  1704. font-family:'ArialMT', 'Arial', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:14px;
  1708. letter-spacing:normal;
  1709. color:#AAAAAA;
  1710. vertical-align:none;
  1711. text-align:left;
  1712. text-transform:none;
  1713. background-color:transparent;
  1714. border-color:transparent;
  1715. }
  1716. #u15875_input.disabled {
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:191px;
  1721. height:31px;
  1722. padding:2px 2px 2px 2px;
  1723. font-family:'ArialMT', 'Arial', sans-serif;
  1724. font-weight:400;
  1725. font-style:normal;
  1726. font-size:14px;
  1727. letter-spacing:normal;
  1728. color:#AAAAAA;
  1729. vertical-align:none;
  1730. text-align:left;
  1731. text-transform:none;
  1732. background-color:transparent;
  1733. border-color:transparent;
  1734. }
  1735. #u15875_div {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:191px;
  1741. height:31px;
  1742. background:inherit;
  1743. background-color:rgba(255, 255, 255, 1);
  1744. border:none;
  1745. border-radius:0px;
  1746. -moz-box-shadow:none;
  1747. -webkit-box-shadow:none;
  1748. box-shadow:none;
  1749. font-size:14px;
  1750. color:#AAAAAA;
  1751. }
  1752. #u15875 {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:2779px;
  1756. top:576px;
  1757. width:191px;
  1758. height:31px;
  1759. display:flex;
  1760. font-size:14px;
  1761. color:#AAAAAA;
  1762. }
  1763. #u15875 .text {
  1764. position:absolute;
  1765. align-self:flex-start;
  1766. padding:2px 2px 2px 2px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u15875_div.disabled {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:191px;
  1776. height:31px;
  1777. background:inherit;
  1778. background-color:rgba(240, 240, 240, 1);
  1779. border:none;
  1780. border-radius:0px;
  1781. -moz-box-shadow:none;
  1782. -webkit-box-shadow:none;
  1783. box-shadow:none;
  1784. font-size:14px;
  1785. color:#AAAAAA;
  1786. }
  1787. #u15875.disabled {
  1788. }
  1789. .u15875_input_option {
  1790. font-size:14px;
  1791. }
  1792. #u15876_div {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:64px;
  1798. height:40px;
  1799. background:inherit;
  1800. background-color:rgba(255, 255, 255, 0);
  1801. border:none;
  1802. border-left:0px;
  1803. border-top:0px;
  1804. border-right:0px;
  1805. border-radius:0px;
  1806. border-bottom-right-radius:0px;
  1807. border-bottom-left-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:14px;
  1815. }
  1816. #u15876 {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:2573px;
  1820. top:359px;
  1821. width:64px;
  1822. height:40px;
  1823. display:flex;
  1824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:14px;
  1828. }
  1829. #u15876 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:0px 0px 0px 0px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u15876_text {
  1837. border-width:0px;
  1838. white-space:nowrap;
  1839. text-transform:none;
  1840. }
  1841. #u15877_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:120px;
  1847. height:120px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 1);
  1850. box-sizing:border-box;
  1851. border-width:1px;
  1852. border-style:solid;
  1853. border-color:rgba(201, 201, 201, 1);
  1854. border-radius:4px;
  1855. -moz-box-shadow:none;
  1856. -webkit-box-shadow:none;
  1857. box-shadow:none;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:38px;
  1862. }
  1863. #u15877 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:2573px;
  1867. top:399px;
  1868. width:120px;
  1869. height:120px;
  1870. display:flex;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:38px;
  1875. }
  1876. #u15877 .text {
  1877. position:absolute;
  1878. align-self:center;
  1879. padding:2px 8px 2px 8px;
  1880. box-sizing:border-box;
  1881. width:100%;
  1882. }
  1883. #u15877_text {
  1884. border-width:0px;
  1885. word-wrap:break-word;
  1886. text-transform:none;
  1887. }
  1888. #u15878 {
  1889. border-width:0px;
  1890. position:absolute;
  1891. left:0px;
  1892. top:0px;
  1893. width:0px;
  1894. height:0px;
  1895. }
  1896. #u15879_div {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:120px;
  1902. height:40px;
  1903. background:inherit;
  1904. background-color:rgba(255, 255, 255, 1);
  1905. box-sizing:border-box;
  1906. border-width:1px;
  1907. border-style:solid;
  1908. border-color:rgba(215, 215, 215, 1);
  1909. border-radius:4px;
  1910. -moz-box-shadow:none;
  1911. -webkit-box-shadow:none;
  1912. box-shadow:none;
  1913. font-size:14px;
  1914. }
  1915. #u15879 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:2853px;
  1919. top:229px;
  1920. width:120px;
  1921. height:40px;
  1922. display:flex;
  1923. font-size:14px;
  1924. }
  1925. #u15879 .text {
  1926. position:absolute;
  1927. align-self:center;
  1928. padding:2px 2px 2px 2px;
  1929. box-sizing:border-box;
  1930. width:100%;
  1931. }
  1932. #u15879_text {
  1933. border-width:0px;
  1934. word-wrap:break-word;
  1935. text-transform:none;
  1936. visibility:hidden;
  1937. }
  1938. #u15880_input {
  1939. position:absolute;
  1940. left:0px;
  1941. top:0px;
  1942. width:115px;
  1943. height:31px;
  1944. padding:2px 2px 2px 2px;
  1945. font-family:'ArialMT', 'Arial', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:14px;
  1949. letter-spacing:normal;
  1950. color:#AAAAAA;
  1951. vertical-align:none;
  1952. text-align:left;
  1953. text-transform:none;
  1954. background-color:transparent;
  1955. border-color:transparent;
  1956. }
  1957. #u15880_input.disabled {
  1958. position:absolute;
  1959. left:0px;
  1960. top:0px;
  1961. width:115px;
  1962. height:31px;
  1963. padding:2px 2px 2px 2px;
  1964. font-family:'ArialMT', 'Arial', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:14px;
  1968. letter-spacing:normal;
  1969. color:#AAAAAA;
  1970. vertical-align:none;
  1971. text-align:left;
  1972. text-transform:none;
  1973. background-color:transparent;
  1974. border-color:transparent;
  1975. }
  1976. #u15880_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:115px;
  1982. height:31px;
  1983. background:inherit;
  1984. background-color:rgba(255, 255, 255, 1);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-size:14px;
  1991. color:#AAAAAA;
  1992. }
  1993. #u15880 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:2857px;
  1997. top:232px;
  1998. width:115px;
  1999. height:31px;
  2000. display:flex;
  2001. font-size:14px;
  2002. color:#AAAAAA;
  2003. }
  2004. #u15880 .text {
  2005. position:absolute;
  2006. align-self:flex-start;
  2007. padding:2px 2px 2px 2px;
  2008. box-sizing:border-box;
  2009. width:100%;
  2010. }
  2011. #u15880_div.disabled {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:115px;
  2017. height:31px;
  2018. background:inherit;
  2019. background-color:rgba(240, 240, 240, 1);
  2020. border:none;
  2021. border-radius:0px;
  2022. -moz-box-shadow:none;
  2023. -webkit-box-shadow:none;
  2024. box-shadow:none;
  2025. font-size:14px;
  2026. color:#AAAAAA;
  2027. }
  2028. #u15880.disabled {
  2029. }
  2030. .u15880_input_option {
  2031. font-size:14px;
  2032. }
  2033. #u15881 {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:0px;
  2039. height:0px;
  2040. }
  2041. #u15882_div {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:120px;
  2047. height:40px;
  2048. background:inherit;
  2049. background-color:rgba(255, 255, 255, 1);
  2050. box-sizing:border-box;
  2051. border-width:1px;
  2052. border-style:solid;
  2053. border-color:rgba(215, 215, 215, 1);
  2054. border-radius:4px;
  2055. -moz-box-shadow:none;
  2056. -webkit-box-shadow:none;
  2057. box-shadow:none;
  2058. font-size:14px;
  2059. }
  2060. #u15882 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:2983px;
  2064. top:229px;
  2065. width:120px;
  2066. height:40px;
  2067. display:flex;
  2068. font-size:14px;
  2069. }
  2070. #u15882 .text {
  2071. position:absolute;
  2072. align-self:center;
  2073. padding:2px 2px 2px 2px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u15882_text {
  2078. border-width:0px;
  2079. word-wrap:break-word;
  2080. text-transform:none;
  2081. visibility:hidden;
  2082. }
  2083. #u15883_input {
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:115px;
  2088. height:31px;
  2089. padding:2px 2px 2px 2px;
  2090. font-family:'ArialMT', 'Arial', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. font-size:14px;
  2094. letter-spacing:normal;
  2095. color:#AAAAAA;
  2096. vertical-align:none;
  2097. text-align:left;
  2098. text-transform:none;
  2099. background-color:transparent;
  2100. border-color:transparent;
  2101. }
  2102. #u15883_input.disabled {
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:115px;
  2107. height:31px;
  2108. padding:2px 2px 2px 2px;
  2109. font-family:'ArialMT', 'Arial', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:14px;
  2113. letter-spacing:normal;
  2114. color:#AAAAAA;
  2115. vertical-align:none;
  2116. text-align:left;
  2117. text-transform:none;
  2118. background-color:transparent;
  2119. border-color:transparent;
  2120. }
  2121. #u15883_div {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:0px;
  2125. top:0px;
  2126. width:115px;
  2127. height:31px;
  2128. background:inherit;
  2129. background-color:rgba(255, 255, 255, 1);
  2130. border:none;
  2131. border-radius:0px;
  2132. -moz-box-shadow:none;
  2133. -webkit-box-shadow:none;
  2134. box-shadow:none;
  2135. font-size:14px;
  2136. color:#AAAAAA;
  2137. }
  2138. #u15883 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:2987px;
  2142. top:232px;
  2143. width:115px;
  2144. height:31px;
  2145. display:flex;
  2146. font-size:14px;
  2147. color:#AAAAAA;
  2148. }
  2149. #u15883 .text {
  2150. position:absolute;
  2151. align-self:flex-start;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u15883_div.disabled {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:115px;
  2162. height:31px;
  2163. background:inherit;
  2164. background-color:rgba(240, 240, 240, 1);
  2165. border:none;
  2166. border-radius:0px;
  2167. -moz-box-shadow:none;
  2168. -webkit-box-shadow:none;
  2169. box-shadow:none;
  2170. font-size:14px;
  2171. color:#AAAAAA;
  2172. }
  2173. #u15883.disabled {
  2174. }
  2175. .u15883_input_option {
  2176. font-size:14px;
  2177. }
  2178. #u15884_div {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:73px;
  2184. height:40px;
  2185. background:inherit;
  2186. background-color:rgba(255, 255, 255, 0);
  2187. border:none;
  2188. border-left:0px;
  2189. border-top:0px;
  2190. border-right:0px;
  2191. border-radius:0px;
  2192. border-bottom-right-radius:0px;
  2193. border-bottom-left-radius:0px;
  2194. -moz-box-shadow:none;
  2195. -webkit-box-shadow:none;
  2196. box-shadow:none;
  2197. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2198. font-weight:500;
  2199. font-style:normal;
  2200. font-size:18px;
  2201. }
  2202. #u15884 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:2573px;
  2206. top:299px;
  2207. width:73px;
  2208. height:40px;
  2209. display:flex;
  2210. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2211. font-weight:500;
  2212. font-style:normal;
  2213. font-size:18px;
  2214. }
  2215. #u15884 .text {
  2216. position:absolute;
  2217. align-self:center;
  2218. padding:0px 0px 0px 0px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u15884_text {
  2223. border-width:0px;
  2224. white-space:nowrap;
  2225. text-transform:none;
  2226. }
  2227. #u15885_div {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:64px;
  2233. height:40px;
  2234. background:inherit;
  2235. background-color:rgba(255, 255, 255, 0);
  2236. border:none;
  2237. border-left:0px;
  2238. border-top:0px;
  2239. border-right:0px;
  2240. border-radius:0px;
  2241. border-bottom-right-radius:0px;
  2242. border-bottom-left-radius:0px;
  2243. -moz-box-shadow:none;
  2244. -webkit-box-shadow:none;
  2245. box-shadow:none;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:14px;
  2250. }
  2251. #u15885 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:2773px;
  2255. top:359px;
  2256. width:64px;
  2257. height:40px;
  2258. display:flex;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:14px;
  2263. }
  2264. #u15885 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:0px 0px 0px 0px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u15885_text {
  2272. border-width:0px;
  2273. white-space:nowrap;
  2274. text-transform:none;
  2275. }
  2276. #u15886 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:0px;
  2280. top:0px;
  2281. width:0px;
  2282. height:0px;
  2283. }
  2284. #u15887_div {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:120px;
  2290. height:40px;
  2291. background:inherit;
  2292. background-color:rgba(242, 242, 242, 1);
  2293. box-sizing:border-box;
  2294. border-width:1px;
  2295. border-style:solid;
  2296. border-color:rgba(215, 215, 215, 1);
  2297. border-radius:4px;
  2298. -moz-box-shadow:none;
  2299. -webkit-box-shadow:none;
  2300. box-shadow:none;
  2301. font-size:14px;
  2302. }
  2303. #u15887 {
  2304. border-width:0px;
  2305. position:absolute;
  2306. left:3113px;
  2307. top:228px;
  2308. width:120px;
  2309. height:40px;
  2310. display:flex;
  2311. font-size:14px;
  2312. }
  2313. #u15887 .text {
  2314. position:absolute;
  2315. align-self:center;
  2316. padding:2px 2px 2px 2px;
  2317. box-sizing:border-box;
  2318. width:100%;
  2319. }
  2320. #u15887_text {
  2321. border-width:0px;
  2322. word-wrap:break-word;
  2323. text-transform:none;
  2324. visibility:hidden;
  2325. }
  2326. #u15888_input {
  2327. position:absolute;
  2328. left:0px;
  2329. top:0px;
  2330. width:115px;
  2331. height:31px;
  2332. padding:2px 2px 2px 2px;
  2333. font-family:'ArialMT', 'Arial', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:14px;
  2337. letter-spacing:normal;
  2338. color:#AAAAAA;
  2339. vertical-align:none;
  2340. text-align:left;
  2341. text-transform:none;
  2342. background-color:transparent;
  2343. border-color:transparent;
  2344. }
  2345. #u15888_input.disabled {
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:115px;
  2350. height:31px;
  2351. padding:2px 2px 2px 2px;
  2352. font-family:'ArialMT', 'Arial', sans-serif;
  2353. font-weight:400;
  2354. font-style:normal;
  2355. font-size:14px;
  2356. letter-spacing:normal;
  2357. color:#AAAAAA;
  2358. vertical-align:none;
  2359. text-align:left;
  2360. text-transform:none;
  2361. background-color:transparent;
  2362. border-color:transparent;
  2363. }
  2364. #u15888_div {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:115px;
  2370. height:31px;
  2371. background:inherit;
  2372. background-color:rgba(242, 242, 242, 1);
  2373. border:none;
  2374. border-radius:0px;
  2375. -moz-box-shadow:none;
  2376. -webkit-box-shadow:none;
  2377. box-shadow:none;
  2378. font-size:14px;
  2379. color:#AAAAAA;
  2380. }
  2381. #u15888 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:3117px;
  2385. top:231px;
  2386. width:115px;
  2387. height:31px;
  2388. display:flex;
  2389. font-size:14px;
  2390. color:#AAAAAA;
  2391. }
  2392. #u15888 .text {
  2393. position:absolute;
  2394. align-self:flex-start;
  2395. padding:2px 2px 2px 2px;
  2396. box-sizing:border-box;
  2397. width:100%;
  2398. }
  2399. #u15888_div.disabled {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:115px;
  2405. height:31px;
  2406. background:inherit;
  2407. background-color:rgba(240, 240, 240, 1);
  2408. border:none;
  2409. border-radius:0px;
  2410. -moz-box-shadow:none;
  2411. -webkit-box-shadow:none;
  2412. box-shadow:none;
  2413. font-size:14px;
  2414. color:#AAAAAA;
  2415. }
  2416. #u15888.disabled {
  2417. }
  2418. .u15888_input_option {
  2419. font-size:14px;
  2420. }
  2421. #u15889 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:0px;
  2427. height:0px;
  2428. }
  2429. #u15890_div {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:0px;
  2433. top:0px;
  2434. width:200px;
  2435. height:40px;
  2436. background:inherit;
  2437. background-color:rgba(255, 255, 255, 1);
  2438. box-sizing:border-box;
  2439. border-width:1px;
  2440. border-style:solid;
  2441. border-color:rgba(201, 201, 201, 1);
  2442. border-radius:4px;
  2443. -moz-box-shadow:none;
  2444. -webkit-box-shadow:none;
  2445. box-shadow:none;
  2446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2447. font-weight:400;
  2448. font-style:normal;
  2449. font-size:14px;
  2450. text-align:right;
  2451. }
  2452. #u15890 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:2773px;
  2456. top:483px;
  2457. width:200px;
  2458. height:40px;
  2459. display:flex;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:14px;
  2464. text-align:right;
  2465. }
  2466. #u15890 .text {
  2467. position:absolute;
  2468. align-self:center;
  2469. padding:2px 8px 2px 8px;
  2470. box-sizing:border-box;
  2471. width:100%;
  2472. }
  2473. #u15890_text {
  2474. border-width:0px;
  2475. word-wrap:break-word;
  2476. text-transform:none;
  2477. visibility:hidden;
  2478. }
  2479. #u15891_input {
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:161px;
  2484. height:33px;
  2485. padding:2px 2px 2px 2px;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:14px;
  2490. letter-spacing:normal;
  2491. color:#D7D7D7;
  2492. vertical-align:none;
  2493. text-align:left;
  2494. text-transform:none;
  2495. background-color:transparent;
  2496. border-color:transparent;
  2497. }
  2498. #u15891_input.disabled {
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:161px;
  2503. height:33px;
  2504. padding:2px 2px 2px 2px;
  2505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2506. font-weight:400;
  2507. font-style:normal;
  2508. font-size:14px;
  2509. letter-spacing:normal;
  2510. color:#D7D7D7;
  2511. vertical-align:none;
  2512. text-align:left;
  2513. text-transform:none;
  2514. background-color:transparent;
  2515. border-color:transparent;
  2516. }
  2517. #u15891_div {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:161px;
  2523. height:33px;
  2524. background:inherit;
  2525. background-color:rgba(255, 255, 255, 0);
  2526. border:none;
  2527. border-radius:0px;
  2528. -moz-box-shadow:none;
  2529. -webkit-box-shadow:none;
  2530. box-shadow:none;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:14px;
  2535. color:#D7D7D7;
  2536. }
  2537. #u15891 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:2781px;
  2541. top:486px;
  2542. width:161px;
  2543. height:33px;
  2544. display:flex;
  2545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2546. font-weight:400;
  2547. font-style:normal;
  2548. font-size:14px;
  2549. color:#D7D7D7;
  2550. }
  2551. #u15891 .text {
  2552. position:absolute;
  2553. align-self:center;
  2554. padding:2px 2px 2px 2px;
  2555. box-sizing:border-box;
  2556. width:100%;
  2557. }
  2558. #u15891_div.disabled {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:161px;
  2564. height:33px;
  2565. background:inherit;
  2566. background-color:rgba(240, 240, 240, 1);
  2567. border:none;
  2568. border-radius:0px;
  2569. -moz-box-shadow:none;
  2570. -webkit-box-shadow:none;
  2571. box-shadow:none;
  2572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:14px;
  2576. color:#D7D7D7;
  2577. }
  2578. #u15891.disabled {
  2579. }
  2580. #u15892_img {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:13px;
  2586. height:13px;
  2587. }
  2588. #u15892 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:2951px;
  2592. top:496px;
  2593. width:13px;
  2594. height:13px;
  2595. display:flex;
  2596. }
  2597. #u15892 .text {
  2598. position:absolute;
  2599. align-self:center;
  2600. padding:2px 2px 2px 2px;
  2601. box-sizing:border-box;
  2602. width:100%;
  2603. }
  2604. #u15892_text {
  2605. border-width:0px;
  2606. word-wrap:break-word;
  2607. text-transform:none;
  2608. visibility:hidden;
  2609. }
  2610. #u15893_div {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:64px;
  2616. height:40px;
  2617. background:inherit;
  2618. background-color:rgba(255, 255, 255, 0);
  2619. border:none;
  2620. border-left:0px;
  2621. border-top:0px;
  2622. border-right:0px;
  2623. border-radius:0px;
  2624. border-bottom-right-radius:0px;
  2625. border-bottom-left-radius:0px;
  2626. -moz-box-shadow:none;
  2627. -webkit-box-shadow:none;
  2628. box-shadow:none;
  2629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. font-size:14px;
  2633. }
  2634. #u15893 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:3003px;
  2638. top:533px;
  2639. width:64px;
  2640. height:40px;
  2641. display:flex;
  2642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. font-size:14px;
  2646. }
  2647. #u15893 .text {
  2648. position:absolute;
  2649. align-self:center;
  2650. padding:0px 0px 0px 0px;
  2651. box-sizing:border-box;
  2652. width:100%;
  2653. }
  2654. #u15893_text {
  2655. border-width:0px;
  2656. white-space:nowrap;
  2657. text-transform:none;
  2658. }
  2659. #u15894 label {
  2660. left:0px;
  2661. width:100%;
  2662. }
  2663. #u15894_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:4px;
  2668. width:12px;
  2669. height:12px;
  2670. }
  2671. #u15894 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:2781px;
  2675. top:409px;
  2676. width:100px;
  2677. height:20px;
  2678. display:flex;
  2679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:14px;
  2683. }
  2684. #u15894 .text {
  2685. position:absolute;
  2686. align-self:center;
  2687. padding:0px 2px 0px 2px;
  2688. box-sizing:border-box;
  2689. }
  2690. #u15894_img.selected {
  2691. }
  2692. #u15894.selected {
  2693. }
  2694. #u15894_img.disabled {
  2695. }
  2696. #u15894.disabled {
  2697. }
  2698. #u15894_img.selectedDisabled {
  2699. }
  2700. #u15894.selectedDisabled {
  2701. }
  2702. #u15894_text {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:14px;
  2706. top:0px;
  2707. width:84px;
  2708. word-wrap:break-word;
  2709. text-transform:none;
  2710. }
  2711. #u15894_input {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:0px;
  2715. top:0px;
  2716. width:0px;
  2717. height:0px;
  2718. opacity:0;
  2719. }
  2720. #u15895 label {
  2721. left:0px;
  2722. width:100%;
  2723. }
  2724. #u15895_img {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:4px;
  2729. width:12px;
  2730. height:12px;
  2731. }
  2732. #u15895 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:3003px;
  2736. top:409px;
  2737. width:100px;
  2738. height:20px;
  2739. display:flex;
  2740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:14px;
  2744. }
  2745. #u15895 .text {
  2746. position:absolute;
  2747. align-self:center;
  2748. padding:0px 2px 0px 2px;
  2749. box-sizing:border-box;
  2750. }
  2751. #u15895_img.selected {
  2752. }
  2753. #u15895.selected {
  2754. }
  2755. #u15895_img.disabled {
  2756. }
  2757. #u15895.disabled {
  2758. }
  2759. #u15895_img.selectedDisabled {
  2760. }
  2761. #u15895.selectedDisabled {
  2762. }
  2763. #u15895_text {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:14px;
  2767. top:0px;
  2768. width:84px;
  2769. word-wrap:break-word;
  2770. text-transform:none;
  2771. }
  2772. #u15895_input {
  2773. border-width:0px;
  2774. position:absolute;
  2775. left:0px;
  2776. top:0px;
  2777. width:0px;
  2778. height:0px;
  2779. opacity:0;
  2780. }
  2781. #u15896 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:0px;
  2787. height:0px;
  2788. }
  2789. #u15897_div {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:200px;
  2795. height:40px;
  2796. background:inherit;
  2797. background-color:rgba(255, 255, 255, 1);
  2798. box-sizing:border-box;
  2799. border-width:1px;
  2800. border-style:solid;
  2801. border-color:rgba(215, 215, 215, 1);
  2802. border-radius:4px;
  2803. -moz-box-shadow:none;
  2804. -webkit-box-shadow:none;
  2805. box-shadow:none;
  2806. font-size:14px;
  2807. }
  2808. #u15897 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:3003px;
  2812. top:573px;
  2813. width:200px;
  2814. height:40px;
  2815. display:flex;
  2816. font-size:14px;
  2817. }
  2818. #u15897 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 2px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u15897_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. visibility:hidden;
  2830. }
  2831. #u15898_input {
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:191px;
  2836. height:31px;
  2837. padding:2px 2px 2px 2px;
  2838. font-family:'ArialMT', 'Arial', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:14px;
  2842. letter-spacing:normal;
  2843. color:#AAAAAA;
  2844. vertical-align:none;
  2845. text-align:left;
  2846. text-transform:none;
  2847. background-color:transparent;
  2848. border-color:transparent;
  2849. }
  2850. #u15898_input.disabled {
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:191px;
  2855. height:31px;
  2856. padding:2px 2px 2px 2px;
  2857. font-family:'ArialMT', 'Arial', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:14px;
  2861. letter-spacing:normal;
  2862. color:#AAAAAA;
  2863. vertical-align:none;
  2864. text-align:left;
  2865. text-transform:none;
  2866. background-color:transparent;
  2867. border-color:transparent;
  2868. }
  2869. #u15898_div {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:191px;
  2875. height:31px;
  2876. background:inherit;
  2877. background-color:rgba(255, 255, 255, 1);
  2878. border:none;
  2879. border-radius:0px;
  2880. -moz-box-shadow:none;
  2881. -webkit-box-shadow:none;
  2882. box-shadow:none;
  2883. font-size:14px;
  2884. color:#AAAAAA;
  2885. }
  2886. #u15898 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:3009px;
  2890. top:576px;
  2891. width:191px;
  2892. height:31px;
  2893. display:flex;
  2894. font-size:14px;
  2895. color:#AAAAAA;
  2896. }
  2897. #u15898 .text {
  2898. position:absolute;
  2899. align-self:flex-start;
  2900. padding:2px 2px 2px 2px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u15898_div.disabled {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:0px;
  2908. top:0px;
  2909. width:191px;
  2910. height:31px;
  2911. background:inherit;
  2912. background-color:rgba(240, 240, 240, 1);
  2913. border:none;
  2914. border-radius:0px;
  2915. -moz-box-shadow:none;
  2916. -webkit-box-shadow:none;
  2917. box-shadow:none;
  2918. font-size:14px;
  2919. color:#AAAAAA;
  2920. }
  2921. #u15898.disabled {
  2922. }
  2923. .u15898_input_option {
  2924. font-size:14px;
  2925. }
  2926. #u15899 {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:0px;
  2932. height:0px;
  2933. }
  2934. #u15900_div {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:200px;
  2940. height:40px;
  2941. background:inherit;
  2942. background-color:rgba(255, 255, 255, 1);
  2943. box-sizing:border-box;
  2944. border-width:1px;
  2945. border-style:solid;
  2946. border-color:rgba(201, 201, 201, 1);
  2947. border-radius:4px;
  2948. -moz-box-shadow:none;
  2949. -webkit-box-shadow:none;
  2950. box-shadow:none;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. text-align:right;
  2956. }
  2957. #u15900 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:3003px;
  2961. top:662px;
  2962. width:200px;
  2963. height:40px;
  2964. display:flex;
  2965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2966. font-weight:400;
  2967. font-style:normal;
  2968. font-size:14px;
  2969. text-align:right;
  2970. }
  2971. #u15900 .text {
  2972. position:absolute;
  2973. align-self:center;
  2974. padding:2px 8px 2px 8px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u15900_text {
  2979. border-width:0px;
  2980. word-wrap:break-word;
  2981. text-transform:none;
  2982. visibility:hidden;
  2983. }
  2984. #u15901_input {
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:161px;
  2989. height:33px;
  2990. padding:2px 2px 2px 2px;
  2991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:14px;
  2995. letter-spacing:normal;
  2996. color:#D7D7D7;
  2997. vertical-align:none;
  2998. text-align:left;
  2999. text-transform:none;
  3000. background-color:transparent;
  3001. border-color:transparent;
  3002. }
  3003. #u15901_input.disabled {
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:161px;
  3008. height:33px;
  3009. padding:2px 2px 2px 2px;
  3010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3011. font-weight:400;
  3012. font-style:normal;
  3013. font-size:14px;
  3014. letter-spacing:normal;
  3015. color:#D7D7D7;
  3016. vertical-align:none;
  3017. text-align:left;
  3018. text-transform:none;
  3019. background-color:transparent;
  3020. border-color:transparent;
  3021. }
  3022. #u15901_div {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:161px;
  3028. height:33px;
  3029. background:inherit;
  3030. background-color:rgba(255, 255, 255, 0);
  3031. border:none;
  3032. border-radius:0px;
  3033. -moz-box-shadow:none;
  3034. -webkit-box-shadow:none;
  3035. box-shadow:none;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:14px;
  3040. color:#D7D7D7;
  3041. }
  3042. #u15901 {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:3011px;
  3046. top:665px;
  3047. width:161px;
  3048. height:33px;
  3049. display:flex;
  3050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:14px;
  3054. color:#D7D7D7;
  3055. }
  3056. #u15901 .text {
  3057. position:absolute;
  3058. align-self:center;
  3059. padding:2px 2px 2px 2px;
  3060. box-sizing:border-box;
  3061. width:100%;
  3062. }
  3063. #u15901_div.disabled {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:161px;
  3069. height:33px;
  3070. background:inherit;
  3071. background-color:rgba(240, 240, 240, 1);
  3072. border:none;
  3073. border-radius:0px;
  3074. -moz-box-shadow:none;
  3075. -webkit-box-shadow:none;
  3076. box-shadow:none;
  3077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3078. font-weight:400;
  3079. font-style:normal;
  3080. font-size:14px;
  3081. color:#D7D7D7;
  3082. }
  3083. #u15901.disabled {
  3084. }
  3085. #u15902_div {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:78px;
  3091. height:40px;
  3092. background:inherit;
  3093. background-color:rgba(255, 255, 255, 0);
  3094. border:none;
  3095. border-left:0px;
  3096. border-top:0px;
  3097. border-right:0px;
  3098. border-radius:0px;
  3099. border-bottom-right-radius:0px;
  3100. border-bottom-left-radius:0px;
  3101. -moz-box-shadow:none;
  3102. -webkit-box-shadow:none;
  3103. box-shadow:none;
  3104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:14px;
  3108. }
  3109. #u15902 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:3003px;
  3113. top:623px;
  3114. width:78px;
  3115. height:40px;
  3116. display:flex;
  3117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3118. font-weight:400;
  3119. font-style:normal;
  3120. font-size:14px;
  3121. }
  3122. #u15902 .text {
  3123. position:absolute;
  3124. align-self:center;
  3125. padding:0px 0px 0px 0px;
  3126. box-sizing:border-box;
  3127. width:100%;
  3128. }
  3129. #u15902_text {
  3130. border-width:0px;
  3131. white-space:nowrap;
  3132. text-transform:none;
  3133. }
  3134. #u15903_div {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:64px;
  3140. height:40px;
  3141. background:inherit;
  3142. background-color:rgba(255, 255, 255, 0);
  3143. border:none;
  3144. border-left:0px;
  3145. border-top:0px;
  3146. border-right:0px;
  3147. border-radius:0px;
  3148. border-bottom-right-radius:0px;
  3149. border-bottom-left-radius:0px;
  3150. -moz-box-shadow:none;
  3151. -webkit-box-shadow:none;
  3152. box-shadow:none;
  3153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3154. font-weight:400;
  3155. font-style:normal;
  3156. font-size:14px;
  3157. }
  3158. #u15903 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:2773px;
  3162. top:712px;
  3163. width:64px;
  3164. height:40px;
  3165. display:flex;
  3166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. font-size:14px;
  3170. }
  3171. #u15903 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:0px 0px 0px 0px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u15903_text {
  3179. border-width:0px;
  3180. white-space:nowrap;
  3181. text-transform:none;
  3182. }
  3183. #u15904 {
  3184. border-width:0px;
  3185. position:absolute;
  3186. left:0px;
  3187. top:0px;
  3188. width:0px;
  3189. height:0px;
  3190. }
  3191. #u15905_div {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:200px;
  3197. height:40px;
  3198. background:inherit;
  3199. background-color:rgba(255, 255, 255, 1);
  3200. box-sizing:border-box;
  3201. border-width:1px;
  3202. border-style:solid;
  3203. border-color:rgba(215, 215, 215, 1);
  3204. border-radius:4px;
  3205. -moz-box-shadow:none;
  3206. -webkit-box-shadow:none;
  3207. box-shadow:none;
  3208. font-size:14px;
  3209. }
  3210. #u15905 {
  3211. border-width:0px;
  3212. position:absolute;
  3213. left:2773px;
  3214. top:752px;
  3215. width:200px;
  3216. height:40px;
  3217. display:flex;
  3218. font-size:14px;
  3219. }
  3220. #u15905 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 2px 2px 2px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u15905_text {
  3228. border-width:0px;
  3229. word-wrap:break-word;
  3230. text-transform:none;
  3231. visibility:hidden;
  3232. }
  3233. #u15906_input {
  3234. position:absolute;
  3235. left:0px;
  3236. top:0px;
  3237. width:191px;
  3238. height:31px;
  3239. padding:2px 2px 2px 2px;
  3240. font-family:'ArialMT', 'Arial', sans-serif;
  3241. font-weight:400;
  3242. font-style:normal;
  3243. font-size:14px;
  3244. letter-spacing:normal;
  3245. color:#AAAAAA;
  3246. vertical-align:none;
  3247. text-align:left;
  3248. text-transform:none;
  3249. background-color:transparent;
  3250. border-color:transparent;
  3251. }
  3252. #u15906_input.disabled {
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:191px;
  3257. height:31px;
  3258. padding:2px 2px 2px 2px;
  3259. font-family:'ArialMT', 'Arial', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:14px;
  3263. letter-spacing:normal;
  3264. color:#AAAAAA;
  3265. vertical-align:none;
  3266. text-align:left;
  3267. text-transform:none;
  3268. background-color:transparent;
  3269. border-color:transparent;
  3270. }
  3271. #u15906_div {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:0px;
  3275. top:0px;
  3276. width:191px;
  3277. height:31px;
  3278. background:inherit;
  3279. background-color:rgba(255, 255, 255, 1);
  3280. border:none;
  3281. border-radius:0px;
  3282. -moz-box-shadow:none;
  3283. -webkit-box-shadow:none;
  3284. box-shadow:none;
  3285. font-size:14px;
  3286. color:#AAAAAA;
  3287. }
  3288. #u15906 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:2779px;
  3292. top:755px;
  3293. width:191px;
  3294. height:31px;
  3295. display:flex;
  3296. font-size:14px;
  3297. color:#AAAAAA;
  3298. }
  3299. #u15906 .text {
  3300. position:absolute;
  3301. align-self:flex-start;
  3302. padding:2px 2px 2px 2px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u15906_div.disabled {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:191px;
  3312. height:31px;
  3313. background:inherit;
  3314. background-color:rgba(240, 240, 240, 1);
  3315. border:none;
  3316. border-radius:0px;
  3317. -moz-box-shadow:none;
  3318. -webkit-box-shadow:none;
  3319. box-shadow:none;
  3320. font-size:14px;
  3321. color:#AAAAAA;
  3322. }
  3323. #u15906.disabled {
  3324. }
  3325. .u15906_input_option {
  3326. font-size:14px;
  3327. }
  3328. #u15907 {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:0px;
  3334. height:0px;
  3335. }
  3336. #u15908_div {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:200px;
  3342. height:40px;
  3343. background:inherit;
  3344. background-color:rgba(255, 255, 255, 1);
  3345. box-sizing:border-box;
  3346. border-width:1px;
  3347. border-style:solid;
  3348. border-color:rgba(201, 201, 201, 1);
  3349. border-radius:4px;
  3350. -moz-box-shadow:none;
  3351. -webkit-box-shadow:none;
  3352. box-shadow:none;
  3353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3354. font-weight:400;
  3355. font-style:normal;
  3356. font-size:14px;
  3357. text-align:right;
  3358. }
  3359. #u15908 {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:3003px;
  3363. top:752px;
  3364. width:200px;
  3365. height:40px;
  3366. display:flex;
  3367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3368. font-weight:400;
  3369. font-style:normal;
  3370. font-size:14px;
  3371. text-align:right;
  3372. }
  3373. #u15908 .text {
  3374. position:absolute;
  3375. align-self:center;
  3376. padding:2px 8px 2px 8px;
  3377. box-sizing:border-box;
  3378. width:100%;
  3379. }
  3380. #u15908_text {
  3381. border-width:0px;
  3382. word-wrap:break-word;
  3383. text-transform:none;
  3384. visibility:hidden;
  3385. }
  3386. #u15909_input {
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:161px;
  3391. height:33px;
  3392. padding:2px 2px 2px 2px;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:14px;
  3397. letter-spacing:normal;
  3398. color:#D7D7D7;
  3399. vertical-align:none;
  3400. text-align:left;
  3401. text-transform:none;
  3402. background-color:transparent;
  3403. border-color:transparent;
  3404. }
  3405. #u15909_input.disabled {
  3406. position:absolute;
  3407. left:0px;
  3408. top:0px;
  3409. width:161px;
  3410. height:33px;
  3411. padding:2px 2px 2px 2px;
  3412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3413. font-weight:400;
  3414. font-style:normal;
  3415. font-size:14px;
  3416. letter-spacing:normal;
  3417. color:#D7D7D7;
  3418. vertical-align:none;
  3419. text-align:left;
  3420. text-transform:none;
  3421. background-color:transparent;
  3422. border-color:transparent;
  3423. }
  3424. #u15909_div {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:0px;
  3428. top:0px;
  3429. width:161px;
  3430. height:33px;
  3431. background:inherit;
  3432. background-color:rgba(255, 255, 255, 0);
  3433. border:none;
  3434. border-radius:0px;
  3435. -moz-box-shadow:none;
  3436. -webkit-box-shadow:none;
  3437. box-shadow:none;
  3438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3439. font-weight:400;
  3440. font-style:normal;
  3441. font-size:14px;
  3442. color:#D7D7D7;
  3443. }
  3444. #u15909 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:3011px;
  3448. top:755px;
  3449. width:161px;
  3450. height:33px;
  3451. display:flex;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:14px;
  3456. color:#D7D7D7;
  3457. }
  3458. #u15909 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 2px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u15909_div.disabled {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:161px;
  3471. height:33px;
  3472. background:inherit;
  3473. background-color:rgba(240, 240, 240, 1);
  3474. border:none;
  3475. border-radius:0px;
  3476. -moz-box-shadow:none;
  3477. -webkit-box-shadow:none;
  3478. box-shadow:none;
  3479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3480. font-weight:400;
  3481. font-style:normal;
  3482. font-size:14px;
  3483. color:#D7D7D7;
  3484. }
  3485. #u15909.disabled {
  3486. }
  3487. #u15910_div {
  3488. border-width:0px;
  3489. position:absolute;
  3490. left:0px;
  3491. top:0px;
  3492. width:64px;
  3493. height:40px;
  3494. background:inherit;
  3495. background-color:rgba(255, 255, 255, 0);
  3496. border:none;
  3497. border-left:0px;
  3498. border-top:0px;
  3499. border-right:0px;
  3500. border-radius:0px;
  3501. border-bottom-right-radius:0px;
  3502. border-bottom-left-radius:0px;
  3503. -moz-box-shadow:none;
  3504. -webkit-box-shadow:none;
  3505. box-shadow:none;
  3506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:14px;
  3510. }
  3511. #u15910 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:3003px;
  3515. top:713px;
  3516. width:64px;
  3517. height:40px;
  3518. display:flex;
  3519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3520. font-weight:400;
  3521. font-style:normal;
  3522. font-size:14px;
  3523. }
  3524. #u15910 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:0px 0px 0px 0px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u15910_text {
  3532. border-width:0px;
  3533. white-space:nowrap;
  3534. text-transform:none;
  3535. }
  3536. #u15911 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:0px;
  3542. height:0px;
  3543. }
  3544. #u15912_div {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:427px;
  3550. height:80px;
  3551. background:inherit;
  3552. background-color:rgba(255, 255, 255, 1);
  3553. box-sizing:border-box;
  3554. border-width:1px;
  3555. border-style:solid;
  3556. border-color:rgba(201, 201, 201, 1);
  3557. border-radius:4px;
  3558. -moz-box-shadow:none;
  3559. -webkit-box-shadow:none;
  3560. box-shadow:none;
  3561. font-family:'Microsoft YaHei', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:14px;
  3565. color:#CCCCCC;
  3566. text-align:left;
  3567. }
  3568. #u15912 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:2773px;
  3572. top:1042px;
  3573. width:427px;
  3574. height:80px;
  3575. display:flex;
  3576. font-family:'Microsoft YaHei', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:14px;
  3580. color:#CCCCCC;
  3581. text-align:left;
  3582. }
  3583. #u15912 .text {
  3584. position:absolute;
  3585. align-self:center;
  3586. padding:2px 8px 2px 8px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u15912_text {
  3591. border-width:0px;
  3592. word-wrap:break-word;
  3593. text-transform:none;
  3594. visibility:hidden;
  3595. }
  3596. #u15913_input {
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:389px;
  3601. height:33px;
  3602. padding:2px 2px 2px 2px;
  3603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. font-size:14px;
  3607. letter-spacing:normal;
  3608. color:#D7D7D7;
  3609. vertical-align:none;
  3610. text-align:left;
  3611. text-transform:none;
  3612. background-color:transparent;
  3613. border-color:transparent;
  3614. }
  3615. #u15913_input.disabled {
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:389px;
  3620. height:33px;
  3621. padding:2px 2px 2px 2px;
  3622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:14px;
  3626. letter-spacing:normal;
  3627. color:#D7D7D7;
  3628. vertical-align:none;
  3629. text-align:left;
  3630. text-transform:none;
  3631. background-color:transparent;
  3632. border-color:transparent;
  3633. }
  3634. #u15913_div {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:389px;
  3640. height:33px;
  3641. background:inherit;
  3642. background-color:rgba(255, 255, 255, 0);
  3643. border:none;
  3644. border-radius:0px;
  3645. -moz-box-shadow:none;
  3646. -webkit-box-shadow:none;
  3647. box-shadow:none;
  3648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. font-size:14px;
  3652. color:#D7D7D7;
  3653. }
  3654. #u15913 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:2790px;
  3658. top:1045px;
  3659. width:389px;
  3660. height:33px;
  3661. display:flex;
  3662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3663. font-weight:400;
  3664. font-style:normal;
  3665. font-size:14px;
  3666. color:#D7D7D7;
  3667. }
  3668. #u15913 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:2px 2px 2px 2px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u15913_div.disabled {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:389px;
  3681. height:33px;
  3682. background:inherit;
  3683. background-color:rgba(240, 240, 240, 1);
  3684. border:none;
  3685. border-radius:0px;
  3686. -moz-box-shadow:none;
  3687. -webkit-box-shadow:none;
  3688. box-shadow:none;
  3689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3690. font-weight:400;
  3691. font-style:normal;
  3692. font-size:14px;
  3693. color:#D7D7D7;
  3694. }
  3695. #u15913.disabled {
  3696. }
  3697. #u15914_div {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:71px;
  3703. height:40px;
  3704. background:inherit;
  3705. background-color:rgba(255, 255, 255, 0);
  3706. border:none;
  3707. border-left:0px;
  3708. border-top:0px;
  3709. border-right:0px;
  3710. border-radius:0px;
  3711. border-bottom-right-radius:0px;
  3712. border-bottom-left-radius:0px;
  3713. -moz-box-shadow:none;
  3714. -webkit-box-shadow:none;
  3715. box-shadow:none;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:14px;
  3720. }
  3721. #u15914 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:2773px;
  3725. top:1002px;
  3726. width:71px;
  3727. height:40px;
  3728. display:flex;
  3729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3730. font-weight:400;
  3731. font-style:normal;
  3732. font-size:14px;
  3733. }
  3734. #u15914 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:0px 0px 0px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u15914_text {
  3742. border-width:0px;
  3743. white-space:nowrap;
  3744. text-transform:none;
  3745. }
  3746. #u15915 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:0px;
  3752. height:0px;
  3753. }
  3754. #u15916_div {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:83px;
  3760. height:80px;
  3761. background:inherit;
  3762. background-color:rgba(255, 255, 255, 1);
  3763. box-sizing:border-box;
  3764. border-width:1px;
  3765. border-style:solid;
  3766. border-color:rgba(201, 201, 201, 1);
  3767. border-radius:4px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. font-family:'Helvetica', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. font-size:24px;
  3775. }
  3776. #u15916 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:2773px;
  3780. top:922px;
  3781. width:83px;
  3782. height:80px;
  3783. display:flex;
  3784. font-family:'Helvetica', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:24px;
  3788. }
  3789. #u15916 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 8px 2px 8px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u15916_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. }
  3801. #u15917_div {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:57px;
  3807. height:40px;
  3808. background:inherit;
  3809. background-color:rgba(255, 255, 255, 0);
  3810. border:none;
  3811. border-left:0px;
  3812. border-top:0px;
  3813. border-right:0px;
  3814. border-radius:0px;
  3815. border-bottom-right-radius:0px;
  3816. border-bottom-left-radius:0px;
  3817. -moz-box-shadow:none;
  3818. -webkit-box-shadow:none;
  3819. box-shadow:none;
  3820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3821. font-weight:400;
  3822. font-style:normal;
  3823. font-size:14px;
  3824. color:#D9001B;
  3825. }
  3826. #u15917 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:2773px;
  3830. top:882px;
  3831. width:57px;
  3832. height:40px;
  3833. display:flex;
  3834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:14px;
  3838. color:#D9001B;
  3839. }
  3840. #u15917 .text {
  3841. position:absolute;
  3842. align-self:center;
  3843. padding:0px 0px 0px 0px;
  3844. box-sizing:border-box;
  3845. width:100%;
  3846. }
  3847. #u15917_text {
  3848. border-width:0px;
  3849. white-space:nowrap;
  3850. text-transform:none;
  3851. }
  3852. #u15918_div {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:800px;
  3858. height:60px;
  3859. background:inherit;
  3860. background-color:rgba(255, 255, 255, 1);
  3861. box-sizing:border-box;
  3862. border-width:1px;
  3863. border-style:solid;
  3864. border-color:rgba(242, 242, 242, 1);
  3865. border-radius:0px;
  3866. -moz-box-shadow:none;
  3867. -webkit-box-shadow:none;
  3868. box-shadow:none;
  3869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:14px;
  3873. color:#AAAAAA;
  3874. text-align:center;
  3875. line-height:30px;
  3876. }
  3877. #u15918 {
  3878. border-width:0px;
  3879. position:absolute;
  3880. left:97px;
  3881. top:73px;
  3882. width:800px;
  3883. height:60px;
  3884. display:flex;
  3885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3886. font-weight:400;
  3887. font-style:normal;
  3888. font-size:14px;
  3889. color:#AAAAAA;
  3890. text-align:center;
  3891. line-height:30px;
  3892. }
  3893. #u15918 .text {
  3894. position:absolute;
  3895. align-self:center;
  3896. padding:5px 10px 5px 10px;
  3897. box-sizing:border-box;
  3898. width:100%;
  3899. }
  3900. #u15918_text {
  3901. border-width:0px;
  3902. word-wrap:break-word;
  3903. text-transform:none;
  3904. visibility:hidden;
  3905. }
  3906. #u15919_div {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:47px;
  3912. height:35px;
  3913. background:inherit;
  3914. background-color:rgba(255, 255, 255, 0);
  3915. border:none;
  3916. border-top:0px;
  3917. border-right:0px;
  3918. border-bottom:0px;
  3919. border-radius:0px;
  3920. border-top-left-radius:0px;
  3921. border-bottom-left-radius:0px;
  3922. -moz-box-shadow:none;
  3923. -webkit-box-shadow:none;
  3924. box-shadow:none;
  3925. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3926. font-weight:500;
  3927. font-style:normal;
  3928. font-size:18px;
  3929. }
  3930. #u15919 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:128px;
  3934. top:86px;
  3935. width:47px;
  3936. height:35px;
  3937. display:flex;
  3938. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3939. font-weight:500;
  3940. font-style:normal;
  3941. font-size:18px;
  3942. }
  3943. #u15919 .text {
  3944. position:absolute;
  3945. align-self:center;
  3946. padding:5px 10px 5px 0px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u15919_text {
  3951. border-width:0px;
  3952. white-space:nowrap;
  3953. text-transform:none;
  3954. }
  3955. #u15920_div {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:800px;
  3961. height:1069px;
  3962. background:inherit;
  3963. background-color:rgba(255, 255, 255, 1);
  3964. box-sizing:border-box;
  3965. border-width:1px;
  3966. border-style:solid;
  3967. border-color:rgba(242, 242, 242, 1);
  3968. border-radius:0px;
  3969. -moz-box-shadow:none;
  3970. -webkit-box-shadow:none;
  3971. box-shadow:none;
  3972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3973. font-weight:400;
  3974. font-style:normal;
  3975. font-size:14px;
  3976. color:#AAAAAA;
  3977. text-align:center;
  3978. line-height:30px;
  3979. }
  3980. #u15920 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:97px;
  3984. top:133px;
  3985. width:800px;
  3986. height:1069px;
  3987. display:flex;
  3988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:14px;
  3992. color:#AAAAAA;
  3993. text-align:center;
  3994. line-height:30px;
  3995. }
  3996. #u15920 .text {
  3997. position:absolute;
  3998. align-self:center;
  3999. padding:5px 10px 5px 10px;
  4000. box-sizing:border-box;
  4001. width:100%;
  4002. }
  4003. #u15920_text {
  4004. border-width:0px;
  4005. word-wrap:break-word;
  4006. text-transform:none;
  4007. visibility:hidden;
  4008. }
  4009. #u15921_div {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:82px;
  4015. height:40px;
  4016. background:inherit;
  4017. background-color:rgba(255, 255, 255, 0);
  4018. border:none;
  4019. border-left:0px;
  4020. border-top:0px;
  4021. border-right:0px;
  4022. border-radius:0px;
  4023. border-bottom-right-radius:0px;
  4024. border-bottom-left-radius:0px;
  4025. -moz-box-shadow:none;
  4026. -webkit-box-shadow:none;
  4027. box-shadow:none;
  4028. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4029. font-weight:500;
  4030. font-style:normal;
  4031. font-size:18px;
  4032. }
  4033. #u15921 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:136px;
  4037. top:159px;
  4038. width:82px;
  4039. height:40px;
  4040. display:flex;
  4041. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4042. font-weight:500;
  4043. font-style:normal;
  4044. font-size:18px;
  4045. }
  4046. #u15921 .text {
  4047. position:absolute;
  4048. align-self:center;
  4049. padding:0px 0px 0px 0px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u15921_text {
  4054. border-width:0px;
  4055. white-space:nowrap;
  4056. text-transform:none;
  4057. }
  4058. #u15922_div {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:40px;
  4064. height:40px;
  4065. background:inherit;
  4066. background-color:rgba(255, 255, 255, 0);
  4067. border:none;
  4068. border-top:0px;
  4069. border-right:0px;
  4070. border-bottom:0px;
  4071. border-radius:0px;
  4072. border-top-left-radius:0px;
  4073. border-bottom-left-radius:0px;
  4074. -moz-box-shadow:none;
  4075. -webkit-box-shadow:none;
  4076. box-shadow:none;
  4077. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4078. font-weight:500;
  4079. font-style:normal;
  4080. font-size:24px;
  4081. text-align:center;
  4082. }
  4083. #u15922 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:857px;
  4087. top:73px;
  4088. width:40px;
  4089. height:40px;
  4090. display:flex;
  4091. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4092. font-weight:500;
  4093. font-style:normal;
  4094. font-size:24px;
  4095. text-align:center;
  4096. }
  4097. #u15922 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:5px 10px 5px 0px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u15922_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. }
  4109. #u15923_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:57px;
  4115. height:40px;
  4116. background:inherit;
  4117. background-color:rgba(255, 255, 255, 0);
  4118. border:none;
  4119. border-left:0px;
  4120. border-top:0px;
  4121. border-right:0px;
  4122. border-radius:0px;
  4123. border-bottom-right-radius:0px;
  4124. border-bottom-left-radius:0px;
  4125. -moz-box-shadow:none;
  4126. -webkit-box-shadow:none;
  4127. box-shadow:none;
  4128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:14px;
  4132. }
  4133. #u15923 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:643px;
  4137. top:339px;
  4138. width:57px;
  4139. height:40px;
  4140. display:flex;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:14px;
  4145. }
  4146. #u15923 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:0px 0px 0px 0px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u15923_text {
  4154. border-width:0px;
  4155. white-space:nowrap;
  4156. text-transform:none;
  4157. }
  4158. #u15924_div {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:180px;
  4164. height:180px;
  4165. background:inherit;
  4166. background-color:rgba(255, 255, 255, 1);
  4167. box-sizing:border-box;
  4168. border-width:1px;
  4169. border-style:solid;
  4170. border-color:rgba(201, 201, 201, 1);
  4171. border-radius:4px;
  4172. -moz-box-shadow:none;
  4173. -webkit-box-shadow:none;
  4174. box-shadow:none;
  4175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:38px;
  4179. }
  4180. #u15924 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:643px;
  4184. top:379px;
  4185. width:180px;
  4186. height:180px;
  4187. display:flex;
  4188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4189. font-weight:400;
  4190. font-style:normal;
  4191. font-size:38px;
  4192. }
  4193. #u15924 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 8px 2px 8px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u15924_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. }
  4205. #u15925_div {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:73px;
  4211. height:40px;
  4212. background:inherit;
  4213. background-color:rgba(255, 255, 255, 0);
  4214. border:none;
  4215. border-left:0px;
  4216. border-top:0px;
  4217. border-right:0px;
  4218. border-radius:0px;
  4219. border-bottom-right-radius:0px;
  4220. border-bottom-left-radius:0px;
  4221. -moz-box-shadow:none;
  4222. -webkit-box-shadow:none;
  4223. box-shadow:none;
  4224. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4225. font-weight:500;
  4226. font-style:normal;
  4227. font-size:18px;
  4228. }
  4229. #u15925 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:136px;
  4233. top:279px;
  4234. width:73px;
  4235. height:40px;
  4236. display:flex;
  4237. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4238. font-weight:500;
  4239. font-style:normal;
  4240. font-size:18px;
  4241. }
  4242. #u15925 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:0px 0px 0px 0px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u15925_text {
  4250. border-width:0px;
  4251. white-space:nowrap;
  4252. text-transform:none;
  4253. }
  4254. #u15926_div {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:78px;
  4260. height:40px;
  4261. background:inherit;
  4262. background-color:rgba(255, 255, 255, 0);
  4263. border:none;
  4264. border-left:0px;
  4265. border-top:0px;
  4266. border-right:0px;
  4267. border-radius:0px;
  4268. border-bottom-right-radius:0px;
  4269. border-bottom-left-radius:0px;
  4270. -moz-box-shadow:none;
  4271. -webkit-box-shadow:none;
  4272. box-shadow:none;
  4273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4274. font-weight:400;
  4275. font-style:normal;
  4276. font-size:14px;
  4277. }
  4278. #u15926 {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:136px;
  4282. top:692px;
  4283. width:78px;
  4284. height:40px;
  4285. display:flex;
  4286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4287. font-weight:400;
  4288. font-style:normal;
  4289. font-size:14px;
  4290. }
  4291. #u15926 .text {
  4292. position:absolute;
  4293. align-self:center;
  4294. padding:0px 0px 0px 0px;
  4295. box-sizing:border-box;
  4296. width:100%;
  4297. }
  4298. #u15926_text {
  4299. border-width:0px;
  4300. white-space:nowrap;
  4301. text-transform:none;
  4302. }
  4303. #u15927 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:0px;
  4307. top:0px;
  4308. width:0px;
  4309. height:0px;
  4310. }
  4311. #u15928_div {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:200px;
  4317. height:40px;
  4318. background:inherit;
  4319. background-color:rgba(242, 242, 242, 1);
  4320. box-sizing:border-box;
  4321. border-width:1px;
  4322. border-style:solid;
  4323. border-color:rgba(215, 215, 215, 1);
  4324. border-radius:4px;
  4325. -moz-box-shadow:none;
  4326. -webkit-box-shadow:none;
  4327. box-shadow:none;
  4328. font-size:14px;
  4329. }
  4330. #u15928 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:136px;
  4334. top:732px;
  4335. width:200px;
  4336. height:40px;
  4337. display:flex;
  4338. font-size:14px;
  4339. }
  4340. #u15928 .text {
  4341. position:absolute;
  4342. align-self:center;
  4343. padding:2px 2px 2px 2px;
  4344. box-sizing:border-box;
  4345. width:100%;
  4346. }
  4347. #u15928_text {
  4348. border-width:0px;
  4349. word-wrap:break-word;
  4350. text-transform:none;
  4351. visibility:hidden;
  4352. }
  4353. #u15929_input {
  4354. position:absolute;
  4355. left:0px;
  4356. top:0px;
  4357. width:191px;
  4358. height:31px;
  4359. padding:2px 2px 2px 2px;
  4360. font-family:'ArialMT', 'Arial', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:14px;
  4364. letter-spacing:normal;
  4365. color:#AAAAAA;
  4366. vertical-align:none;
  4367. text-align:left;
  4368. text-transform:none;
  4369. background-color:transparent;
  4370. border-color:transparent;
  4371. }
  4372. #u15929_input.disabled {
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:191px;
  4377. height:31px;
  4378. padding:2px 2px 2px 2px;
  4379. font-family:'ArialMT', 'Arial', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:14px;
  4383. letter-spacing:normal;
  4384. color:#AAAAAA;
  4385. vertical-align:none;
  4386. text-align:left;
  4387. text-transform:none;
  4388. background-color:transparent;
  4389. border-color:transparent;
  4390. }
  4391. #u15929_div {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:191px;
  4397. height:31px;
  4398. background:inherit;
  4399. background-color:rgba(242, 242, 242, 1);
  4400. border:none;
  4401. border-radius:0px;
  4402. -moz-box-shadow:none;
  4403. -webkit-box-shadow:none;
  4404. box-shadow:none;
  4405. font-size:14px;
  4406. color:#AAAAAA;
  4407. }
  4408. #u15929 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:142px;
  4412. top:735px;
  4413. width:191px;
  4414. height:31px;
  4415. display:flex;
  4416. font-size:14px;
  4417. color:#AAAAAA;
  4418. }
  4419. #u15929 .text {
  4420. position:absolute;
  4421. align-self:flex-start;
  4422. padding:2px 2px 2px 2px;
  4423. box-sizing:border-box;
  4424. width:100%;
  4425. }
  4426. #u15929_div.disabled {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:191px;
  4432. height:31px;
  4433. background:inherit;
  4434. background-color:rgba(240, 240, 240, 1);
  4435. border:none;
  4436. border-radius:0px;
  4437. -moz-box-shadow:none;
  4438. -webkit-box-shadow:none;
  4439. box-shadow:none;
  4440. font-size:14px;
  4441. color:#AAAAAA;
  4442. }
  4443. #u15929.disabled {
  4444. }
  4445. .u15929_input_option {
  4446. font-size:14px;
  4447. }
  4448. #u15930_div {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:0px;
  4452. top:0px;
  4453. width:57px;
  4454. height:40px;
  4455. background:inherit;
  4456. background-color:rgba(255, 255, 255, 0);
  4457. border:none;
  4458. border-left:0px;
  4459. border-top:0px;
  4460. border-right:0px;
  4461. border-radius:0px;
  4462. border-bottom-right-radius:0px;
  4463. border-bottom-left-radius:0px;
  4464. -moz-box-shadow:none;
  4465. -webkit-box-shadow:none;
  4466. box-shadow:none;
  4467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4468. font-weight:400;
  4469. font-style:normal;
  4470. font-size:14px;
  4471. }
  4472. #u15930 {
  4473. border-width:0px;
  4474. position:absolute;
  4475. left:366px;
  4476. top:692px;
  4477. width:57px;
  4478. height:40px;
  4479. display:flex;
  4480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4481. font-weight:400;
  4482. font-style:normal;
  4483. font-size:14px;
  4484. }
  4485. #u15930 .text {
  4486. position:absolute;
  4487. align-self:center;
  4488. padding:0px 0px 0px 0px;
  4489. box-sizing:border-box;
  4490. width:100%;
  4491. }
  4492. #u15930_text {
  4493. border-width:0px;
  4494. white-space:nowrap;
  4495. text-transform:none;
  4496. }
  4497. #u15931 {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:0px;
  4503. height:0px;
  4504. }
  4505. #u15932_div {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:200px;
  4511. height:40px;
  4512. background:inherit;
  4513. background-color:rgba(255, 255, 255, 1);
  4514. box-sizing:border-box;
  4515. border-width:1px;
  4516. border-style:solid;
  4517. border-color:rgba(215, 215, 215, 1);
  4518. border-radius:4px;
  4519. -moz-box-shadow:none;
  4520. -webkit-box-shadow:none;
  4521. box-shadow:none;
  4522. font-size:14px;
  4523. }
  4524. #u15932 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:366px;
  4528. top:732px;
  4529. width:200px;
  4530. height:40px;
  4531. display:flex;
  4532. font-size:14px;
  4533. }
  4534. #u15932 .text {
  4535. position:absolute;
  4536. align-self:center;
  4537. padding:2px 2px 2px 2px;
  4538. box-sizing:border-box;
  4539. width:100%;
  4540. }
  4541. #u15932_text {
  4542. border-width:0px;
  4543. word-wrap:break-word;
  4544. text-transform:none;
  4545. visibility:hidden;
  4546. }
  4547. #u15933_input {
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:191px;
  4552. height:31px;
  4553. padding:2px 2px 2px 2px;
  4554. font-family:'ArialMT', 'Arial', sans-serif;
  4555. font-weight:400;
  4556. font-style:normal;
  4557. font-size:14px;
  4558. letter-spacing:normal;
  4559. color:#AAAAAA;
  4560. vertical-align:none;
  4561. text-align:left;
  4562. text-transform:none;
  4563. background-color:transparent;
  4564. border-color:transparent;
  4565. }
  4566. #u15933_input.disabled {
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:191px;
  4571. height:31px;
  4572. padding:2px 2px 2px 2px;
  4573. font-family:'ArialMT', 'Arial', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:14px;
  4577. letter-spacing:normal;
  4578. color:#AAAAAA;
  4579. vertical-align:none;
  4580. text-align:left;
  4581. text-transform:none;
  4582. background-color:transparent;
  4583. border-color:transparent;
  4584. }
  4585. #u15933_div {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:0px;
  4589. top:0px;
  4590. width:191px;
  4591. height:31px;
  4592. background:inherit;
  4593. background-color:rgba(255, 255, 255, 1);
  4594. border:none;
  4595. border-radius:0px;
  4596. -moz-box-shadow:none;
  4597. -webkit-box-shadow:none;
  4598. box-shadow:none;
  4599. font-size:14px;
  4600. color:#AAAAAA;
  4601. }
  4602. #u15933 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:372px;
  4606. top:735px;
  4607. width:191px;
  4608. height:31px;
  4609. display:flex;
  4610. font-size:14px;
  4611. color:#AAAAAA;
  4612. }
  4613. #u15933 .text {
  4614. position:absolute;
  4615. align-self:flex-start;
  4616. padding:2px 2px 2px 2px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u15933_div.disabled {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:191px;
  4626. height:31px;
  4627. background:inherit;
  4628. background-color:rgba(240, 240, 240, 1);
  4629. border:none;
  4630. border-radius:0px;
  4631. -moz-box-shadow:none;
  4632. -webkit-box-shadow:none;
  4633. box-shadow:none;
  4634. font-size:14px;
  4635. color:#AAAAAA;
  4636. }
  4637. #u15933.disabled {
  4638. }
  4639. .u15933_input_option {
  4640. font-size:14px;
  4641. }
  4642. #u15934 label {
  4643. left:0px;
  4644. width:100%;
  4645. }
  4646. #u15934_img {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:3px;
  4651. width:12px;
  4652. height:12px;
  4653. }
  4654. #u15934 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:295px;
  4658. top:703px;
  4659. width:55px;
  4660. height:18px;
  4661. display:flex;
  4662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. }
  4666. #u15934 .text {
  4667. position:absolute;
  4668. align-self:center;
  4669. padding:0px 2px 0px 2px;
  4670. box-sizing:border-box;
  4671. }
  4672. #u15934_img.selected {
  4673. }
  4674. #u15934.selected {
  4675. }
  4676. #u15934_img.disabled {
  4677. }
  4678. #u15934.disabled {
  4679. }
  4680. #u15934_img.selectedDisabled {
  4681. }
  4682. #u15934.selectedDisabled {
  4683. }
  4684. #u15934_text {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:14px;
  4688. top:0px;
  4689. width:39px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. }
  4693. #u15934_input {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:0px;
  4699. height:0px;
  4700. opacity:0;
  4701. }
  4702. #u15935_div {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:180px;
  4708. height:40px;
  4709. background:inherit;
  4710. background-color:rgba(24, 144, 255, 1);
  4711. border:none;
  4712. border-radius:4px;
  4713. -moz-box-shadow:none;
  4714. -webkit-box-shadow:none;
  4715. box-shadow:none;
  4716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4717. font-weight:400;
  4718. font-style:normal;
  4719. font-size:14px;
  4720. color:#FFFFFF;
  4721. }
  4722. #u15935 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:643px;
  4726. top:582px;
  4727. width:180px;
  4728. height:40px;
  4729. display:flex;
  4730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4731. font-weight:400;
  4732. font-style:normal;
  4733. font-size:14px;
  4734. color:#FFFFFF;
  4735. }
  4736. #u15935 .text {
  4737. position:absolute;
  4738. align-self:center;
  4739. padding:2px 2px 2px 2px;
  4740. box-sizing:border-box;
  4741. width:100%;
  4742. }
  4743. #u15935_text {
  4744. border-width:0px;
  4745. word-wrap:break-word;
  4746. text-transform:none;
  4747. }
  4748. #u15936_div {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:0px;
  4752. top:0px;
  4753. width:180px;
  4754. height:40px;
  4755. background:inherit;
  4756. background-color:rgba(24, 144, 255, 1);
  4757. border:none;
  4758. border-radius:4px;
  4759. -moz-box-shadow:none;
  4760. -webkit-box-shadow:none;
  4761. box-shadow:none;
  4762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4763. font-weight:400;
  4764. font-style:normal;
  4765. font-size:14px;
  4766. color:#FFFFFF;
  4767. }
  4768. #u15936 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:643px;
  4772. top:642px;
  4773. width:180px;
  4774. height:40px;
  4775. display:flex;
  4776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4777. font-weight:400;
  4778. font-style:normal;
  4779. font-size:14px;
  4780. color:#FFFFFF;
  4781. }
  4782. #u15936 .text {
  4783. position:absolute;
  4784. align-self:center;
  4785. padding:2px 2px 2px 2px;
  4786. box-sizing:border-box;
  4787. width:100%;
  4788. }
  4789. #u15936_text {
  4790. border-width:0px;
  4791. word-wrap:break-word;
  4792. text-transform:none;
  4793. }
  4794. #u15937 {
  4795. border-width:0px;
  4796. position:absolute;
  4797. left:0px;
  4798. top:0px;
  4799. width:0px;
  4800. height:0px;
  4801. }
  4802. #u15938_div {
  4803. border-width:0px;
  4804. position:absolute;
  4805. left:0px;
  4806. top:0px;
  4807. width:800px;
  4808. height:60px;
  4809. background:inherit;
  4810. background-color:rgba(255, 255, 255, 1);
  4811. box-sizing:border-box;
  4812. border-width:1px;
  4813. border-style:solid;
  4814. border-color:rgba(215, 215, 215, 1);
  4815. border-radius:0px;
  4816. -moz-box-shadow:none;
  4817. -webkit-box-shadow:none;
  4818. box-shadow:none;
  4819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4820. font-weight:400;
  4821. font-style:normal;
  4822. font-size:14px;
  4823. color:#AAAAAA;
  4824. text-align:center;
  4825. line-height:30px;
  4826. }
  4827. #u15938 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:97px;
  4831. top:1202px;
  4832. width:800px;
  4833. height:60px;
  4834. display:flex;
  4835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4836. font-weight:400;
  4837. font-style:normal;
  4838. font-size:14px;
  4839. color:#AAAAAA;
  4840. text-align:center;
  4841. line-height:30px;
  4842. }
  4843. #u15938 .text {
  4844. position:absolute;
  4845. align-self:center;
  4846. padding:5px 10px 5px 10px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u15938_text {
  4851. border-width:0px;
  4852. word-wrap:break-word;
  4853. text-transform:none;
  4854. visibility:hidden;
  4855. }
  4856. #u15939_img {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:80px;
  4862. height:30px;
  4863. }
  4864. #u15939 {
  4865. border-width:0px;
  4866. position:absolute;
  4867. left:777px;
  4868. top:1217px;
  4869. width:80px;
  4870. height:30px;
  4871. display:flex;
  4872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4873. font-weight:400;
  4874. font-style:normal;
  4875. font-size:14px;
  4876. color:#FFFFFF;
  4877. }
  4878. #u15939 .text {
  4879. position:absolute;
  4880. align-self:center;
  4881. padding:2px 2px 2px 2px;
  4882. box-sizing:border-box;
  4883. width:100%;
  4884. }
  4885. #u15939_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. }
  4890. #u15940_div {
  4891. border-width:0px;
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:80px;
  4896. height:30px;
  4897. background:inherit;
  4898. background-color:rgba(255, 255, 255, 1);
  4899. box-sizing:border-box;
  4900. border-width:1px;
  4901. border-style:solid;
  4902. border-color:rgba(170, 170, 170, 1);
  4903. border-radius:4px;
  4904. -moz-box-shadow:none;
  4905. -webkit-box-shadow:none;
  4906. box-shadow:none;
  4907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4908. font-weight:400;
  4909. font-style:normal;
  4910. font-size:14px;
  4911. }
  4912. #u15940 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:687px;
  4916. top:1217px;
  4917. width:80px;
  4918. height:30px;
  4919. display:flex;
  4920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4921. font-weight:400;
  4922. font-style:normal;
  4923. font-size:14px;
  4924. }
  4925. #u15940 .text {
  4926. position:absolute;
  4927. align-self:center;
  4928. padding:2px 2px 2px 2px;
  4929. box-sizing:border-box;
  4930. width:100%;
  4931. }
  4932. #u15940_text {
  4933. border-width:0px;
  4934. word-wrap:break-word;
  4935. text-transform:none;
  4936. }
  4937. #u15941_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:525px;
  4943. height:20px;
  4944. background:inherit;
  4945. background-color:rgba(255, 255, 255, 0);
  4946. border:none;
  4947. border-left:0px;
  4948. border-top:0px;
  4949. border-right:0px;
  4950. border-radius:0px;
  4951. border-bottom-right-radius:0px;
  4952. border-bottom-left-radius:0px;
  4953. -moz-box-shadow:none;
  4954. -webkit-box-shadow:none;
  4955. box-shadow:none;
  4956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4957. font-weight:400;
  4958. font-style:normal;
  4959. font-size:14px;
  4960. color:#D9001B;
  4961. }
  4962. #u15941 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:332px;
  4966. top:1275px;
  4967. width:525px;
  4968. height:20px;
  4969. display:flex;
  4970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4971. font-weight:400;
  4972. font-style:normal;
  4973. font-size:14px;
  4974. color:#D9001B;
  4975. }
  4976. #u15941 .text {
  4977. position:absolute;
  4978. align-self:center;
  4979. padding:0px 0px 0px 0px;
  4980. box-sizing:border-box;
  4981. width:100%;
  4982. }
  4983. #u15941_text {
  4984. border-width:0px;
  4985. white-space:nowrap;
  4986. text-transform:none;
  4987. }
  4988. #u15942 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:0px;
  4992. top:0px;
  4993. width:0px;
  4994. height:0px;
  4995. }
  4996. #u15943_div {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:140px;
  5002. height:40px;
  5003. background:inherit;
  5004. background-color:rgba(255, 255, 255, 1);
  5005. box-sizing:border-box;
  5006. border-width:1px;
  5007. border-style:solid;
  5008. border-color:rgba(215, 215, 215, 1);
  5009. border-radius:4px;
  5010. -moz-box-shadow:none;
  5011. -webkit-box-shadow:none;
  5012. box-shadow:none;
  5013. font-size:14px;
  5014. }
  5015. #u15943 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:136px;
  5019. top:209px;
  5020. width:140px;
  5021. height:40px;
  5022. display:flex;
  5023. font-size:14px;
  5024. }
  5025. #u15943 .text {
  5026. position:absolute;
  5027. align-self:center;
  5028. padding:2px 2px 2px 2px;
  5029. box-sizing:border-box;
  5030. width:100%;
  5031. }
  5032. #u15943_text {
  5033. border-width:0px;
  5034. word-wrap:break-word;
  5035. text-transform:none;
  5036. visibility:hidden;
  5037. }
  5038. #u15944_input {
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:134px;
  5043. height:31px;
  5044. padding:2px 2px 2px 2px;
  5045. font-family:'ArialMT', 'Arial', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:14px;
  5049. letter-spacing:normal;
  5050. color:#AAAAAA;
  5051. vertical-align:none;
  5052. text-align:left;
  5053. text-transform:none;
  5054. background-color:transparent;
  5055. border-color:transparent;
  5056. }
  5057. #u15944_input.disabled {
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:134px;
  5062. height:31px;
  5063. padding:2px 2px 2px 2px;
  5064. font-family:'ArialMT', 'Arial', sans-serif;
  5065. font-weight:400;
  5066. font-style:normal;
  5067. font-size:14px;
  5068. letter-spacing:normal;
  5069. color:#AAAAAA;
  5070. vertical-align:none;
  5071. text-align:left;
  5072. text-transform:none;
  5073. background-color:transparent;
  5074. border-color:transparent;
  5075. }
  5076. #u15944_div {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:134px;
  5082. height:31px;
  5083. background:inherit;
  5084. background-color:rgba(255, 255, 255, 1);
  5085. border:none;
  5086. border-radius:0px;
  5087. -moz-box-shadow:none;
  5088. -webkit-box-shadow:none;
  5089. box-shadow:none;
  5090. font-size:14px;
  5091. color:#AAAAAA;
  5092. }
  5093. #u15944 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:140px;
  5097. top:212px;
  5098. width:134px;
  5099. height:31px;
  5100. display:flex;
  5101. font-size:14px;
  5102. color:#AAAAAA;
  5103. }
  5104. #u15944 .text {
  5105. position:absolute;
  5106. align-self:flex-start;
  5107. padding:2px 2px 2px 2px;
  5108. box-sizing:border-box;
  5109. width:100%;
  5110. }
  5111. #u15944_div.disabled {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:134px;
  5117. height:31px;
  5118. background:inherit;
  5119. background-color:rgba(240, 240, 240, 1);
  5120. border:none;
  5121. border-radius:0px;
  5122. -moz-box-shadow:none;
  5123. -webkit-box-shadow:none;
  5124. box-shadow:none;
  5125. font-size:14px;
  5126. color:#AAAAAA;
  5127. }
  5128. #u15944.disabled {
  5129. }
  5130. .u15944_input_option {
  5131. font-size:14px;
  5132. }
  5133. #u15945 {
  5134. border-width:0px;
  5135. position:absolute;
  5136. left:0px;
  5137. top:0px;
  5138. width:0px;
  5139. height:0px;
  5140. }
  5141. #u15946_div {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:120px;
  5147. height:40px;
  5148. background:inherit;
  5149. background-color:rgba(255, 255, 255, 1);
  5150. box-sizing:border-box;
  5151. border-width:1px;
  5152. border-style:solid;
  5153. border-color:rgba(215, 215, 215, 1);
  5154. border-radius:4px;
  5155. -moz-box-shadow:none;
  5156. -webkit-box-shadow:none;
  5157. box-shadow:none;
  5158. font-size:14px;
  5159. }
  5160. #u15946 {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:286px;
  5164. top:209px;
  5165. width:120px;
  5166. height:40px;
  5167. display:flex;
  5168. font-size:14px;
  5169. }
  5170. #u15946 .text {
  5171. position:absolute;
  5172. align-self:center;
  5173. padding:2px 2px 2px 2px;
  5174. box-sizing:border-box;
  5175. width:100%;
  5176. }
  5177. #u15946_text {
  5178. border-width:0px;
  5179. word-wrap:break-word;
  5180. text-transform:none;
  5181. visibility:hidden;
  5182. }
  5183. #u15947_input {
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:115px;
  5188. height:31px;
  5189. padding:2px 2px 2px 2px;
  5190. font-family:'ArialMT', 'Arial', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:14px;
  5194. letter-spacing:normal;
  5195. color:#AAAAAA;
  5196. vertical-align:none;
  5197. text-align:left;
  5198. text-transform:none;
  5199. background-color:transparent;
  5200. border-color:transparent;
  5201. }
  5202. #u15947_input.disabled {
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:115px;
  5207. height:31px;
  5208. padding:2px 2px 2px 2px;
  5209. font-family:'ArialMT', 'Arial', sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:14px;
  5213. letter-spacing:normal;
  5214. color:#AAAAAA;
  5215. vertical-align:none;
  5216. text-align:left;
  5217. text-transform:none;
  5218. background-color:transparent;
  5219. border-color:transparent;
  5220. }
  5221. #u15947_div {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:115px;
  5227. height:31px;
  5228. background:inherit;
  5229. background-color:rgba(255, 255, 255, 1);
  5230. border:none;
  5231. border-radius:0px;
  5232. -moz-box-shadow:none;
  5233. -webkit-box-shadow:none;
  5234. box-shadow:none;
  5235. font-size:14px;
  5236. color:#AAAAAA;
  5237. }
  5238. #u15947 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:290px;
  5242. top:212px;
  5243. width:115px;
  5244. height:31px;
  5245. display:flex;
  5246. font-size:14px;
  5247. color:#AAAAAA;
  5248. }
  5249. #u15947 .text {
  5250. position:absolute;
  5251. align-self:flex-start;
  5252. padding:2px 2px 2px 2px;
  5253. box-sizing:border-box;
  5254. width:100%;
  5255. }
  5256. #u15947_div.disabled {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:115px;
  5262. height:31px;
  5263. background:inherit;
  5264. background-color:rgba(240, 240, 240, 1);
  5265. border:none;
  5266. border-radius:0px;
  5267. -moz-box-shadow:none;
  5268. -webkit-box-shadow:none;
  5269. box-shadow:none;
  5270. font-size:14px;
  5271. color:#AAAAAA;
  5272. }
  5273. #u15947.disabled {
  5274. }
  5275. .u15947_input_option {
  5276. font-size:14px;
  5277. }
  5278. #u15948 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:0px;
  5284. height:0px;
  5285. }
  5286. #u15949_div {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:120px;
  5292. height:40px;
  5293. background:inherit;
  5294. background-color:rgba(255, 255, 255, 1);
  5295. box-sizing:border-box;
  5296. border-width:1px;
  5297. border-style:solid;
  5298. border-color:rgba(215, 215, 215, 1);
  5299. border-radius:4px;
  5300. -moz-box-shadow:none;
  5301. -webkit-box-shadow:none;
  5302. box-shadow:none;
  5303. font-size:14px;
  5304. }
  5305. #u15949 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:416px;
  5309. top:209px;
  5310. width:120px;
  5311. height:40px;
  5312. display:flex;
  5313. font-size:14px;
  5314. }
  5315. #u15949 .text {
  5316. position:absolute;
  5317. align-self:center;
  5318. padding:2px 2px 2px 2px;
  5319. box-sizing:border-box;
  5320. width:100%;
  5321. }
  5322. #u15949_text {
  5323. border-width:0px;
  5324. word-wrap:break-word;
  5325. text-transform:none;
  5326. visibility:hidden;
  5327. }
  5328. #u15950_input {
  5329. position:absolute;
  5330. left:0px;
  5331. top:0px;
  5332. width:115px;
  5333. height:31px;
  5334. padding:2px 2px 2px 2px;
  5335. font-family:'ArialMT', 'Arial', sans-serif;
  5336. font-weight:400;
  5337. font-style:normal;
  5338. font-size:14px;
  5339. letter-spacing:normal;
  5340. color:#AAAAAA;
  5341. vertical-align:none;
  5342. text-align:left;
  5343. text-transform:none;
  5344. background-color:transparent;
  5345. border-color:transparent;
  5346. }
  5347. #u15950_input.disabled {
  5348. position:absolute;
  5349. left:0px;
  5350. top:0px;
  5351. width:115px;
  5352. height:31px;
  5353. padding:2px 2px 2px 2px;
  5354. font-family:'ArialMT', 'Arial', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:14px;
  5358. letter-spacing:normal;
  5359. color:#AAAAAA;
  5360. vertical-align:none;
  5361. text-align:left;
  5362. text-transform:none;
  5363. background-color:transparent;
  5364. border-color:transparent;
  5365. }
  5366. #u15950_div {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:0px;
  5370. top:0px;
  5371. width:115px;
  5372. height:31px;
  5373. background:inherit;
  5374. background-color:rgba(255, 255, 255, 1);
  5375. border:none;
  5376. border-radius:0px;
  5377. -moz-box-shadow:none;
  5378. -webkit-box-shadow:none;
  5379. box-shadow:none;
  5380. font-size:14px;
  5381. color:#AAAAAA;
  5382. }
  5383. #u15950 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:420px;
  5387. top:212px;
  5388. width:115px;
  5389. height:31px;
  5390. display:flex;
  5391. font-size:14px;
  5392. color:#AAAAAA;
  5393. }
  5394. #u15950 .text {
  5395. position:absolute;
  5396. align-self:flex-start;
  5397. padding:2px 2px 2px 2px;
  5398. box-sizing:border-box;
  5399. width:100%;
  5400. }
  5401. #u15950_div.disabled {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:115px;
  5407. height:31px;
  5408. background:inherit;
  5409. background-color:rgba(240, 240, 240, 1);
  5410. border:none;
  5411. border-radius:0px;
  5412. -moz-box-shadow:none;
  5413. -webkit-box-shadow:none;
  5414. box-shadow:none;
  5415. font-size:14px;
  5416. color:#AAAAAA;
  5417. }
  5418. #u15950.disabled {
  5419. }
  5420. .u15950_input_option {
  5421. font-size:14px;
  5422. }
  5423. #u15951_div {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:36px;
  5429. height:40px;
  5430. background:inherit;
  5431. background-color:rgba(255, 255, 255, 0);
  5432. border:none;
  5433. border-left:0px;
  5434. border-top:0px;
  5435. border-right:0px;
  5436. border-radius:0px;
  5437. border-bottom-right-radius:0px;
  5438. border-bottom-left-radius:0px;
  5439. -moz-box-shadow:none;
  5440. -webkit-box-shadow:none;
  5441. box-shadow:none;
  5442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5443. font-weight:400;
  5444. font-style:normal;
  5445. font-size:14px;
  5446. }
  5447. #u15951 {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:136px;
  5451. top:424px;
  5452. width:36px;
  5453. height:40px;
  5454. display:flex;
  5455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5456. font-weight:400;
  5457. font-style:normal;
  5458. font-size:14px;
  5459. }
  5460. #u15951 .text {
  5461. position:absolute;
  5462. align-self:center;
  5463. padding:0px 0px 0px 0px;
  5464. box-sizing:border-box;
  5465. width:100%;
  5466. }
  5467. #u15951_text {
  5468. border-width:0px;
  5469. white-space:nowrap;
  5470. text-transform:none;
  5471. }
  5472. #u15952 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:0px;
  5478. height:0px;
  5479. }
  5480. #u15953_div {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:200px;
  5486. height:40px;
  5487. background:inherit;
  5488. background-color:rgba(255, 255, 255, 1);
  5489. box-sizing:border-box;
  5490. border-width:1px;
  5491. border-style:solid;
  5492. border-color:rgba(201, 201, 201, 1);
  5493. border-radius:4px;
  5494. -moz-box-shadow:none;
  5495. -webkit-box-shadow:none;
  5496. box-shadow:none;
  5497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:14px;
  5501. text-align:right;
  5502. }
  5503. #u15953 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:366px;
  5507. top:463px;
  5508. width:200px;
  5509. height:40px;
  5510. display:flex;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:14px;
  5515. text-align:right;
  5516. }
  5517. #u15953 .text {
  5518. position:absolute;
  5519. align-self:center;
  5520. padding:2px 8px 2px 8px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u15953_text {
  5525. border-width:0px;
  5526. word-wrap:break-word;
  5527. text-transform:none;
  5528. visibility:hidden;
  5529. }
  5530. #u15954_input {
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:161px;
  5535. height:33px;
  5536. padding:2px 2px 2px 2px;
  5537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5538. font-weight:400;
  5539. font-style:normal;
  5540. font-size:14px;
  5541. letter-spacing:normal;
  5542. color:#D7D7D7;
  5543. vertical-align:none;
  5544. text-align:left;
  5545. text-transform:none;
  5546. background-color:transparent;
  5547. border-color:transparent;
  5548. }
  5549. #u15954_input.disabled {
  5550. position:absolute;
  5551. left:0px;
  5552. top:0px;
  5553. width:161px;
  5554. height:33px;
  5555. padding:2px 2px 2px 2px;
  5556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:14px;
  5560. letter-spacing:normal;
  5561. color:#D7D7D7;
  5562. vertical-align:none;
  5563. text-align:left;
  5564. text-transform:none;
  5565. background-color:transparent;
  5566. border-color:transparent;
  5567. }
  5568. #u15954_div {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:161px;
  5574. height:33px;
  5575. background:inherit;
  5576. background-color:rgba(255, 255, 255, 0);
  5577. border:none;
  5578. border-radius:0px;
  5579. -moz-box-shadow:none;
  5580. -webkit-box-shadow:none;
  5581. box-shadow:none;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:14px;
  5586. color:#D7D7D7;
  5587. }
  5588. #u15954 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:374px;
  5592. top:466px;
  5593. width:161px;
  5594. height:33px;
  5595. display:flex;
  5596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:14px;
  5600. color:#D7D7D7;
  5601. }
  5602. #u15954 .text {
  5603. position:absolute;
  5604. align-self:center;
  5605. padding:2px 2px 2px 2px;
  5606. box-sizing:border-box;
  5607. width:100%;
  5608. }
  5609. #u15954_div.disabled {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:161px;
  5615. height:33px;
  5616. background:inherit;
  5617. background-color:rgba(240, 240, 240, 1);
  5618. border:none;
  5619. border-radius:0px;
  5620. -moz-box-shadow:none;
  5621. -webkit-box-shadow:none;
  5622. box-shadow:none;
  5623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5624. font-weight:400;
  5625. font-style:normal;
  5626. font-size:14px;
  5627. color:#D7D7D7;
  5628. }
  5629. #u15954.disabled {
  5630. }
  5631. #u15955_div {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:50px;
  5637. height:40px;
  5638. background:inherit;
  5639. background-color:rgba(255, 255, 255, 0);
  5640. border:none;
  5641. border-left:0px;
  5642. border-top:0px;
  5643. border-right:0px;
  5644. border-radius:0px;
  5645. border-bottom-right-radius:0px;
  5646. border-bottom-left-radius:0px;
  5647. -moz-box-shadow:none;
  5648. -webkit-box-shadow:none;
  5649. box-shadow:none;
  5650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. font-size:14px;
  5654. }
  5655. #u15955 {
  5656. border-width:0px;
  5657. position:absolute;
  5658. left:366px;
  5659. top:424px;
  5660. width:50px;
  5661. height:40px;
  5662. display:flex;
  5663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5664. font-weight:400;
  5665. font-style:normal;
  5666. font-size:14px;
  5667. }
  5668. #u15955 .text {
  5669. position:absolute;
  5670. align-self:center;
  5671. padding:0px 0px 0px 0px;
  5672. box-sizing:border-box;
  5673. width:100%;
  5674. }
  5675. #u15955_text {
  5676. border-width:0px;
  5677. white-space:nowrap;
  5678. text-transform:none;
  5679. }
  5680. #u15956 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:0px;
  5686. height:0px;
  5687. }
  5688. #u15957_div {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:0px;
  5692. top:0px;
  5693. width:200px;
  5694. height:40px;
  5695. background:inherit;
  5696. background-color:rgba(255, 255, 255, 1);
  5697. box-sizing:border-box;
  5698. border-width:1px;
  5699. border-style:solid;
  5700. border-color:rgba(201, 201, 201, 1);
  5701. border-radius:4px;
  5702. -moz-box-shadow:none;
  5703. -webkit-box-shadow:none;
  5704. box-shadow:none;
  5705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5706. font-weight:400;
  5707. font-style:normal;
  5708. font-size:14px;
  5709. text-align:right;
  5710. }
  5711. #u15957 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:136px;
  5715. top:642px;
  5716. width:200px;
  5717. height:40px;
  5718. display:flex;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:14px;
  5723. text-align:right;
  5724. }
  5725. #u15957 .text {
  5726. position:absolute;
  5727. align-self:center;
  5728. padding:2px 8px 2px 8px;
  5729. box-sizing:border-box;
  5730. width:100%;
  5731. }
  5732. #u15957_text {
  5733. border-width:0px;
  5734. word-wrap:break-word;
  5735. text-transform:none;
  5736. visibility:hidden;
  5737. }
  5738. #u15958_input {
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:161px;
  5743. height:33px;
  5744. padding:2px 2px 2px 2px;
  5745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5746. font-weight:400;
  5747. font-style:normal;
  5748. font-size:14px;
  5749. letter-spacing:normal;
  5750. color:#D7D7D7;
  5751. vertical-align:none;
  5752. text-align:left;
  5753. text-transform:none;
  5754. background-color:transparent;
  5755. border-color:transparent;
  5756. }
  5757. #u15958_input.disabled {
  5758. position:absolute;
  5759. left:0px;
  5760. top:0px;
  5761. width:161px;
  5762. height:33px;
  5763. padding:2px 2px 2px 2px;
  5764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:14px;
  5768. letter-spacing:normal;
  5769. color:#D7D7D7;
  5770. vertical-align:none;
  5771. text-align:left;
  5772. text-transform:none;
  5773. background-color:transparent;
  5774. border-color:transparent;
  5775. }
  5776. #u15958_div {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:161px;
  5782. height:33px;
  5783. background:inherit;
  5784. background-color:rgba(255, 255, 255, 0);
  5785. border:none;
  5786. border-radius:0px;
  5787. -moz-box-shadow:none;
  5788. -webkit-box-shadow:none;
  5789. box-shadow:none;
  5790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:14px;
  5794. color:#D7D7D7;
  5795. }
  5796. #u15958 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:144px;
  5800. top:645px;
  5801. width:161px;
  5802. height:33px;
  5803. display:flex;
  5804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5805. font-weight:400;
  5806. font-style:normal;
  5807. font-size:14px;
  5808. color:#D7D7D7;
  5809. }
  5810. #u15958 .text {
  5811. position:absolute;
  5812. align-self:center;
  5813. padding:2px 2px 2px 2px;
  5814. box-sizing:border-box;
  5815. width:100%;
  5816. }
  5817. #u15958_div.disabled {
  5818. border-width:0px;
  5819. position:absolute;
  5820. left:0px;
  5821. top:0px;
  5822. width:161px;
  5823. height:33px;
  5824. background:inherit;
  5825. background-color:rgba(240, 240, 240, 1);
  5826. border:none;
  5827. border-radius:0px;
  5828. -moz-box-shadow:none;
  5829. -webkit-box-shadow:none;
  5830. box-shadow:none;
  5831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5832. font-weight:400;
  5833. font-style:normal;
  5834. font-size:14px;
  5835. color:#D7D7D7;
  5836. }
  5837. #u15958.disabled {
  5838. }
  5839. #u15959_div {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:78px;
  5845. height:40px;
  5846. background:inherit;
  5847. background-color:rgba(255, 255, 255, 0);
  5848. border:none;
  5849. border-left:0px;
  5850. border-top:0px;
  5851. border-right:0px;
  5852. border-radius:0px;
  5853. border-bottom-right-radius:0px;
  5854. border-bottom-left-radius:0px;
  5855. -moz-box-shadow:none;
  5856. -webkit-box-shadow:none;
  5857. box-shadow:none;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:14px;
  5862. }
  5863. #u15959 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:136px;
  5867. top:603px;
  5868. width:78px;
  5869. height:40px;
  5870. display:flex;
  5871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:14px;
  5875. }
  5876. #u15959 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:0px 0px 0px 0px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u15959_text {
  5884. border-width:0px;
  5885. white-space:nowrap;
  5886. text-transform:none;
  5887. }
  5888. #u15960_div {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:36px;
  5894. height:40px;
  5895. background:inherit;
  5896. background-color:rgba(255, 255, 255, 0);
  5897. border:none;
  5898. border-left:0px;
  5899. border-top:0px;
  5900. border-right:0px;
  5901. border-radius:0px;
  5902. border-bottom-right-radius:0px;
  5903. border-bottom-left-radius:0px;
  5904. -moz-box-shadow:none;
  5905. -webkit-box-shadow:none;
  5906. box-shadow:none;
  5907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:14px;
  5911. }
  5912. #u15960 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:136px;
  5916. top:513px;
  5917. width:36px;
  5918. height:40px;
  5919. display:flex;
  5920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5921. font-weight:400;
  5922. font-style:normal;
  5923. font-size:14px;
  5924. }
  5925. #u15960 .text {
  5926. position:absolute;
  5927. align-self:center;
  5928. padding:0px 0px 0px 0px;
  5929. box-sizing:border-box;
  5930. width:100%;
  5931. }
  5932. #u15960_text {
  5933. border-width:0px;
  5934. white-space:nowrap;
  5935. text-transform:none;
  5936. }
  5937. #u15961 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:0px;
  5941. top:0px;
  5942. width:0px;
  5943. height:0px;
  5944. }
  5945. #u15962_div {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:200px;
  5951. height:40px;
  5952. background:inherit;
  5953. background-color:rgba(255, 255, 255, 1);
  5954. box-sizing:border-box;
  5955. border-width:1px;
  5956. border-style:solid;
  5957. border-color:rgba(215, 215, 215, 1);
  5958. border-radius:4px;
  5959. -moz-box-shadow:none;
  5960. -webkit-box-shadow:none;
  5961. box-shadow:none;
  5962. font-size:14px;
  5963. }
  5964. #u15962 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:136px;
  5968. top:553px;
  5969. width:200px;
  5970. height:40px;
  5971. display:flex;
  5972. font-size:14px;
  5973. }
  5974. #u15962 .text {
  5975. position:absolute;
  5976. align-self:center;
  5977. padding:2px 2px 2px 2px;
  5978. box-sizing:border-box;
  5979. width:100%;
  5980. }
  5981. #u15962_text {
  5982. border-width:0px;
  5983. word-wrap:break-word;
  5984. text-transform:none;
  5985. visibility:hidden;
  5986. }
  5987. #u15963_input {
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:191px;
  5992. height:31px;
  5993. padding:2px 2px 2px 2px;
  5994. font-family:'ArialMT', 'Arial', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:14px;
  5998. letter-spacing:normal;
  5999. color:#AAAAAA;
  6000. vertical-align:none;
  6001. text-align:left;
  6002. text-transform:none;
  6003. background-color:transparent;
  6004. border-color:transparent;
  6005. }
  6006. #u15963_input.disabled {
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:191px;
  6011. height:31px;
  6012. padding:2px 2px 2px 2px;
  6013. font-family:'ArialMT', 'Arial', sans-serif;
  6014. font-weight:400;
  6015. font-style:normal;
  6016. font-size:14px;
  6017. letter-spacing:normal;
  6018. color:#AAAAAA;
  6019. vertical-align:none;
  6020. text-align:left;
  6021. text-transform:none;
  6022. background-color:transparent;
  6023. border-color:transparent;
  6024. }
  6025. #u15963_div {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:191px;
  6031. height:31px;
  6032. background:inherit;
  6033. background-color:rgba(255, 255, 255, 1);
  6034. border:none;
  6035. border-radius:0px;
  6036. -moz-box-shadow:none;
  6037. -webkit-box-shadow:none;
  6038. box-shadow:none;
  6039. font-size:14px;
  6040. color:#AAAAAA;
  6041. }
  6042. #u15963 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:142px;
  6046. top:556px;
  6047. width:191px;
  6048. height:31px;
  6049. display:flex;
  6050. font-size:14px;
  6051. color:#AAAAAA;
  6052. }
  6053. #u15963 .text {
  6054. position:absolute;
  6055. align-self:flex-start;
  6056. padding:2px 2px 2px 2px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u15963_div.disabled {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:191px;
  6066. height:31px;
  6067. background:inherit;
  6068. background-color:rgba(240, 240, 240, 1);
  6069. border:none;
  6070. border-radius:0px;
  6071. -moz-box-shadow:none;
  6072. -webkit-box-shadow:none;
  6073. box-shadow:none;
  6074. font-size:14px;
  6075. color:#AAAAAA;
  6076. }
  6077. #u15963.disabled {
  6078. }
  6079. .u15963_input_option {
  6080. font-size:14px;
  6081. }
  6082. #u15964 {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:0px;
  6088. height:0px;
  6089. }
  6090. #u15965_div {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:200px;
  6096. height:40px;
  6097. background:inherit;
  6098. background-color:rgba(255, 255, 255, 1);
  6099. box-sizing:border-box;
  6100. border-width:1px;
  6101. border-style:solid;
  6102. border-color:rgba(201, 201, 201, 1);
  6103. border-radius:4px;
  6104. -moz-box-shadow:none;
  6105. -webkit-box-shadow:none;
  6106. box-shadow:none;
  6107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:14px;
  6111. text-align:right;
  6112. }
  6113. #u15965 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:366px;
  6117. top:642px;
  6118. width:200px;
  6119. height:40px;
  6120. display:flex;
  6121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. font-size:14px;
  6125. text-align:right;
  6126. }
  6127. #u15965 .text {
  6128. position:absolute;
  6129. align-self:center;
  6130. padding:2px 8px 2px 8px;
  6131. box-sizing:border-box;
  6132. width:100%;
  6133. }
  6134. #u15965_text {
  6135. border-width:0px;
  6136. word-wrap:break-word;
  6137. text-transform:none;
  6138. visibility:hidden;
  6139. }
  6140. #u15966_input {
  6141. position:absolute;
  6142. left:0px;
  6143. top:0px;
  6144. width:161px;
  6145. height:33px;
  6146. padding:2px 2px 2px 2px;
  6147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6148. font-weight:400;
  6149. font-style:normal;
  6150. font-size:14px;
  6151. letter-spacing:normal;
  6152. color:#D7D7D7;
  6153. vertical-align:none;
  6154. text-align:left;
  6155. text-transform:none;
  6156. background-color:transparent;
  6157. border-color:transparent;
  6158. }
  6159. #u15966_input.disabled {
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:161px;
  6164. height:33px;
  6165. padding:2px 2px 2px 2px;
  6166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6167. font-weight:400;
  6168. font-style:normal;
  6169. font-size:14px;
  6170. letter-spacing:normal;
  6171. color:#D7D7D7;
  6172. vertical-align:none;
  6173. text-align:left;
  6174. text-transform:none;
  6175. background-color:transparent;
  6176. border-color:transparent;
  6177. }
  6178. #u15966_div {
  6179. border-width:0px;
  6180. position:absolute;
  6181. left:0px;
  6182. top:0px;
  6183. width:161px;
  6184. height:33px;
  6185. background:inherit;
  6186. background-color:rgba(255, 255, 255, 0);
  6187. border:none;
  6188. border-radius:0px;
  6189. -moz-box-shadow:none;
  6190. -webkit-box-shadow:none;
  6191. box-shadow:none;
  6192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6193. font-weight:400;
  6194. font-style:normal;
  6195. font-size:14px;
  6196. color:#D7D7D7;
  6197. }
  6198. #u15966 {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:374px;
  6202. top:645px;
  6203. width:161px;
  6204. height:33px;
  6205. display:flex;
  6206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6207. font-weight:400;
  6208. font-style:normal;
  6209. font-size:14px;
  6210. color:#D7D7D7;
  6211. }
  6212. #u15966 .text {
  6213. position:absolute;
  6214. align-self:center;
  6215. padding:2px 2px 2px 2px;
  6216. box-sizing:border-box;
  6217. width:100%;
  6218. }
  6219. #u15966_div.disabled {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:0px;
  6223. top:0px;
  6224. width:161px;
  6225. height:33px;
  6226. background:inherit;
  6227. background-color:rgba(240, 240, 240, 1);
  6228. border:none;
  6229. border-radius:0px;
  6230. -moz-box-shadow:none;
  6231. -webkit-box-shadow:none;
  6232. box-shadow:none;
  6233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6234. font-weight:400;
  6235. font-style:normal;
  6236. font-size:14px;
  6237. color:#D7D7D7;
  6238. }
  6239. #u15966.disabled {
  6240. }
  6241. #u15967_div {
  6242. border-width:0px;
  6243. position:absolute;
  6244. left:0px;
  6245. top:0px;
  6246. width:78px;
  6247. height:40px;
  6248. background:inherit;
  6249. background-color:rgba(255, 255, 255, 0);
  6250. border:none;
  6251. border-left:0px;
  6252. border-top:0px;
  6253. border-right:0px;
  6254. border-radius:0px;
  6255. border-bottom-right-radius:0px;
  6256. border-bottom-left-radius:0px;
  6257. -moz-box-shadow:none;
  6258. -webkit-box-shadow:none;
  6259. box-shadow:none;
  6260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6261. font-weight:400;
  6262. font-style:normal;
  6263. font-size:14px;
  6264. }
  6265. #u15967 {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:366px;
  6269. top:603px;
  6270. width:78px;
  6271. height:40px;
  6272. display:flex;
  6273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:14px;
  6277. }
  6278. #u15967 .text {
  6279. position:absolute;
  6280. align-self:center;
  6281. padding:0px 0px 0px 0px;
  6282. box-sizing:border-box;
  6283. width:100%;
  6284. }
  6285. #u15967_text {
  6286. border-width:0px;
  6287. white-space:nowrap;
  6288. text-transform:none;
  6289. }
  6290. #u15968_div {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:0px;
  6294. top:0px;
  6295. width:64px;
  6296. height:40px;
  6297. background:inherit;
  6298. background-color:rgba(255, 255, 255, 0);
  6299. border:none;
  6300. border-left:0px;
  6301. border-top:0px;
  6302. border-right:0px;
  6303. border-radius:0px;
  6304. border-bottom-right-radius:0px;
  6305. border-bottom-left-radius:0px;
  6306. -moz-box-shadow:none;
  6307. -webkit-box-shadow:none;
  6308. box-shadow:none;
  6309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6310. font-weight:400;
  6311. font-style:normal;
  6312. font-size:14px;
  6313. }
  6314. #u15968 {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:136px;
  6318. top:339px;
  6319. width:64px;
  6320. height:40px;
  6321. display:flex;
  6322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:14px;
  6326. }
  6327. #u15968 .text {
  6328. position:absolute;
  6329. align-self:center;
  6330. padding:0px 0px 0px 0px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u15968_text {
  6335. border-width:0px;
  6336. white-space:nowrap;
  6337. text-transform:none;
  6338. }
  6339. #u15969 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:0px;
  6345. height:0px;
  6346. }
  6347. #u15970_div {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:200px;
  6353. height:40px;
  6354. background:inherit;
  6355. background-color:rgba(255, 255, 255, 1);
  6356. box-sizing:border-box;
  6357. border-width:1px;
  6358. border-style:solid;
  6359. border-color:rgba(201, 201, 201, 1);
  6360. border-radius:4px;
  6361. -moz-box-shadow:none;
  6362. -webkit-box-shadow:none;
  6363. box-shadow:none;
  6364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6365. font-weight:400;
  6366. font-style:normal;
  6367. font-size:14px;
  6368. text-align:right;
  6369. }
  6370. #u15970 {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:136px;
  6374. top:463px;
  6375. width:200px;
  6376. height:40px;
  6377. display:flex;
  6378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6379. font-weight:400;
  6380. font-style:normal;
  6381. font-size:14px;
  6382. text-align:right;
  6383. }
  6384. #u15970 .text {
  6385. position:absolute;
  6386. align-self:center;
  6387. padding:2px 8px 2px 8px;
  6388. box-sizing:border-box;
  6389. width:100%;
  6390. }
  6391. #u15970_text {
  6392. border-width:0px;
  6393. word-wrap:break-word;
  6394. text-transform:none;
  6395. visibility:hidden;
  6396. }
  6397. #u15971_input {
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:161px;
  6402. height:33px;
  6403. padding:2px 2px 2px 2px;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:14px;
  6408. letter-spacing:normal;
  6409. color:#D7D7D7;
  6410. vertical-align:none;
  6411. text-align:left;
  6412. text-transform:none;
  6413. background-color:transparent;
  6414. border-color:transparent;
  6415. }
  6416. #u15971_input.disabled {
  6417. position:absolute;
  6418. left:0px;
  6419. top:0px;
  6420. width:161px;
  6421. height:33px;
  6422. padding:2px 2px 2px 2px;
  6423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6424. font-weight:400;
  6425. font-style:normal;
  6426. font-size:14px;
  6427. letter-spacing:normal;
  6428. color:#D7D7D7;
  6429. vertical-align:none;
  6430. text-align:left;
  6431. text-transform:none;
  6432. background-color:transparent;
  6433. border-color:transparent;
  6434. }
  6435. #u15971_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:161px;
  6441. height:33px;
  6442. background:inherit;
  6443. background-color:rgba(255, 255, 255, 0);
  6444. border:none;
  6445. border-radius:0px;
  6446. -moz-box-shadow:none;
  6447. -webkit-box-shadow:none;
  6448. box-shadow:none;
  6449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6450. font-weight:400;
  6451. font-style:normal;
  6452. font-size:14px;
  6453. color:#D7D7D7;
  6454. }
  6455. #u15971 {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:144px;
  6459. top:466px;
  6460. width:161px;
  6461. height:33px;
  6462. display:flex;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:14px;
  6467. color:#D7D7D7;
  6468. }
  6469. #u15971 .text {
  6470. position:absolute;
  6471. align-self:center;
  6472. padding:2px 2px 2px 2px;
  6473. box-sizing:border-box;
  6474. width:100%;
  6475. }
  6476. #u15971_div.disabled {
  6477. border-width:0px;
  6478. position:absolute;
  6479. left:0px;
  6480. top:0px;
  6481. width:161px;
  6482. height:33px;
  6483. background:inherit;
  6484. background-color:rgba(240, 240, 240, 1);
  6485. border:none;
  6486. border-radius:0px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:14px;
  6494. color:#D7D7D7;
  6495. }
  6496. #u15971.disabled {
  6497. }
  6498. #u15972_img {
  6499. border-width:0px;
  6500. position:absolute;
  6501. left:0px;
  6502. top:0px;
  6503. width:13px;
  6504. height:13px;
  6505. }
  6506. #u15972 {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:314px;
  6510. top:476px;
  6511. width:13px;
  6512. height:13px;
  6513. display:flex;
  6514. }
  6515. #u15972 .text {
  6516. position:absolute;
  6517. align-self:center;
  6518. padding:2px 2px 2px 2px;
  6519. box-sizing:border-box;
  6520. width:100%;
  6521. }
  6522. #u15972_text {
  6523. border-width:0px;
  6524. word-wrap:break-word;
  6525. text-transform:none;
  6526. visibility:hidden;
  6527. }
  6528. #u15973_div {
  6529. border-width:0px;
  6530. position:absolute;
  6531. left:0px;
  6532. top:0px;
  6533. width:64px;
  6534. height:40px;
  6535. background:inherit;
  6536. background-color:rgba(255, 255, 255, 0);
  6537. border:none;
  6538. border-left:0px;
  6539. border-top:0px;
  6540. border-right:0px;
  6541. border-radius:0px;
  6542. border-bottom-right-radius:0px;
  6543. border-bottom-left-radius:0px;
  6544. -moz-box-shadow:none;
  6545. -webkit-box-shadow:none;
  6546. box-shadow:none;
  6547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6548. font-weight:400;
  6549. font-style:normal;
  6550. font-size:14px;
  6551. }
  6552. #u15973 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:366px;
  6556. top:513px;
  6557. width:64px;
  6558. height:40px;
  6559. display:flex;
  6560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:14px;
  6564. }
  6565. #u15973 .text {
  6566. position:absolute;
  6567. align-self:center;
  6568. padding:0px 0px 0px 0px;
  6569. box-sizing:border-box;
  6570. width:100%;
  6571. }
  6572. #u15973_text {
  6573. border-width:0px;
  6574. white-space:nowrap;
  6575. text-transform:none;
  6576. }
  6577. #u15974 {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:0px;
  6581. top:0px;
  6582. width:0px;
  6583. height:0px;
  6584. }
  6585. #u15975_div {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:200px;
  6591. height:40px;
  6592. background:inherit;
  6593. background-color:rgba(255, 255, 255, 1);
  6594. box-sizing:border-box;
  6595. border-width:1px;
  6596. border-style:solid;
  6597. border-color:rgba(215, 215, 215, 1);
  6598. border-radius:4px;
  6599. -moz-box-shadow:none;
  6600. -webkit-box-shadow:none;
  6601. box-shadow:none;
  6602. font-size:14px;
  6603. }
  6604. #u15975 {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:366px;
  6608. top:553px;
  6609. width:200px;
  6610. height:40px;
  6611. display:flex;
  6612. font-size:14px;
  6613. }
  6614. #u15975 .text {
  6615. position:absolute;
  6616. align-self:center;
  6617. padding:2px 2px 2px 2px;
  6618. box-sizing:border-box;
  6619. width:100%;
  6620. }
  6621. #u15975_text {
  6622. border-width:0px;
  6623. word-wrap:break-word;
  6624. text-transform:none;
  6625. visibility:hidden;
  6626. }
  6627. #u15976_input {
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:191px;
  6632. height:31px;
  6633. padding:2px 2px 2px 2px;
  6634. font-family:'ArialMT', 'Arial', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:14px;
  6638. letter-spacing:normal;
  6639. color:#AAAAAA;
  6640. vertical-align:none;
  6641. text-align:left;
  6642. text-transform:none;
  6643. background-color:transparent;
  6644. border-color:transparent;
  6645. }
  6646. #u15976_input.disabled {
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:191px;
  6651. height:31px;
  6652. padding:2px 2px 2px 2px;
  6653. font-family:'ArialMT', 'Arial', sans-serif;
  6654. font-weight:400;
  6655. font-style:normal;
  6656. font-size:14px;
  6657. letter-spacing:normal;
  6658. color:#AAAAAA;
  6659. vertical-align:none;
  6660. text-align:left;
  6661. text-transform:none;
  6662. background-color:transparent;
  6663. border-color:transparent;
  6664. }
  6665. #u15976_div {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:0px;
  6669. top:0px;
  6670. width:191px;
  6671. height:31px;
  6672. background:inherit;
  6673. background-color:rgba(255, 255, 255, 1);
  6674. border:none;
  6675. border-radius:0px;
  6676. -moz-box-shadow:none;
  6677. -webkit-box-shadow:none;
  6678. box-shadow:none;
  6679. font-size:14px;
  6680. color:#AAAAAA;
  6681. }
  6682. #u15976 {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:372px;
  6686. top:556px;
  6687. width:191px;
  6688. height:31px;
  6689. display:flex;
  6690. font-size:14px;
  6691. color:#AAAAAA;
  6692. }
  6693. #u15976 .text {
  6694. position:absolute;
  6695. align-self:flex-start;
  6696. padding:2px 2px 2px 2px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u15976_div.disabled {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:191px;
  6706. height:31px;
  6707. background:inherit;
  6708. background-color:rgba(240, 240, 240, 1);
  6709. border:none;
  6710. border-radius:0px;
  6711. -moz-box-shadow:none;
  6712. -webkit-box-shadow:none;
  6713. box-shadow:none;
  6714. font-size:14px;
  6715. color:#AAAAAA;
  6716. }
  6717. #u15976.disabled {
  6718. }
  6719. .u15976_input_option {
  6720. font-size:14px;
  6721. }
  6722. #u15977 label {
  6723. left:0px;
  6724. width:100%;
  6725. }
  6726. #u15977_img {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:4px;
  6731. width:12px;
  6732. height:12px;
  6733. }
  6734. #u15977 {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:144px;
  6738. top:389px;
  6739. width:100px;
  6740. height:20px;
  6741. display:flex;
  6742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6743. font-weight:400;
  6744. font-style:normal;
  6745. font-size:14px;
  6746. }
  6747. #u15977 .text {
  6748. position:absolute;
  6749. align-self:center;
  6750. padding:0px 2px 0px 2px;
  6751. box-sizing:border-box;
  6752. }
  6753. #u15977_img.selected {
  6754. }
  6755. #u15977.selected {
  6756. }
  6757. #u15977_img.disabled {
  6758. }
  6759. #u15977.disabled {
  6760. }
  6761. #u15977_img.selectedDisabled {
  6762. }
  6763. #u15977.selectedDisabled {
  6764. }
  6765. #u15977_text {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:14px;
  6769. top:0px;
  6770. width:84px;
  6771. word-wrap:break-word;
  6772. text-transform:none;
  6773. }
  6774. #u15977_input {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:0px;
  6780. height:0px;
  6781. opacity:0;
  6782. }
  6783. #u15978 label {
  6784. left:0px;
  6785. width:100%;
  6786. }
  6787. #u15978_img {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:0px;
  6791. top:4px;
  6792. width:12px;
  6793. height:12px;
  6794. }
  6795. #u15978 {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:366px;
  6799. top:389px;
  6800. width:100px;
  6801. height:20px;
  6802. display:flex;
  6803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:14px;
  6807. }
  6808. #u15978 .text {
  6809. position:absolute;
  6810. align-self:center;
  6811. padding:0px 2px 0px 2px;
  6812. box-sizing:border-box;
  6813. }
  6814. #u15978_img.selected {
  6815. }
  6816. #u15978.selected {
  6817. }
  6818. #u15978_img.disabled {
  6819. }
  6820. #u15978.disabled {
  6821. }
  6822. #u15978_img.selectedDisabled {
  6823. }
  6824. #u15978.selectedDisabled {
  6825. }
  6826. #u15978_text {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:14px;
  6830. top:0px;
  6831. width:84px;
  6832. word-wrap:break-word;
  6833. text-transform:none;
  6834. }
  6835. #u15978_input {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:0px;
  6841. height:0px;
  6842. opacity:0;
  6843. }
  6844. #u15979_div {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:298px;
  6850. height:85px;
  6851. background:inherit;
  6852. background-color:rgba(255, 255, 255, 0);
  6853. border:none;
  6854. border-left:0px;
  6855. border-top:0px;
  6856. border-right:0px;
  6857. border-radius:0px;
  6858. border-bottom-right-radius:0px;
  6859. border-bottom-left-radius:0px;
  6860. -moz-box-shadow:none;
  6861. -webkit-box-shadow:none;
  6862. box-shadow:none;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:12px;
  6867. color:#D9001B;
  6868. }
  6869. #u15979 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:593px;
  6873. top:692px;
  6874. width:298px;
  6875. height:85px;
  6876. display:flex;
  6877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:12px;
  6881. color:#D9001B;
  6882. }
  6883. #u15979 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:0px 0px 0px 0px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u15979_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. }
  6895. #u15980_div {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:121px;
  6901. height:17px;
  6902. background:inherit;
  6903. background-color:rgba(255, 255, 255, 0);
  6904. border:none;
  6905. border-left:0px;
  6906. border-top:0px;
  6907. border-right:0px;
  6908. border-radius:0px;
  6909. border-bottom-right-radius:0px;
  6910. border-bottom-left-radius:0px;
  6911. -moz-box-shadow:none;
  6912. -webkit-box-shadow:none;
  6913. box-shadow:none;
  6914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6915. font-weight:400;
  6916. font-style:normal;
  6917. font-size:12px;
  6918. color:#D9001B;
  6919. }
  6920. #u15980 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:445px;
  6924. top:436px;
  6925. width:121px;
  6926. height:17px;
  6927. display:flex;
  6928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:12px;
  6932. color:#D9001B;
  6933. }
  6934. #u15980 .text {
  6935. position:absolute;
  6936. align-self:center;
  6937. padding:0px 0px 0px 0px;
  6938. box-sizing:border-box;
  6939. width:100%;
  6940. }
  6941. #u15980_text {
  6942. border-width:0px;
  6943. white-space:nowrap;
  6944. text-transform:none;
  6945. }
  6946. #u15981_div {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:0px;
  6950. top:0px;
  6951. width:121px;
  6952. height:17px;
  6953. background:inherit;
  6954. background-color:rgba(255, 255, 255, 0);
  6955. border:none;
  6956. border-left:0px;
  6957. border-top:0px;
  6958. border-right:0px;
  6959. border-radius:0px;
  6960. border-bottom-right-radius:0px;
  6961. border-bottom-left-radius:0px;
  6962. -moz-box-shadow:none;
  6963. -webkit-box-shadow:none;
  6964. box-shadow:none;
  6965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6966. font-weight:400;
  6967. font-style:normal;
  6968. font-size:12px;
  6969. color:#D9001B;
  6970. }
  6971. #u15981 {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:215px;
  6975. top:595px;
  6976. width:121px;
  6977. height:17px;
  6978. display:flex;
  6979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:12px;
  6983. color:#D9001B;
  6984. }
  6985. #u15981 .text {
  6986. position:absolute;
  6987. align-self:center;
  6988. padding:0px 0px 0px 0px;
  6989. box-sizing:border-box;
  6990. width:100%;
  6991. }
  6992. #u15981_text {
  6993. border-width:0px;
  6994. white-space:nowrap;
  6995. text-transform:none;
  6996. }
  6997. #u15982_div {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:800px;
  7003. height:60px;
  7004. background:inherit;
  7005. background-color:rgba(255, 255, 255, 1);
  7006. box-sizing:border-box;
  7007. border-width:1px;
  7008. border-style:solid;
  7009. border-color:rgba(242, 242, 242, 1);
  7010. border-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:14px;
  7018. color:#AAAAAA;
  7019. text-align:center;
  7020. line-height:30px;
  7021. }
  7022. #u15982 {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:917px;
  7026. top:72px;
  7027. width:800px;
  7028. height:60px;
  7029. display:flex;
  7030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7031. font-weight:400;
  7032. font-style:normal;
  7033. font-size:14px;
  7034. color:#AAAAAA;
  7035. text-align:center;
  7036. line-height:30px;
  7037. }
  7038. #u15982 .text {
  7039. position:absolute;
  7040. align-self:center;
  7041. padding:5px 10px 5px 10px;
  7042. box-sizing:border-box;
  7043. width:100%;
  7044. }
  7045. #u15982_text {
  7046. border-width:0px;
  7047. word-wrap:break-word;
  7048. text-transform:none;
  7049. visibility:hidden;
  7050. }
  7051. #u15983_div {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:47px;
  7057. height:35px;
  7058. background:inherit;
  7059. background-color:rgba(255, 255, 255, 0);
  7060. border:none;
  7061. border-top:0px;
  7062. border-right:0px;
  7063. border-bottom:0px;
  7064. border-radius:0px;
  7065. border-top-left-radius:0px;
  7066. border-bottom-left-radius:0px;
  7067. -moz-box-shadow:none;
  7068. -webkit-box-shadow:none;
  7069. box-shadow:none;
  7070. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7071. font-weight:500;
  7072. font-style:normal;
  7073. font-size:18px;
  7074. }
  7075. #u15983 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:948px;
  7079. top:85px;
  7080. width:47px;
  7081. height:35px;
  7082. display:flex;
  7083. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7084. font-weight:500;
  7085. font-style:normal;
  7086. font-size:18px;
  7087. }
  7088. #u15983 .text {
  7089. position:absolute;
  7090. align-self:center;
  7091. padding:5px 10px 5px 0px;
  7092. box-sizing:border-box;
  7093. width:100%;
  7094. }
  7095. #u15983_text {
  7096. border-width:0px;
  7097. white-space:nowrap;
  7098. text-transform:none;
  7099. }
  7100. #u15984_div {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:800px;
  7106. height:1069px;
  7107. background:inherit;
  7108. background-color:rgba(255, 255, 255, 1);
  7109. box-sizing:border-box;
  7110. border-width:1px;
  7111. border-style:solid;
  7112. border-color:rgba(242, 242, 242, 1);
  7113. border-radius:0px;
  7114. -moz-box-shadow:none;
  7115. -webkit-box-shadow:none;
  7116. box-shadow:none;
  7117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7118. font-weight:400;
  7119. font-style:normal;
  7120. font-size:14px;
  7121. color:#AAAAAA;
  7122. text-align:center;
  7123. line-height:30px;
  7124. }
  7125. #u15984 {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:917px;
  7129. top:132px;
  7130. width:800px;
  7131. height:1069px;
  7132. display:flex;
  7133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7134. font-weight:400;
  7135. font-style:normal;
  7136. font-size:14px;
  7137. color:#AAAAAA;
  7138. text-align:center;
  7139. line-height:30px;
  7140. }
  7141. #u15984 .text {
  7142. position:absolute;
  7143. align-self:center;
  7144. padding:5px 10px 5px 10px;
  7145. box-sizing:border-box;
  7146. width:100%;
  7147. }
  7148. #u15984_text {
  7149. border-width:0px;
  7150. word-wrap:break-word;
  7151. text-transform:none;
  7152. visibility:hidden;
  7153. }
  7154. #u15985_div {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:0px;
  7158. top:0px;
  7159. width:82px;
  7160. height:40px;
  7161. background:inherit;
  7162. background-color:rgba(255, 255, 255, 0);
  7163. border:none;
  7164. border-left:0px;
  7165. border-top:0px;
  7166. border-right:0px;
  7167. border-radius:0px;
  7168. border-bottom-right-radius:0px;
  7169. border-bottom-left-radius:0px;
  7170. -moz-box-shadow:none;
  7171. -webkit-box-shadow:none;
  7172. box-shadow:none;
  7173. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7174. font-weight:500;
  7175. font-style:normal;
  7176. font-size:18px;
  7177. }
  7178. #u15985 {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:956px;
  7182. top:158px;
  7183. width:82px;
  7184. height:40px;
  7185. display:flex;
  7186. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7187. font-weight:500;
  7188. font-style:normal;
  7189. font-size:18px;
  7190. }
  7191. #u15985 .text {
  7192. position:absolute;
  7193. align-self:center;
  7194. padding:0px 0px 0px 0px;
  7195. box-sizing:border-box;
  7196. width:100%;
  7197. }
  7198. #u15985_text {
  7199. border-width:0px;
  7200. white-space:nowrap;
  7201. text-transform:none;
  7202. }
  7203. #u15986_div {
  7204. border-width:0px;
  7205. position:absolute;
  7206. left:0px;
  7207. top:0px;
  7208. width:40px;
  7209. height:40px;
  7210. background:inherit;
  7211. background-color:rgba(255, 255, 255, 0);
  7212. border:none;
  7213. border-top:0px;
  7214. border-right:0px;
  7215. border-bottom:0px;
  7216. border-radius:0px;
  7217. border-top-left-radius:0px;
  7218. border-bottom-left-radius:0px;
  7219. -moz-box-shadow:none;
  7220. -webkit-box-shadow:none;
  7221. box-shadow:none;
  7222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7223. font-weight:500;
  7224. font-style:normal;
  7225. font-size:24px;
  7226. text-align:center;
  7227. }
  7228. #u15986 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:1677px;
  7232. top:72px;
  7233. width:40px;
  7234. height:40px;
  7235. display:flex;
  7236. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7237. font-weight:500;
  7238. font-style:normal;
  7239. font-size:24px;
  7240. text-align:center;
  7241. }
  7242. #u15986 .text {
  7243. position:absolute;
  7244. align-self:center;
  7245. padding:5px 10px 5px 0px;
  7246. box-sizing:border-box;
  7247. width:100%;
  7248. }
  7249. #u15986_text {
  7250. border-width:0px;
  7251. word-wrap:break-word;
  7252. text-transform:none;
  7253. }
  7254. #u15987_div {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:64px;
  7260. height:40px;
  7261. background:inherit;
  7262. background-color:rgba(255, 255, 255, 0);
  7263. border:none;
  7264. border-left:0px;
  7265. border-top:0px;
  7266. border-right:0px;
  7267. border-radius:0px;
  7268. border-bottom-right-radius:0px;
  7269. border-bottom-left-radius:0px;
  7270. -moz-box-shadow:none;
  7271. -webkit-box-shadow:none;
  7272. box-shadow:none;
  7273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7274. font-weight:400;
  7275. font-style:normal;
  7276. font-size:14px;
  7277. }
  7278. #u15987 {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:1463px;
  7282. top:338px;
  7283. width:64px;
  7284. height:40px;
  7285. display:flex;
  7286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7287. font-weight:400;
  7288. font-style:normal;
  7289. font-size:14px;
  7290. }
  7291. #u15987 .text {
  7292. position:absolute;
  7293. align-self:center;
  7294. padding:0px 0px 0px 0px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u15987_text {
  7299. border-width:0px;
  7300. white-space:nowrap;
  7301. text-transform:none;
  7302. }
  7303. #u15988_div {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:0px;
  7307. top:0px;
  7308. width:180px;
  7309. height:180px;
  7310. background:inherit;
  7311. background-color:rgba(255, 255, 255, 1);
  7312. box-sizing:border-box;
  7313. border-width:1px;
  7314. border-style:solid;
  7315. border-color:rgba(201, 201, 201, 1);
  7316. border-radius:4px;
  7317. -moz-box-shadow:none;
  7318. -webkit-box-shadow:none;
  7319. box-shadow:none;
  7320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7321. font-weight:400;
  7322. font-style:normal;
  7323. font-size:38px;
  7324. }
  7325. #u15988 {
  7326. border-width:0px;
  7327. position:absolute;
  7328. left:1463px;
  7329. top:378px;
  7330. width:180px;
  7331. height:180px;
  7332. display:flex;
  7333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7334. font-weight:400;
  7335. font-style:normal;
  7336. font-size:38px;
  7337. }
  7338. #u15988 .text {
  7339. position:absolute;
  7340. align-self:center;
  7341. padding:2px 8px 2px 8px;
  7342. box-sizing:border-box;
  7343. width:100%;
  7344. }
  7345. #u15988_text {
  7346. border-width:0px;
  7347. word-wrap:break-word;
  7348. text-transform:none;
  7349. }
  7350. #u15989_div {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:0px;
  7354. top:0px;
  7355. width:73px;
  7356. height:40px;
  7357. background:inherit;
  7358. background-color:rgba(255, 255, 255, 0);
  7359. border:none;
  7360. border-left:0px;
  7361. border-top:0px;
  7362. border-right:0px;
  7363. border-radius:0px;
  7364. border-bottom-right-radius:0px;
  7365. border-bottom-left-radius:0px;
  7366. -moz-box-shadow:none;
  7367. -webkit-box-shadow:none;
  7368. box-shadow:none;
  7369. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7370. font-weight:500;
  7371. font-style:normal;
  7372. font-size:18px;
  7373. }
  7374. #u15989 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:956px;
  7378. top:278px;
  7379. width:73px;
  7380. height:40px;
  7381. display:flex;
  7382. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7383. font-weight:500;
  7384. font-style:normal;
  7385. font-size:18px;
  7386. }
  7387. #u15989 .text {
  7388. position:absolute;
  7389. align-self:center;
  7390. padding:0px 0px 0px 0px;
  7391. box-sizing:border-box;
  7392. width:100%;
  7393. }
  7394. #u15989_text {
  7395. border-width:0px;
  7396. white-space:nowrap;
  7397. text-transform:none;
  7398. }
  7399. #u15990 {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:0px;
  7403. top:0px;
  7404. width:0px;
  7405. height:0px;
  7406. }
  7407. #u15991_div {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:0px;
  7411. top:0px;
  7412. width:427px;
  7413. height:80px;
  7414. background:inherit;
  7415. background-color:rgba(255, 255, 255, 1);
  7416. box-sizing:border-box;
  7417. border-width:1px;
  7418. border-style:solid;
  7419. border-color:rgba(201, 201, 201, 1);
  7420. border-radius:4px;
  7421. -moz-box-shadow:none;
  7422. -webkit-box-shadow:none;
  7423. box-shadow:none;
  7424. font-family:'Microsoft YaHei', sans-serif;
  7425. font-weight:400;
  7426. font-style:normal;
  7427. font-size:14px;
  7428. color:#CCCCCC;
  7429. text-align:left;
  7430. }
  7431. #u15991 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:956px;
  7435. top:901px;
  7436. width:427px;
  7437. height:80px;
  7438. display:flex;
  7439. font-family:'Microsoft YaHei', sans-serif;
  7440. font-weight:400;
  7441. font-style:normal;
  7442. font-size:14px;
  7443. color:#CCCCCC;
  7444. text-align:left;
  7445. }
  7446. #u15991 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:2px 8px 2px 8px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u15991_text {
  7454. border-width:0px;
  7455. word-wrap:break-word;
  7456. text-transform:none;
  7457. visibility:hidden;
  7458. }
  7459. #u15992_input {
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:389px;
  7464. height:33px;
  7465. padding:2px 2px 2px 2px;
  7466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:14px;
  7470. letter-spacing:normal;
  7471. color:#D7D7D7;
  7472. vertical-align:none;
  7473. text-align:left;
  7474. text-transform:none;
  7475. background-color:transparent;
  7476. border-color:transparent;
  7477. }
  7478. #u15992_input.disabled {
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:389px;
  7483. height:33px;
  7484. padding:2px 2px 2px 2px;
  7485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:14px;
  7489. letter-spacing:normal;
  7490. color:#D7D7D7;
  7491. vertical-align:none;
  7492. text-align:left;
  7493. text-transform:none;
  7494. background-color:transparent;
  7495. border-color:transparent;
  7496. }
  7497. #u15992_div {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:389px;
  7503. height:33px;
  7504. background:inherit;
  7505. background-color:rgba(255, 255, 255, 0);
  7506. border:none;
  7507. border-radius:0px;
  7508. -moz-box-shadow:none;
  7509. -webkit-box-shadow:none;
  7510. box-shadow:none;
  7511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:14px;
  7515. color:#D7D7D7;
  7516. }
  7517. #u15992 {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:973px;
  7521. top:904px;
  7522. width:389px;
  7523. height:33px;
  7524. display:flex;
  7525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7526. font-weight:400;
  7527. font-style:normal;
  7528. font-size:14px;
  7529. color:#D7D7D7;
  7530. }
  7531. #u15992 .text {
  7532. position:absolute;
  7533. align-self:center;
  7534. padding:2px 2px 2px 2px;
  7535. box-sizing:border-box;
  7536. width:100%;
  7537. }
  7538. #u15992_div.disabled {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:0px;
  7542. top:0px;
  7543. width:389px;
  7544. height:33px;
  7545. background:inherit;
  7546. background-color:rgba(240, 240, 240, 1);
  7547. border:none;
  7548. border-radius:0px;
  7549. -moz-box-shadow:none;
  7550. -webkit-box-shadow:none;
  7551. box-shadow:none;
  7552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7553. font-weight:400;
  7554. font-style:normal;
  7555. font-size:14px;
  7556. color:#D7D7D7;
  7557. }
  7558. #u15992.disabled {
  7559. }
  7560. #u15993_div {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:71px;
  7566. height:40px;
  7567. background:inherit;
  7568. background-color:rgba(255, 255, 255, 0);
  7569. border:none;
  7570. border-left:0px;
  7571. border-top:0px;
  7572. border-right:0px;
  7573. border-radius:0px;
  7574. border-bottom-right-radius:0px;
  7575. border-bottom-left-radius:0px;
  7576. -moz-box-shadow:none;
  7577. -webkit-box-shadow:none;
  7578. box-shadow:none;
  7579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:14px;
  7583. }
  7584. #u15993 {
  7585. border-width:0px;
  7586. position:absolute;
  7587. left:956px;
  7588. top:861px;
  7589. width:71px;
  7590. height:40px;
  7591. display:flex;
  7592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7593. font-weight:400;
  7594. font-style:normal;
  7595. font-size:14px;
  7596. }
  7597. #u15993 .text {
  7598. position:absolute;
  7599. align-self:center;
  7600. padding:0px 0px 0px 0px;
  7601. box-sizing:border-box;
  7602. width:100%;
  7603. }
  7604. #u15993_text {
  7605. border-width:0px;
  7606. white-space:nowrap;
  7607. text-transform:none;
  7608. }
  7609. #u15994 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:0px;
  7613. top:0px;
  7614. width:0px;
  7615. height:0px;
  7616. }
  7617. #u15995_div {
  7618. border-width:0px;
  7619. position:absolute;
  7620. left:0px;
  7621. top:0px;
  7622. width:800px;
  7623. height:60px;
  7624. background:inherit;
  7625. background-color:rgba(255, 255, 255, 1);
  7626. box-sizing:border-box;
  7627. border-width:1px;
  7628. border-style:solid;
  7629. border-color:rgba(215, 215, 215, 1);
  7630. border-radius:0px;
  7631. -moz-box-shadow:none;
  7632. -webkit-box-shadow:none;
  7633. box-shadow:none;
  7634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7635. font-weight:400;
  7636. font-style:normal;
  7637. font-size:14px;
  7638. color:#AAAAAA;
  7639. text-align:center;
  7640. line-height:30px;
  7641. }
  7642. #u15995 {
  7643. border-width:0px;
  7644. position:absolute;
  7645. left:917px;
  7646. top:1141px;
  7647. width:800px;
  7648. height:60px;
  7649. display:flex;
  7650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7651. font-weight:400;
  7652. font-style:normal;
  7653. font-size:14px;
  7654. color:#AAAAAA;
  7655. text-align:center;
  7656. line-height:30px;
  7657. }
  7658. #u15995 .text {
  7659. position:absolute;
  7660. align-self:center;
  7661. padding:5px 10px 5px 10px;
  7662. box-sizing:border-box;
  7663. width:100%;
  7664. }
  7665. #u15995_text {
  7666. border-width:0px;
  7667. word-wrap:break-word;
  7668. text-transform:none;
  7669. visibility:hidden;
  7670. }
  7671. #u15996_img {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:80px;
  7677. height:30px;
  7678. }
  7679. #u15996 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:1597px;
  7683. top:1156px;
  7684. width:80px;
  7685. height:30px;
  7686. display:flex;
  7687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7688. font-weight:400;
  7689. font-style:normal;
  7690. font-size:14px;
  7691. color:#FFFFFF;
  7692. }
  7693. #u15996 .text {
  7694. position:absolute;
  7695. align-self:center;
  7696. padding:2px 2px 2px 2px;
  7697. box-sizing:border-box;
  7698. width:100%;
  7699. }
  7700. #u15996_text {
  7701. border-width:0px;
  7702. word-wrap:break-word;
  7703. text-transform:none;
  7704. }
  7705. #u15997_div {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:80px;
  7711. height:30px;
  7712. background:inherit;
  7713. background-color:rgba(255, 255, 255, 1);
  7714. box-sizing:border-box;
  7715. border-width:1px;
  7716. border-style:solid;
  7717. border-color:rgba(170, 170, 170, 1);
  7718. border-radius:4px;
  7719. -moz-box-shadow:none;
  7720. -webkit-box-shadow:none;
  7721. box-shadow:none;
  7722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:14px;
  7726. }
  7727. #u15997 {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:1507px;
  7731. top:1156px;
  7732. width:80px;
  7733. height:30px;
  7734. display:flex;
  7735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7736. font-weight:400;
  7737. font-style:normal;
  7738. font-size:14px;
  7739. }
  7740. #u15997 .text {
  7741. position:absolute;
  7742. align-self:center;
  7743. padding:2px 2px 2px 2px;
  7744. box-sizing:border-box;
  7745. width:100%;
  7746. }
  7747. #u15997_text {
  7748. border-width:0px;
  7749. word-wrap:break-word;
  7750. text-transform:none;
  7751. }
  7752. #u15998_div {
  7753. border-width:0px;
  7754. position:absolute;
  7755. left:0px;
  7756. top:0px;
  7757. width:525px;
  7758. height:20px;
  7759. background:inherit;
  7760. background-color:rgba(255, 255, 255, 0);
  7761. border:none;
  7762. border-left:0px;
  7763. border-top:0px;
  7764. border-right:0px;
  7765. border-radius:0px;
  7766. border-bottom-right-radius:0px;
  7767. border-bottom-left-radius:0px;
  7768. -moz-box-shadow:none;
  7769. -webkit-box-shadow:none;
  7770. box-shadow:none;
  7771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7772. font-weight:400;
  7773. font-style:normal;
  7774. font-size:14px;
  7775. color:#D9001B;
  7776. }
  7777. #u15998 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:1192px;
  7781. top:1209px;
  7782. width:525px;
  7783. height:20px;
  7784. display:flex;
  7785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. font-size:14px;
  7789. color:#D9001B;
  7790. }
  7791. #u15998 .text {
  7792. position:absolute;
  7793. align-self:center;
  7794. padding:0px 0px 0px 0px;
  7795. box-sizing:border-box;
  7796. width:100%;
  7797. }
  7798. #u15998_text {
  7799. border-width:0px;
  7800. white-space:nowrap;
  7801. text-transform:none;
  7802. }
  7803. #u15999 {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:0px;
  7807. top:0px;
  7808. width:0px;
  7809. height:0px;
  7810. }
  7811. #u16000_div {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:140px;
  7817. height:40px;
  7818. background:inherit;
  7819. background-color:rgba(255, 255, 255, 1);
  7820. box-sizing:border-box;
  7821. border-width:1px;
  7822. border-style:solid;
  7823. border-color:rgba(215, 215, 215, 1);
  7824. border-radius:4px;
  7825. -moz-box-shadow:none;
  7826. -webkit-box-shadow:none;
  7827. box-shadow:none;
  7828. font-size:14px;
  7829. }
  7830. #u16000 {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:956px;
  7834. top:208px;
  7835. width:140px;
  7836. height:40px;
  7837. display:flex;
  7838. font-size:14px;
  7839. }
  7840. #u16000 .text {
  7841. position:absolute;
  7842. align-self:center;
  7843. padding:2px 2px 2px 2px;
  7844. box-sizing:border-box;
  7845. width:100%;
  7846. }
  7847. #u16000_text {
  7848. border-width:0px;
  7849. word-wrap:break-word;
  7850. text-transform:none;
  7851. visibility:hidden;
  7852. }
  7853. #u16001_input {
  7854. position:absolute;
  7855. left:0px;
  7856. top:0px;
  7857. width:134px;
  7858. height:31px;
  7859. padding:2px 2px 2px 2px;
  7860. font-family:'ArialMT', 'Arial', sans-serif;
  7861. font-weight:400;
  7862. font-style:normal;
  7863. font-size:14px;
  7864. letter-spacing:normal;
  7865. color:#AAAAAA;
  7866. vertical-align:none;
  7867. text-align:left;
  7868. text-transform:none;
  7869. background-color:transparent;
  7870. border-color:transparent;
  7871. }
  7872. #u16001_input.disabled {
  7873. position:absolute;
  7874. left:0px;
  7875. top:0px;
  7876. width:134px;
  7877. height:31px;
  7878. padding:2px 2px 2px 2px;
  7879. font-family:'ArialMT', 'Arial', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. font-size:14px;
  7883. letter-spacing:normal;
  7884. color:#AAAAAA;
  7885. vertical-align:none;
  7886. text-align:left;
  7887. text-transform:none;
  7888. background-color:transparent;
  7889. border-color:transparent;
  7890. }
  7891. #u16001_div {
  7892. border-width:0px;
  7893. position:absolute;
  7894. left:0px;
  7895. top:0px;
  7896. width:134px;
  7897. height:31px;
  7898. background:inherit;
  7899. background-color:rgba(255, 255, 255, 1);
  7900. border:none;
  7901. border-radius:0px;
  7902. -moz-box-shadow:none;
  7903. -webkit-box-shadow:none;
  7904. box-shadow:none;
  7905. font-size:14px;
  7906. color:#AAAAAA;
  7907. }
  7908. #u16001 {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:960px;
  7912. top:211px;
  7913. width:134px;
  7914. height:31px;
  7915. display:flex;
  7916. font-size:14px;
  7917. color:#AAAAAA;
  7918. }
  7919. #u16001 .text {
  7920. position:absolute;
  7921. align-self:flex-start;
  7922. padding:2px 2px 2px 2px;
  7923. box-sizing:border-box;
  7924. width:100%;
  7925. }
  7926. #u16001_div.disabled {
  7927. border-width:0px;
  7928. position:absolute;
  7929. left:0px;
  7930. top:0px;
  7931. width:134px;
  7932. height:31px;
  7933. background:inherit;
  7934. background-color:rgba(240, 240, 240, 1);
  7935. border:none;
  7936. border-radius:0px;
  7937. -moz-box-shadow:none;
  7938. -webkit-box-shadow:none;
  7939. box-shadow:none;
  7940. font-size:14px;
  7941. color:#AAAAAA;
  7942. }
  7943. #u16001.disabled {
  7944. }
  7945. .u16001_input_option {
  7946. font-size:14px;
  7947. }
  7948. #u16002_div {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:0px;
  7952. top:0px;
  7953. width:64px;
  7954. height:40px;
  7955. background:inherit;
  7956. background-color:rgba(255, 255, 255, 0);
  7957. border:none;
  7958. border-left:0px;
  7959. border-top:0px;
  7960. border-right:0px;
  7961. border-radius:0px;
  7962. border-bottom-right-radius:0px;
  7963. border-bottom-left-radius:0px;
  7964. -moz-box-shadow:none;
  7965. -webkit-box-shadow:none;
  7966. box-shadow:none;
  7967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7968. font-weight:400;
  7969. font-style:normal;
  7970. font-size:14px;
  7971. }
  7972. #u16002 {
  7973. border-width:0px;
  7974. position:absolute;
  7975. left:956px;
  7976. top:413px;
  7977. width:64px;
  7978. height:40px;
  7979. display:flex;
  7980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7981. font-weight:400;
  7982. font-style:normal;
  7983. font-size:14px;
  7984. }
  7985. #u16002 .text {
  7986. position:absolute;
  7987. align-self:center;
  7988. padding:0px 0px 0px 0px;
  7989. box-sizing:border-box;
  7990. width:100%;
  7991. }
  7992. #u16002_text {
  7993. border-width:0px;
  7994. white-space:nowrap;
  7995. text-transform:none;
  7996. }
  7997. #u16003 {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:0px;
  8001. top:0px;
  8002. width:0px;
  8003. height:0px;
  8004. }
  8005. #u16004_div {
  8006. border-width:0px;
  8007. position:absolute;
  8008. left:0px;
  8009. top:0px;
  8010. width:200px;
  8011. height:40px;
  8012. background:inherit;
  8013. background-color:rgba(255, 255, 255, 1);
  8014. box-sizing:border-box;
  8015. border-width:1px;
  8016. border-style:solid;
  8017. border-color:rgba(201, 201, 201, 1);
  8018. border-radius:4px;
  8019. -moz-box-shadow:none;
  8020. -webkit-box-shadow:none;
  8021. box-shadow:none;
  8022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8023. font-weight:400;
  8024. font-style:normal;
  8025. font-size:14px;
  8026. text-align:right;
  8027. }
  8028. #u16004 {
  8029. border-width:0px;
  8030. position:absolute;
  8031. left:1186px;
  8032. top:452px;
  8033. width:200px;
  8034. height:40px;
  8035. display:flex;
  8036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8037. font-weight:400;
  8038. font-style:normal;
  8039. font-size:14px;
  8040. text-align:right;
  8041. }
  8042. #u16004 .text {
  8043. position:absolute;
  8044. align-self:center;
  8045. padding:2px 8px 2px 8px;
  8046. box-sizing:border-box;
  8047. width:100%;
  8048. }
  8049. #u16004_text {
  8050. border-width:0px;
  8051. word-wrap:break-word;
  8052. text-transform:none;
  8053. visibility:hidden;
  8054. }
  8055. #u16005_input {
  8056. position:absolute;
  8057. left:0px;
  8058. top:0px;
  8059. width:161px;
  8060. height:33px;
  8061. padding:2px 2px 2px 2px;
  8062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:14px;
  8066. letter-spacing:normal;
  8067. color:#D7D7D7;
  8068. vertical-align:none;
  8069. text-align:left;
  8070. text-transform:none;
  8071. background-color:transparent;
  8072. border-color:transparent;
  8073. }
  8074. #u16005_input.disabled {
  8075. position:absolute;
  8076. left:0px;
  8077. top:0px;
  8078. width:161px;
  8079. height:33px;
  8080. padding:2px 2px 2px 2px;
  8081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8082. font-weight:400;
  8083. font-style:normal;
  8084. font-size:14px;
  8085. letter-spacing:normal;
  8086. color:#D7D7D7;
  8087. vertical-align:none;
  8088. text-align:left;
  8089. text-transform:none;
  8090. background-color:transparent;
  8091. border-color:transparent;
  8092. }
  8093. #u16005_div {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:0px;
  8097. top:0px;
  8098. width:161px;
  8099. height:33px;
  8100. background:inherit;
  8101. background-color:rgba(255, 255, 255, 0);
  8102. border:none;
  8103. border-radius:0px;
  8104. -moz-box-shadow:none;
  8105. -webkit-box-shadow:none;
  8106. box-shadow:none;
  8107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:14px;
  8111. color:#D7D7D7;
  8112. }
  8113. #u16005 {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:1194px;
  8117. top:455px;
  8118. width:161px;
  8119. height:33px;
  8120. display:flex;
  8121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8122. font-weight:400;
  8123. font-style:normal;
  8124. font-size:14px;
  8125. color:#D7D7D7;
  8126. }
  8127. #u16005 .text {
  8128. position:absolute;
  8129. align-self:center;
  8130. padding:2px 2px 2px 2px;
  8131. box-sizing:border-box;
  8132. width:100%;
  8133. }
  8134. #u16005_div.disabled {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:0px;
  8138. top:0px;
  8139. width:161px;
  8140. height:33px;
  8141. background:inherit;
  8142. background-color:rgba(240, 240, 240, 1);
  8143. border:none;
  8144. border-radius:0px;
  8145. -moz-box-shadow:none;
  8146. -webkit-box-shadow:none;
  8147. box-shadow:none;
  8148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8149. font-weight:400;
  8150. font-style:normal;
  8151. font-size:14px;
  8152. color:#D7D7D7;
  8153. }
  8154. #u16005.disabled {
  8155. }
  8156. #u16006_div {
  8157. border-width:0px;
  8158. position:absolute;
  8159. left:0px;
  8160. top:0px;
  8161. width:78px;
  8162. height:40px;
  8163. background:inherit;
  8164. background-color:rgba(255, 255, 255, 0);
  8165. border:none;
  8166. border-left:0px;
  8167. border-top:0px;
  8168. border-right:0px;
  8169. border-radius:0px;
  8170. border-bottom-right-radius:0px;
  8171. border-bottom-left-radius:0px;
  8172. -moz-box-shadow:none;
  8173. -webkit-box-shadow:none;
  8174. box-shadow:none;
  8175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8176. font-weight:400;
  8177. font-style:normal;
  8178. font-size:14px;
  8179. }
  8180. #u16006 {
  8181. border-width:0px;
  8182. position:absolute;
  8183. left:1186px;
  8184. top:413px;
  8185. width:78px;
  8186. height:40px;
  8187. display:flex;
  8188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8189. font-weight:400;
  8190. font-style:normal;
  8191. font-size:14px;
  8192. }
  8193. #u16006 .text {
  8194. position:absolute;
  8195. align-self:center;
  8196. padding:0px 0px 0px 0px;
  8197. box-sizing:border-box;
  8198. width:100%;
  8199. }
  8200. #u16006_text {
  8201. border-width:0px;
  8202. white-space:nowrap;
  8203. text-transform:none;
  8204. }
  8205. #u16007 {
  8206. border-width:0px;
  8207. position:absolute;
  8208. left:0px;
  8209. top:0px;
  8210. width:0px;
  8211. height:0px;
  8212. }
  8213. #u16008_div {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:0px;
  8217. top:0px;
  8218. width:200px;
  8219. height:40px;
  8220. background:inherit;
  8221. background-color:rgba(255, 255, 255, 1);
  8222. box-sizing:border-box;
  8223. border-width:1px;
  8224. border-style:solid;
  8225. border-color:rgba(201, 201, 201, 1);
  8226. border-radius:4px;
  8227. -moz-box-shadow:none;
  8228. -webkit-box-shadow:none;
  8229. box-shadow:none;
  8230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8231. font-weight:400;
  8232. font-style:normal;
  8233. font-size:14px;
  8234. text-align:right;
  8235. }
  8236. #u16008 {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:956px;
  8240. top:631px;
  8241. width:200px;
  8242. height:40px;
  8243. display:flex;
  8244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8245. font-weight:400;
  8246. font-style:normal;
  8247. font-size:14px;
  8248. text-align:right;
  8249. }
  8250. #u16008 .text {
  8251. position:absolute;
  8252. align-self:center;
  8253. padding:2px 8px 2px 8px;
  8254. box-sizing:border-box;
  8255. width:100%;
  8256. }
  8257. #u16008_text {
  8258. border-width:0px;
  8259. word-wrap:break-word;
  8260. text-transform:none;
  8261. visibility:hidden;
  8262. }
  8263. #u16009_input {
  8264. position:absolute;
  8265. left:0px;
  8266. top:0px;
  8267. width:161px;
  8268. height:33px;
  8269. padding:2px 2px 2px 2px;
  8270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8271. font-weight:400;
  8272. font-style:normal;
  8273. font-size:14px;
  8274. letter-spacing:normal;
  8275. color:#D7D7D7;
  8276. vertical-align:none;
  8277. text-align:left;
  8278. text-transform:none;
  8279. background-color:transparent;
  8280. border-color:transparent;
  8281. }
  8282. #u16009_input.disabled {
  8283. position:absolute;
  8284. left:0px;
  8285. top:0px;
  8286. width:161px;
  8287. height:33px;
  8288. padding:2px 2px 2px 2px;
  8289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8290. font-weight:400;
  8291. font-style:normal;
  8292. font-size:14px;
  8293. letter-spacing:normal;
  8294. color:#D7D7D7;
  8295. vertical-align:none;
  8296. text-align:left;
  8297. text-transform:none;
  8298. background-color:transparent;
  8299. border-color:transparent;
  8300. }
  8301. #u16009_div {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:0px;
  8305. top:0px;
  8306. width:161px;
  8307. height:33px;
  8308. background:inherit;
  8309. background-color:rgba(255, 255, 255, 0);
  8310. border:none;
  8311. border-radius:0px;
  8312. -moz-box-shadow:none;
  8313. -webkit-box-shadow:none;
  8314. box-shadow:none;
  8315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8316. font-weight:400;
  8317. font-style:normal;
  8318. font-size:14px;
  8319. color:#D7D7D7;
  8320. }
  8321. #u16009 {
  8322. border-width:0px;
  8323. position:absolute;
  8324. left:964px;
  8325. top:634px;
  8326. width:161px;
  8327. height:33px;
  8328. display:flex;
  8329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8330. font-weight:400;
  8331. font-style:normal;
  8332. font-size:14px;
  8333. color:#D7D7D7;
  8334. }
  8335. #u16009 .text {
  8336. position:absolute;
  8337. align-self:center;
  8338. padding:2px 2px 2px 2px;
  8339. box-sizing:border-box;
  8340. width:100%;
  8341. }
  8342. #u16009_div.disabled {
  8343. border-width:0px;
  8344. position:absolute;
  8345. left:0px;
  8346. top:0px;
  8347. width:161px;
  8348. height:33px;
  8349. background:inherit;
  8350. background-color:rgba(240, 240, 240, 1);
  8351. border:none;
  8352. border-radius:0px;
  8353. -moz-box-shadow:none;
  8354. -webkit-box-shadow:none;
  8355. box-shadow:none;
  8356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8357. font-weight:400;
  8358. font-style:normal;
  8359. font-size:14px;
  8360. color:#D7D7D7;
  8361. }
  8362. #u16009.disabled {
  8363. }
  8364. #u16010_div {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:0px;
  8368. top:0px;
  8369. width:50px;
  8370. height:40px;
  8371. background:inherit;
  8372. background-color:rgba(255, 255, 255, 0);
  8373. border:none;
  8374. border-left:0px;
  8375. border-top:0px;
  8376. border-right:0px;
  8377. border-radius:0px;
  8378. border-bottom-right-radius:0px;
  8379. border-bottom-left-radius:0px;
  8380. -moz-box-shadow:none;
  8381. -webkit-box-shadow:none;
  8382. box-shadow:none;
  8383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8384. font-weight:400;
  8385. font-style:normal;
  8386. font-size:14px;
  8387. }
  8388. #u16010 {
  8389. border-width:0px;
  8390. position:absolute;
  8391. left:956px;
  8392. top:592px;
  8393. width:50px;
  8394. height:40px;
  8395. display:flex;
  8396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8397. font-weight:400;
  8398. font-style:normal;
  8399. font-size:14px;
  8400. }
  8401. #u16010 .text {
  8402. position:absolute;
  8403. align-self:center;
  8404. padding:0px 0px 0px 0px;
  8405. box-sizing:border-box;
  8406. width:100%;
  8407. }
  8408. #u16010_text {
  8409. border-width:0px;
  8410. white-space:nowrap;
  8411. text-transform:none;
  8412. }
  8413. #u16011_div {
  8414. border-width:0px;
  8415. position:absolute;
  8416. left:0px;
  8417. top:0px;
  8418. width:64px;
  8419. height:40px;
  8420. background:inherit;
  8421. background-color:rgba(255, 255, 255, 0);
  8422. border:none;
  8423. border-left:0px;
  8424. border-top:0px;
  8425. border-right:0px;
  8426. border-radius:0px;
  8427. border-bottom-right-radius:0px;
  8428. border-bottom-left-radius:0px;
  8429. -moz-box-shadow:none;
  8430. -webkit-box-shadow:none;
  8431. box-shadow:none;
  8432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8433. font-weight:400;
  8434. font-style:normal;
  8435. font-size:14px;
  8436. }
  8437. #u16011 {
  8438. border-width:0px;
  8439. position:absolute;
  8440. left:956px;
  8441. top:502px;
  8442. width:64px;
  8443. height:40px;
  8444. display:flex;
  8445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8446. font-weight:400;
  8447. font-style:normal;
  8448. font-size:14px;
  8449. }
  8450. #u16011 .text {
  8451. position:absolute;
  8452. align-self:center;
  8453. padding:0px 0px 0px 0px;
  8454. box-sizing:border-box;
  8455. width:100%;
  8456. }
  8457. #u16011_text {
  8458. border-width:0px;
  8459. white-space:nowrap;
  8460. text-transform:none;
  8461. }
  8462. #u16012 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:0px;
  8466. top:0px;
  8467. width:0px;
  8468. height:0px;
  8469. }
  8470. #u16013_div {
  8471. border-width:0px;
  8472. position:absolute;
  8473. left:0px;
  8474. top:0px;
  8475. width:200px;
  8476. height:40px;
  8477. background:inherit;
  8478. background-color:rgba(255, 255, 255, 1);
  8479. box-sizing:border-box;
  8480. border-width:1px;
  8481. border-style:solid;
  8482. border-color:rgba(215, 215, 215, 1);
  8483. border-radius:4px;
  8484. -moz-box-shadow:none;
  8485. -webkit-box-shadow:none;
  8486. box-shadow:none;
  8487. font-size:14px;
  8488. }
  8489. #u16013 {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:956px;
  8493. top:542px;
  8494. width:200px;
  8495. height:40px;
  8496. display:flex;
  8497. font-size:14px;
  8498. }
  8499. #u16013 .text {
  8500. position:absolute;
  8501. align-self:center;
  8502. padding:2px 2px 2px 2px;
  8503. box-sizing:border-box;
  8504. width:100%;
  8505. }
  8506. #u16013_text {
  8507. border-width:0px;
  8508. word-wrap:break-word;
  8509. text-transform:none;
  8510. visibility:hidden;
  8511. }
  8512. #u16014_input {
  8513. position:absolute;
  8514. left:0px;
  8515. top:0px;
  8516. width:191px;
  8517. height:31px;
  8518. padding:2px 2px 2px 2px;
  8519. font-family:'ArialMT', 'Arial', sans-serif;
  8520. font-weight:400;
  8521. font-style:normal;
  8522. font-size:14px;
  8523. letter-spacing:normal;
  8524. color:#AAAAAA;
  8525. vertical-align:none;
  8526. text-align:left;
  8527. text-transform:none;
  8528. background-color:transparent;
  8529. border-color:transparent;
  8530. }
  8531. #u16014_input.disabled {
  8532. position:absolute;
  8533. left:0px;
  8534. top:0px;
  8535. width:191px;
  8536. height:31px;
  8537. padding:2px 2px 2px 2px;
  8538. font-family:'ArialMT', 'Arial', sans-serif;
  8539. font-weight:400;
  8540. font-style:normal;
  8541. font-size:14px;
  8542. letter-spacing:normal;
  8543. color:#AAAAAA;
  8544. vertical-align:none;
  8545. text-align:left;
  8546. text-transform:none;
  8547. background-color:transparent;
  8548. border-color:transparent;
  8549. }
  8550. #u16014_div {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:0px;
  8554. top:0px;
  8555. width:191px;
  8556. height:31px;
  8557. background:inherit;
  8558. background-color:rgba(255, 255, 255, 1);
  8559. border:none;
  8560. border-radius:0px;
  8561. -moz-box-shadow:none;
  8562. -webkit-box-shadow:none;
  8563. box-shadow:none;
  8564. font-size:14px;
  8565. color:#AAAAAA;
  8566. }
  8567. #u16014 {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:962px;
  8571. top:545px;
  8572. width:191px;
  8573. height:31px;
  8574. display:flex;
  8575. font-size:14px;
  8576. color:#AAAAAA;
  8577. }
  8578. #u16014 .text {
  8579. position:absolute;
  8580. align-self:flex-start;
  8581. padding:2px 2px 2px 2px;
  8582. box-sizing:border-box;
  8583. width:100%;
  8584. }
  8585. #u16014_div.disabled {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:0px;
  8589. top:0px;
  8590. width:191px;
  8591. height:31px;
  8592. background:inherit;
  8593. background-color:rgba(240, 240, 240, 1);
  8594. border:none;
  8595. border-radius:0px;
  8596. -moz-box-shadow:none;
  8597. -webkit-box-shadow:none;
  8598. box-shadow:none;
  8599. font-size:14px;
  8600. color:#AAAAAA;
  8601. }
  8602. #u16014.disabled {
  8603. }
  8604. .u16014_input_option {
  8605. font-size:14px;
  8606. }
  8607. #u16015_div {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:0px;
  8611. top:0px;
  8612. width:64px;
  8613. height:40px;
  8614. background:inherit;
  8615. background-color:rgba(255, 255, 255, 0);
  8616. border:none;
  8617. border-left:0px;
  8618. border-top:0px;
  8619. border-right:0px;
  8620. border-radius:0px;
  8621. border-bottom-right-radius:0px;
  8622. border-bottom-left-radius:0px;
  8623. -moz-box-shadow:none;
  8624. -webkit-box-shadow:none;
  8625. box-shadow:none;
  8626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8627. font-weight:400;
  8628. font-style:normal;
  8629. font-size:14px;
  8630. }
  8631. #u16015 {
  8632. border-width:0px;
  8633. position:absolute;
  8634. left:956px;
  8635. top:328px;
  8636. width:64px;
  8637. height:40px;
  8638. display:flex;
  8639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8640. font-weight:400;
  8641. font-style:normal;
  8642. font-size:14px;
  8643. }
  8644. #u16015 .text {
  8645. position:absolute;
  8646. align-self:center;
  8647. padding:0px 0px 0px 0px;
  8648. box-sizing:border-box;
  8649. width:100%;
  8650. }
  8651. #u16015_text {
  8652. border-width:0px;
  8653. white-space:nowrap;
  8654. text-transform:none;
  8655. }
  8656. #u16016 {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:0px;
  8660. top:0px;
  8661. width:0px;
  8662. height:0px;
  8663. }
  8664. #u16017_div {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:0px;
  8668. top:0px;
  8669. width:200px;
  8670. height:40px;
  8671. background:inherit;
  8672. background-color:rgba(255, 255, 255, 1);
  8673. box-sizing:border-box;
  8674. border-width:1px;
  8675. border-style:solid;
  8676. border-color:rgba(201, 201, 201, 1);
  8677. border-radius:4px;
  8678. -moz-box-shadow:none;
  8679. -webkit-box-shadow:none;
  8680. box-shadow:none;
  8681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8682. font-weight:400;
  8683. font-style:normal;
  8684. font-size:14px;
  8685. text-align:right;
  8686. }
  8687. #u16017 {
  8688. border-width:0px;
  8689. position:absolute;
  8690. left:956px;
  8691. top:452px;
  8692. width:200px;
  8693. height:40px;
  8694. display:flex;
  8695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8696. font-weight:400;
  8697. font-style:normal;
  8698. font-size:14px;
  8699. text-align:right;
  8700. }
  8701. #u16017 .text {
  8702. position:absolute;
  8703. align-self:center;
  8704. padding:2px 8px 2px 8px;
  8705. box-sizing:border-box;
  8706. width:100%;
  8707. }
  8708. #u16017_text {
  8709. border-width:0px;
  8710. word-wrap:break-word;
  8711. text-transform:none;
  8712. visibility:hidden;
  8713. }
  8714. #u16018_input {
  8715. position:absolute;
  8716. left:0px;
  8717. top:0px;
  8718. width:161px;
  8719. height:33px;
  8720. padding:2px 2px 2px 2px;
  8721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8722. font-weight:400;
  8723. font-style:normal;
  8724. font-size:14px;
  8725. letter-spacing:normal;
  8726. color:#D7D7D7;
  8727. vertical-align:none;
  8728. text-align:left;
  8729. text-transform:none;
  8730. background-color:transparent;
  8731. border-color:transparent;
  8732. }
  8733. #u16018_input.disabled {
  8734. position:absolute;
  8735. left:0px;
  8736. top:0px;
  8737. width:161px;
  8738. height:33px;
  8739. padding:2px 2px 2px 2px;
  8740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8741. font-weight:400;
  8742. font-style:normal;
  8743. font-size:14px;
  8744. letter-spacing:normal;
  8745. color:#D7D7D7;
  8746. vertical-align:none;
  8747. text-align:left;
  8748. text-transform:none;
  8749. background-color:transparent;
  8750. border-color:transparent;
  8751. }
  8752. #u16018_div {
  8753. border-width:0px;
  8754. position:absolute;
  8755. left:0px;
  8756. top:0px;
  8757. width:161px;
  8758. height:33px;
  8759. background:inherit;
  8760. background-color:rgba(255, 255, 255, 0);
  8761. border:none;
  8762. border-radius:0px;
  8763. -moz-box-shadow:none;
  8764. -webkit-box-shadow:none;
  8765. box-shadow:none;
  8766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8767. font-weight:400;
  8768. font-style:normal;
  8769. font-size:14px;
  8770. color:#D7D7D7;
  8771. }
  8772. #u16018 {
  8773. border-width:0px;
  8774. position:absolute;
  8775. left:964px;
  8776. top:455px;
  8777. width:161px;
  8778. height:33px;
  8779. display:flex;
  8780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8781. font-weight:400;
  8782. font-style:normal;
  8783. font-size:14px;
  8784. color:#D7D7D7;
  8785. }
  8786. #u16018 .text {
  8787. position:absolute;
  8788. align-self:center;
  8789. padding:2px 2px 2px 2px;
  8790. box-sizing:border-box;
  8791. width:100%;
  8792. }
  8793. #u16018_div.disabled {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:0px;
  8797. top:0px;
  8798. width:161px;
  8799. height:33px;
  8800. background:inherit;
  8801. background-color:rgba(240, 240, 240, 1);
  8802. border:none;
  8803. border-radius:0px;
  8804. -moz-box-shadow:none;
  8805. -webkit-box-shadow:none;
  8806. box-shadow:none;
  8807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8808. font-weight:400;
  8809. font-style:normal;
  8810. font-size:14px;
  8811. color:#D7D7D7;
  8812. }
  8813. #u16018.disabled {
  8814. }
  8815. #u16019_img {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:0px;
  8819. top:0px;
  8820. width:13px;
  8821. height:13px;
  8822. }
  8823. #u16019 {
  8824. border-width:0px;
  8825. position:absolute;
  8826. left:1134px;
  8827. top:465px;
  8828. width:13px;
  8829. height:13px;
  8830. display:flex;
  8831. }
  8832. #u16019 .text {
  8833. position:absolute;
  8834. align-self:center;
  8835. padding:2px 2px 2px 2px;
  8836. box-sizing:border-box;
  8837. width:100%;
  8838. }
  8839. #u16019_text {
  8840. border-width:0px;
  8841. word-wrap:break-word;
  8842. text-transform:none;
  8843. visibility:hidden;
  8844. }
  8845. #u16020_div {
  8846. border-width:0px;
  8847. position:absolute;
  8848. left:0px;
  8849. top:0px;
  8850. width:57px;
  8851. height:40px;
  8852. background:inherit;
  8853. background-color:rgba(255, 255, 255, 0);
  8854. border:none;
  8855. border-left:0px;
  8856. border-top:0px;
  8857. border-right:0px;
  8858. border-radius:0px;
  8859. border-bottom-right-radius:0px;
  8860. border-bottom-left-radius:0px;
  8861. -moz-box-shadow:none;
  8862. -webkit-box-shadow:none;
  8863. box-shadow:none;
  8864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8865. font-weight:400;
  8866. font-style:normal;
  8867. font-size:14px;
  8868. }
  8869. #u16020 {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:1186px;
  8873. top:502px;
  8874. width:57px;
  8875. height:40px;
  8876. display:flex;
  8877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:14px;
  8881. }
  8882. #u16020 .text {
  8883. position:absolute;
  8884. align-self:center;
  8885. padding:0px 0px 0px 0px;
  8886. box-sizing:border-box;
  8887. width:100%;
  8888. }
  8889. #u16020_text {
  8890. border-width:0px;
  8891. white-space:nowrap;
  8892. text-transform:none;
  8893. }
  8894. #u16021 label {
  8895. left:0px;
  8896. width:100%;
  8897. }
  8898. #u16021_img {
  8899. border-width:0px;
  8900. position:absolute;
  8901. left:0px;
  8902. top:4px;
  8903. width:12px;
  8904. height:12px;
  8905. }
  8906. #u16021 {
  8907. border-width:0px;
  8908. position:absolute;
  8909. left:964px;
  8910. top:378px;
  8911. width:100px;
  8912. height:20px;
  8913. display:flex;
  8914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8915. font-weight:400;
  8916. font-style:normal;
  8917. font-size:14px;
  8918. }
  8919. #u16021 .text {
  8920. position:absolute;
  8921. align-self:center;
  8922. padding:0px 2px 0px 2px;
  8923. box-sizing:border-box;
  8924. }
  8925. #u16021_img.selected {
  8926. }
  8927. #u16021.selected {
  8928. }
  8929. #u16021_img.disabled {
  8930. }
  8931. #u16021.disabled {
  8932. }
  8933. #u16021_img.selectedDisabled {
  8934. }
  8935. #u16021.selectedDisabled {
  8936. }
  8937. #u16021_text {
  8938. border-width:0px;
  8939. position:absolute;
  8940. left:14px;
  8941. top:0px;
  8942. width:84px;
  8943. word-wrap:break-word;
  8944. text-transform:none;
  8945. }
  8946. #u16021_input {
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:0px;
  8950. top:0px;
  8951. width:0px;
  8952. height:0px;
  8953. opacity:0;
  8954. }
  8955. #u16022 label {
  8956. left:0px;
  8957. width:100%;
  8958. }
  8959. #u16022_img {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:0px;
  8963. top:4px;
  8964. width:12px;
  8965. height:12px;
  8966. }
  8967. #u16022 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:1186px;
  8971. top:378px;
  8972. width:100px;
  8973. height:20px;
  8974. display:flex;
  8975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8976. font-weight:400;
  8977. font-style:normal;
  8978. font-size:14px;
  8979. }
  8980. #u16022 .text {
  8981. position:absolute;
  8982. align-self:center;
  8983. padding:0px 2px 0px 2px;
  8984. box-sizing:border-box;
  8985. }
  8986. #u16022_img.selected {
  8987. }
  8988. #u16022.selected {
  8989. }
  8990. #u16022_img.disabled {
  8991. }
  8992. #u16022.disabled {
  8993. }
  8994. #u16022_img.selectedDisabled {
  8995. }
  8996. #u16022.selectedDisabled {
  8997. }
  8998. #u16022_text {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:14px;
  9002. top:0px;
  9003. width:84px;
  9004. word-wrap:break-word;
  9005. text-transform:none;
  9006. }
  9007. #u16022_input {
  9008. border-width:0px;
  9009. position:absolute;
  9010. left:0px;
  9011. top:0px;
  9012. width:0px;
  9013. height:0px;
  9014. opacity:0;
  9015. }
  9016. #u16023 {
  9017. border-width:0px;
  9018. position:absolute;
  9019. left:0px;
  9020. top:0px;
  9021. width:0px;
  9022. height:0px;
  9023. }
  9024. #u16024_div {
  9025. border-width:0px;
  9026. position:absolute;
  9027. left:0px;
  9028. top:0px;
  9029. width:200px;
  9030. height:40px;
  9031. background:inherit;
  9032. background-color:rgba(255, 255, 255, 1);
  9033. box-sizing:border-box;
  9034. border-width:1px;
  9035. border-style:solid;
  9036. border-color:rgba(215, 215, 215, 1);
  9037. border-radius:4px;
  9038. -moz-box-shadow:none;
  9039. -webkit-box-shadow:none;
  9040. box-shadow:none;
  9041. font-size:14px;
  9042. }
  9043. #u16024 {
  9044. border-width:0px;
  9045. position:absolute;
  9046. left:1186px;
  9047. top:542px;
  9048. width:200px;
  9049. height:40px;
  9050. display:flex;
  9051. font-size:14px;
  9052. }
  9053. #u16024 .text {
  9054. position:absolute;
  9055. align-self:center;
  9056. padding:2px 2px 2px 2px;
  9057. box-sizing:border-box;
  9058. width:100%;
  9059. }
  9060. #u16024_text {
  9061. border-width:0px;
  9062. word-wrap:break-word;
  9063. text-transform:none;
  9064. visibility:hidden;
  9065. }
  9066. #u16025_input {
  9067. position:absolute;
  9068. left:0px;
  9069. top:0px;
  9070. width:191px;
  9071. height:31px;
  9072. padding:2px 2px 2px 2px;
  9073. font-family:'ArialMT', 'Arial', sans-serif;
  9074. font-weight:400;
  9075. font-style:normal;
  9076. font-size:14px;
  9077. letter-spacing:normal;
  9078. color:#AAAAAA;
  9079. vertical-align:none;
  9080. text-align:left;
  9081. text-transform:none;
  9082. background-color:transparent;
  9083. border-color:transparent;
  9084. }
  9085. #u16025_input.disabled {
  9086. position:absolute;
  9087. left:0px;
  9088. top:0px;
  9089. width:191px;
  9090. height:31px;
  9091. padding:2px 2px 2px 2px;
  9092. font-family:'ArialMT', 'Arial', sans-serif;
  9093. font-weight:400;
  9094. font-style:normal;
  9095. font-size:14px;
  9096. letter-spacing:normal;
  9097. color:#AAAAAA;
  9098. vertical-align:none;
  9099. text-align:left;
  9100. text-transform:none;
  9101. background-color:transparent;
  9102. border-color:transparent;
  9103. }
  9104. #u16025_div {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:191px;
  9110. height:31px;
  9111. background:inherit;
  9112. background-color:rgba(255, 255, 255, 1);
  9113. border:none;
  9114. border-radius:0px;
  9115. -moz-box-shadow:none;
  9116. -webkit-box-shadow:none;
  9117. box-shadow:none;
  9118. font-size:14px;
  9119. color:#AAAAAA;
  9120. }
  9121. #u16025 {
  9122. border-width:0px;
  9123. position:absolute;
  9124. left:1192px;
  9125. top:545px;
  9126. width:191px;
  9127. height:31px;
  9128. display:flex;
  9129. font-size:14px;
  9130. color:#AAAAAA;
  9131. }
  9132. #u16025 .text {
  9133. position:absolute;
  9134. align-self:flex-start;
  9135. padding:2px 2px 2px 2px;
  9136. box-sizing:border-box;
  9137. width:100%;
  9138. }
  9139. #u16025_div.disabled {
  9140. border-width:0px;
  9141. position:absolute;
  9142. left:0px;
  9143. top:0px;
  9144. width:191px;
  9145. height:31px;
  9146. background:inherit;
  9147. background-color:rgba(240, 240, 240, 1);
  9148. border:none;
  9149. border-radius:0px;
  9150. -moz-box-shadow:none;
  9151. -webkit-box-shadow:none;
  9152. box-shadow:none;
  9153. font-size:14px;
  9154. color:#AAAAAA;
  9155. }
  9156. #u16025.disabled {
  9157. }
  9158. .u16025_input_option {
  9159. font-size:14px;
  9160. }
  9161. #u16026 {
  9162. border-width:0px;
  9163. position:absolute;
  9164. left:0px;
  9165. top:0px;
  9166. width:0px;
  9167. height:0px;
  9168. }
  9169. #u16027_div {
  9170. border-width:0px;
  9171. position:absolute;
  9172. left:0px;
  9173. top:0px;
  9174. width:200px;
  9175. height:40px;
  9176. background:inherit;
  9177. background-color:rgba(255, 255, 255, 1);
  9178. box-sizing:border-box;
  9179. border-width:1px;
  9180. border-style:solid;
  9181. border-color:rgba(201, 201, 201, 1);
  9182. border-radius:4px;
  9183. -moz-box-shadow:none;
  9184. -webkit-box-shadow:none;
  9185. box-shadow:none;
  9186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9187. font-weight:400;
  9188. font-style:normal;
  9189. font-size:14px;
  9190. text-align:right;
  9191. }
  9192. #u16027 {
  9193. border-width:0px;
  9194. position:absolute;
  9195. left:1186px;
  9196. top:631px;
  9197. width:200px;
  9198. height:40px;
  9199. display:flex;
  9200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9201. font-weight:400;
  9202. font-style:normal;
  9203. font-size:14px;
  9204. text-align:right;
  9205. }
  9206. #u16027 .text {
  9207. position:absolute;
  9208. align-self:center;
  9209. padding:2px 8px 2px 8px;
  9210. box-sizing:border-box;
  9211. width:100%;
  9212. }
  9213. #u16027_text {
  9214. border-width:0px;
  9215. word-wrap:break-word;
  9216. text-transform:none;
  9217. visibility:hidden;
  9218. }
  9219. #u16028_input {
  9220. position:absolute;
  9221. left:0px;
  9222. top:0px;
  9223. width:161px;
  9224. height:33px;
  9225. padding:2px 2px 2px 2px;
  9226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9227. font-weight:400;
  9228. font-style:normal;
  9229. font-size:14px;
  9230. letter-spacing:normal;
  9231. color:#D7D7D7;
  9232. vertical-align:none;
  9233. text-align:left;
  9234. text-transform:none;
  9235. background-color:transparent;
  9236. border-color:transparent;
  9237. }
  9238. #u16028_input.disabled {
  9239. position:absolute;
  9240. left:0px;
  9241. top:0px;
  9242. width:161px;
  9243. height:33px;
  9244. padding:2px 2px 2px 2px;
  9245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9246. font-weight:400;
  9247. font-style:normal;
  9248. font-size:14px;
  9249. letter-spacing:normal;
  9250. color:#D7D7D7;
  9251. vertical-align:none;
  9252. text-align:left;
  9253. text-transform:none;
  9254. background-color:transparent;
  9255. border-color:transparent;
  9256. }
  9257. #u16028_div {
  9258. border-width:0px;
  9259. position:absolute;
  9260. left:0px;
  9261. top:0px;
  9262. width:161px;
  9263. height:33px;
  9264. background:inherit;
  9265. background-color:rgba(255, 255, 255, 0);
  9266. border:none;
  9267. border-radius:0px;
  9268. -moz-box-shadow:none;
  9269. -webkit-box-shadow:none;
  9270. box-shadow:none;
  9271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9272. font-weight:400;
  9273. font-style:normal;
  9274. font-size:14px;
  9275. color:#D7D7D7;
  9276. }
  9277. #u16028 {
  9278. border-width:0px;
  9279. position:absolute;
  9280. left:1194px;
  9281. top:634px;
  9282. width:161px;
  9283. height:33px;
  9284. display:flex;
  9285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9286. font-weight:400;
  9287. font-style:normal;
  9288. font-size:14px;
  9289. color:#D7D7D7;
  9290. }
  9291. #u16028 .text {
  9292. position:absolute;
  9293. align-self:center;
  9294. padding:2px 2px 2px 2px;
  9295. box-sizing:border-box;
  9296. width:100%;
  9297. }
  9298. #u16028_div.disabled {
  9299. border-width:0px;
  9300. position:absolute;
  9301. left:0px;
  9302. top:0px;
  9303. width:161px;
  9304. height:33px;
  9305. background:inherit;
  9306. background-color:rgba(240, 240, 240, 1);
  9307. border:none;
  9308. border-radius:0px;
  9309. -moz-box-shadow:none;
  9310. -webkit-box-shadow:none;
  9311. box-shadow:none;
  9312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9313. font-weight:400;
  9314. font-style:normal;
  9315. font-size:14px;
  9316. color:#D7D7D7;
  9317. }
  9318. #u16028.disabled {
  9319. }
  9320. #u16029_div {
  9321. border-width:0px;
  9322. position:absolute;
  9323. left:0px;
  9324. top:0px;
  9325. width:78px;
  9326. height:40px;
  9327. background:inherit;
  9328. background-color:rgba(255, 255, 255, 0);
  9329. border:none;
  9330. border-left:0px;
  9331. border-top:0px;
  9332. border-right:0px;
  9333. border-radius:0px;
  9334. border-bottom-right-radius:0px;
  9335. border-bottom-left-radius:0px;
  9336. -moz-box-shadow:none;
  9337. -webkit-box-shadow:none;
  9338. box-shadow:none;
  9339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9340. font-weight:400;
  9341. font-style:normal;
  9342. font-size:14px;
  9343. }
  9344. #u16029 {
  9345. border-width:0px;
  9346. position:absolute;
  9347. left:1186px;
  9348. top:592px;
  9349. width:78px;
  9350. height:40px;
  9351. display:flex;
  9352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9353. font-weight:400;
  9354. font-style:normal;
  9355. font-size:14px;
  9356. }
  9357. #u16029 .text {
  9358. position:absolute;
  9359. align-self:center;
  9360. padding:0px 0px 0px 0px;
  9361. box-sizing:border-box;
  9362. width:100%;
  9363. }
  9364. #u16029_text {
  9365. border-width:0px;
  9366. white-space:nowrap;
  9367. text-transform:none;
  9368. }
  9369. #u16030_div {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:0px;
  9373. top:0px;
  9374. width:64px;
  9375. height:40px;
  9376. background:inherit;
  9377. background-color:rgba(255, 255, 255, 0);
  9378. border:none;
  9379. border-left:0px;
  9380. border-top:0px;
  9381. border-right:0px;
  9382. border-radius:0px;
  9383. border-bottom-right-radius:0px;
  9384. border-bottom-left-radius:0px;
  9385. -moz-box-shadow:none;
  9386. -webkit-box-shadow:none;
  9387. box-shadow:none;
  9388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9389. font-weight:400;
  9390. font-style:normal;
  9391. font-size:14px;
  9392. }
  9393. #u16030 {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:956px;
  9397. top:681px;
  9398. width:64px;
  9399. height:40px;
  9400. display:flex;
  9401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9402. font-weight:400;
  9403. font-style:normal;
  9404. font-size:14px;
  9405. }
  9406. #u16030 .text {
  9407. position:absolute;
  9408. align-self:center;
  9409. padding:0px 0px 0px 0px;
  9410. box-sizing:border-box;
  9411. width:100%;
  9412. }
  9413. #u16030_text {
  9414. border-width:0px;
  9415. white-space:nowrap;
  9416. text-transform:none;
  9417. }
  9418. #u16031 {
  9419. border-width:0px;
  9420. position:absolute;
  9421. left:0px;
  9422. top:0px;
  9423. width:0px;
  9424. height:0px;
  9425. }
  9426. #u16032_div {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:0px;
  9430. top:0px;
  9431. width:200px;
  9432. height:40px;
  9433. background:inherit;
  9434. background-color:rgba(255, 255, 255, 1);
  9435. box-sizing:border-box;
  9436. border-width:1px;
  9437. border-style:solid;
  9438. border-color:rgba(215, 215, 215, 1);
  9439. border-radius:4px;
  9440. -moz-box-shadow:none;
  9441. -webkit-box-shadow:none;
  9442. box-shadow:none;
  9443. font-size:14px;
  9444. }
  9445. #u16032 {
  9446. border-width:0px;
  9447. position:absolute;
  9448. left:956px;
  9449. top:721px;
  9450. width:200px;
  9451. height:40px;
  9452. display:flex;
  9453. font-size:14px;
  9454. }
  9455. #u16032 .text {
  9456. position:absolute;
  9457. align-self:center;
  9458. padding:2px 2px 2px 2px;
  9459. box-sizing:border-box;
  9460. width:100%;
  9461. }
  9462. #u16032_text {
  9463. border-width:0px;
  9464. word-wrap:break-word;
  9465. text-transform:none;
  9466. visibility:hidden;
  9467. }
  9468. #u16033_input {
  9469. position:absolute;
  9470. left:0px;
  9471. top:0px;
  9472. width:191px;
  9473. height:31px;
  9474. padding:2px 2px 2px 2px;
  9475. font-family:'ArialMT', 'Arial', sans-serif;
  9476. font-weight:400;
  9477. font-style:normal;
  9478. font-size:14px;
  9479. letter-spacing:normal;
  9480. color:#AAAAAA;
  9481. vertical-align:none;
  9482. text-align:left;
  9483. text-transform:none;
  9484. background-color:transparent;
  9485. border-color:transparent;
  9486. }
  9487. #u16033_input.disabled {
  9488. position:absolute;
  9489. left:0px;
  9490. top:0px;
  9491. width:191px;
  9492. height:31px;
  9493. padding:2px 2px 2px 2px;
  9494. font-family:'ArialMT', 'Arial', sans-serif;
  9495. font-weight:400;
  9496. font-style:normal;
  9497. font-size:14px;
  9498. letter-spacing:normal;
  9499. color:#AAAAAA;
  9500. vertical-align:none;
  9501. text-align:left;
  9502. text-transform:none;
  9503. background-color:transparent;
  9504. border-color:transparent;
  9505. }
  9506. #u16033_div {
  9507. border-width:0px;
  9508. position:absolute;
  9509. left:0px;
  9510. top:0px;
  9511. width:191px;
  9512. height:31px;
  9513. background:inherit;
  9514. background-color:rgba(255, 255, 255, 1);
  9515. border:none;
  9516. border-radius:0px;
  9517. -moz-box-shadow:none;
  9518. -webkit-box-shadow:none;
  9519. box-shadow:none;
  9520. font-size:14px;
  9521. color:#AAAAAA;
  9522. }
  9523. #u16033 {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:962px;
  9527. top:724px;
  9528. width:191px;
  9529. height:31px;
  9530. display:flex;
  9531. font-size:14px;
  9532. color:#AAAAAA;
  9533. }
  9534. #u16033 .text {
  9535. position:absolute;
  9536. align-self:flex-start;
  9537. padding:2px 2px 2px 2px;
  9538. box-sizing:border-box;
  9539. width:100%;
  9540. }
  9541. #u16033_div.disabled {
  9542. border-width:0px;
  9543. position:absolute;
  9544. left:0px;
  9545. top:0px;
  9546. width:191px;
  9547. height:31px;
  9548. background:inherit;
  9549. background-color:rgba(240, 240, 240, 1);
  9550. border:none;
  9551. border-radius:0px;
  9552. -moz-box-shadow:none;
  9553. -webkit-box-shadow:none;
  9554. box-shadow:none;
  9555. font-size:14px;
  9556. color:#AAAAAA;
  9557. }
  9558. #u16033.disabled {
  9559. }
  9560. .u16033_input_option {
  9561. font-size:14px;
  9562. }
  9563. #u16034 {
  9564. border-width:0px;
  9565. position:absolute;
  9566. left:0px;
  9567. top:0px;
  9568. width:0px;
  9569. height:0px;
  9570. }
  9571. #u16035_div {
  9572. border-width:0px;
  9573. position:absolute;
  9574. left:0px;
  9575. top:0px;
  9576. width:200px;
  9577. height:40px;
  9578. background:inherit;
  9579. background-color:rgba(255, 255, 255, 1);
  9580. box-sizing:border-box;
  9581. border-width:1px;
  9582. border-style:solid;
  9583. border-color:rgba(201, 201, 201, 1);
  9584. border-radius:4px;
  9585. -moz-box-shadow:none;
  9586. -webkit-box-shadow:none;
  9587. box-shadow:none;
  9588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9589. font-weight:400;
  9590. font-style:normal;
  9591. font-size:14px;
  9592. text-align:right;
  9593. }
  9594. #u16035 {
  9595. border-width:0px;
  9596. position:absolute;
  9597. left:1186px;
  9598. top:721px;
  9599. width:200px;
  9600. height:40px;
  9601. display:flex;
  9602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9603. font-weight:400;
  9604. font-style:normal;
  9605. font-size:14px;
  9606. text-align:right;
  9607. }
  9608. #u16035 .text {
  9609. position:absolute;
  9610. align-self:center;
  9611. padding:2px 8px 2px 8px;
  9612. box-sizing:border-box;
  9613. width:100%;
  9614. }
  9615. #u16035_text {
  9616. border-width:0px;
  9617. word-wrap:break-word;
  9618. text-transform:none;
  9619. visibility:hidden;
  9620. }
  9621. #u16036_input {
  9622. position:absolute;
  9623. left:0px;
  9624. top:0px;
  9625. width:161px;
  9626. height:33px;
  9627. padding:2px 2px 2px 2px;
  9628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9629. font-weight:400;
  9630. font-style:normal;
  9631. font-size:14px;
  9632. letter-spacing:normal;
  9633. color:#D7D7D7;
  9634. vertical-align:none;
  9635. text-align:left;
  9636. text-transform:none;
  9637. background-color:transparent;
  9638. border-color:transparent;
  9639. }
  9640. #u16036_input.disabled {
  9641. position:absolute;
  9642. left:0px;
  9643. top:0px;
  9644. width:161px;
  9645. height:33px;
  9646. padding:2px 2px 2px 2px;
  9647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9648. font-weight:400;
  9649. font-style:normal;
  9650. font-size:14px;
  9651. letter-spacing:normal;
  9652. color:#D7D7D7;
  9653. vertical-align:none;
  9654. text-align:left;
  9655. text-transform:none;
  9656. background-color:transparent;
  9657. border-color:transparent;
  9658. }
  9659. #u16036_div {
  9660. border-width:0px;
  9661. position:absolute;
  9662. left:0px;
  9663. top:0px;
  9664. width:161px;
  9665. height:33px;
  9666. background:inherit;
  9667. background-color:rgba(255, 255, 255, 0);
  9668. border:none;
  9669. border-radius:0px;
  9670. -moz-box-shadow:none;
  9671. -webkit-box-shadow:none;
  9672. box-shadow:none;
  9673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9674. font-weight:400;
  9675. font-style:normal;
  9676. font-size:14px;
  9677. color:#D7D7D7;
  9678. }
  9679. #u16036 {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:1194px;
  9683. top:724px;
  9684. width:161px;
  9685. height:33px;
  9686. display:flex;
  9687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9688. font-weight:400;
  9689. font-style:normal;
  9690. font-size:14px;
  9691. color:#D7D7D7;
  9692. }
  9693. #u16036 .text {
  9694. position:absolute;
  9695. align-self:center;
  9696. padding:2px 2px 2px 2px;
  9697. box-sizing:border-box;
  9698. width:100%;
  9699. }
  9700. #u16036_div.disabled {
  9701. border-width:0px;
  9702. position:absolute;
  9703. left:0px;
  9704. top:0px;
  9705. width:161px;
  9706. height:33px;
  9707. background:inherit;
  9708. background-color:rgba(240, 240, 240, 1);
  9709. border:none;
  9710. border-radius:0px;
  9711. -moz-box-shadow:none;
  9712. -webkit-box-shadow:none;
  9713. box-shadow:none;
  9714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9715. font-weight:400;
  9716. font-style:normal;
  9717. font-size:14px;
  9718. color:#D7D7D7;
  9719. }
  9720. #u16036.disabled {
  9721. }
  9722. #u16037_div {
  9723. border-width:0px;
  9724. position:absolute;
  9725. left:0px;
  9726. top:0px;
  9727. width:64px;
  9728. height:40px;
  9729. background:inherit;
  9730. background-color:rgba(255, 255, 255, 0);
  9731. border:none;
  9732. border-left:0px;
  9733. border-top:0px;
  9734. border-right:0px;
  9735. border-radius:0px;
  9736. border-bottom-right-radius:0px;
  9737. border-bottom-left-radius:0px;
  9738. -moz-box-shadow:none;
  9739. -webkit-box-shadow:none;
  9740. box-shadow:none;
  9741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9742. font-weight:400;
  9743. font-style:normal;
  9744. font-size:14px;
  9745. }
  9746. #u16037 {
  9747. border-width:0px;
  9748. position:absolute;
  9749. left:1186px;
  9750. top:682px;
  9751. width:64px;
  9752. height:40px;
  9753. display:flex;
  9754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9755. font-weight:400;
  9756. font-style:normal;
  9757. font-size:14px;
  9758. }
  9759. #u16037 .text {
  9760. position:absolute;
  9761. align-self:center;
  9762. padding:0px 0px 0px 0px;
  9763. box-sizing:border-box;
  9764. width:100%;
  9765. }
  9766. #u16037_text {
  9767. border-width:0px;
  9768. white-space:nowrap;
  9769. text-transform:none;
  9770. }
  9771. #u16038_div {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:0px;
  9775. top:0px;
  9776. width:502px;
  9777. height:100px;
  9778. background:inherit;
  9779. background-color:rgba(255, 255, 255, 0);
  9780. border:none;
  9781. border-left:0px;
  9782. border-top:0px;
  9783. border-right:0px;
  9784. border-radius:0px;
  9785. border-bottom-right-radius:0px;
  9786. border-bottom-left-radius:0px;
  9787. -moz-box-shadow:none;
  9788. -webkit-box-shadow:none;
  9789. box-shadow:none;
  9790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9791. font-weight:400;
  9792. font-style:normal;
  9793. font-size:14px;
  9794. color:#D9001B;
  9795. }
  9796. #u16038 {
  9797. border-width:0px;
  9798. position:absolute;
  9799. left:1421px;
  9800. top:665px;
  9801. width:502px;
  9802. height:100px;
  9803. display:flex;
  9804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9805. font-weight:400;
  9806. font-style:normal;
  9807. font-size:14px;
  9808. color:#D9001B;
  9809. }
  9810. #u16038 .text {
  9811. position:absolute;
  9812. align-self:center;
  9813. padding:0px 0px 0px 0px;
  9814. box-sizing:border-box;
  9815. width:100%;
  9816. }
  9817. #u16038_text {
  9818. border-width:0px;
  9819. word-wrap:break-word;
  9820. text-transform:none;
  9821. }
  9822. #u16039_div {
  9823. border-width:0px;
  9824. position:absolute;
  9825. left:0px;
  9826. top:0px;
  9827. width:109px;
  9828. height:17px;
  9829. background:inherit;
  9830. background-color:rgba(255, 255, 255, 0);
  9831. border:none;
  9832. border-left:0px;
  9833. border-top:0px;
  9834. border-right:0px;
  9835. border-radius:0px;
  9836. border-bottom-right-radius:0px;
  9837. border-bottom-left-radius:0px;
  9838. -moz-box-shadow:none;
  9839. -webkit-box-shadow:none;
  9840. box-shadow:none;
  9841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9842. font-weight:400;
  9843. font-style:normal;
  9844. font-size:12px;
  9845. color:#D9001B;
  9846. }
  9847. #u16039 {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:1041px;
  9851. top:425px;
  9852. width:109px;
  9853. height:17px;
  9854. display:flex;
  9855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9856. font-weight:400;
  9857. font-style:normal;
  9858. font-size:12px;
  9859. color:#D9001B;
  9860. }
  9861. #u16039 .text {
  9862. position:absolute;
  9863. align-self:center;
  9864. padding:0px 0px 0px 0px;
  9865. box-sizing:border-box;
  9866. width:100%;
  9867. }
  9868. #u16039_text {
  9869. border-width:0px;
  9870. white-space:nowrap;
  9871. text-transform:none;
  9872. }
  9873. #u16040_div {
  9874. border-width:0px;
  9875. position:absolute;
  9876. left:0px;
  9877. top:0px;
  9878. width:109px;
  9879. height:17px;
  9880. background:inherit;
  9881. background-color:rgba(255, 255, 255, 0);
  9882. border:none;
  9883. border-left:0px;
  9884. border-top:0px;
  9885. border-right:0px;
  9886. border-radius:0px;
  9887. border-bottom-right-radius:0px;
  9888. border-bottom-left-radius:0px;
  9889. -moz-box-shadow:none;
  9890. -webkit-box-shadow:none;
  9891. box-shadow:none;
  9892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9893. font-weight:400;
  9894. font-style:normal;
  9895. font-size:12px;
  9896. color:#D9001B;
  9897. }
  9898. #u16040 {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:1277px;
  9902. top:694px;
  9903. width:109px;
  9904. height:17px;
  9905. display:flex;
  9906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9907. font-weight:400;
  9908. font-style:normal;
  9909. font-size:12px;
  9910. color:#D9001B;
  9911. }
  9912. #u16040 .text {
  9913. position:absolute;
  9914. align-self:center;
  9915. padding:0px 0px 0px 0px;
  9916. box-sizing:border-box;
  9917. width:100%;
  9918. }
  9919. #u16040_text {
  9920. border-width:0px;
  9921. white-space:nowrap;
  9922. text-transform:none;
  9923. }
  9924. #u16041_div {
  9925. border-width:0px;
  9926. position:absolute;
  9927. left:0px;
  9928. top:0px;
  9929. width:271px;
  9930. height:40px;
  9931. background:inherit;
  9932. background-color:rgba(255, 255, 255, 0);
  9933. border:none;
  9934. border-left:0px;
  9935. border-top:0px;
  9936. border-right:0px;
  9937. border-radius:0px;
  9938. border-bottom-right-radius:0px;
  9939. border-bottom-left-radius:0px;
  9940. -moz-box-shadow:none;
  9941. -webkit-box-shadow:none;
  9942. box-shadow:none;
  9943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9944. font-weight:400;
  9945. font-style:normal;
  9946. }
  9947. #u16041 {
  9948. border-width:0px;
  9949. position:absolute;
  9950. left:1186px;
  9951. top:771px;
  9952. width:271px;
  9953. height:40px;
  9954. display:flex;
  9955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9956. font-weight:400;
  9957. font-style:normal;
  9958. }
  9959. #u16041 .text {
  9960. position:absolute;
  9961. align-self:center;
  9962. padding:0px 0px 0px 0px;
  9963. box-sizing:border-box;
  9964. width:100%;
  9965. }
  9966. #u16041_text {
  9967. border-width:0px;
  9968. white-space:nowrap;
  9969. text-transform:none;
  9970. }
  9971. #u16042_div {
  9972. border-width:0px;
  9973. position:absolute;
  9974. left:0px;
  9975. top:0px;
  9976. width:120px;
  9977. height:40px;
  9978. background:inherit;
  9979. background-color:rgba(24, 144, 255, 1);
  9980. border:none;
  9981. border-radius:4px;
  9982. -moz-box-shadow:none;
  9983. -webkit-box-shadow:none;
  9984. box-shadow:none;
  9985. font-size:14px;
  9986. color:#FFFFFF;
  9987. }
  9988. #u16042 {
  9989. border-width:0px;
  9990. position:absolute;
  9991. left:1186px;
  9992. top:811px;
  9993. width:120px;
  9994. height:40px;
  9995. display:flex;
  9996. font-size:14px;
  9997. color:#FFFFFF;
  9998. }
  9999. #u16042 .text {
  10000. position:absolute;
  10001. align-self:center;
  10002. padding:2px 8px 2px 8px;
  10003. box-sizing:border-box;
  10004. width:100%;
  10005. }
  10006. #u16042_text {
  10007. border-width:0px;
  10008. word-wrap:break-word;
  10009. text-transform:none;
  10010. }
  10011. #u16043 {
  10012. border-width:0px;
  10013. position:absolute;
  10014. left:0px;
  10015. top:0px;
  10016. width:0px;
  10017. height:0px;
  10018. }
  10019. #u16044 {
  10020. border-width:0px;
  10021. position:absolute;
  10022. left:0px;
  10023. top:0px;
  10024. width:0px;
  10025. height:0px;
  10026. }
  10027. #u16045_div {
  10028. border-width:0px;
  10029. position:absolute;
  10030. left:0px;
  10031. top:0px;
  10032. width:380px;
  10033. height:160px;
  10034. background:inherit;
  10035. background-color:rgba(255, 255, 255, 1);
  10036. box-sizing:border-box;
  10037. border-width:1px;
  10038. border-style:solid;
  10039. border-color:rgba(242, 242, 242, 1);
  10040. border-radius:4px;
  10041. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10042. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10043. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10044. font-family:'Microsoft YaHei', sans-serif;
  10045. font-weight:400;
  10046. font-style:normal;
  10047. }
  10048. #u16045 {
  10049. border-width:0px;
  10050. position:absolute;
  10051. left:497px;
  10052. top:1295px;
  10053. width:380px;
  10054. height:160px;
  10055. display:flex;
  10056. font-family:'Microsoft YaHei', sans-serif;
  10057. font-weight:400;
  10058. font-style:normal;
  10059. }
  10060. #u16045 .text {
  10061. position:absolute;
  10062. align-self:center;
  10063. padding:2px 2px 2px 2px;
  10064. box-sizing:border-box;
  10065. width:100%;
  10066. }
  10067. #u16045_text {
  10068. border-width:0px;
  10069. word-wrap:break-word;
  10070. text-transform:none;
  10071. visibility:hidden;
  10072. }
  10073. #u16046_div {
  10074. border-width:0px;
  10075. position:absolute;
  10076. left:0px;
  10077. top:0px;
  10078. width:163px;
  10079. height:21px;
  10080. background:inherit;
  10081. background-color:rgba(255, 255, 255, 0);
  10082. border:none;
  10083. border-radius:0px;
  10084. -moz-box-shadow:none;
  10085. -webkit-box-shadow:none;
  10086. box-shadow:none;
  10087. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10088. font-weight:650;
  10089. font-style:normal;
  10090. font-size:18px;
  10091. color:#000000;
  10092. line-height:22px;
  10093. }
  10094. #u16046 {
  10095. border-width:0px;
  10096. position:absolute;
  10097. left:557px;
  10098. top:1320px;
  10099. width:163px;
  10100. height:21px;
  10101. display:flex;
  10102. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10103. font-weight:650;
  10104. font-style:normal;
  10105. font-size:18px;
  10106. color:#000000;
  10107. line-height:22px;
  10108. }
  10109. #u16046 .text {
  10110. position:absolute;
  10111. align-self:flex-start;
  10112. padding:0px 0px 0px 0px;
  10113. box-sizing:border-box;
  10114. width:100%;
  10115. }
  10116. #u16046_text {
  10117. border-width:0px;
  10118. white-space:nowrap;
  10119. text-transform:none;
  10120. }
  10121. #u16047_div {
  10122. border-width:0px;
  10123. position:absolute;
  10124. left:0px;
  10125. top:0px;
  10126. width:61px;
  10127. height:32px;
  10128. background:inherit;
  10129. background-color:rgba(24, 144, 255, 1);
  10130. border:none;
  10131. border-radius:4px;
  10132. -moz-box-shadow:none;
  10133. -webkit-box-shadow:none;
  10134. box-shadow:none;
  10135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10136. font-weight:400;
  10137. font-style:normal;
  10138. font-size:14px;
  10139. color:#FFFFFF;
  10140. }
  10141. #u16047 {
  10142. border-width:0px;
  10143. position:absolute;
  10144. left:796px;
  10145. top:1407px;
  10146. width:61px;
  10147. height:32px;
  10148. display:flex;
  10149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10150. font-weight:400;
  10151. font-style:normal;
  10152. font-size:14px;
  10153. color:#FFFFFF;
  10154. }
  10155. #u16047 .text {
  10156. position:absolute;
  10157. align-self:center;
  10158. padding:2px 16px 2px 16px;
  10159. box-sizing:border-box;
  10160. width:100%;
  10161. }
  10162. #u16047_text {
  10163. border-width:0px;
  10164. white-space:nowrap;
  10165. text-transform:none;
  10166. }
  10167. #u16048_img {
  10168. border-width:0px;
  10169. position:absolute;
  10170. left:0px;
  10171. top:0px;
  10172. width:20px;
  10173. height:20px;
  10174. }
  10175. #u16048 {
  10176. border-width:0px;
  10177. position:absolute;
  10178. left:526px;
  10179. top:1324px;
  10180. width:20px;
  10181. height:20px;
  10182. display:flex;
  10183. }
  10184. #u16048 .text {
  10185. position:absolute;
  10186. align-self:center;
  10187. padding:2px 2px 2px 2px;
  10188. box-sizing:border-box;
  10189. width:100%;
  10190. }
  10191. #u16048_text {
  10192. border-width:0px;
  10193. word-wrap:break-word;
  10194. text-transform:none;
  10195. visibility:hidden;
  10196. }
  10197. #u16049_div {
  10198. border-width:0px;
  10199. position:absolute;
  10200. left:0px;
  10201. top:0px;
  10202. width:300px;
  10203. height:44px;
  10204. background:inherit;
  10205. background-color:rgba(255, 255, 255, 0);
  10206. border:none;
  10207. border-radius:0px;
  10208. -moz-box-shadow:none;
  10209. -webkit-box-shadow:none;
  10210. box-shadow:none;
  10211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10212. font-weight:400;
  10213. font-style:normal;
  10214. font-size:14px;
  10215. color:#7F7F7F;
  10216. line-height:22px;
  10217. }
  10218. #u16049 {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:557px;
  10222. top:1354px;
  10223. width:300px;
  10224. height:44px;
  10225. display:flex;
  10226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10227. font-weight:400;
  10228. font-style:normal;
  10229. font-size:14px;
  10230. color:#7F7F7F;
  10231. line-height:22px;
  10232. }
  10233. #u16049 .text {
  10234. position:absolute;
  10235. align-self:flex-start;
  10236. padding:0px 0px 0px 0px;
  10237. box-sizing:border-box;
  10238. width:100%;
  10239. }
  10240. #u16049_text {
  10241. border-width:0px;
  10242. word-wrap:break-word;
  10243. text-transform:none;
  10244. }
  10245. #u16050_div {
  10246. border-width:0px;
  10247. position:absolute;
  10248. left:0px;
  10249. top:0px;
  10250. width:66px;
  10251. height:32px;
  10252. background:inherit;
  10253. background-color:rgba(255, 255, 255, 1);
  10254. box-sizing:border-box;
  10255. border-width:1px;
  10256. border-style:solid;
  10257. border-color:rgba(217, 217, 217, 1);
  10258. border-radius:4px;
  10259. -moz-box-shadow:none;
  10260. -webkit-box-shadow:none;
  10261. box-shadow:none;
  10262. font-family:'Microsoft YaHei', sans-serif;
  10263. font-weight:400;
  10264. font-style:normal;
  10265. font-size:14px;
  10266. color:rgba(0, 0, 0, 0.647058823529412);
  10267. line-height:21px;
  10268. }
  10269. #u16050 {
  10270. border-width:0px;
  10271. position:absolute;
  10272. left:713px;
  10273. top:1407px;
  10274. width:66px;
  10275. height:32px;
  10276. display:flex;
  10277. font-family:'Microsoft YaHei', sans-serif;
  10278. font-weight:400;
  10279. font-style:normal;
  10280. font-size:14px;
  10281. color:rgba(0, 0, 0, 0.647058823529412);
  10282. line-height:21px;
  10283. }
  10284. #u16050 .text {
  10285. position:absolute;
  10286. align-self:center;
  10287. padding:2px 16px 2px 16px;
  10288. box-sizing:border-box;
  10289. width:100%;
  10290. }
  10291. #u16050_text {
  10292. border-width:0px;
  10293. white-space:nowrap;
  10294. text-transform:none;
  10295. }
  10296. #u16051 {
  10297. border-width:0px;
  10298. position:absolute;
  10299. left:0px;
  10300. top:0px;
  10301. width:0px;
  10302. height:0px;
  10303. }
  10304. #u16052 {
  10305. border-width:0px;
  10306. position:absolute;
  10307. left:0px;
  10308. top:0px;
  10309. width:0px;
  10310. height:0px;
  10311. }
  10312. #u16053_div {
  10313. border-width:0px;
  10314. position:absolute;
  10315. left:0px;
  10316. top:0px;
  10317. width:380px;
  10318. height:160px;
  10319. background:inherit;
  10320. background-color:rgba(255, 255, 255, 1);
  10321. box-sizing:border-box;
  10322. border-width:1px;
  10323. border-style:solid;
  10324. border-color:rgba(242, 242, 242, 1);
  10325. border-radius:4px;
  10326. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10327. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10328. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  10329. font-family:'Microsoft YaHei', sans-serif;
  10330. font-weight:400;
  10331. font-style:normal;
  10332. }
  10333. #u16053 {
  10334. border-width:0px;
  10335. position:absolute;
  10336. left:1297px;
  10337. top:981px;
  10338. width:380px;
  10339. height:160px;
  10340. display:flex;
  10341. font-family:'Microsoft YaHei', sans-serif;
  10342. font-weight:400;
  10343. font-style:normal;
  10344. }
  10345. #u16053 .text {
  10346. position:absolute;
  10347. align-self:center;
  10348. padding:2px 2px 2px 2px;
  10349. box-sizing:border-box;
  10350. width:100%;
  10351. }
  10352. #u16053_text {
  10353. border-width:0px;
  10354. word-wrap:break-word;
  10355. text-transform:none;
  10356. visibility:hidden;
  10357. }
  10358. #u16054_div {
  10359. border-width:0px;
  10360. position:absolute;
  10361. left:0px;
  10362. top:0px;
  10363. width:163px;
  10364. height:21px;
  10365. background:inherit;
  10366. background-color:rgba(255, 255, 255, 0);
  10367. border:none;
  10368. border-radius:0px;
  10369. -moz-box-shadow:none;
  10370. -webkit-box-shadow:none;
  10371. box-shadow:none;
  10372. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10373. font-weight:650;
  10374. font-style:normal;
  10375. font-size:18px;
  10376. color:#000000;
  10377. line-height:22px;
  10378. }
  10379. #u16054 {
  10380. border-width:0px;
  10381. position:absolute;
  10382. left:1357px;
  10383. top:1006px;
  10384. width:163px;
  10385. height:21px;
  10386. display:flex;
  10387. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  10388. font-weight:650;
  10389. font-style:normal;
  10390. font-size:18px;
  10391. color:#000000;
  10392. line-height:22px;
  10393. }
  10394. #u16054 .text {
  10395. position:absolute;
  10396. align-self:flex-start;
  10397. padding:0px 0px 0px 0px;
  10398. box-sizing:border-box;
  10399. width:100%;
  10400. }
  10401. #u16054_text {
  10402. border-width:0px;
  10403. white-space:nowrap;
  10404. text-transform:none;
  10405. }
  10406. #u16055_div {
  10407. border-width:0px;
  10408. position:absolute;
  10409. left:0px;
  10410. top:0px;
  10411. width:61px;
  10412. height:32px;
  10413. background:inherit;
  10414. background-color:rgba(24, 144, 255, 1);
  10415. border:none;
  10416. border-radius:4px;
  10417. -moz-box-shadow:none;
  10418. -webkit-box-shadow:none;
  10419. box-shadow:none;
  10420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10421. font-weight:400;
  10422. font-style:normal;
  10423. font-size:14px;
  10424. color:#FFFFFF;
  10425. }
  10426. #u16055 {
  10427. border-width:0px;
  10428. position:absolute;
  10429. left:1596px;
  10430. top:1093px;
  10431. width:61px;
  10432. height:32px;
  10433. display:flex;
  10434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10435. font-weight:400;
  10436. font-style:normal;
  10437. font-size:14px;
  10438. color:#FFFFFF;
  10439. }
  10440. #u16055 .text {
  10441. position:absolute;
  10442. align-self:center;
  10443. padding:2px 16px 2px 16px;
  10444. box-sizing:border-box;
  10445. width:100%;
  10446. }
  10447. #u16055_text {
  10448. border-width:0px;
  10449. white-space:nowrap;
  10450. text-transform:none;
  10451. }
  10452. #u16056_img {
  10453. border-width:0px;
  10454. position:absolute;
  10455. left:0px;
  10456. top:0px;
  10457. width:20px;
  10458. height:20px;
  10459. }
  10460. #u16056 {
  10461. border-width:0px;
  10462. position:absolute;
  10463. left:1326px;
  10464. top:1010px;
  10465. width:20px;
  10466. height:20px;
  10467. display:flex;
  10468. }
  10469. #u16056 .text {
  10470. position:absolute;
  10471. align-self:center;
  10472. padding:2px 2px 2px 2px;
  10473. box-sizing:border-box;
  10474. width:100%;
  10475. }
  10476. #u16056_text {
  10477. border-width:0px;
  10478. word-wrap:break-word;
  10479. text-transform:none;
  10480. visibility:hidden;
  10481. }
  10482. #u16057_div {
  10483. border-width:0px;
  10484. position:absolute;
  10485. left:0px;
  10486. top:0px;
  10487. width:300px;
  10488. height:44px;
  10489. background:inherit;
  10490. background-color:rgba(255, 255, 255, 0);
  10491. border:none;
  10492. border-radius:0px;
  10493. -moz-box-shadow:none;
  10494. -webkit-box-shadow:none;
  10495. box-shadow:none;
  10496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10497. font-weight:400;
  10498. font-style:normal;
  10499. font-size:14px;
  10500. color:#7F7F7F;
  10501. line-height:22px;
  10502. }
  10503. #u16057 {
  10504. border-width:0px;
  10505. position:absolute;
  10506. left:1357px;
  10507. top:1040px;
  10508. width:300px;
  10509. height:44px;
  10510. display:flex;
  10511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10512. font-weight:400;
  10513. font-style:normal;
  10514. font-size:14px;
  10515. color:#7F7F7F;
  10516. line-height:22px;
  10517. }
  10518. #u16057 .text {
  10519. position:absolute;
  10520. align-self:flex-start;
  10521. padding:0px 0px 0px 0px;
  10522. box-sizing:border-box;
  10523. width:100%;
  10524. }
  10525. #u16057_text {
  10526. border-width:0px;
  10527. word-wrap:break-word;
  10528. text-transform:none;
  10529. }
  10530. #u16058_div {
  10531. border-width:0px;
  10532. position:absolute;
  10533. left:0px;
  10534. top:0px;
  10535. width:66px;
  10536. height:32px;
  10537. background:inherit;
  10538. background-color:rgba(255, 255, 255, 1);
  10539. box-sizing:border-box;
  10540. border-width:1px;
  10541. border-style:solid;
  10542. border-color:rgba(217, 217, 217, 1);
  10543. border-radius:4px;
  10544. -moz-box-shadow:none;
  10545. -webkit-box-shadow:none;
  10546. box-shadow:none;
  10547. font-family:'Microsoft YaHei', sans-serif;
  10548. font-weight:400;
  10549. font-style:normal;
  10550. font-size:14px;
  10551. color:rgba(0, 0, 0, 0.647058823529412);
  10552. line-height:21px;
  10553. }
  10554. #u16058 {
  10555. border-width:0px;
  10556. position:absolute;
  10557. left:1513px;
  10558. top:1093px;
  10559. width:66px;
  10560. height:32px;
  10561. display:flex;
  10562. font-family:'Microsoft YaHei', sans-serif;
  10563. font-weight:400;
  10564. font-style:normal;
  10565. font-size:14px;
  10566. color:rgba(0, 0, 0, 0.647058823529412);
  10567. line-height:21px;
  10568. }
  10569. #u16058 .text {
  10570. position:absolute;
  10571. align-self:center;
  10572. padding:2px 16px 2px 16px;
  10573. box-sizing:border-box;
  10574. width:100%;
  10575. }
  10576. #u16058_text {
  10577. border-width:0px;
  10578. white-space:nowrap;
  10579. text-transform:none;
  10580. }
  10581. #u16059 {
  10582. border-width:0px;
  10583. position:absolute;
  10584. left:0px;
  10585. top:0px;
  10586. width:0px;
  10587. height:0px;
  10588. }
  10589. #u16060_div {
  10590. border-width:0px;
  10591. position:absolute;
  10592. left:0px;
  10593. top:0px;
  10594. width:120px;
  10595. height:40px;
  10596. background:inherit;
  10597. background-color:rgba(255, 255, 255, 1);
  10598. box-sizing:border-box;
  10599. border-width:1px;
  10600. border-style:solid;
  10601. border-color:rgba(215, 215, 215, 1);
  10602. border-radius:4px;
  10603. -moz-box-shadow:none;
  10604. -webkit-box-shadow:none;
  10605. box-shadow:none;
  10606. font-size:14px;
  10607. }
  10608. #u16060 {
  10609. border-width:0px;
  10610. position:absolute;
  10611. left:1106px;
  10612. top:208px;
  10613. width:120px;
  10614. height:40px;
  10615. display:flex;
  10616. font-size:14px;
  10617. }
  10618. #u16060 .text {
  10619. position:absolute;
  10620. align-self:center;
  10621. padding:2px 2px 2px 2px;
  10622. box-sizing:border-box;
  10623. width:100%;
  10624. }
  10625. #u16060_text {
  10626. border-width:0px;
  10627. word-wrap:break-word;
  10628. text-transform:none;
  10629. visibility:hidden;
  10630. }
  10631. #u16061_input {
  10632. position:absolute;
  10633. left:0px;
  10634. top:0px;
  10635. width:115px;
  10636. height:31px;
  10637. padding:2px 2px 2px 2px;
  10638. font-family:'ArialMT', 'Arial', sans-serif;
  10639. font-weight:400;
  10640. font-style:normal;
  10641. font-size:14px;
  10642. letter-spacing:normal;
  10643. color:#AAAAAA;
  10644. vertical-align:none;
  10645. text-align:left;
  10646. text-transform:none;
  10647. background-color:transparent;
  10648. border-color:transparent;
  10649. }
  10650. #u16061_input.disabled {
  10651. position:absolute;
  10652. left:0px;
  10653. top:0px;
  10654. width:115px;
  10655. height:31px;
  10656. padding:2px 2px 2px 2px;
  10657. font-family:'ArialMT', 'Arial', sans-serif;
  10658. font-weight:400;
  10659. font-style:normal;
  10660. font-size:14px;
  10661. letter-spacing:normal;
  10662. color:#AAAAAA;
  10663. vertical-align:none;
  10664. text-align:left;
  10665. text-transform:none;
  10666. background-color:transparent;
  10667. border-color:transparent;
  10668. }
  10669. #u16061_div {
  10670. border-width:0px;
  10671. position:absolute;
  10672. left:0px;
  10673. top:0px;
  10674. width:115px;
  10675. height:31px;
  10676. background:inherit;
  10677. background-color:rgba(255, 255, 255, 1);
  10678. border:none;
  10679. border-radius:0px;
  10680. -moz-box-shadow:none;
  10681. -webkit-box-shadow:none;
  10682. box-shadow:none;
  10683. font-size:14px;
  10684. color:#AAAAAA;
  10685. }
  10686. #u16061 {
  10687. border-width:0px;
  10688. position:absolute;
  10689. left:1110px;
  10690. top:211px;
  10691. width:115px;
  10692. height:31px;
  10693. display:flex;
  10694. font-size:14px;
  10695. color:#AAAAAA;
  10696. }
  10697. #u16061 .text {
  10698. position:absolute;
  10699. align-self:flex-start;
  10700. padding:2px 2px 2px 2px;
  10701. box-sizing:border-box;
  10702. width:100%;
  10703. }
  10704. #u16061_div.disabled {
  10705. border-width:0px;
  10706. position:absolute;
  10707. left:0px;
  10708. top:0px;
  10709. width:115px;
  10710. height:31px;
  10711. background:inherit;
  10712. background-color:rgba(240, 240, 240, 1);
  10713. border:none;
  10714. border-radius:0px;
  10715. -moz-box-shadow:none;
  10716. -webkit-box-shadow:none;
  10717. box-shadow:none;
  10718. font-size:14px;
  10719. color:#AAAAAA;
  10720. }
  10721. #u16061.disabled {
  10722. }
  10723. .u16061_input_option {
  10724. font-size:14px;
  10725. }
  10726. #u16062 {
  10727. border-width:0px;
  10728. position:absolute;
  10729. left:0px;
  10730. top:0px;
  10731. width:0px;
  10732. height:0px;
  10733. }
  10734. #u16063_div {
  10735. border-width:0px;
  10736. position:absolute;
  10737. left:0px;
  10738. top:0px;
  10739. width:120px;
  10740. height:40px;
  10741. background:inherit;
  10742. background-color:rgba(255, 255, 255, 1);
  10743. box-sizing:border-box;
  10744. border-width:1px;
  10745. border-style:solid;
  10746. border-color:rgba(215, 215, 215, 1);
  10747. border-radius:4px;
  10748. -moz-box-shadow:none;
  10749. -webkit-box-shadow:none;
  10750. box-shadow:none;
  10751. font-size:14px;
  10752. }
  10753. #u16063 {
  10754. border-width:0px;
  10755. position:absolute;
  10756. left:1236px;
  10757. top:208px;
  10758. width:120px;
  10759. height:40px;
  10760. display:flex;
  10761. font-size:14px;
  10762. }
  10763. #u16063 .text {
  10764. position:absolute;
  10765. align-self:center;
  10766. padding:2px 2px 2px 2px;
  10767. box-sizing:border-box;
  10768. width:100%;
  10769. }
  10770. #u16063_text {
  10771. border-width:0px;
  10772. word-wrap:break-word;
  10773. text-transform:none;
  10774. visibility:hidden;
  10775. }
  10776. #u16064_input {
  10777. position:absolute;
  10778. left:0px;
  10779. top:0px;
  10780. width:115px;
  10781. height:31px;
  10782. padding:2px 2px 2px 2px;
  10783. font-family:'ArialMT', 'Arial', sans-serif;
  10784. font-weight:400;
  10785. font-style:normal;
  10786. font-size:14px;
  10787. letter-spacing:normal;
  10788. color:#AAAAAA;
  10789. vertical-align:none;
  10790. text-align:left;
  10791. text-transform:none;
  10792. background-color:transparent;
  10793. border-color:transparent;
  10794. }
  10795. #u16064_input.disabled {
  10796. position:absolute;
  10797. left:0px;
  10798. top:0px;
  10799. width:115px;
  10800. height:31px;
  10801. padding:2px 2px 2px 2px;
  10802. font-family:'ArialMT', 'Arial', sans-serif;
  10803. font-weight:400;
  10804. font-style:normal;
  10805. font-size:14px;
  10806. letter-spacing:normal;
  10807. color:#AAAAAA;
  10808. vertical-align:none;
  10809. text-align:left;
  10810. text-transform:none;
  10811. background-color:transparent;
  10812. border-color:transparent;
  10813. }
  10814. #u16064_div {
  10815. border-width:0px;
  10816. position:absolute;
  10817. left:0px;
  10818. top:0px;
  10819. width:115px;
  10820. height:31px;
  10821. background:inherit;
  10822. background-color:rgba(255, 255, 255, 1);
  10823. border:none;
  10824. border-radius:0px;
  10825. -moz-box-shadow:none;
  10826. -webkit-box-shadow:none;
  10827. box-shadow:none;
  10828. font-size:14px;
  10829. color:#AAAAAA;
  10830. }
  10831. #u16064 {
  10832. border-width:0px;
  10833. position:absolute;
  10834. left:1240px;
  10835. top:211px;
  10836. width:115px;
  10837. height:31px;
  10838. display:flex;
  10839. font-size:14px;
  10840. color:#AAAAAA;
  10841. }
  10842. #u16064 .text {
  10843. position:absolute;
  10844. align-self:flex-start;
  10845. padding:2px 2px 2px 2px;
  10846. box-sizing:border-box;
  10847. width:100%;
  10848. }
  10849. #u16064_div.disabled {
  10850. border-width:0px;
  10851. position:absolute;
  10852. left:0px;
  10853. top:0px;
  10854. width:115px;
  10855. height:31px;
  10856. background:inherit;
  10857. background-color:rgba(240, 240, 240, 1);
  10858. border:none;
  10859. border-radius:0px;
  10860. -moz-box-shadow:none;
  10861. -webkit-box-shadow:none;
  10862. box-shadow:none;
  10863. font-size:14px;
  10864. color:#AAAAAA;
  10865. }
  10866. #u16064.disabled {
  10867. }
  10868. .u16064_input_option {
  10869. font-size:14px;
  10870. }
  10871. #u16065_div {
  10872. border-width:0px;
  10873. position:absolute;
  10874. left:0px;
  10875. top:0px;
  10876. width:78px;
  10877. height:40px;
  10878. background:inherit;
  10879. background-color:rgba(255, 255, 255, 0);
  10880. border:none;
  10881. border-left:0px;
  10882. border-top:0px;
  10883. border-right:0px;
  10884. border-radius:0px;
  10885. border-bottom-right-radius:0px;
  10886. border-bottom-left-radius:0px;
  10887. -moz-box-shadow:none;
  10888. -webkit-box-shadow:none;
  10889. box-shadow:none;
  10890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10891. font-weight:400;
  10892. font-style:normal;
  10893. font-size:14px;
  10894. }
  10895. #u16065 {
  10896. border-width:0px;
  10897. position:absolute;
  10898. left:956px;
  10899. top:771px;
  10900. width:78px;
  10901. height:40px;
  10902. display:flex;
  10903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10904. font-weight:400;
  10905. font-style:normal;
  10906. font-size:14px;
  10907. }
  10908. #u16065 .text {
  10909. position:absolute;
  10910. align-self:center;
  10911. padding:0px 0px 0px 0px;
  10912. box-sizing:border-box;
  10913. width:100%;
  10914. }
  10915. #u16065_text {
  10916. border-width:0px;
  10917. white-space:nowrap;
  10918. text-transform:none;
  10919. }
  10920. #u16066 {
  10921. border-width:0px;
  10922. position:absolute;
  10923. left:0px;
  10924. top:0px;
  10925. width:0px;
  10926. height:0px;
  10927. }
  10928. #u16067_div {
  10929. border-width:0px;
  10930. position:absolute;
  10931. left:0px;
  10932. top:0px;
  10933. width:200px;
  10934. height:40px;
  10935. background:inherit;
  10936. background-color:rgba(242, 242, 242, 1);
  10937. box-sizing:border-box;
  10938. border-width:1px;
  10939. border-style:solid;
  10940. border-color:rgba(215, 215, 215, 1);
  10941. border-radius:4px;
  10942. -moz-box-shadow:none;
  10943. -webkit-box-shadow:none;
  10944. box-shadow:none;
  10945. font-size:14px;
  10946. }
  10947. #u16067 {
  10948. border-width:0px;
  10949. position:absolute;
  10950. left:956px;
  10951. top:811px;
  10952. width:200px;
  10953. height:40px;
  10954. display:flex;
  10955. font-size:14px;
  10956. }
  10957. #u16067 .text {
  10958. position:absolute;
  10959. align-self:center;
  10960. padding:2px 2px 2px 2px;
  10961. box-sizing:border-box;
  10962. width:100%;
  10963. }
  10964. #u16067_text {
  10965. border-width:0px;
  10966. word-wrap:break-word;
  10967. text-transform:none;
  10968. visibility:hidden;
  10969. }
  10970. #u16068_input {
  10971. position:absolute;
  10972. left:0px;
  10973. top:0px;
  10974. width:191px;
  10975. height:31px;
  10976. padding:2px 2px 2px 2px;
  10977. font-family:'ArialMT', 'Arial', sans-serif;
  10978. font-weight:400;
  10979. font-style:normal;
  10980. font-size:14px;
  10981. letter-spacing:normal;
  10982. color:#AAAAAA;
  10983. vertical-align:none;
  10984. text-align:left;
  10985. text-transform:none;
  10986. background-color:transparent;
  10987. border-color:transparent;
  10988. }
  10989. #u16068_input.disabled {
  10990. position:absolute;
  10991. left:0px;
  10992. top:0px;
  10993. width:191px;
  10994. height:31px;
  10995. padding:2px 2px 2px 2px;
  10996. font-family:'ArialMT', 'Arial', sans-serif;
  10997. font-weight:400;
  10998. font-style:normal;
  10999. font-size:14px;
  11000. letter-spacing:normal;
  11001. color:#AAAAAA;
  11002. vertical-align:none;
  11003. text-align:left;
  11004. text-transform:none;
  11005. background-color:transparent;
  11006. border-color:transparent;
  11007. }
  11008. #u16068_div {
  11009. border-width:0px;
  11010. position:absolute;
  11011. left:0px;
  11012. top:0px;
  11013. width:191px;
  11014. height:31px;
  11015. background:inherit;
  11016. background-color:rgba(242, 242, 242, 1);
  11017. border:none;
  11018. border-radius:0px;
  11019. -moz-box-shadow:none;
  11020. -webkit-box-shadow:none;
  11021. box-shadow:none;
  11022. font-size:14px;
  11023. color:#AAAAAA;
  11024. }
  11025. #u16068 {
  11026. border-width:0px;
  11027. position:absolute;
  11028. left:962px;
  11029. top:814px;
  11030. width:191px;
  11031. height:31px;
  11032. display:flex;
  11033. font-size:14px;
  11034. color:#AAAAAA;
  11035. }
  11036. #u16068 .text {
  11037. position:absolute;
  11038. align-self:flex-start;
  11039. padding:2px 2px 2px 2px;
  11040. box-sizing:border-box;
  11041. width:100%;
  11042. }
  11043. #u16068_div.disabled {
  11044. border-width:0px;
  11045. position:absolute;
  11046. left:0px;
  11047. top:0px;
  11048. width:191px;
  11049. height:31px;
  11050. background:inherit;
  11051. background-color:rgba(240, 240, 240, 1);
  11052. border:none;
  11053. border-radius:0px;
  11054. -moz-box-shadow:none;
  11055. -webkit-box-shadow:none;
  11056. box-shadow:none;
  11057. font-size:14px;
  11058. color:#AAAAAA;
  11059. }
  11060. #u16068.disabled {
  11061. }
  11062. .u16068_input_option {
  11063. font-size:14px;
  11064. }
  11065. #u16069 label {
  11066. left:0px;
  11067. width:100%;
  11068. }
  11069. #u16069_img {
  11070. border-width:0px;
  11071. position:absolute;
  11072. left:0px;
  11073. top:3px;
  11074. width:12px;
  11075. height:12px;
  11076. }
  11077. #u16069 {
  11078. border-width:0px;
  11079. position:absolute;
  11080. left:1115px;
  11081. top:782px;
  11082. width:55px;
  11083. height:18px;
  11084. display:flex;
  11085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11086. font-weight:400;
  11087. font-style:normal;
  11088. }
  11089. #u16069 .text {
  11090. position:absolute;
  11091. align-self:center;
  11092. padding:0px 2px 0px 2px;
  11093. box-sizing:border-box;
  11094. }
  11095. #u16069_img.selected {
  11096. }
  11097. #u16069.selected {
  11098. }
  11099. #u16069_img.disabled {
  11100. }
  11101. #u16069.disabled {
  11102. }
  11103. #u16069_img.selectedDisabled {
  11104. }
  11105. #u16069.selectedDisabled {
  11106. }
  11107. #u16069_text {
  11108. border-width:0px;
  11109. position:absolute;
  11110. left:14px;
  11111. top:0px;
  11112. width:39px;
  11113. word-wrap:break-word;
  11114. text-transform:none;
  11115. }
  11116. #u16069_input {
  11117. border-width:0px;
  11118. position:absolute;
  11119. left:0px;
  11120. top:0px;
  11121. width:0px;
  11122. height:0px;
  11123. opacity:0;
  11124. }
  11125. #u16070 label {
  11126. left:0px;
  11127. width:100%;
  11128. }
  11129. #u16070_img {
  11130. border-width:0px;
  11131. position:absolute;
  11132. left:0px;
  11133. top:3px;
  11134. width:12px;
  11135. height:12px;
  11136. }
  11137. #u16070 {
  11138. border-width:0px;
  11139. position:absolute;
  11140. left:295px;
  11141. top:614px;
  11142. width:55px;
  11143. height:18px;
  11144. display:flex;
  11145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11146. font-weight:400;
  11147. font-style:normal;
  11148. }
  11149. #u16070 .text {
  11150. position:absolute;
  11151. align-self:center;
  11152. padding:0px 2px 0px 2px;
  11153. box-sizing:border-box;
  11154. }
  11155. #u16070_img.selected {
  11156. }
  11157. #u16070.selected {
  11158. }
  11159. #u16070_img.disabled {
  11160. }
  11161. #u16070.disabled {
  11162. }
  11163. #u16070_img.selectedDisabled {
  11164. }
  11165. #u16070.selectedDisabled {
  11166. }
  11167. #u16070_text {
  11168. border-width:0px;
  11169. position:absolute;
  11170. left:14px;
  11171. top:0px;
  11172. width:39px;
  11173. word-wrap:break-word;
  11174. text-transform:none;
  11175. }
  11176. #u16070_input {
  11177. border-width:0px;
  11178. position:absolute;
  11179. left:0px;
  11180. top:0px;
  11181. width:0px;
  11182. height:0px;
  11183. opacity:0;
  11184. }
  11185. #u16071 {
  11186. border-width:0px;
  11187. position:absolute;
  11188. left:0px;
  11189. top:0px;
  11190. width:0px;
  11191. height:0px;
  11192. }
  11193. #u16072_div {
  11194. border-width:0px;
  11195. position:absolute;
  11196. left:0px;
  11197. top:0px;
  11198. width:427px;
  11199. height:80px;
  11200. background:inherit;
  11201. background-color:rgba(255, 255, 255, 1);
  11202. box-sizing:border-box;
  11203. border-width:1px;
  11204. border-style:solid;
  11205. border-color:rgba(201, 201, 201, 1);
  11206. border-radius:4px;
  11207. -moz-box-shadow:none;
  11208. -webkit-box-shadow:none;
  11209. box-shadow:none;
  11210. font-family:'Microsoft YaHei', sans-serif;
  11211. font-weight:400;
  11212. font-style:normal;
  11213. font-size:14px;
  11214. color:#CCCCCC;
  11215. text-align:left;
  11216. }
  11217. #u16072 {
  11218. border-width:0px;
  11219. position:absolute;
  11220. left:136px;
  11221. top:1083px;
  11222. width:427px;
  11223. height:80px;
  11224. display:flex;
  11225. font-family:'Microsoft YaHei', sans-serif;
  11226. font-weight:400;
  11227. font-style:normal;
  11228. font-size:14px;
  11229. color:#CCCCCC;
  11230. text-align:left;
  11231. }
  11232. #u16072 .text {
  11233. position:absolute;
  11234. align-self:center;
  11235. padding:2px 8px 2px 8px;
  11236. box-sizing:border-box;
  11237. width:100%;
  11238. }
  11239. #u16072_text {
  11240. border-width:0px;
  11241. word-wrap:break-word;
  11242. text-transform:none;
  11243. visibility:hidden;
  11244. }
  11245. #u16073_input {
  11246. position:absolute;
  11247. left:0px;
  11248. top:0px;
  11249. width:389px;
  11250. height:33px;
  11251. padding:2px 2px 2px 2px;
  11252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11253. font-weight:400;
  11254. font-style:normal;
  11255. font-size:14px;
  11256. letter-spacing:normal;
  11257. color:#D7D7D7;
  11258. vertical-align:none;
  11259. text-align:left;
  11260. text-transform:none;
  11261. background-color:transparent;
  11262. border-color:transparent;
  11263. }
  11264. #u16073_input.disabled {
  11265. position:absolute;
  11266. left:0px;
  11267. top:0px;
  11268. width:389px;
  11269. height:33px;
  11270. padding:2px 2px 2px 2px;
  11271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11272. font-weight:400;
  11273. font-style:normal;
  11274. font-size:14px;
  11275. letter-spacing:normal;
  11276. color:#D7D7D7;
  11277. vertical-align:none;
  11278. text-align:left;
  11279. text-transform:none;
  11280. background-color:transparent;
  11281. border-color:transparent;
  11282. }
  11283. #u16073_div {
  11284. border-width:0px;
  11285. position:absolute;
  11286. left:0px;
  11287. top:0px;
  11288. width:389px;
  11289. height:33px;
  11290. background:inherit;
  11291. background-color:rgba(255, 255, 255, 0);
  11292. border:none;
  11293. border-radius:0px;
  11294. -moz-box-shadow:none;
  11295. -webkit-box-shadow:none;
  11296. box-shadow:none;
  11297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11298. font-weight:400;
  11299. font-style:normal;
  11300. font-size:14px;
  11301. color:#D7D7D7;
  11302. }
  11303. #u16073 {
  11304. border-width:0px;
  11305. position:absolute;
  11306. left:153px;
  11307. top:1086px;
  11308. width:389px;
  11309. height:33px;
  11310. display:flex;
  11311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11312. font-weight:400;
  11313. font-style:normal;
  11314. font-size:14px;
  11315. color:#D7D7D7;
  11316. }
  11317. #u16073 .text {
  11318. position:absolute;
  11319. align-self:center;
  11320. padding:2px 2px 2px 2px;
  11321. box-sizing:border-box;
  11322. width:100%;
  11323. }
  11324. #u16073_div.disabled {
  11325. border-width:0px;
  11326. position:absolute;
  11327. left:0px;
  11328. top:0px;
  11329. width:389px;
  11330. height:33px;
  11331. background:inherit;
  11332. background-color:rgba(240, 240, 240, 1);
  11333. border:none;
  11334. border-radius:0px;
  11335. -moz-box-shadow:none;
  11336. -webkit-box-shadow:none;
  11337. box-shadow:none;
  11338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11339. font-weight:400;
  11340. font-style:normal;
  11341. font-size:14px;
  11342. color:#D7D7D7;
  11343. }
  11344. #u16073.disabled {
  11345. }
  11346. #u16074_div {
  11347. border-width:0px;
  11348. position:absolute;
  11349. left:0px;
  11350. top:0px;
  11351. width:71px;
  11352. height:40px;
  11353. background:inherit;
  11354. background-color:rgba(255, 255, 255, 0);
  11355. border:none;
  11356. border-left:0px;
  11357. border-top:0px;
  11358. border-right:0px;
  11359. border-radius:0px;
  11360. border-bottom-right-radius:0px;
  11361. border-bottom-left-radius:0px;
  11362. -moz-box-shadow:none;
  11363. -webkit-box-shadow:none;
  11364. box-shadow:none;
  11365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11366. font-weight:400;
  11367. font-style:normal;
  11368. font-size:14px;
  11369. }
  11370. #u16074 {
  11371. border-width:0px;
  11372. position:absolute;
  11373. left:136px;
  11374. top:1043px;
  11375. width:71px;
  11376. height:40px;
  11377. display:flex;
  11378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11379. font-weight:400;
  11380. font-style:normal;
  11381. font-size:14px;
  11382. }
  11383. #u16074 .text {
  11384. position:absolute;
  11385. align-self:center;
  11386. padding:0px 0px 0px 0px;
  11387. box-sizing:border-box;
  11388. width:100%;
  11389. }
  11390. #u16074_text {
  11391. border-width:0px;
  11392. white-space:nowrap;
  11393. text-transform:none;
  11394. }
  11395. #u16075_div {
  11396. border-width:0px;
  11397. position:absolute;
  11398. left:0px;
  11399. top:0px;
  11400. width:271px;
  11401. height:40px;
  11402. background:inherit;
  11403. background-color:rgba(255, 255, 255, 0);
  11404. border:none;
  11405. border-left:0px;
  11406. border-top:0px;
  11407. border-right:0px;
  11408. border-radius:0px;
  11409. border-bottom-right-radius:0px;
  11410. border-bottom-left-radius:0px;
  11411. -moz-box-shadow:none;
  11412. -webkit-box-shadow:none;
  11413. box-shadow:none;
  11414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11415. font-weight:400;
  11416. font-style:normal;
  11417. }
  11418. #u16075 {
  11419. border-width:0px;
  11420. position:absolute;
  11421. left:136px;
  11422. top:953px;
  11423. width:271px;
  11424. height:40px;
  11425. display:flex;
  11426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11427. font-weight:400;
  11428. font-style:normal;
  11429. }
  11430. #u16075 .text {
  11431. position:absolute;
  11432. align-self:center;
  11433. padding:0px 0px 0px 0px;
  11434. box-sizing:border-box;
  11435. width:100%;
  11436. }
  11437. #u16075_text {
  11438. border-width:0px;
  11439. white-space:nowrap;
  11440. text-transform:none;
  11441. }
  11442. #u16076_div {
  11443. border-width:0px;
  11444. position:absolute;
  11445. left:0px;
  11446. top:0px;
  11447. width:156px;
  11448. height:40px;
  11449. background:inherit;
  11450. background-color:rgba(255, 255, 255, 0);
  11451. border:none;
  11452. border-left:0px;
  11453. border-top:0px;
  11454. border-right:0px;
  11455. border-radius:0px;
  11456. border-bottom-right-radius:0px;
  11457. border-bottom-left-radius:0px;
  11458. -moz-box-shadow:none;
  11459. -webkit-box-shadow:none;
  11460. box-shadow:none;
  11461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11462. font-weight:400;
  11463. font-style:normal;
  11464. }
  11465. #u16076 {
  11466. border-width:0px;
  11467. position:absolute;
  11468. left:136px;
  11469. top:782px;
  11470. width:156px;
  11471. height:40px;
  11472. display:flex;
  11473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11474. font-weight:400;
  11475. font-style:normal;
  11476. }
  11477. #u16076 .text {
  11478. position:absolute;
  11479. align-self:center;
  11480. padding:0px 0px 0px 0px;
  11481. box-sizing:border-box;
  11482. width:100%;
  11483. }
  11484. #u16076_text {
  11485. border-width:0px;
  11486. white-space:nowrap;
  11487. text-transform:none;
  11488. }
  11489. #u16077_div {
  11490. border-width:0px;
  11491. position:absolute;
  11492. left:0px;
  11493. top:0px;
  11494. width:120px;
  11495. height:40px;
  11496. background:inherit;
  11497. background-color:rgba(24, 144, 255, 1);
  11498. border:none;
  11499. border-radius:4px;
  11500. -moz-box-shadow:none;
  11501. -webkit-box-shadow:none;
  11502. box-shadow:none;
  11503. font-size:14px;
  11504. color:#FFFFFF;
  11505. }
  11506. #u16077 {
  11507. border-width:0px;
  11508. position:absolute;
  11509. left:136px;
  11510. top:993px;
  11511. width:120px;
  11512. height:40px;
  11513. display:flex;
  11514. font-size:14px;
  11515. color:#FFFFFF;
  11516. }
  11517. #u16077 .text {
  11518. position:absolute;
  11519. align-self:center;
  11520. padding:2px 8px 2px 8px;
  11521. box-sizing:border-box;
  11522. width:100%;
  11523. }
  11524. #u16077_text {
  11525. border-width:0px;
  11526. word-wrap:break-word;
  11527. text-transform:none;
  11528. }
  11529. #u16078_img {
  11530. border-width:0px;
  11531. position:absolute;
  11532. left:0px;
  11533. top:0px;
  11534. width:361px;
  11535. height:121px;
  11536. }
  11537. #u16078 {
  11538. border-width:0px;
  11539. position:absolute;
  11540. left:136px;
  11541. top:822px;
  11542. width:361px;
  11543. height:121px;
  11544. display:flex;
  11545. }
  11546. #u16078 .text {
  11547. position:absolute;
  11548. align-self:center;
  11549. padding:2px 2px 2px 2px;
  11550. box-sizing:border-box;
  11551. width:100%;
  11552. }
  11553. #u16078_text {
  11554. border-width:0px;
  11555. word-wrap:break-word;
  11556. text-transform:none;
  11557. visibility:hidden;
  11558. }
  11559. #u16079_div {
  11560. border-width:0px;
  11561. position:absolute;
  11562. left:0px;
  11563. top:0px;
  11564. width:675px;
  11565. height:80px;
  11566. background:inherit;
  11567. background-color:rgba(255, 255, 255, 0);
  11568. border:none;
  11569. border-left:0px;
  11570. border-top:0px;
  11571. border-right:0px;
  11572. border-radius:0px;
  11573. border-bottom-right-radius:0px;
  11574. border-bottom-left-radius:0px;
  11575. -moz-box-shadow:none;
  11576. -webkit-box-shadow:none;
  11577. box-shadow:none;
  11578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11579. font-weight:400;
  11580. font-style:normal;
  11581. font-size:14px;
  11582. color:#D9001B;
  11583. }
  11584. #u16079 {
  11585. border-width:0px;
  11586. position:absolute;
  11587. left:276px;
  11588. top:993px;
  11589. width:675px;
  11590. height:80px;
  11591. display:flex;
  11592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11593. font-weight:400;
  11594. font-style:normal;
  11595. font-size:14px;
  11596. color:#D9001B;
  11597. }
  11598. #u16079 .text {
  11599. position:absolute;
  11600. align-self:center;
  11601. padding:0px 0px 0px 0px;
  11602. box-sizing:border-box;
  11603. width:100%;
  11604. }
  11605. #u16079_text {
  11606. border-width:0px;
  11607. word-wrap:break-word;
  11608. text-transform:none;
  11609. }