styles.css 101 KB

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