styles.css 144 KB

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