styles.css 102 KB

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