styles.css 132 KB

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