styles.css 102 KB

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