styles.css 134 KB

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