styles.css 122 KB

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