styles.css 124 KB

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