styles.css 106 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u34119_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u34119 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u34119 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u34119_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u34120_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u34120 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u34120 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u34120_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u34121_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u34121 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u34121 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u34121_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u34122 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u34123_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u34123 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u34123 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u34123_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u34124_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u34124 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u34124 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u34124_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u34125_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u34125 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u34125 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u34125_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u34126 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u34127_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. #u34127 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  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. #u34127 .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. #u34127_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u34128_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u34128 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u34128 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u34128_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u34129 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u34130_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. #u34130 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  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. #u34130 .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. #u34130_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u34131_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u34131 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u34131 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u34131_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u34132 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u34133_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u34133 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u34133 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u34133_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u34134_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u34134 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u34134 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u34134_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u34135 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u34136_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u34136 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u34136 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u34136_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u34137_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u34137 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u34137 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u34137_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u34138 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u34139_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u34139 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u34139 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u34139_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u34140_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u34140 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u34140 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u34140_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u34141 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u34142_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u34142 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u34142 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u34142_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u34143_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u34143 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u34143 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u34143_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u34144 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u34145_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u34145 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u34145 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u34145_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u34146_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u34146 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u34146 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u34146_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u34147 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u34148_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u34148 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u34148 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u34148_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u34149_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u34149 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u34149 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u34149_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u34150 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u34151_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u34151 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u34151 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u34151_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u34152_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u34152 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u34152 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u34152_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u34153 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u34154_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u34154 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u34154 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u34154_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u34155_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u34155 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u34155 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u34155_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u34156 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u34157_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u34157 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u34157 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u34157_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u34158_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u34158 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u34158 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u34158_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u34159 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u34160_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u34160_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u34160_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u34160 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u34160 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u34160_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u34160.disabled {
  1276. }
  1277. .u34160_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u34161_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u34161 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u34161 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u34161_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u34162_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u34162 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u34162 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u34162_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u34163_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u34163 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u34163 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u34163_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u34164 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u34165_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u34165 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u34165 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u34165_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u34166_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u34166 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u34166 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u34166_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u34167_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u34167 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u34167 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u34167_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u34168_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u34168 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u34168 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u34168_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u34169_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u34169 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u34169 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u34169_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u34170 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u34171_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u34171 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u34171 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u34171_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u34172_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u34172 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u34172 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u34172_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u34173_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1260px;
  1648. height:1188px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. box-sizing:border-box;
  1652. border-width:1px;
  1653. border-style:solid;
  1654. border-color:rgba(242, 242, 242, 1);
  1655. border-radius:0px;
  1656. -moz-box-shadow:none;
  1657. -webkit-box-shadow:none;
  1658. box-shadow:none;
  1659. }
  1660. #u34173 {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:333px;
  1664. top:50px;
  1665. width:1260px;
  1666. height:1188px;
  1667. display:flex;
  1668. }
  1669. #u34173 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:2px 2px 2px 2px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u34173_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. visibility:hidden;
  1681. }
  1682. #u34174 {
  1683. border-width:0px;
  1684. position:absolute;
  1685. left:357px;
  1686. top:229px;
  1687. width:1207px;
  1688. height:220px;
  1689. }
  1690. #u34175_img {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:47px;
  1696. height:30px;
  1697. }
  1698. #u34175 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:0px;
  1702. top:0px;
  1703. width:47px;
  1704. height:30px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:14px;
  1710. color:#FFFFFF;
  1711. }
  1712. #u34175 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:2px 2px 2px 2px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u34175_text {
  1720. border-width:0px;
  1721. word-wrap:break-word;
  1722. text-transform:none;
  1723. }
  1724. #u34176_img {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:241px;
  1730. height:30px;
  1731. }
  1732. #u34176 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:47px;
  1736. top:0px;
  1737. width:241px;
  1738. height:30px;
  1739. display:flex;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. color:#FFFFFF;
  1745. }
  1746. #u34176 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u34176_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. }
  1758. #u34177_img {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:172px;
  1764. height:30px;
  1765. }
  1766. #u34177 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:288px;
  1770. top:0px;
  1771. width:172px;
  1772. height:30px;
  1773. display:flex;
  1774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:14px;
  1778. color:#FFFFFF;
  1779. }
  1780. #u34177 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 2px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u34177_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. }
  1792. #u34178_img {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:196px;
  1798. height:30px;
  1799. }
  1800. #u34178 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:460px;
  1804. top:0px;
  1805. width:196px;
  1806. height:30px;
  1807. display:flex;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u34178 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 2px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u34178_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. }
  1826. #u34179_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:243px;
  1832. height:30px;
  1833. }
  1834. #u34179 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:656px;
  1838. top:0px;
  1839. width:243px;
  1840. height:30px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:14px;
  1846. color:#FFFFFF;
  1847. }
  1848. #u34179 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:2px 2px 2px 2px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u34179_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. }
  1860. #u34180_img {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:154px;
  1866. height:30px;
  1867. }
  1868. #u34180 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:899px;
  1872. top:0px;
  1873. width:154px;
  1874. height:30px;
  1875. display:flex;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:14px;
  1880. color:#FFFFFF;
  1881. }
  1882. #u34180 .text {
  1883. position:absolute;
  1884. align-self:center;
  1885. padding:2px 2px 2px 2px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u34180_text {
  1890. border-width:0px;
  1891. word-wrap:break-word;
  1892. text-transform:none;
  1893. }
  1894. #u34181_img {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:154px;
  1900. height:30px;
  1901. }
  1902. #u34181 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:1053px;
  1906. top:0px;
  1907. width:154px;
  1908. height:30px;
  1909. display:flex;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:14px;
  1914. color:#FFFFFF;
  1915. }
  1916. #u34181 .text {
  1917. position:absolute;
  1918. align-self:center;
  1919. padding:2px 2px 2px 2px;
  1920. box-sizing:border-box;
  1921. width:100%;
  1922. }
  1923. #u34181_text {
  1924. border-width:0px;
  1925. word-wrap:break-word;
  1926. text-transform:none;
  1927. }
  1928. #u34182_img {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:47px;
  1934. height:38px;
  1935. }
  1936. #u34182 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:30px;
  1941. width:47px;
  1942. height:38px;
  1943. display:flex;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. font-size:14px;
  1948. }
  1949. #u34182 .text {
  1950. position:absolute;
  1951. align-self:center;
  1952. padding:2px 2px 2px 2px;
  1953. box-sizing:border-box;
  1954. width:100%;
  1955. }
  1956. #u34182_text {
  1957. border-width:0px;
  1958. word-wrap:break-word;
  1959. text-transform:none;
  1960. }
  1961. #u34183_img {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:241px;
  1967. height:38px;
  1968. }
  1969. #u34183 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:47px;
  1973. top:30px;
  1974. width:241px;
  1975. height:38px;
  1976. display:flex;
  1977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1978. font-weight:400;
  1979. font-style:normal;
  1980. font-size:14px;
  1981. }
  1982. #u34183 .text {
  1983. position:absolute;
  1984. align-self:center;
  1985. padding:2px 2px 2px 2px;
  1986. box-sizing:border-box;
  1987. width:100%;
  1988. }
  1989. #u34183_text {
  1990. border-width:0px;
  1991. word-wrap:break-word;
  1992. text-transform:none;
  1993. visibility:hidden;
  1994. }
  1995. #u34184_img {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:172px;
  2001. height:38px;
  2002. }
  2003. #u34184 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:288px;
  2007. top:30px;
  2008. width:172px;
  2009. height:38px;
  2010. display:flex;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:14px;
  2015. }
  2016. #u34184 .text {
  2017. position:absolute;
  2018. align-self:center;
  2019. padding:2px 2px 2px 2px;
  2020. box-sizing:border-box;
  2021. width:100%;
  2022. }
  2023. #u34184_text {
  2024. border-width:0px;
  2025. word-wrap:break-word;
  2026. text-transform:none;
  2027. visibility:hidden;
  2028. }
  2029. #u34185_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:196px;
  2035. height:38px;
  2036. }
  2037. #u34185 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:460px;
  2041. top:30px;
  2042. width:196px;
  2043. height:38px;
  2044. display:flex;
  2045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2046. font-weight:400;
  2047. font-style:normal;
  2048. font-size:14px;
  2049. }
  2050. #u34185 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 2px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u34185_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. visibility:hidden;
  2062. }
  2063. #u34186_img {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:243px;
  2069. height:38px;
  2070. }
  2071. #u34186 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:656px;
  2075. top:30px;
  2076. width:243px;
  2077. height:38px;
  2078. display:flex;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:14px;
  2083. }
  2084. #u34186 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 2px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u34186_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. visibility:hidden;
  2096. }
  2097. #u34187_img {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:154px;
  2103. height:38px;
  2104. }
  2105. #u34187 {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:899px;
  2109. top:30px;
  2110. width:154px;
  2111. height:38px;
  2112. display:flex;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:14px;
  2117. }
  2118. #u34187 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 2px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u34187_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. visibility:hidden;
  2130. }
  2131. #u34188_img {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:0px;
  2135. top:0px;
  2136. width:154px;
  2137. height:38px;
  2138. }
  2139. #u34188 {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:1053px;
  2143. top:30px;
  2144. width:154px;
  2145. height:38px;
  2146. display:flex;
  2147. font-size:14px;
  2148. color:#1890FF;
  2149. }
  2150. #u34188 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 2px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u34188_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. }
  2162. #u34189_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:47px;
  2168. height:38px;
  2169. }
  2170. #u34189 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:68px;
  2175. width:47px;
  2176. height:38px;
  2177. display:flex;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:14px;
  2182. }
  2183. #u34189 .text {
  2184. position:absolute;
  2185. align-self:center;
  2186. padding:2px 2px 2px 2px;
  2187. box-sizing:border-box;
  2188. width:100%;
  2189. }
  2190. #u34189_text {
  2191. border-width:0px;
  2192. word-wrap:break-word;
  2193. text-transform:none;
  2194. visibility:hidden;
  2195. }
  2196. #u34190_img {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:241px;
  2202. height:38px;
  2203. }
  2204. #u34190 {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:47px;
  2208. top:68px;
  2209. width:241px;
  2210. height:38px;
  2211. display:flex;
  2212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2213. font-weight:400;
  2214. font-style:normal;
  2215. font-size:14px;
  2216. }
  2217. #u34190 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 2px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u34190_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. visibility:hidden;
  2229. }
  2230. #u34191_img {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:172px;
  2236. height:38px;
  2237. }
  2238. #u34191 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:288px;
  2242. top:68px;
  2243. width:172px;
  2244. height:38px;
  2245. display:flex;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:14px;
  2250. }
  2251. #u34191 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u34191_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u34192_img {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:196px;
  2270. height:38px;
  2271. }
  2272. #u34192 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:460px;
  2276. top:68px;
  2277. width:196px;
  2278. height:38px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:14px;
  2284. }
  2285. #u34192 .text {
  2286. position:absolute;
  2287. align-self:center;
  2288. padding:2px 2px 2px 2px;
  2289. box-sizing:border-box;
  2290. width:100%;
  2291. }
  2292. #u34192_text {
  2293. border-width:0px;
  2294. word-wrap:break-word;
  2295. text-transform:none;
  2296. visibility:hidden;
  2297. }
  2298. #u34193_img {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:243px;
  2304. height:38px;
  2305. }
  2306. #u34193 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:656px;
  2310. top:68px;
  2311. width:243px;
  2312. height:38px;
  2313. display:flex;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:14px;
  2318. }
  2319. #u34193 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:2px 2px 2px 2px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u34193_text {
  2327. border-width:0px;
  2328. word-wrap:break-word;
  2329. text-transform:none;
  2330. visibility:hidden;
  2331. }
  2332. #u34194_img {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:0px;
  2336. top:0px;
  2337. width:154px;
  2338. height:38px;
  2339. }
  2340. #u34194 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:899px;
  2344. top:68px;
  2345. width:154px;
  2346. height:38px;
  2347. display:flex;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:14px;
  2352. }
  2353. #u34194 .text {
  2354. position:absolute;
  2355. align-self:center;
  2356. padding:2px 2px 2px 2px;
  2357. box-sizing:border-box;
  2358. width:100%;
  2359. }
  2360. #u34194_text {
  2361. border-width:0px;
  2362. word-wrap:break-word;
  2363. text-transform:none;
  2364. visibility:hidden;
  2365. }
  2366. #u34195_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:154px;
  2372. height:38px;
  2373. }
  2374. #u34195 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:1053px;
  2378. top:68px;
  2379. width:154px;
  2380. height:38px;
  2381. display:flex;
  2382. font-size:14px;
  2383. }
  2384. #u34195 .text {
  2385. position:absolute;
  2386. align-self:center;
  2387. padding:2px 2px 2px 2px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u34195_text {
  2392. border-width:0px;
  2393. word-wrap:break-word;
  2394. text-transform:none;
  2395. visibility:hidden;
  2396. }
  2397. #u34196_img {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:47px;
  2403. height:38px;
  2404. }
  2405. #u34196 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:106px;
  2410. width:47px;
  2411. height:38px;
  2412. display:flex;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:14px;
  2417. }
  2418. #u34196 .text {
  2419. position:absolute;
  2420. align-self:center;
  2421. padding:2px 2px 2px 2px;
  2422. box-sizing:border-box;
  2423. width:100%;
  2424. }
  2425. #u34196_text {
  2426. border-width:0px;
  2427. word-wrap:break-word;
  2428. text-transform:none;
  2429. visibility:hidden;
  2430. }
  2431. #u34197_img {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:241px;
  2437. height:38px;
  2438. }
  2439. #u34197 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:47px;
  2443. top:106px;
  2444. width:241px;
  2445. height:38px;
  2446. display:flex;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:14px;
  2451. }
  2452. #u34197 .text {
  2453. position:absolute;
  2454. align-self:center;
  2455. padding:2px 2px 2px 2px;
  2456. box-sizing:border-box;
  2457. width:100%;
  2458. }
  2459. #u34197_text {
  2460. border-width:0px;
  2461. word-wrap:break-word;
  2462. text-transform:none;
  2463. visibility:hidden;
  2464. }
  2465. #u34198_img {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:172px;
  2471. height:38px;
  2472. }
  2473. #u34198 {
  2474. border-width:0px;
  2475. position:absolute;
  2476. left:288px;
  2477. top:106px;
  2478. width:172px;
  2479. height:38px;
  2480. display:flex;
  2481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2482. font-weight:400;
  2483. font-style:normal;
  2484. font-size:14px;
  2485. }
  2486. #u34198 .text {
  2487. position:absolute;
  2488. align-self:center;
  2489. padding:2px 2px 2px 2px;
  2490. box-sizing:border-box;
  2491. width:100%;
  2492. }
  2493. #u34198_text {
  2494. border-width:0px;
  2495. word-wrap:break-word;
  2496. text-transform:none;
  2497. visibility:hidden;
  2498. }
  2499. #u34199_img {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:0px;
  2503. top:0px;
  2504. width:196px;
  2505. height:38px;
  2506. }
  2507. #u34199 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:460px;
  2511. top:106px;
  2512. width:196px;
  2513. height:38px;
  2514. display:flex;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:14px;
  2519. }
  2520. #u34199 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 2px 2px 2px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u34199_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. visibility:hidden;
  2532. }
  2533. #u34200_img {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:243px;
  2539. height:38px;
  2540. }
  2541. #u34200 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:656px;
  2545. top:106px;
  2546. width:243px;
  2547. height:38px;
  2548. display:flex;
  2549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2550. font-weight:400;
  2551. font-style:normal;
  2552. font-size:14px;
  2553. }
  2554. #u34200 .text {
  2555. position:absolute;
  2556. align-self:center;
  2557. padding:2px 2px 2px 2px;
  2558. box-sizing:border-box;
  2559. width:100%;
  2560. }
  2561. #u34200_text {
  2562. border-width:0px;
  2563. word-wrap:break-word;
  2564. text-transform:none;
  2565. visibility:hidden;
  2566. }
  2567. #u34201_img {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:154px;
  2573. height:38px;
  2574. }
  2575. #u34201 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:899px;
  2579. top:106px;
  2580. width:154px;
  2581. height:38px;
  2582. display:flex;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:14px;
  2587. }
  2588. #u34201 .text {
  2589. position:absolute;
  2590. align-self:center;
  2591. padding:2px 2px 2px 2px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u34201_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. visibility:hidden;
  2600. }
  2601. #u34202_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:154px;
  2607. height:38px;
  2608. }
  2609. #u34202 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:1053px;
  2613. top:106px;
  2614. width:154px;
  2615. height:38px;
  2616. display:flex;
  2617. font-size:14px;
  2618. }
  2619. #u34202 .text {
  2620. position:absolute;
  2621. align-self:center;
  2622. padding:2px 2px 2px 2px;
  2623. box-sizing:border-box;
  2624. width:100%;
  2625. }
  2626. #u34202_text {
  2627. border-width:0px;
  2628. word-wrap:break-word;
  2629. text-transform:none;
  2630. visibility:hidden;
  2631. }
  2632. #u34203_img {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:47px;
  2638. height:38px;
  2639. }
  2640. #u34203 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:144px;
  2645. width:47px;
  2646. height:38px;
  2647. display:flex;
  2648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2649. font-weight:400;
  2650. font-style:normal;
  2651. font-size:14px;
  2652. }
  2653. #u34203 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 2px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u34203_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u34204_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:241px;
  2672. height:38px;
  2673. }
  2674. #u34204 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:47px;
  2678. top:144px;
  2679. width:241px;
  2680. height:38px;
  2681. display:flex;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:14px;
  2686. }
  2687. #u34204 .text {
  2688. position:absolute;
  2689. align-self:center;
  2690. padding:2px 2px 2px 2px;
  2691. box-sizing:border-box;
  2692. width:100%;
  2693. }
  2694. #u34204_text {
  2695. border-width:0px;
  2696. word-wrap:break-word;
  2697. text-transform:none;
  2698. visibility:hidden;
  2699. }
  2700. #u34205_img {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:172px;
  2706. height:38px;
  2707. }
  2708. #u34205 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:288px;
  2712. top:144px;
  2713. width:172px;
  2714. height:38px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:14px;
  2720. }
  2721. #u34205 .text {
  2722. position:absolute;
  2723. align-self:center;
  2724. padding:2px 2px 2px 2px;
  2725. box-sizing:border-box;
  2726. width:100%;
  2727. }
  2728. #u34205_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u34206_img {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:196px;
  2740. height:38px;
  2741. }
  2742. #u34206 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:460px;
  2746. top:144px;
  2747. width:196px;
  2748. height:38px;
  2749. display:flex;
  2750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2751. font-weight:400;
  2752. font-style:normal;
  2753. font-size:14px;
  2754. }
  2755. #u34206 .text {
  2756. position:absolute;
  2757. align-self:center;
  2758. padding:2px 2px 2px 2px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u34206_text {
  2763. border-width:0px;
  2764. word-wrap:break-word;
  2765. text-transform:none;
  2766. visibility:hidden;
  2767. }
  2768. #u34207_img {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:243px;
  2774. height:38px;
  2775. }
  2776. #u34207 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:656px;
  2780. top:144px;
  2781. width:243px;
  2782. height:38px;
  2783. display:flex;
  2784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2785. font-weight:400;
  2786. font-style:normal;
  2787. font-size:14px;
  2788. }
  2789. #u34207 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 2px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u34207_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. visibility:hidden;
  2801. }
  2802. #u34208_img {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:154px;
  2808. height:38px;
  2809. }
  2810. #u34208 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:899px;
  2814. top:144px;
  2815. width:154px;
  2816. height:38px;
  2817. display:flex;
  2818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2819. font-weight:400;
  2820. font-style:normal;
  2821. font-size:14px;
  2822. }
  2823. #u34208 .text {
  2824. position:absolute;
  2825. align-self:center;
  2826. padding:2px 2px 2px 2px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u34208_text {
  2831. border-width:0px;
  2832. word-wrap:break-word;
  2833. text-transform:none;
  2834. visibility:hidden;
  2835. }
  2836. #u34209_img {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:0px;
  2841. width:154px;
  2842. height:38px;
  2843. }
  2844. #u34209 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:1053px;
  2848. top:144px;
  2849. width:154px;
  2850. height:38px;
  2851. display:flex;
  2852. font-size:14px;
  2853. }
  2854. #u34209 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 2px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u34209_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u34210_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:47px;
  2873. height:38px;
  2874. }
  2875. #u34210 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:182px;
  2880. width:47px;
  2881. height:38px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:14px;
  2887. }
  2888. #u34210 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 2px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u34210_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. visibility:hidden;
  2900. }
  2901. #u34211_img {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:241px;
  2907. height:38px;
  2908. }
  2909. #u34211 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:47px;
  2913. top:182px;
  2914. width:241px;
  2915. height:38px;
  2916. display:flex;
  2917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:14px;
  2921. }
  2922. #u34211 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 2px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u34211_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u34212_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:172px;
  2941. height:38px;
  2942. }
  2943. #u34212 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:288px;
  2947. top:182px;
  2948. width:172px;
  2949. height:38px;
  2950. display:flex;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. }
  2956. #u34212 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u34212_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u34213_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:196px;
  2975. height:38px;
  2976. }
  2977. #u34213 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:460px;
  2981. top:182px;
  2982. width:196px;
  2983. height:38px;
  2984. display:flex;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:14px;
  2989. }
  2990. #u34213 .text {
  2991. position:absolute;
  2992. align-self:center;
  2993. padding:2px 2px 2px 2px;
  2994. box-sizing:border-box;
  2995. width:100%;
  2996. }
  2997. #u34213_text {
  2998. border-width:0px;
  2999. word-wrap:break-word;
  3000. text-transform:none;
  3001. visibility:hidden;
  3002. }
  3003. #u34214_img {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:243px;
  3009. height:38px;
  3010. }
  3011. #u34214 {
  3012. border-width:0px;
  3013. position:absolute;
  3014. left:656px;
  3015. top:182px;
  3016. width:243px;
  3017. height:38px;
  3018. display:flex;
  3019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3020. font-weight:400;
  3021. font-style:normal;
  3022. font-size:14px;
  3023. }
  3024. #u34214 .text {
  3025. position:absolute;
  3026. align-self:center;
  3027. padding:2px 2px 2px 2px;
  3028. box-sizing:border-box;
  3029. width:100%;
  3030. }
  3031. #u34214_text {
  3032. border-width:0px;
  3033. word-wrap:break-word;
  3034. text-transform:none;
  3035. visibility:hidden;
  3036. }
  3037. #u34215_img {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:0px;
  3041. top:0px;
  3042. width:154px;
  3043. height:38px;
  3044. }
  3045. #u34215 {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:899px;
  3049. top:182px;
  3050. width:154px;
  3051. height:38px;
  3052. display:flex;
  3053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3054. font-weight:400;
  3055. font-style:normal;
  3056. font-size:14px;
  3057. }
  3058. #u34215 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 2px 2px 2px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u34215_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. visibility:hidden;
  3070. }
  3071. #u34216_img {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:154px;
  3077. height:38px;
  3078. }
  3079. #u34216 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:1053px;
  3083. top:182px;
  3084. width:154px;
  3085. height:38px;
  3086. display:flex;
  3087. font-size:14px;
  3088. }
  3089. #u34216 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 2px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u34216_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. visibility:hidden;
  3101. }
  3102. #u34217_div {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:60px;
  3108. height:30px;
  3109. background:inherit;
  3110. background-color:rgba(24, 144, 255, 1);
  3111. border:none;
  3112. border-radius:4px;
  3113. -moz-box-shadow:none;
  3114. -webkit-box-shadow:none;
  3115. box-shadow:none;
  3116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:14px;
  3120. color:#FFFFFF;
  3121. }
  3122. #u34217 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:357px;
  3126. top:191px;
  3127. width:60px;
  3128. height:30px;
  3129. display:flex;
  3130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:14px;
  3134. color:#FFFFFF;
  3135. }
  3136. #u34217 .text {
  3137. position:absolute;
  3138. align-self:center;
  3139. padding:2px 2px 2px 2px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u34217_text {
  3144. border-width:0px;
  3145. word-wrap:break-word;
  3146. text-transform:none;
  3147. }
  3148. #u34218 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:0px;
  3154. height:0px;
  3155. }
  3156. #u34219_div {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:160px;
  3162. height:30px;
  3163. background:inherit;
  3164. background-color:rgba(255, 255, 255, 1);
  3165. box-sizing:border-box;
  3166. border-width:1px;
  3167. border-style:solid;
  3168. border-color:rgba(201, 201, 201, 1);
  3169. border-radius:4px;
  3170. -moz-box-shadow:none;
  3171. -webkit-box-shadow:none;
  3172. box-shadow:none;
  3173. font-family:'Microsoft YaHei', sans-serif;
  3174. font-weight:400;
  3175. font-style:normal;
  3176. font-size:14px;
  3177. color:#CCCCCC;
  3178. text-align:left;
  3179. }
  3180. #u34219 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:527px;
  3184. top:143px;
  3185. width:160px;
  3186. height:30px;
  3187. display:flex;
  3188. font-family:'Microsoft YaHei', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:14px;
  3192. color:#CCCCCC;
  3193. text-align:left;
  3194. }
  3195. #u34219 .text {
  3196. position:absolute;
  3197. align-self:center;
  3198. padding:2px 8px 2px 8px;
  3199. box-sizing:border-box;
  3200. width:100%;
  3201. }
  3202. #u34219_text {
  3203. border-width:0px;
  3204. word-wrap:break-word;
  3205. text-transform:none;
  3206. visibility:hidden;
  3207. }
  3208. #u34220_input {
  3209. position:absolute;
  3210. left:0px;
  3211. top:0px;
  3212. width:150px;
  3213. height:28px;
  3214. padding:2px 2px 2px 2px;
  3215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3216. font-weight:400;
  3217. font-style:normal;
  3218. font-size:14px;
  3219. letter-spacing:normal;
  3220. color:#000000;
  3221. vertical-align:none;
  3222. text-align:left;
  3223. text-transform:none;
  3224. background-color:transparent;
  3225. border-color:transparent;
  3226. }
  3227. #u34220_input.disabled {
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:150px;
  3232. height:28px;
  3233. padding:2px 2px 2px 2px;
  3234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3235. font-weight:400;
  3236. font-style:normal;
  3237. font-size:14px;
  3238. letter-spacing:normal;
  3239. color:#000000;
  3240. vertical-align:none;
  3241. text-align:left;
  3242. text-transform:none;
  3243. background-color:transparent;
  3244. border-color:transparent;
  3245. }
  3246. #u34220_div {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:150px;
  3252. height:28px;
  3253. background:inherit;
  3254. background-color:rgba(255, 255, 255, 1);
  3255. border:none;
  3256. border-radius:0px;
  3257. -moz-box-shadow:none;
  3258. -webkit-box-shadow:none;
  3259. box-shadow:none;
  3260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3261. font-weight:400;
  3262. font-style:normal;
  3263. font-size:14px;
  3264. }
  3265. #u34220 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:533px;
  3269. top:144px;
  3270. width:150px;
  3271. height:28px;
  3272. display:flex;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:14px;
  3277. }
  3278. #u34220 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 2px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u34220_div.disabled {
  3286. border-width:0px;
  3287. position:absolute;
  3288. left:0px;
  3289. top:0px;
  3290. width:150px;
  3291. height:28px;
  3292. background:inherit;
  3293. background-color:rgba(240, 240, 240, 1);
  3294. border:none;
  3295. border-radius:0px;
  3296. -moz-box-shadow:none;
  3297. -webkit-box-shadow:none;
  3298. box-shadow:none;
  3299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3300. font-weight:400;
  3301. font-style:normal;
  3302. font-size:14px;
  3303. }
  3304. #u34220.disabled {
  3305. }
  3306. #u34221 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:0px;
  3312. height:0px;
  3313. }
  3314. #u34222_div {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:60px;
  3320. height:30px;
  3321. background:inherit;
  3322. background-color:rgba(24, 144, 255, 1);
  3323. border:none;
  3324. border-radius:4px;
  3325. -moz-box-shadow:none;
  3326. -webkit-box-shadow:none;
  3327. box-shadow:none;
  3328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3329. font-weight:400;
  3330. font-style:normal;
  3331. font-size:14px;
  3332. color:#FFFFFF;
  3333. }
  3334. #u34222 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:697px;
  3338. top:143px;
  3339. width:60px;
  3340. height:30px;
  3341. display:flex;
  3342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3343. font-weight:400;
  3344. font-style:normal;
  3345. font-size:14px;
  3346. color:#FFFFFF;
  3347. }
  3348. #u34222 .text {
  3349. position:absolute;
  3350. align-self:center;
  3351. padding:2px 2px 2px 2px;
  3352. box-sizing:border-box;
  3353. width:100%;
  3354. }
  3355. #u34222_text {
  3356. border-width:0px;
  3357. word-wrap:break-word;
  3358. text-transform:none;
  3359. }
  3360. #u34223_div {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:60px;
  3366. height:30px;
  3367. background:inherit;
  3368. background-color:rgba(255, 255, 255, 1);
  3369. box-sizing:border-box;
  3370. border-width:1px;
  3371. border-style:solid;
  3372. border-color:rgba(170, 170, 170, 1);
  3373. border-radius:4px;
  3374. -moz-box-shadow:none;
  3375. -webkit-box-shadow:none;
  3376. box-shadow:none;
  3377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:14px;
  3381. }
  3382. #u34223 {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:767px;
  3386. top:143px;
  3387. width:60px;
  3388. height:30px;
  3389. display:flex;
  3390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:14px;
  3394. }
  3395. #u34223 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 2px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u34223_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. }
  3407. #u34224_div {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:73px;
  3413. height:50px;
  3414. background:inherit;
  3415. background-color:rgba(255, 255, 255, 0);
  3416. border:none;
  3417. border-left:0px;
  3418. border-top:0px;
  3419. border-right:0px;
  3420. border-radius:0px;
  3421. border-bottom-right-radius:0px;
  3422. border-bottom-left-radius:0px;
  3423. -moz-box-shadow:none;
  3424. -webkit-box-shadow:none;
  3425. box-shadow:none;
  3426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3427. font-weight:400;
  3428. font-style:normal;
  3429. font-size:18px;
  3430. line-height:40px;
  3431. }
  3432. #u34224 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:356px;
  3436. top:53px;
  3437. width:73px;
  3438. height:50px;
  3439. display:flex;
  3440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3441. font-weight:400;
  3442. font-style:normal;
  3443. font-size:18px;
  3444. line-height:40px;
  3445. }
  3446. #u34224 .text {
  3447. position:absolute;
  3448. align-self:center;
  3449. padding:0px 0px 0px 0px;
  3450. box-sizing:border-box;
  3451. width:100%;
  3452. }
  3453. #u34224_text {
  3454. border-width:0px;
  3455. white-space:nowrap;
  3456. text-transform:none;
  3457. }
  3458. #u34225 {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:0px;
  3464. height:0px;
  3465. }
  3466. #u34226_div {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:160px;
  3472. height:30px;
  3473. background:inherit;
  3474. background-color:rgba(255, 255, 255, 1);
  3475. box-sizing:border-box;
  3476. border-width:1px;
  3477. border-style:solid;
  3478. border-color:rgba(215, 215, 215, 1);
  3479. border-radius:4px;
  3480. -moz-box-shadow:none;
  3481. -webkit-box-shadow:none;
  3482. box-shadow:none;
  3483. font-size:14px;
  3484. }
  3485. #u34226 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:357px;
  3489. top:141px;
  3490. width:160px;
  3491. height:30px;
  3492. display:flex;
  3493. font-size:14px;
  3494. }
  3495. #u34226 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:2px 2px 2px 2px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u34226_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. visibility:hidden;
  3507. }
  3508. #u34227_input {
  3509. position:absolute;
  3510. left:0px;
  3511. top:0px;
  3512. width:153px;
  3513. height:23px;
  3514. padding:2px 2px 2px 2px;
  3515. font-family:'ArialMT', 'Arial', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:14px;
  3519. letter-spacing:normal;
  3520. color:#AAAAAA;
  3521. vertical-align:none;
  3522. text-align:left;
  3523. text-transform:none;
  3524. background-color:transparent;
  3525. border-color:transparent;
  3526. }
  3527. #u34227_input.disabled {
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:153px;
  3532. height:23px;
  3533. padding:2px 2px 2px 2px;
  3534. font-family:'ArialMT', 'Arial', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:14px;
  3538. letter-spacing:normal;
  3539. color:#AAAAAA;
  3540. vertical-align:none;
  3541. text-align:left;
  3542. text-transform:none;
  3543. background-color:transparent;
  3544. border-color:transparent;
  3545. }
  3546. #u34227_div {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:153px;
  3552. height:23px;
  3553. background:inherit;
  3554. background-color:rgba(255, 255, 255, 1);
  3555. border:none;
  3556. border-radius:0px;
  3557. -moz-box-shadow:none;
  3558. -webkit-box-shadow:none;
  3559. box-shadow:none;
  3560. font-size:14px;
  3561. color:#AAAAAA;
  3562. }
  3563. #u34227 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:362px;
  3567. top:143px;
  3568. width:153px;
  3569. height:23px;
  3570. display:flex;
  3571. font-size:14px;
  3572. color:#AAAAAA;
  3573. }
  3574. #u34227 .text {
  3575. position:absolute;
  3576. align-self:flex-start;
  3577. padding:2px 2px 2px 2px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u34227_div.disabled {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:153px;
  3587. height:23px;
  3588. background:inherit;
  3589. background-color:rgba(240, 240, 240, 1);
  3590. border:none;
  3591. border-radius:0px;
  3592. -moz-box-shadow:none;
  3593. -webkit-box-shadow:none;
  3594. box-shadow:none;
  3595. font-size:14px;
  3596. color:#AAAAAA;
  3597. }
  3598. #u34227.disabled {
  3599. }
  3600. .u34227_input_option {
  3601. font-size:14px;
  3602. }
  3603. #u34229_div {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:0px;
  3607. top:0px;
  3608. width:200px;
  3609. height:1188px;
  3610. background:inherit;
  3611. background-color:rgba(255, 255, 255, 1);
  3612. border:none;
  3613. border-radius:0px;
  3614. -moz-box-shadow:none;
  3615. -webkit-box-shadow:none;
  3616. box-shadow:none;
  3617. }
  3618. #u34229 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:120px;
  3622. top:50px;
  3623. width:200px;
  3624. height:1188px;
  3625. display:flex;
  3626. }
  3627. #u34229 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:2px 2px 2px 2px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u34229_text {
  3635. border-width:0px;
  3636. word-wrap:break-word;
  3637. text-transform:none;
  3638. visibility:hidden;
  3639. }
  3640. #u34230_div {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:0px;
  3644. top:0px;
  3645. width:200px;
  3646. height:60px;
  3647. background:inherit;
  3648. background-color:rgba(224, 231, 247, 1);
  3649. border:none;
  3650. border-radius:0px;
  3651. -moz-box-shadow:none;
  3652. -webkit-box-shadow:none;
  3653. box-shadow:none;
  3654. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3655. font-weight:500;
  3656. font-style:normal;
  3657. font-size:18px;
  3658. }
  3659. #u34230 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:120px;
  3663. top:50px;
  3664. width:200px;
  3665. height:60px;
  3666. display:flex;
  3667. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3668. font-weight:500;
  3669. font-style:normal;
  3670. font-size:18px;
  3671. }
  3672. #u34230 .text {
  3673. position:absolute;
  3674. align-self:center;
  3675. padding:0px 0px 0px 20px;
  3676. box-sizing:border-box;
  3677. width:100%;
  3678. }
  3679. #u34230_text {
  3680. border-width:0px;
  3681. word-wrap:break-word;
  3682. text-transform:none;
  3683. }
  3684. #u34231_div {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:65px;
  3690. height:22px;
  3691. background:inherit;
  3692. background-color:rgba(255, 255, 255, 0);
  3693. border:none;
  3694. border-radius:0px;
  3695. -moz-box-shadow:none;
  3696. -webkit-box-shadow:none;
  3697. box-shadow:none;
  3698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3699. font-weight:400;
  3700. font-style:normal;
  3701. font-size:16px;
  3702. }
  3703. #u34231 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:147px;
  3707. top:346px;
  3708. width:65px;
  3709. height:22px;
  3710. display:flex;
  3711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3712. font-weight:400;
  3713. font-style:normal;
  3714. font-size:16px;
  3715. }
  3716. #u34231 .text {
  3717. position:absolute;
  3718. align-self:flex-start;
  3719. padding:0px 0px 0px 0px;
  3720. box-sizing:border-box;
  3721. width:100%;
  3722. }
  3723. #u34231_text {
  3724. border-width:0px;
  3725. white-space:nowrap;
  3726. text-transform:none;
  3727. }
  3728. #u34232_div {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:0px;
  3732. top:0px;
  3733. width:65px;
  3734. height:22px;
  3735. background:inherit;
  3736. background-color:rgba(255, 255, 255, 0);
  3737. border:none;
  3738. border-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:16px;
  3746. }
  3747. #u34232 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:147px;
  3751. top:388px;
  3752. width:65px;
  3753. height:22px;
  3754. display:flex;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:16px;
  3759. }
  3760. #u34232 .text {
  3761. position:absolute;
  3762. align-self:flex-start;
  3763. padding:0px 0px 0px 0px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u34232_text {
  3768. border-width:0px;
  3769. white-space:nowrap;
  3770. text-transform:none;
  3771. }
  3772. #u34233_div {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:49px;
  3778. height:22px;
  3779. background:inherit;
  3780. background-color:rgba(255, 255, 255, 0);
  3781. border:none;
  3782. border-radius:0px;
  3783. -moz-box-shadow:none;
  3784. -webkit-box-shadow:none;
  3785. box-shadow:none;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:16px;
  3790. }
  3791. #u34233 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:147px;
  3795. top:499px;
  3796. width:49px;
  3797. height:22px;
  3798. display:flex;
  3799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3800. font-weight:400;
  3801. font-style:normal;
  3802. font-size:16px;
  3803. }
  3804. #u34233 .text {
  3805. position:absolute;
  3806. align-self:flex-start;
  3807. padding:0px 0px 0px 0px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u34233_text {
  3812. border-width:0px;
  3813. white-space:nowrap;
  3814. text-transform:none;
  3815. }
  3816. #u34234_div {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:65px;
  3822. height:22px;
  3823. background:inherit;
  3824. background-color:rgba(255, 255, 255, 0);
  3825. border:none;
  3826. border-radius:0px;
  3827. -moz-box-shadow:none;
  3828. -webkit-box-shadow:none;
  3829. box-shadow:none;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:16px;
  3834. }
  3835. #u34234 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:147px;
  3839. top:625px;
  3840. width:65px;
  3841. height:22px;
  3842. display:flex;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:16px;
  3847. }
  3848. #u34234 .text {
  3849. position:absolute;
  3850. align-self:flex-start;
  3851. padding:0px 0px 0px 0px;
  3852. box-sizing:border-box;
  3853. width:100%;
  3854. }
  3855. #u34234_text {
  3856. border-width:0px;
  3857. white-space:nowrap;
  3858. text-transform:none;
  3859. }
  3860. #u34235_div {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:49px;
  3866. height:17px;
  3867. background:inherit;
  3868. background-color:rgba(255, 255, 255, 0);
  3869. border:none;
  3870. border-radius:0px;
  3871. -moz-box-shadow:none;
  3872. -webkit-box-shadow:none;
  3873. box-shadow:none;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:12px;
  3878. color:#AAAAAA;
  3879. }
  3880. #u34235 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:147px;
  3884. top:270px;
  3885. width:49px;
  3886. height:17px;
  3887. display:flex;
  3888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3889. font-weight:400;
  3890. font-style:normal;
  3891. font-size:12px;
  3892. color:#AAAAAA;
  3893. }
  3894. #u34235 .text {
  3895. position:absolute;
  3896. align-self:flex-start;
  3897. padding:0px 0px 0px 0px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u34235_text {
  3902. border-width:0px;
  3903. white-space:nowrap;
  3904. text-transform:none;
  3905. }
  3906. #u34236_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:201px;
  3912. height:2px;
  3913. }
  3914. #u34236 {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:120px;
  3918. top:440px;
  3919. width:200px;
  3920. height:1px;
  3921. display:flex;
  3922. }
  3923. #u34236 .text {
  3924. position:absolute;
  3925. align-self:center;
  3926. padding:2px 2px 2px 2px;
  3927. box-sizing:border-box;
  3928. width:100%;
  3929. }
  3930. #u34236_text {
  3931. border-width:0px;
  3932. word-wrap:break-word;
  3933. text-transform:none;
  3934. visibility:hidden;
  3935. }
  3936. #u34237_div {
  3937. border-width:0px;
  3938. position:absolute;
  3939. left:0px;
  3940. top:0px;
  3941. width:65px;
  3942. height:22px;
  3943. background:inherit;
  3944. background-color:rgba(255, 255, 255, 0);
  3945. border:none;
  3946. border-radius:0px;
  3947. -moz-box-shadow:none;
  3948. -webkit-box-shadow:none;
  3949. box-shadow:none;
  3950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:16px;
  3954. }
  3955. #u34237 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:147px;
  3959. top:583px;
  3960. width:65px;
  3961. height:22px;
  3962. display:flex;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:16px;
  3967. }
  3968. #u34237 .text {
  3969. position:absolute;
  3970. align-self:flex-start;
  3971. padding:0px 0px 0px 0px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u34237_text {
  3976. border-width:0px;
  3977. white-space:nowrap;
  3978. text-transform:none;
  3979. }
  3980. #u34238_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:65px;
  3986. height:22px;
  3987. background:inherit;
  3988. background-color:rgba(255, 255, 255, 0);
  3989. border:none;
  3990. border-radius:0px;
  3991. -moz-box-shadow:none;
  3992. -webkit-box-shadow:none;
  3993. box-shadow:none;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:16px;
  3998. }
  3999. #u34238 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:147px;
  4003. top:667px;
  4004. width:65px;
  4005. height:22px;
  4006. display:flex;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:16px;
  4011. }
  4012. #u34238 .text {
  4013. position:absolute;
  4014. align-self:flex-start;
  4015. padding:0px 0px 0px 0px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u34238_text {
  4020. border-width:0px;
  4021. white-space:nowrap;
  4022. text-transform:none;
  4023. }
  4024. #u34239_div {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:49px;
  4030. height:17px;
  4031. background:inherit;
  4032. background-color:rgba(255, 255, 255, 0);
  4033. border:none;
  4034. border-radius:0px;
  4035. -moz-box-shadow:none;
  4036. -webkit-box-shadow:none;
  4037. box-shadow:none;
  4038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:12px;
  4042. color:#AAAAAA;
  4043. }
  4044. #u34239 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:147px;
  4048. top:462px;
  4049. width:49px;
  4050. height:17px;
  4051. display:flex;
  4052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4053. font-weight:400;
  4054. font-style:normal;
  4055. font-size:12px;
  4056. color:#AAAAAA;
  4057. }
  4058. #u34239 .text {
  4059. position:absolute;
  4060. align-self:flex-start;
  4061. padding:0px 0px 0px 0px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u34239_text {
  4066. border-width:0px;
  4067. white-space:nowrap;
  4068. text-transform:none;
  4069. }
  4070. #u34240_div {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:65px;
  4076. height:22px;
  4077. background:inherit;
  4078. background-color:rgba(255, 255, 255, 0);
  4079. border:none;
  4080. border-radius:0px;
  4081. -moz-box-shadow:none;
  4082. -webkit-box-shadow:none;
  4083. box-shadow:none;
  4084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4085. font-weight:400;
  4086. font-style:normal;
  4087. font-size:16px;
  4088. }
  4089. #u34240 {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:147px;
  4093. top:166px;
  4094. width:65px;
  4095. height:22px;
  4096. display:flex;
  4097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:16px;
  4101. }
  4102. #u34240 .text {
  4103. position:absolute;
  4104. align-self:flex-start;
  4105. padding:0px 0px 0px 0px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u34240_text {
  4110. border-width:0px;
  4111. white-space:nowrap;
  4112. text-transform:none;
  4113. }
  4114. #u34241_div {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:65px;
  4120. height:22px;
  4121. background:inherit;
  4122. background-color:rgba(255, 255, 255, 0);
  4123. border:none;
  4124. border-radius:0px;
  4125. -moz-box-shadow:none;
  4126. -webkit-box-shadow:none;
  4127. box-shadow:none;
  4128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:16px;
  4132. }
  4133. #u34241 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:147px;
  4137. top:304px;
  4138. width:65px;
  4139. height:22px;
  4140. display:flex;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:16px;
  4145. }
  4146. #u34241 .text {
  4147. position:absolute;
  4148. align-self:flex-start;
  4149. padding:0px 0px 0px 0px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u34241_text {
  4154. border-width:0px;
  4155. white-space:nowrap;
  4156. text-transform:none;
  4157. }
  4158. #u34242_div {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:49px;
  4164. height:17px;
  4165. background:inherit;
  4166. background-color:rgba(255, 255, 255, 0);
  4167. border:none;
  4168. border-radius:0px;
  4169. -moz-box-shadow:none;
  4170. -webkit-box-shadow:none;
  4171. box-shadow:none;
  4172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4173. font-weight:400;
  4174. font-style:normal;
  4175. font-size:12px;
  4176. color:#AAAAAA;
  4177. }
  4178. #u34242 {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:147px;
  4182. top:130px;
  4183. width:49px;
  4184. height:17px;
  4185. display:flex;
  4186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:12px;
  4190. color:#AAAAAA;
  4191. }
  4192. #u34242 .text {
  4193. position:absolute;
  4194. align-self:flex-start;
  4195. padding:0px 0px 0px 0px;
  4196. box-sizing:border-box;
  4197. width:100%;
  4198. }
  4199. #u34242_text {
  4200. border-width:0px;
  4201. white-space:nowrap;
  4202. text-transform:none;
  4203. }
  4204. #u34243_img {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:201px;
  4210. height:2px;
  4211. }
  4212. #u34243 {
  4213. border-width:0px;
  4214. position:absolute;
  4215. left:120px;
  4216. top:249px;
  4217. width:200px;
  4218. height:1px;
  4219. display:flex;
  4220. }
  4221. #u34243 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:2px 2px 2px 2px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u34243_text {
  4229. border-width:0px;
  4230. word-wrap:break-word;
  4231. text-transform:none;
  4232. visibility:hidden;
  4233. }
  4234. #u34244_div {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:0px;
  4238. top:0px;
  4239. width:65px;
  4240. height:22px;
  4241. background:inherit;
  4242. background-color:rgba(255, 255, 255, 0);
  4243. border:none;
  4244. border-radius:0px;
  4245. -moz-box-shadow:none;
  4246. -webkit-box-shadow:none;
  4247. box-shadow:none;
  4248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4249. font-weight:400;
  4250. font-style:normal;
  4251. font-size:16px;
  4252. }
  4253. #u34244 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:147px;
  4257. top:206px;
  4258. width:65px;
  4259. height:22px;
  4260. display:flex;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:16px;
  4265. }
  4266. #u34244 .text {
  4267. position:absolute;
  4268. align-self:flex-start;
  4269. padding:0px 0px 0px 0px;
  4270. box-sizing:border-box;
  4271. width:100%;
  4272. }
  4273. #u34244_text {
  4274. border-width:0px;
  4275. white-space:nowrap;
  4276. text-transform:none;
  4277. }
  4278. #u34245_div {
  4279. border-width:0px;
  4280. position:absolute;
  4281. left:0px;
  4282. top:0px;
  4283. width:65px;
  4284. height:22px;
  4285. background:inherit;
  4286. background-color:rgba(255, 255, 255, 0);
  4287. border:none;
  4288. border-radius:0px;
  4289. -moz-box-shadow:none;
  4290. -webkit-box-shadow:none;
  4291. box-shadow:none;
  4292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:16px;
  4296. }
  4297. #u34245 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:147px;
  4301. top:541px;
  4302. width:65px;
  4303. height:22px;
  4304. display:flex;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:16px;
  4309. }
  4310. #u34245 .text {
  4311. position:absolute;
  4312. align-self:flex-start;
  4313. padding:0px 0px 0px 0px;
  4314. box-sizing:border-box;
  4315. width:100%;
  4316. }
  4317. #u34245_text {
  4318. border-width:0px;
  4319. white-space:nowrap;
  4320. text-transform:none;
  4321. }
  4322. #u34246 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:0px;
  4328. height:0px;
  4329. }
  4330. #u34247 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:0px;
  4334. top:0px;
  4335. width:0px;
  4336. height:0px;
  4337. }
  4338. #u34248_div {
  4339. border-width:0px;
  4340. position:absolute;
  4341. left:0px;
  4342. top:0px;
  4343. width:380px;
  4344. height:140px;
  4345. background:inherit;
  4346. background-color:rgba(255, 255, 255, 1);
  4347. box-sizing:border-box;
  4348. border-width:1px;
  4349. border-style:solid;
  4350. border-color:rgba(204, 204, 204, 1);
  4351. border-radius:4px;
  4352. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4353. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4354. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4355. font-family:'Microsoft YaHei', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. }
  4359. #u34248 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:1166px;
  4363. top:328px;
  4364. width:380px;
  4365. height:140px;
  4366. display:flex;
  4367. font-family:'Microsoft YaHei', sans-serif;
  4368. font-weight:400;
  4369. font-style:normal;
  4370. }
  4371. #u34248 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u34248_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u34249_div {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:299px;
  4390. height:22px;
  4391. background:inherit;
  4392. background-color:rgba(255, 255, 255, 0);
  4393. border:none;
  4394. border-radius:0px;
  4395. -moz-box-shadow:none;
  4396. -webkit-box-shadow:none;
  4397. box-shadow:none;
  4398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4399. font-weight:400;
  4400. font-style:normal;
  4401. font-size:14px;
  4402. color:#666666;
  4403. line-height:22px;
  4404. }
  4405. #u34249 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:1226px;
  4409. top:383px;
  4410. width:299px;
  4411. height:22px;
  4412. display:flex;
  4413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4414. font-weight:400;
  4415. font-style:normal;
  4416. font-size:14px;
  4417. color:#666666;
  4418. line-height:22px;
  4419. }
  4420. #u34249 .text {
  4421. position:absolute;
  4422. align-self:flex-start;
  4423. padding:0px 0px 0px 0px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u34249_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. }
  4432. #u34250_div {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:127px;
  4438. height:21px;
  4439. background:inherit;
  4440. background-color:rgba(255, 255, 255, 0);
  4441. border:none;
  4442. border-radius:0px;
  4443. -moz-box-shadow:none;
  4444. -webkit-box-shadow:none;
  4445. box-shadow:none;
  4446. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4447. font-weight:650;
  4448. font-style:normal;
  4449. font-size:18px;
  4450. color:#000000;
  4451. line-height:22px;
  4452. }
  4453. #u34250 {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:1226px;
  4457. top:353px;
  4458. width:127px;
  4459. height:21px;
  4460. display:flex;
  4461. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4462. font-weight:650;
  4463. font-style:normal;
  4464. font-size:18px;
  4465. color:#000000;
  4466. line-height:22px;
  4467. }
  4468. #u34250 .text {
  4469. position:absolute;
  4470. align-self:flex-start;
  4471. padding:0px 0px 0px 0px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u34250_text {
  4476. border-width:0px;
  4477. white-space:nowrap;
  4478. text-transform:none;
  4479. }
  4480. #u34251_div {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:0px;
  4484. top:0px;
  4485. width:61px;
  4486. height:30px;
  4487. background:inherit;
  4488. background-color:rgba(24, 144, 255, 1);
  4489. border:none;
  4490. border-radius:4px;
  4491. -moz-box-shadow:none;
  4492. -webkit-box-shadow:none;
  4493. box-shadow:none;
  4494. font-family:'Microsoft YaHei', sans-serif;
  4495. font-weight:400;
  4496. font-style:normal;
  4497. font-size:14px;
  4498. color:#FFFFFF;
  4499. }
  4500. #u34251 {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:1468px;
  4504. top:423px;
  4505. width:61px;
  4506. height:30px;
  4507. display:flex;
  4508. font-family:'Microsoft YaHei', sans-serif;
  4509. font-weight:400;
  4510. font-style:normal;
  4511. font-size:14px;
  4512. color:#FFFFFF;
  4513. }
  4514. #u34251 .text {
  4515. position:absolute;
  4516. align-self:center;
  4517. padding:2px 16px 2px 16px;
  4518. box-sizing:border-box;
  4519. width:100%;
  4520. }
  4521. #u34251_text {
  4522. border-width:0px;
  4523. white-space:nowrap;
  4524. text-transform:none;
  4525. }
  4526. #u34252_div {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:66px;
  4532. height:30px;
  4533. background:inherit;
  4534. background-color:rgba(255, 255, 255, 1);
  4535. box-sizing:border-box;
  4536. border-width:1px;
  4537. border-style:solid;
  4538. border-color:rgba(217, 217, 217, 1);
  4539. border-radius:4px;
  4540. -moz-box-shadow:none;
  4541. -webkit-box-shadow:none;
  4542. box-shadow:none;
  4543. font-family:'Microsoft YaHei', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:14px;
  4547. color:rgba(0, 0, 0, 0.647058823529412);
  4548. line-height:21px;
  4549. }
  4550. #u34252 {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:1386px;
  4554. top:423px;
  4555. width:66px;
  4556. height:30px;
  4557. display:flex;
  4558. font-family:'Microsoft YaHei', sans-serif;
  4559. font-weight:400;
  4560. font-style:normal;
  4561. font-size:14px;
  4562. color:rgba(0, 0, 0, 0.647058823529412);
  4563. line-height:21px;
  4564. }
  4565. #u34252 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:2px 16px 2px 16px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u34252_text {
  4573. border-width:0px;
  4574. white-space:nowrap;
  4575. text-transform:none;
  4576. }
  4577. #u34253_img {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:20px;
  4583. height:20px;
  4584. }
  4585. #u34253 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:1195px;
  4589. top:357px;
  4590. width:20px;
  4591. height:20px;
  4592. display:flex;
  4593. }
  4594. #u34253 .text {
  4595. position:absolute;
  4596. align-self:center;
  4597. padding:2px 2px 2px 2px;
  4598. box-sizing:border-box;
  4599. width:100%;
  4600. }
  4601. #u34253_text {
  4602. border-width:0px;
  4603. word-wrap:break-word;
  4604. text-transform:none;
  4605. visibility:hidden;
  4606. }
  4607. #u34254 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:0px;
  4611. top:0px;
  4612. width:0px;
  4613. height:0px;
  4614. }
  4615. #u34255_div {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:0px;
  4619. top:0px;
  4620. width:380px;
  4621. height:140px;
  4622. background:inherit;
  4623. background-color:rgba(255, 255, 255, 1);
  4624. box-sizing:border-box;
  4625. border-width:1px;
  4626. border-style:solid;
  4627. border-color:rgba(204, 204, 204, 1);
  4628. border-radius:4px;
  4629. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4630. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4631. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  4632. font-family:'Microsoft YaHei', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. }
  4636. #u34255 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:1166px;
  4640. top:485px;
  4641. width:380px;
  4642. height:140px;
  4643. display:flex;
  4644. font-family:'Microsoft YaHei', sans-serif;
  4645. font-weight:400;
  4646. font-style:normal;
  4647. }
  4648. #u34255 .text {
  4649. position:absolute;
  4650. align-self:center;
  4651. padding:2px 2px 2px 2px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u34255_text {
  4656. border-width:0px;
  4657. word-wrap:break-word;
  4658. text-transform:none;
  4659. visibility:hidden;
  4660. }
  4661. #u34256_div {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:288px;
  4667. height:22px;
  4668. background:inherit;
  4669. background-color:rgba(255, 255, 255, 0);
  4670. border:none;
  4671. border-radius:0px;
  4672. -moz-box-shadow:none;
  4673. -webkit-box-shadow:none;
  4674. box-shadow:none;
  4675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4676. font-weight:400;
  4677. font-style:normal;
  4678. font-size:14px;
  4679. color:#666666;
  4680. line-height:22px;
  4681. }
  4682. #u34256 {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:1226px;
  4686. top:540px;
  4687. width:288px;
  4688. height:22px;
  4689. display:flex;
  4690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. font-size:14px;
  4694. color:#666666;
  4695. line-height:22px;
  4696. }
  4697. #u34256 .text {
  4698. position:absolute;
  4699. align-self:flex-start;
  4700. padding:0px 0px 0px 0px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u34256_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. }
  4709. #u34257_div {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:0px;
  4713. top:0px;
  4714. width:91px;
  4715. height:21px;
  4716. background:inherit;
  4717. background-color:rgba(255, 255, 255, 0);
  4718. border:none;
  4719. border-radius:0px;
  4720. -moz-box-shadow:none;
  4721. -webkit-box-shadow:none;
  4722. box-shadow:none;
  4723. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4724. font-weight:650;
  4725. font-style:normal;
  4726. font-size:18px;
  4727. color:#000000;
  4728. line-height:22px;
  4729. }
  4730. #u34257 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:1226px;
  4734. top:510px;
  4735. width:91px;
  4736. height:21px;
  4737. display:flex;
  4738. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4739. font-weight:650;
  4740. font-style:normal;
  4741. font-size:18px;
  4742. color:#000000;
  4743. line-height:22px;
  4744. }
  4745. #u34257 .text {
  4746. position:absolute;
  4747. align-self:flex-start;
  4748. padding:0px 0px 0px 0px;
  4749. box-sizing:border-box;
  4750. width:100%;
  4751. }
  4752. #u34257_text {
  4753. border-width:0px;
  4754. white-space:nowrap;
  4755. text-transform:none;
  4756. }
  4757. #u34258_div {
  4758. border-width:0px;
  4759. position:absolute;
  4760. left:0px;
  4761. top:0px;
  4762. width:61px;
  4763. height:30px;
  4764. background:inherit;
  4765. background-color:rgba(24, 144, 255, 1);
  4766. border:none;
  4767. border-radius:4px;
  4768. -moz-box-shadow:none;
  4769. -webkit-box-shadow:none;
  4770. box-shadow:none;
  4771. font-family:'Microsoft YaHei', sans-serif;
  4772. font-weight:400;
  4773. font-style:normal;
  4774. font-size:14px;
  4775. color:#FFFFFF;
  4776. }
  4777. #u34258 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:1465px;
  4781. top:580px;
  4782. width:61px;
  4783. height:30px;
  4784. display:flex;
  4785. font-family:'Microsoft YaHei', sans-serif;
  4786. font-weight:400;
  4787. font-style:normal;
  4788. font-size:14px;
  4789. color:#FFFFFF;
  4790. }
  4791. #u34258 .text {
  4792. position:absolute;
  4793. align-self:center;
  4794. padding:2px 16px 2px 16px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u34258_text {
  4799. border-width:0px;
  4800. white-space:nowrap;
  4801. text-transform:none;
  4802. }
  4803. #u34259_div {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:66px;
  4809. height:30px;
  4810. background:inherit;
  4811. background-color:rgba(255, 255, 255, 1);
  4812. box-sizing:border-box;
  4813. border-width:1px;
  4814. border-style:solid;
  4815. border-color:rgba(217, 217, 217, 1);
  4816. border-radius:4px;
  4817. -moz-box-shadow:none;
  4818. -webkit-box-shadow:none;
  4819. box-shadow:none;
  4820. font-family:'Microsoft YaHei', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:14px;
  4824. color:rgba(0, 0, 0, 0.647058823529412);
  4825. line-height:21px;
  4826. }
  4827. #u34259 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:1386px;
  4831. top:580px;
  4832. width:66px;
  4833. height:30px;
  4834. display:flex;
  4835. font-family:'Microsoft YaHei', sans-serif;
  4836. font-weight:400;
  4837. font-style:normal;
  4838. font-size:14px;
  4839. color:rgba(0, 0, 0, 0.647058823529412);
  4840. line-height:21px;
  4841. }
  4842. #u34259 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:2px 16px 2px 16px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u34259_text {
  4850. border-width:0px;
  4851. white-space:nowrap;
  4852. text-transform:none;
  4853. }
  4854. #u34260_img {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:0px;
  4858. top:0px;
  4859. width:20px;
  4860. height:20px;
  4861. }
  4862. #u34260 {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:1195px;
  4866. top:512px;
  4867. width:20px;
  4868. height:20px;
  4869. display:flex;
  4870. }
  4871. #u34260 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 2px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u34260_text {
  4879. border-width:0px;
  4880. word-wrap:break-word;
  4881. text-transform:none;
  4882. visibility:hidden;
  4883. }
  4884. #u34261_div {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:0px;
  4888. top:0px;
  4889. width:520px;
  4890. height:20px;
  4891. background:inherit;
  4892. background-color:rgba(255, 255, 255, 0);
  4893. border:none;
  4894. border-left:0px;
  4895. border-top:0px;
  4896. border-right:0px;
  4897. border-radius:0px;
  4898. border-bottom-right-radius:0px;
  4899. border-bottom-left-radius:0px;
  4900. -moz-box-shadow:none;
  4901. -webkit-box-shadow:none;
  4902. box-shadow:none;
  4903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4904. font-weight:400;
  4905. font-style:normal;
  4906. font-size:14px;
  4907. color:#7F7F7F;
  4908. }
  4909. #u34261 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:352px;
  4913. top:100px;
  4914. width:520px;
  4915. height:20px;
  4916. display:flex;
  4917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:14px;
  4921. color:#7F7F7F;
  4922. }
  4923. #u34261 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:0px 0px 0px 0px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u34261_text {
  4931. border-width:0px;
  4932. white-space:nowrap;
  4933. text-transform:none;
  4934. }
  4935. #u34263 {
  4936. border-width:0px;
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:0px;
  4941. height:0px;
  4942. }
  4943. #u34264_div {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:30px;
  4949. height:30px;
  4950. background:inherit;
  4951. background-color:rgba(255, 255, 255, 1);
  4952. box-sizing:border-box;
  4953. border-width:1px;
  4954. border-style:solid;
  4955. border-color:rgba(228, 228, 228, 1);
  4956. border-radius:4px;
  4957. -moz-box-shadow:none;
  4958. -webkit-box-shadow:none;
  4959. box-shadow:none;
  4960. font-family:'Microsoft YaHei', sans-serif;
  4961. font-weight:400;
  4962. font-style:normal;
  4963. font-size:14px;
  4964. }
  4965. #u34264 {
  4966. border-width:0px;
  4967. position:absolute;
  4968. left:996px;
  4969. top:1183px;
  4970. width:30px;
  4971. height:30px;
  4972. display:flex;
  4973. font-family:'Microsoft YaHei', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. font-size:14px;
  4977. }
  4978. #u34264 .text {
  4979. position:absolute;
  4980. align-self:center;
  4981. padding:2px 2px 2px 2px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u34264_text {
  4986. border-width:0px;
  4987. word-wrap:break-word;
  4988. text-transform:none;
  4989. }
  4990. #u34265_div {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:49px;
  4996. height:30px;
  4997. background:inherit;
  4998. background-color:rgba(255, 255, 255, 0);
  4999. box-sizing:border-box;
  5000. border-width:1px;
  5001. border-style:solid;
  5002. border-color:rgba(188, 188, 188, 1);
  5003. border-radius:4px;
  5004. -moz-box-shadow:none;
  5005. -webkit-box-shadow:none;
  5006. box-shadow:none;
  5007. font-family:'Microsoft YaHei', sans-serif;
  5008. font-weight:400;
  5009. font-style:normal;
  5010. font-size:14px;
  5011. color:#1E1E1E;
  5012. }
  5013. #u34265 {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:1512px;
  5017. top:1183px;
  5018. width:49px;
  5019. height:30px;
  5020. display:flex;
  5021. font-family:'Microsoft YaHei', sans-serif;
  5022. font-weight:400;
  5023. font-style:normal;
  5024. font-size:14px;
  5025. color:#1E1E1E;
  5026. }
  5027. #u34265 .text {
  5028. position:absolute;
  5029. align-self:center;
  5030. padding:5px 10px 5px 10px;
  5031. box-sizing:border-box;
  5032. width:100%;
  5033. }
  5034. #u34265_text {
  5035. border-width:0px;
  5036. white-space:nowrap;
  5037. text-transform:none;
  5038. }
  5039. #u34266 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:0px;
  5043. top:0px;
  5044. width:0px;
  5045. height:0px;
  5046. }
  5047. #u34267_div {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:33px;
  5053. height:24px;
  5054. background:inherit;
  5055. background-color:rgba(255, 255, 255, 1);
  5056. border:none;
  5057. border-radius:0px;
  5058. -moz-box-shadow:none;
  5059. -webkit-box-shadow:none;
  5060. box-shadow:none;
  5061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5062. font-weight:400;
  5063. font-style:normal;
  5064. font-size:14px;
  5065. color:#BCBCBC;
  5066. text-align:left;
  5067. }
  5068. #u34267 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:1280px;
  5072. top:1186px;
  5073. width:33px;
  5074. height:24px;
  5075. display:flex;
  5076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:14px;
  5080. color:#BCBCBC;
  5081. text-align:left;
  5082. }
  5083. #u34267 .text {
  5084. position:absolute;
  5085. align-self:center;
  5086. padding:2px 2px 2px 2px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u34267_text {
  5091. border-width:0px;
  5092. white-space:nowrap;
  5093. text-transform:none;
  5094. }
  5095. #u34268_div {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:40px;
  5101. height:30px;
  5102. background:inherit;
  5103. background-color:rgba(255, 255, 255, 1);
  5104. box-sizing:border-box;
  5105. border-width:1px;
  5106. border-style:solid;
  5107. border-color:rgba(228, 228, 228, 1);
  5108. border-radius:4px;
  5109. -moz-box-shadow:none;
  5110. -webkit-box-shadow:none;
  5111. box-shadow:none;
  5112. font-family:'Microsoft YaHei', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:14px;
  5116. }
  5117. #u34268 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:1315px;
  5121. top:1183px;
  5122. width:40px;
  5123. height:30px;
  5124. display:flex;
  5125. font-family:'Microsoft YaHei', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:14px;
  5129. }
  5130. #u34268 .text {
  5131. position:absolute;
  5132. align-self:center;
  5133. padding:2px 2px 2px 2px;
  5134. box-sizing:border-box;
  5135. width:100%;
  5136. }
  5137. #u34268_text {
  5138. border-width:0px;
  5139. word-wrap:break-word;
  5140. text-transform:none;
  5141. visibility:hidden;
  5142. }
  5143. #u34269_div {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:19px;
  5149. height:24px;
  5150. background:inherit;
  5151. background-color:rgba(255, 255, 255, 1);
  5152. border:none;
  5153. border-radius:0px;
  5154. -moz-box-shadow:none;
  5155. -webkit-box-shadow:none;
  5156. box-shadow:none;
  5157. font-family:'Microsoft YaHei', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:14px;
  5161. color:#BCBCBC;
  5162. text-align:left;
  5163. }
  5164. #u34269 {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:1357px;
  5168. top:1187px;
  5169. width:19px;
  5170. height:24px;
  5171. display:flex;
  5172. font-family:'Microsoft YaHei', sans-serif;
  5173. font-weight:400;
  5174. font-style:normal;
  5175. font-size:14px;
  5176. color:#BCBCBC;
  5177. text-align:left;
  5178. }
  5179. #u34269 .text {
  5180. position:absolute;
  5181. align-self:center;
  5182. padding:2px 2px 2px 2px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u34269_text {
  5187. border-width:0px;
  5188. white-space:nowrap;
  5189. text-transform:none;
  5190. }
  5191. #u34270_input {
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:34px;
  5196. height:25px;
  5197. padding:2px 2px 2px 2px;
  5198. font-family:'Microsoft YaHei', sans-serif;
  5199. font-weight:400;
  5200. font-style:normal;
  5201. font-size:13px;
  5202. letter-spacing:normal;
  5203. color:#000000;
  5204. vertical-align:none;
  5205. text-align:left;
  5206. text-transform:none;
  5207. background-color:transparent;
  5208. border-color:transparent;
  5209. }
  5210. #u34270_input.disabled {
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:34px;
  5215. height:25px;
  5216. padding:2px 2px 2px 2px;
  5217. font-family:'Microsoft YaHei', sans-serif;
  5218. font-weight:400;
  5219. font-style:normal;
  5220. font-size:13px;
  5221. letter-spacing:normal;
  5222. color:#000000;
  5223. vertical-align:none;
  5224. text-align:left;
  5225. text-transform:none;
  5226. background-color:transparent;
  5227. border-color:transparent;
  5228. }
  5229. #u34270_div {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:0px;
  5233. top:0px;
  5234. width:34px;
  5235. height:25px;
  5236. background:inherit;
  5237. background-color:rgba(255, 255, 255, 1);
  5238. border:none;
  5239. border-radius:0px;
  5240. -moz-box-shadow:none;
  5241. -webkit-box-shadow:none;
  5242. box-shadow:none;
  5243. font-family:'Microsoft YaHei', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. }
  5247. #u34270 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:1318px;
  5251. top:1185px;
  5252. width:34px;
  5253. height:25px;
  5254. display:flex;
  5255. font-family:'Microsoft YaHei', sans-serif;
  5256. font-weight:400;
  5257. font-style:normal;
  5258. }
  5259. #u34270 .text {
  5260. position:absolute;
  5261. align-self:center;
  5262. padding:2px 2px 2px 2px;
  5263. box-sizing:border-box;
  5264. width:100%;
  5265. }
  5266. #u34270_div.disabled {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:34px;
  5272. height:25px;
  5273. background:inherit;
  5274. background-color:rgba(240, 240, 240, 1);
  5275. border:none;
  5276. border-radius:0px;
  5277. -moz-box-shadow:none;
  5278. -webkit-box-shadow:none;
  5279. box-shadow:none;
  5280. font-family:'Microsoft YaHei', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. }
  5284. #u34270.disabled {
  5285. }
  5286. #u34271_div {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:30px;
  5292. height:30px;
  5293. background:inherit;
  5294. background-color:rgba(41, 143, 255, 1);
  5295. border:none;
  5296. border-radius:4px;
  5297. -moz-box-shadow:none;
  5298. -webkit-box-shadow:none;
  5299. box-shadow:none;
  5300. font-family:'Microsoft YaHei', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:14px;
  5304. color:#FFFFFF;
  5305. }
  5306. #u34271 {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:1030px;
  5310. top:1183px;
  5311. width:30px;
  5312. height:30px;
  5313. display:flex;
  5314. font-family:'Microsoft YaHei', sans-serif;
  5315. font-weight:400;
  5316. font-style:normal;
  5317. font-size:14px;
  5318. color:#FFFFFF;
  5319. }
  5320. #u34271 .text {
  5321. position:absolute;
  5322. align-self:center;
  5323. padding:2px 2px 2px 2px;
  5324. box-sizing:border-box;
  5325. width:100%;
  5326. }
  5327. #u34271_text {
  5328. border-width:0px;
  5329. word-wrap:break-word;
  5330. text-transform:none;
  5331. }
  5332. #u34272_div {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:30px;
  5338. height:30px;
  5339. background:inherit;
  5340. background-color:rgba(255, 255, 255, 1);
  5341. box-sizing:border-box;
  5342. border-width:1px;
  5343. border-style:solid;
  5344. border-color:rgba(228, 228, 228, 1);
  5345. border-radius:4px;
  5346. -moz-box-shadow:none;
  5347. -webkit-box-shadow:none;
  5348. box-shadow:none;
  5349. font-family:'Microsoft YaHei', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:14px;
  5353. }
  5354. #u34272 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:1064px;
  5358. top:1183px;
  5359. width:30px;
  5360. height:30px;
  5361. display:flex;
  5362. font-family:'Microsoft YaHei', sans-serif;
  5363. font-weight:400;
  5364. font-style:normal;
  5365. font-size:14px;
  5366. }
  5367. #u34272 .text {
  5368. position:absolute;
  5369. align-self:center;
  5370. padding:2px 2px 2px 2px;
  5371. box-sizing:border-box;
  5372. width:100%;
  5373. }
  5374. #u34272_text {
  5375. border-width:0px;
  5376. word-wrap:break-word;
  5377. text-transform:none;
  5378. }
  5379. #u34273_div {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:30px;
  5385. height:30px;
  5386. background:inherit;
  5387. background-color:rgba(255, 255, 255, 1);
  5388. box-sizing:border-box;
  5389. border-width:1px;
  5390. border-style:solid;
  5391. border-color:rgba(228, 228, 228, 1);
  5392. border-radius:4px;
  5393. -moz-box-shadow:none;
  5394. -webkit-box-shadow:none;
  5395. box-shadow:none;
  5396. font-family:'Microsoft YaHei', sans-serif;
  5397. font-weight:400;
  5398. font-style:normal;
  5399. font-size:14px;
  5400. }
  5401. #u34273 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:1098px;
  5405. top:1183px;
  5406. width:30px;
  5407. height:30px;
  5408. display:flex;
  5409. font-family:'Microsoft YaHei', sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:14px;
  5413. }
  5414. #u34273 .text {
  5415. position:absolute;
  5416. align-self:center;
  5417. padding:2px 2px 2px 2px;
  5418. box-sizing:border-box;
  5419. width:100%;
  5420. }
  5421. #u34273_text {
  5422. border-width:0px;
  5423. word-wrap:break-word;
  5424. text-transform:none;
  5425. }
  5426. #u34274_div {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:30px;
  5432. height:30px;
  5433. background:inherit;
  5434. background-color:rgba(255, 255, 255, 1);
  5435. border:none;
  5436. border-radius:4px;
  5437. -moz-box-shadow:none;
  5438. -webkit-box-shadow:none;
  5439. box-shadow:none;
  5440. font-family:'Microsoft YaHei', sans-serif;
  5441. font-weight:400;
  5442. font-style:normal;
  5443. font-size:14px;
  5444. }
  5445. #u34274 {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:1128px;
  5449. top:1183px;
  5450. width:30px;
  5451. height:30px;
  5452. display:flex;
  5453. font-family:'Microsoft YaHei', sans-serif;
  5454. font-weight:400;
  5455. font-style:normal;
  5456. font-size:14px;
  5457. }
  5458. #u34274 .text {
  5459. position:absolute;
  5460. align-self:center;
  5461. padding:2px 2px 2px 2px;
  5462. box-sizing:border-box;
  5463. width:100%;
  5464. }
  5465. #u34274_text {
  5466. border-width:0px;
  5467. word-wrap:break-word;
  5468. text-transform:none;
  5469. }
  5470. #u34275_div {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:30px;
  5476. height:30px;
  5477. background:inherit;
  5478. background-color:rgba(255, 255, 255, 1);
  5479. box-sizing:border-box;
  5480. border-width:1px;
  5481. border-style:solid;
  5482. border-color:rgba(228, 228, 228, 1);
  5483. border-radius:4px;
  5484. -moz-box-shadow:none;
  5485. -webkit-box-shadow:none;
  5486. box-shadow:none;
  5487. font-family:'Microsoft YaHei', sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. font-size:14px;
  5491. }
  5492. #u34275 {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:1162px;
  5496. top:1183px;
  5497. width:30px;
  5498. height:30px;
  5499. display:flex;
  5500. font-family:'Microsoft YaHei', sans-serif;
  5501. font-weight:400;
  5502. font-style:normal;
  5503. font-size:14px;
  5504. }
  5505. #u34275 .text {
  5506. position:absolute;
  5507. align-self:center;
  5508. padding:2px 2px 2px 2px;
  5509. box-sizing:border-box;
  5510. width:100%;
  5511. }
  5512. #u34275_text {
  5513. border-width:0px;
  5514. word-wrap:break-word;
  5515. text-transform:none;
  5516. }
  5517. #u34276_div {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:32px;
  5523. height:21px;
  5524. background:inherit;
  5525. background-color:rgba(255, 255, 255, 1);
  5526. border:none;
  5527. border-radius:15px;
  5528. -moz-box-shadow:none;
  5529. -webkit-box-shadow:none;
  5530. box-shadow:none;
  5531. font-family:'Microsoft YaHei', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:14px;
  5535. color:#1E1E1E;
  5536. }
  5537. #u34276 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:1236px;
  5541. top:1188px;
  5542. width:32px;
  5543. height:21px;
  5544. display:flex;
  5545. font-family:'Microsoft YaHei', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:14px;
  5549. color:#1E1E1E;
  5550. }
  5551. #u34276 .text {
  5552. position:absolute;
  5553. align-self:center;
  5554. padding:2px 2px 2px 2px;
  5555. box-sizing:border-box;
  5556. width:100%;
  5557. }
  5558. #u34276_text {
  5559. border-width:0px;
  5560. white-space:nowrap;
  5561. text-transform:none;
  5562. }
  5563. #u34277 {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:0px;
  5569. height:0px;
  5570. }
  5571. #u34278_div {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:31px;
  5577. height:30px;
  5578. background:inherit;
  5579. background-color:rgba(255, 255, 255, 1);
  5580. box-sizing:border-box;
  5581. border-width:1px;
  5582. border-style:solid;
  5583. border-color:rgba(228, 228, 228, 1);
  5584. border-radius:4px;
  5585. -moz-box-shadow:none;
  5586. -webkit-box-shadow:none;
  5587. box-shadow:none;
  5588. font-family:'Microsoft YaHei', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:12px;
  5592. }
  5593. #u34278 {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:961px;
  5597. top:1183px;
  5598. width:31px;
  5599. height:30px;
  5600. display:flex;
  5601. font-family:'Microsoft YaHei', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:12px;
  5605. }
  5606. #u34278 .text {
  5607. position:absolute;
  5608. align-self:center;
  5609. padding:2px 2px 2px 2px;
  5610. box-sizing:border-box;
  5611. width:100%;
  5612. }
  5613. #u34278_text {
  5614. border-width:0px;
  5615. word-wrap:break-word;
  5616. text-transform:none;
  5617. visibility:hidden;
  5618. }
  5619. #u34279_img {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:8px;
  5625. height:14px;
  5626. }
  5627. #u34279 {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:973px;
  5631. top:1191px;
  5632. width:8px;
  5633. height:14px;
  5634. display:flex;
  5635. font-family:'Microsoft YaHei', sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. font-size:12px;
  5639. }
  5640. #u34279 .text {
  5641. position:absolute;
  5642. align-self:center;
  5643. padding:2px 2px 2px 2px;
  5644. box-sizing:border-box;
  5645. width:100%;
  5646. }
  5647. #u34279_text {
  5648. border-width:0px;
  5649. word-wrap:break-word;
  5650. text-transform:none;
  5651. visibility:hidden;
  5652. }
  5653. #u34280 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:0px;
  5659. height:0px;
  5660. }
  5661. #u34281_div {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:0px;
  5665. top:0px;
  5666. width:31px;
  5667. height:30px;
  5668. background:inherit;
  5669. background-color:rgba(255, 255, 255, 1);
  5670. box-sizing:border-box;
  5671. border-width:1px;
  5672. border-style:solid;
  5673. border-color:rgba(228, 228, 228, 1);
  5674. border-radius:4px;
  5675. -moz-box-shadow:none;
  5676. -webkit-box-shadow:none;
  5677. box-shadow:none;
  5678. font-family:'Microsoft YaHei', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:12px;
  5682. }
  5683. #u34281 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:1195px;
  5687. top:1183px;
  5688. width:31px;
  5689. height:30px;
  5690. display:flex;
  5691. font-family:'Microsoft YaHei', sans-serif;
  5692. font-weight:400;
  5693. font-style:normal;
  5694. font-size:12px;
  5695. }
  5696. #u34281 .text {
  5697. position:absolute;
  5698. align-self:center;
  5699. padding:2px 2px 2px 2px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u34281_text {
  5704. border-width:0px;
  5705. word-wrap:break-word;
  5706. text-transform:none;
  5707. visibility:hidden;
  5708. }
  5709. #u34282_img {
  5710. border-width:0px;
  5711. position:absolute;
  5712. left:0px;
  5713. top:0px;
  5714. width:8px;
  5715. height:14px;
  5716. }
  5717. #u34282 {
  5718. border-width:0px;
  5719. position:absolute;
  5720. left:1208px;
  5721. top:1191px;
  5722. width:8px;
  5723. height:14px;
  5724. display:flex;
  5725. font-family:'Microsoft YaHei', sans-serif;
  5726. font-weight:400;
  5727. font-style:normal;
  5728. font-size:12px;
  5729. }
  5730. #u34282 .text {
  5731. position:absolute;
  5732. align-self:center;
  5733. padding:2px 2px 2px 2px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u34282_text {
  5738. border-width:0px;
  5739. word-wrap:break-word;
  5740. text-transform:none;
  5741. visibility:hidden;
  5742. }
  5743. #u34283 {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:0px;
  5749. height:0px;
  5750. }
  5751. #u34284_div {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:0px;
  5755. top:0px;
  5756. width:33px;
  5757. height:24px;
  5758. background:inherit;
  5759. background-color:rgba(255, 255, 255, 1);
  5760. border:none;
  5761. border-radius:0px;
  5762. -moz-box-shadow:none;
  5763. -webkit-box-shadow:none;
  5764. box-shadow:none;
  5765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:14px;
  5769. color:#BCBCBC;
  5770. text-align:left;
  5771. }
  5772. #u34284 {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:1396px;
  5776. top:1186px;
  5777. width:33px;
  5778. height:24px;
  5779. display:flex;
  5780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:14px;
  5784. color:#BCBCBC;
  5785. text-align:left;
  5786. }
  5787. #u34284 .text {
  5788. position:absolute;
  5789. align-self:center;
  5790. padding:2px 2px 2px 2px;
  5791. box-sizing:border-box;
  5792. width:100%;
  5793. }
  5794. #u34284_text {
  5795. border-width:0px;
  5796. white-space:nowrap;
  5797. text-transform:none;
  5798. }
  5799. #u34285_div {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:0px;
  5803. top:0px;
  5804. width:40px;
  5805. height:30px;
  5806. background:inherit;
  5807. background-color:rgba(255, 255, 255, 1);
  5808. box-sizing:border-box;
  5809. border-width:1px;
  5810. border-style:solid;
  5811. border-color:rgba(228, 228, 228, 1);
  5812. border-radius:4px;
  5813. -moz-box-shadow:none;
  5814. -webkit-box-shadow:none;
  5815. box-shadow:none;
  5816. font-family:'Microsoft YaHei', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. font-size:14px;
  5820. }
  5821. #u34285 {
  5822. border-width:0px;
  5823. position:absolute;
  5824. left:1431px;
  5825. top:1183px;
  5826. width:40px;
  5827. height:30px;
  5828. display:flex;
  5829. font-family:'Microsoft YaHei', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:14px;
  5833. }
  5834. #u34285 .text {
  5835. position:absolute;
  5836. align-self:center;
  5837. padding:2px 2px 2px 2px;
  5838. box-sizing:border-box;
  5839. width:100%;
  5840. }
  5841. #u34285_text {
  5842. border-width:0px;
  5843. word-wrap:break-word;
  5844. text-transform:none;
  5845. visibility:hidden;
  5846. }
  5847. #u34286_div {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:19px;
  5853. height:24px;
  5854. background:inherit;
  5855. background-color:rgba(255, 255, 255, 1);
  5856. border:none;
  5857. border-radius:0px;
  5858. -moz-box-shadow:none;
  5859. -webkit-box-shadow:none;
  5860. box-shadow:none;
  5861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5862. font-weight:400;
  5863. font-style:normal;
  5864. font-size:14px;
  5865. color:#BCBCBC;
  5866. text-align:left;
  5867. }
  5868. #u34286 {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:1473px;
  5872. top:1187px;
  5873. width:19px;
  5874. height:24px;
  5875. display:flex;
  5876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:14px;
  5880. color:#BCBCBC;
  5881. text-align:left;
  5882. }
  5883. #u34286 .text {
  5884. position:absolute;
  5885. align-self:center;
  5886. padding:2px 2px 2px 2px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u34286_text {
  5891. border-width:0px;
  5892. white-space:nowrap;
  5893. text-transform:none;
  5894. }
  5895. #u34287_input {
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:34px;
  5900. height:25px;
  5901. padding:2px 2px 2px 2px;
  5902. font-family:'Microsoft YaHei', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:13px;
  5906. letter-spacing:normal;
  5907. color:#000000;
  5908. vertical-align:none;
  5909. text-align:left;
  5910. text-transform:none;
  5911. background-color:transparent;
  5912. border-color:transparent;
  5913. }
  5914. #u34287_input.disabled {
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:34px;
  5919. height:25px;
  5920. padding:2px 2px 2px 2px;
  5921. font-family:'Microsoft YaHei', sans-serif;
  5922. font-weight:400;
  5923. font-style:normal;
  5924. font-size:13px;
  5925. letter-spacing:normal;
  5926. color:#000000;
  5927. vertical-align:none;
  5928. text-align:left;
  5929. text-transform:none;
  5930. background-color:transparent;
  5931. border-color:transparent;
  5932. }
  5933. #u34287_div {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:0px;
  5937. top:0px;
  5938. width:34px;
  5939. height:25px;
  5940. background:inherit;
  5941. background-color:rgba(255, 255, 255, 1);
  5942. border:none;
  5943. border-radius:0px;
  5944. -moz-box-shadow:none;
  5945. -webkit-box-shadow:none;
  5946. box-shadow:none;
  5947. font-family:'Microsoft YaHei', sans-serif;
  5948. font-weight:400;
  5949. font-style:normal;
  5950. }
  5951. #u34287 {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:1434px;
  5955. top:1185px;
  5956. width:34px;
  5957. height:25px;
  5958. display:flex;
  5959. font-family:'Microsoft YaHei', sans-serif;
  5960. font-weight:400;
  5961. font-style:normal;
  5962. }
  5963. #u34287 .text {
  5964. position:absolute;
  5965. align-self:center;
  5966. padding:2px 2px 2px 2px;
  5967. box-sizing:border-box;
  5968. width:100%;
  5969. }
  5970. #u34287_div.disabled {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:0px;
  5974. top:0px;
  5975. width:34px;
  5976. height:25px;
  5977. background:inherit;
  5978. background-color:rgba(240, 240, 240, 1);
  5979. border:none;
  5980. border-radius:0px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. font-family:'Microsoft YaHei', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. }
  5988. #u34287.disabled {
  5989. }