styles.css 103 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908
  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. #u70447_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. #u70447 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u70447 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u70447_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u70448_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. #u70448 {
  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. #u70448 .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. #u70448_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u70449_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. #u70449 {
  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. #u70449 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u70449_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u70450 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u70451_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u70451 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u70451 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u70451_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u70452_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. #u70452 {
  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. #u70452 .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. #u70452_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u70453_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. #u70453 {
  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. #u70453 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u70453_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u70454 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u70455_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. #u70455_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. #u70455_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. #u70455 {
  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. #u70455 .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. #u70455_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. #u70455.disabled {
  356. }
  357. .u70455_input_option {
  358. font-size:14px;
  359. }
  360. #u70456_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u70456 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u70456 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u70456_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u70457_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. #u70457 {
  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. #u70457 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u70457_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u70458_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. #u70458 {
  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. #u70458 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u70458_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u70459 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u70460_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. #u70460 {
  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. #u70460 .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. #u70460_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u70461_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u70461 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u70461 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u70461_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u70462 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u70463_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. #u70463 {
  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. #u70463 .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. #u70463_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u70464_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u70464 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u70464 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u70464_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u70465 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u70466_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. #u70466 {
  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. #u70466 .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. #u70466_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u70467_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u70467 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u70467 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u70467_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u70468 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u70469_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. #u70469 {
  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. #u70469 .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. #u70469_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u70470_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u70470 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u70470 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u70470_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u70471 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u70472_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. #u70472 {
  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. #u70472 .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. #u70472_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u70473_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u70473 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u70473 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u70473_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u70474 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u70475_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. #u70475 {
  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. #u70475 .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. #u70475_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u70476_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u70476 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u70476 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u70476_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u70477 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u70478_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. #u70478 {
  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. #u70478 .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. #u70478_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u70479_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u70479 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u70479 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u70479_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u70480 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u70481_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. #u70481 {
  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. #u70481 .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. #u70481_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u70482_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u70482 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u70482 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u70482_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u70483 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u70484_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. #u70484 {
  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. #u70484 .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. #u70484_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u70485_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u70485 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u70485 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u70485_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u70486 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u70487_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. #u70487 {
  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. #u70487 .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. #u70487_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u70488_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u70488 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u70488 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u70488_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u70489_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. #u70489 {
  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. #u70489 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u70489_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u70490_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u70490 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u70490 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u70490_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u70491_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. #u70491 {
  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. #u70491 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u70491_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u70492_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u70492 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u70492 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u70492_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u70493 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u70494_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. #u70494 {
  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. #u70494 .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. #u70494_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u70495_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u70495 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u70495 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u70495_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u70496 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u70497_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. #u70497 {
  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. #u70497 .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. #u70497_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u70498_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u70498 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u70498 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u70498_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u70499_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(242, 242, 242, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. }
  1656. #u70499 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:332px;
  1660. top:50px;
  1661. width:1260px;
  1662. height:1180px;
  1663. display:flex;
  1664. }
  1665. #u70499 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u70499_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u70500_img {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:0px;
  1682. top:0px;
  1683. width:1261px;
  1684. height:2px;
  1685. }
  1686. #u70500 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:332px;
  1690. top:99px;
  1691. width:1260px;
  1692. height:1px;
  1693. display:flex;
  1694. }
  1695. #u70500 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u70500_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u70501 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:360px;
  1712. top:215px;
  1713. width:1204px;
  1714. height:458px;
  1715. }
  1716. #u70502_img {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:141px;
  1722. height:35px;
  1723. }
  1724. #u70502 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:141px;
  1730. height:35px;
  1731. display:flex;
  1732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1733. font-weight:400;
  1734. font-style:normal;
  1735. font-size:14px;
  1736. color:#FFFFFF;
  1737. }
  1738. #u70502 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u70502_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. }
  1750. #u70503_img {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:0px;
  1755. width:353px;
  1756. height:35px;
  1757. }
  1758. #u70503 {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:141px;
  1762. top:0px;
  1763. width:353px;
  1764. height:35px;
  1765. display:flex;
  1766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:14px;
  1770. color:#FFFFFF;
  1771. }
  1772. #u70503 .text {
  1773. position:absolute;
  1774. align-self:center;
  1775. padding:2px 2px 2px 2px;
  1776. box-sizing:border-box;
  1777. width:100%;
  1778. }
  1779. #u70503_text {
  1780. border-width:0px;
  1781. word-wrap:break-word;
  1782. text-transform:none;
  1783. }
  1784. #u70504_img {
  1785. border-width:0px;
  1786. position:absolute;
  1787. left:0px;
  1788. top:0px;
  1789. width:141px;
  1790. height:35px;
  1791. }
  1792. #u70504 {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:494px;
  1796. top:0px;
  1797. width:141px;
  1798. height:35px;
  1799. display:flex;
  1800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1801. font-weight:400;
  1802. font-style:normal;
  1803. font-size:14px;
  1804. color:#FFFFFF;
  1805. }
  1806. #u70504 .text {
  1807. position:absolute;
  1808. align-self:center;
  1809. padding:2px 2px 2px 2px;
  1810. box-sizing:border-box;
  1811. width:100%;
  1812. }
  1813. #u70504_text {
  1814. border-width:0px;
  1815. word-wrap:break-word;
  1816. text-transform:none;
  1817. }
  1818. #u70505_img {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:372px;
  1824. height:35px;
  1825. }
  1826. #u70505 {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:635px;
  1830. top:0px;
  1831. width:372px;
  1832. height:35px;
  1833. display:flex;
  1834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1835. font-weight:400;
  1836. font-style:normal;
  1837. font-size:14px;
  1838. color:#FFFFFF;
  1839. }
  1840. #u70505 .text {
  1841. position:absolute;
  1842. align-self:center;
  1843. padding:2px 2px 2px 2px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u70505_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u70506_img {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:197px;
  1858. height:35px;
  1859. }
  1860. #u70506 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:1007px;
  1864. top:0px;
  1865. width:197px;
  1866. height:35px;
  1867. display:flex;
  1868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1869. font-weight:400;
  1870. font-style:normal;
  1871. font-size:14px;
  1872. color:#FFFFFF;
  1873. }
  1874. #u70506 .text {
  1875. position:absolute;
  1876. align-self:center;
  1877. padding:2px 2px 2px 2px;
  1878. box-sizing:border-box;
  1879. width:100%;
  1880. }
  1881. #u70506_text {
  1882. border-width:0px;
  1883. word-wrap:break-word;
  1884. text-transform:none;
  1885. }
  1886. #u70507_img {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:141px;
  1892. height:35px;
  1893. }
  1894. #u70507 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:35px;
  1899. width:141px;
  1900. height:35px;
  1901. display:flex;
  1902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1903. font-weight:400;
  1904. font-style:normal;
  1905. font-size:14px;
  1906. }
  1907. #u70507 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 2px 2px 2px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u70507_text {
  1915. border-width:0px;
  1916. word-wrap:break-word;
  1917. text-transform:none;
  1918. }
  1919. #u70508_img {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:0px;
  1923. top:0px;
  1924. width:353px;
  1925. height:35px;
  1926. }
  1927. #u70508 {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:141px;
  1931. top:35px;
  1932. width:353px;
  1933. height:35px;
  1934. display:flex;
  1935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1936. font-weight:400;
  1937. font-style:normal;
  1938. font-size:14px;
  1939. }
  1940. #u70508 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 2px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u70508_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. }
  1952. #u70509_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:141px;
  1958. height:35px;
  1959. }
  1960. #u70509 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:494px;
  1964. top:35px;
  1965. width:141px;
  1966. height:35px;
  1967. display:flex;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:14px;
  1972. }
  1973. #u70509 .text {
  1974. position:absolute;
  1975. align-self:center;
  1976. padding:2px 2px 2px 2px;
  1977. box-sizing:border-box;
  1978. width:100%;
  1979. }
  1980. #u70509_text {
  1981. border-width:0px;
  1982. word-wrap:break-word;
  1983. text-transform:none;
  1984. }
  1985. #u70510_img {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:372px;
  1991. height:35px;
  1992. }
  1993. #u70510 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:635px;
  1997. top:35px;
  1998. width:372px;
  1999. height:35px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:14px;
  2005. }
  2006. #u70510 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 2px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u70510_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. }
  2018. #u70511_img {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:197px;
  2024. height:35px;
  2025. }
  2026. #u70511 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:1007px;
  2030. top:35px;
  2031. width:197px;
  2032. height:35px;
  2033. display:flex;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:14px;
  2038. color:#298FFF;
  2039. }
  2040. #u70511 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:2px 2px 2px 2px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u70511_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. }
  2052. #u70512_img {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:141px;
  2058. height:35px;
  2059. }
  2060. #u70512 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:70px;
  2065. width:141px;
  2066. height:35px;
  2067. display:flex;
  2068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:14px;
  2072. }
  2073. #u70512 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:2px 2px 2px 2px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u70512_text {
  2081. border-width:0px;
  2082. word-wrap:break-word;
  2083. text-transform:none;
  2084. }
  2085. #u70513_img {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:353px;
  2091. height:35px;
  2092. }
  2093. #u70513 {
  2094. border-width:0px;
  2095. position:absolute;
  2096. left:141px;
  2097. top:70px;
  2098. width:353px;
  2099. height:35px;
  2100. display:flex;
  2101. font-size:14px;
  2102. }
  2103. #u70513 .text {
  2104. position:absolute;
  2105. align-self:center;
  2106. padding:2px 2px 2px 2px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u70513_text {
  2111. border-width:0px;
  2112. word-wrap:break-word;
  2113. text-transform:none;
  2114. }
  2115. #u70514_img {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:141px;
  2121. height:35px;
  2122. }
  2123. #u70514 {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:494px;
  2127. top:70px;
  2128. width:141px;
  2129. height:35px;
  2130. display:flex;
  2131. font-size:14px;
  2132. }
  2133. #u70514 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:2px 2px 2px 2px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u70514_text {
  2141. border-width:0px;
  2142. word-wrap:break-word;
  2143. text-transform:none;
  2144. }
  2145. #u70515_img {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:372px;
  2151. height:35px;
  2152. }
  2153. #u70515 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:635px;
  2157. top:70px;
  2158. width:372px;
  2159. height:35px;
  2160. display:flex;
  2161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2162. font-weight:400;
  2163. font-style:normal;
  2164. font-size:14px;
  2165. }
  2166. #u70515 .text {
  2167. position:absolute;
  2168. align-self:center;
  2169. padding:2px 2px 2px 2px;
  2170. box-sizing:border-box;
  2171. width:100%;
  2172. }
  2173. #u70515_text {
  2174. border-width:0px;
  2175. word-wrap:break-word;
  2176. text-transform:none;
  2177. }
  2178. #u70516_img {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:197px;
  2184. height:35px;
  2185. }
  2186. #u70516 {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:1007px;
  2190. top:70px;
  2191. width:197px;
  2192. height:35px;
  2193. display:flex;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:14px;
  2198. color:#298FFF;
  2199. }
  2200. #u70516 .text {
  2201. position:absolute;
  2202. align-self:center;
  2203. padding:2px 2px 2px 2px;
  2204. box-sizing:border-box;
  2205. width:100%;
  2206. }
  2207. #u70516_text {
  2208. border-width:0px;
  2209. word-wrap:break-word;
  2210. text-transform:none;
  2211. }
  2212. #u70517_img {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:141px;
  2218. height:35px;
  2219. }
  2220. #u70517 {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:105px;
  2225. width:141px;
  2226. height:35px;
  2227. display:flex;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:14px;
  2232. }
  2233. #u70517 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:2px 2px 2px 2px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u70517_text {
  2241. border-width:0px;
  2242. word-wrap:break-word;
  2243. text-transform:none;
  2244. visibility:hidden;
  2245. }
  2246. #u70518_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:353px;
  2252. height:35px;
  2253. }
  2254. #u70518 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:141px;
  2258. top:105px;
  2259. width:353px;
  2260. height:35px;
  2261. display:flex;
  2262. font-size:14px;
  2263. }
  2264. #u70518 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 2px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u70518_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u70519_img {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:141px;
  2283. height:35px;
  2284. }
  2285. #u70519 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:494px;
  2289. top:105px;
  2290. width:141px;
  2291. height:35px;
  2292. display:flex;
  2293. font-size:14px;
  2294. }
  2295. #u70519 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u70519_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u70520_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:372px;
  2314. height:35px;
  2315. }
  2316. #u70520 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:635px;
  2320. top:105px;
  2321. width:372px;
  2322. height:35px;
  2323. display:flex;
  2324. font-size:14px;
  2325. }
  2326. #u70520 .text {
  2327. position:absolute;
  2328. align-self:center;
  2329. padding:2px 2px 2px 2px;
  2330. box-sizing:border-box;
  2331. width:100%;
  2332. }
  2333. #u70520_text {
  2334. border-width:0px;
  2335. word-wrap:break-word;
  2336. text-transform:none;
  2337. visibility:hidden;
  2338. }
  2339. #u70521_img {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:0px;
  2343. top:0px;
  2344. width:197px;
  2345. height:35px;
  2346. }
  2347. #u70521 {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:1007px;
  2351. top:105px;
  2352. width:197px;
  2353. height:35px;
  2354. display:flex;
  2355. font-size:14px;
  2356. }
  2357. #u70521 .text {
  2358. position:absolute;
  2359. align-self:center;
  2360. padding:2px 2px 2px 2px;
  2361. box-sizing:border-box;
  2362. width:100%;
  2363. }
  2364. #u70521_text {
  2365. border-width:0px;
  2366. word-wrap:break-word;
  2367. text-transform:none;
  2368. visibility:hidden;
  2369. }
  2370. #u70522_img {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:0px;
  2374. top:0px;
  2375. width:141px;
  2376. height:38px;
  2377. }
  2378. #u70522 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:140px;
  2383. width:141px;
  2384. height:38px;
  2385. display:flex;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:14px;
  2390. }
  2391. #u70522 .text {
  2392. position:absolute;
  2393. align-self:center;
  2394. padding:2px 2px 2px 2px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u70522_text {
  2399. border-width:0px;
  2400. word-wrap:break-word;
  2401. text-transform:none;
  2402. visibility:hidden;
  2403. }
  2404. #u70523_img {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:353px;
  2410. height:38px;
  2411. }
  2412. #u70523 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:141px;
  2416. top:140px;
  2417. width:353px;
  2418. height:38px;
  2419. display:flex;
  2420. font-size:14px;
  2421. }
  2422. #u70523 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u70523_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. visibility:hidden;
  2434. }
  2435. #u70524_img {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:141px;
  2441. height:38px;
  2442. }
  2443. #u70524 {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:494px;
  2447. top:140px;
  2448. width:141px;
  2449. height:38px;
  2450. display:flex;
  2451. font-size:14px;
  2452. }
  2453. #u70524 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:2px 2px 2px 2px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u70524_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. visibility:hidden;
  2465. }
  2466. #u70525_img {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:372px;
  2472. height:38px;
  2473. }
  2474. #u70525 {
  2475. border-width:0px;
  2476. position:absolute;
  2477. left:635px;
  2478. top:140px;
  2479. width:372px;
  2480. height:38px;
  2481. display:flex;
  2482. font-size:14px;
  2483. }
  2484. #u70525 .text {
  2485. position:absolute;
  2486. align-self:center;
  2487. padding:2px 2px 2px 2px;
  2488. box-sizing:border-box;
  2489. width:100%;
  2490. }
  2491. #u70525_text {
  2492. border-width:0px;
  2493. word-wrap:break-word;
  2494. text-transform:none;
  2495. visibility:hidden;
  2496. }
  2497. #u70526_img {
  2498. border-width:0px;
  2499. position:absolute;
  2500. left:0px;
  2501. top:0px;
  2502. width:197px;
  2503. height:38px;
  2504. }
  2505. #u70526 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:1007px;
  2509. top:140px;
  2510. width:197px;
  2511. height:38px;
  2512. display:flex;
  2513. font-size:14px;
  2514. }
  2515. #u70526 .text {
  2516. position:absolute;
  2517. align-self:center;
  2518. padding:2px 2px 2px 2px;
  2519. box-sizing:border-box;
  2520. width:100%;
  2521. }
  2522. #u70526_text {
  2523. border-width:0px;
  2524. word-wrap:break-word;
  2525. text-transform:none;
  2526. visibility:hidden;
  2527. }
  2528. #u70527_img {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:0px;
  2532. top:0px;
  2533. width:141px;
  2534. height:35px;
  2535. }
  2536. #u70527 {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:178px;
  2541. width:141px;
  2542. height:35px;
  2543. display:flex;
  2544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2545. font-weight:400;
  2546. font-style:normal;
  2547. font-size:14px;
  2548. }
  2549. #u70527 .text {
  2550. position:absolute;
  2551. align-self:center;
  2552. padding:2px 2px 2px 2px;
  2553. box-sizing:border-box;
  2554. width:100%;
  2555. }
  2556. #u70527_text {
  2557. border-width:0px;
  2558. word-wrap:break-word;
  2559. text-transform:none;
  2560. visibility:hidden;
  2561. }
  2562. #u70528_img {
  2563. border-width:0px;
  2564. position:absolute;
  2565. left:0px;
  2566. top:0px;
  2567. width:353px;
  2568. height:35px;
  2569. }
  2570. #u70528 {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:141px;
  2574. top:178px;
  2575. width:353px;
  2576. height:35px;
  2577. display:flex;
  2578. font-size:14px;
  2579. }
  2580. #u70528 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 2px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u70528_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. visibility:hidden;
  2592. }
  2593. #u70529_img {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:141px;
  2599. height:35px;
  2600. }
  2601. #u70529 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:494px;
  2605. top:178px;
  2606. width:141px;
  2607. height:35px;
  2608. display:flex;
  2609. font-size:14px;
  2610. }
  2611. #u70529 .text {
  2612. position:absolute;
  2613. align-self:center;
  2614. padding:2px 2px 2px 2px;
  2615. box-sizing:border-box;
  2616. width:100%;
  2617. }
  2618. #u70529_text {
  2619. border-width:0px;
  2620. word-wrap:break-word;
  2621. text-transform:none;
  2622. visibility:hidden;
  2623. }
  2624. #u70530_img {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:372px;
  2630. height:35px;
  2631. }
  2632. #u70530 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:635px;
  2636. top:178px;
  2637. width:372px;
  2638. height:35px;
  2639. display:flex;
  2640. font-size:14px;
  2641. }
  2642. #u70530 .text {
  2643. position:absolute;
  2644. align-self:center;
  2645. padding:2px 2px 2px 2px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u70530_text {
  2650. border-width:0px;
  2651. word-wrap:break-word;
  2652. text-transform:none;
  2653. visibility:hidden;
  2654. }
  2655. #u70531_img {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:197px;
  2661. height:35px;
  2662. }
  2663. #u70531 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:1007px;
  2667. top:178px;
  2668. width:197px;
  2669. height:35px;
  2670. display:flex;
  2671. font-size:14px;
  2672. }
  2673. #u70531 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:2px 2px 2px 2px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u70531_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u70532_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:141px;
  2692. height:35px;
  2693. }
  2694. #u70532 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:213px;
  2699. width:141px;
  2700. height:35px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:14px;
  2706. }
  2707. #u70532 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 2px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u70532_text {
  2715. border-width:0px;
  2716. word-wrap:break-word;
  2717. text-transform:none;
  2718. visibility:hidden;
  2719. }
  2720. #u70533_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:353px;
  2726. height:35px;
  2727. }
  2728. #u70533 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:141px;
  2732. top:213px;
  2733. width:353px;
  2734. height:35px;
  2735. display:flex;
  2736. font-size:14px;
  2737. }
  2738. #u70533 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 2px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u70533_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u70534_img {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:141px;
  2757. height:35px;
  2758. }
  2759. #u70534 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:494px;
  2763. top:213px;
  2764. width:141px;
  2765. height:35px;
  2766. display:flex;
  2767. font-size:14px;
  2768. }
  2769. #u70534 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 2px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u70534_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u70535_img {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:372px;
  2788. height:35px;
  2789. }
  2790. #u70535 {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:635px;
  2794. top:213px;
  2795. width:372px;
  2796. height:35px;
  2797. display:flex;
  2798. font-size:14px;
  2799. }
  2800. #u70535 .text {
  2801. position:absolute;
  2802. align-self:center;
  2803. padding:2px 2px 2px 2px;
  2804. box-sizing:border-box;
  2805. width:100%;
  2806. }
  2807. #u70535_text {
  2808. border-width:0px;
  2809. word-wrap:break-word;
  2810. text-transform:none;
  2811. visibility:hidden;
  2812. }
  2813. #u70536_img {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:0px;
  2818. width:197px;
  2819. height:35px;
  2820. }
  2821. #u70536 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:1007px;
  2825. top:213px;
  2826. width:197px;
  2827. height:35px;
  2828. display:flex;
  2829. font-size:14px;
  2830. }
  2831. #u70536 .text {
  2832. position:absolute;
  2833. align-self:center;
  2834. padding:2px 2px 2px 2px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u70536_text {
  2839. border-width:0px;
  2840. word-wrap:break-word;
  2841. text-transform:none;
  2842. visibility:hidden;
  2843. }
  2844. #u70537_img {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:0px;
  2848. top:0px;
  2849. width:141px;
  2850. height:35px;
  2851. }
  2852. #u70537 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:0px;
  2856. top:248px;
  2857. width:141px;
  2858. height:35px;
  2859. display:flex;
  2860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:14px;
  2864. }
  2865. #u70537 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 2px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u70537_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u70538_img {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:353px;
  2884. height:35px;
  2885. }
  2886. #u70538 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:141px;
  2890. top:248px;
  2891. width:353px;
  2892. height:35px;
  2893. display:flex;
  2894. font-size:14px;
  2895. }
  2896. #u70538 .text {
  2897. position:absolute;
  2898. align-self:center;
  2899. padding:2px 2px 2px 2px;
  2900. box-sizing:border-box;
  2901. width:100%;
  2902. }
  2903. #u70538_text {
  2904. border-width:0px;
  2905. word-wrap:break-word;
  2906. text-transform:none;
  2907. visibility:hidden;
  2908. }
  2909. #u70539_img {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:141px;
  2915. height:35px;
  2916. }
  2917. #u70539 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:494px;
  2921. top:248px;
  2922. width:141px;
  2923. height:35px;
  2924. display:flex;
  2925. font-size:14px;
  2926. }
  2927. #u70539 .text {
  2928. position:absolute;
  2929. align-self:center;
  2930. padding:2px 2px 2px 2px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u70539_text {
  2935. border-width:0px;
  2936. word-wrap:break-word;
  2937. text-transform:none;
  2938. visibility:hidden;
  2939. }
  2940. #u70540_img {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:0px;
  2945. width:372px;
  2946. height:35px;
  2947. }
  2948. #u70540 {
  2949. border-width:0px;
  2950. position:absolute;
  2951. left:635px;
  2952. top:248px;
  2953. width:372px;
  2954. height:35px;
  2955. display:flex;
  2956. font-size:14px;
  2957. }
  2958. #u70540 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u70540_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u70541_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:197px;
  2977. height:35px;
  2978. }
  2979. #u70541 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:1007px;
  2983. top:248px;
  2984. width:197px;
  2985. height:35px;
  2986. display:flex;
  2987. font-size:14px;
  2988. }
  2989. #u70541 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:2px 2px 2px 2px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u70541_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. visibility:hidden;
  3001. }
  3002. #u70542_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:141px;
  3008. height:35px;
  3009. }
  3010. #u70542 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:283px;
  3015. width:141px;
  3016. height:35px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:14px;
  3022. }
  3023. #u70542 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 2px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u70542_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u70543_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:353px;
  3042. height:35px;
  3043. }
  3044. #u70543 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:141px;
  3048. top:283px;
  3049. width:353px;
  3050. height:35px;
  3051. display:flex;
  3052. font-size:14px;
  3053. }
  3054. #u70543 .text {
  3055. position:absolute;
  3056. align-self:center;
  3057. padding:2px 2px 2px 2px;
  3058. box-sizing:border-box;
  3059. width:100%;
  3060. }
  3061. #u70543_text {
  3062. border-width:0px;
  3063. word-wrap:break-word;
  3064. text-transform:none;
  3065. visibility:hidden;
  3066. }
  3067. #u70544_img {
  3068. border-width:0px;
  3069. position:absolute;
  3070. left:0px;
  3071. top:0px;
  3072. width:141px;
  3073. height:35px;
  3074. }
  3075. #u70544 {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:494px;
  3079. top:283px;
  3080. width:141px;
  3081. height:35px;
  3082. display:flex;
  3083. font-size:14px;
  3084. }
  3085. #u70544 .text {
  3086. position:absolute;
  3087. align-self:center;
  3088. padding:2px 2px 2px 2px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u70544_text {
  3093. border-width:0px;
  3094. word-wrap:break-word;
  3095. text-transform:none;
  3096. visibility:hidden;
  3097. }
  3098. #u70545_img {
  3099. border-width:0px;
  3100. position:absolute;
  3101. left:0px;
  3102. top:0px;
  3103. width:372px;
  3104. height:35px;
  3105. }
  3106. #u70545 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:635px;
  3110. top:283px;
  3111. width:372px;
  3112. height:35px;
  3113. display:flex;
  3114. font-size:14px;
  3115. }
  3116. #u70545 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:2px 2px 2px 2px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u70545_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. visibility:hidden;
  3128. }
  3129. #u70546_img {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:197px;
  3135. height:35px;
  3136. }
  3137. #u70546 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:1007px;
  3141. top:283px;
  3142. width:197px;
  3143. height:35px;
  3144. display:flex;
  3145. font-size:14px;
  3146. }
  3147. #u70546 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 2px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u70546_text {
  3155. border-width:0px;
  3156. word-wrap:break-word;
  3157. text-transform:none;
  3158. visibility:hidden;
  3159. }
  3160. #u70547_img {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:141px;
  3166. height:35px;
  3167. }
  3168. #u70547 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:0px;
  3172. top:318px;
  3173. width:141px;
  3174. height:35px;
  3175. display:flex;
  3176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. font-size:14px;
  3180. }
  3181. #u70547 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u70547_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u70548_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:353px;
  3200. height:35px;
  3201. }
  3202. #u70548 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:141px;
  3206. top:318px;
  3207. width:353px;
  3208. height:35px;
  3209. display:flex;
  3210. font-size:14px;
  3211. }
  3212. #u70548 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 2px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u70548_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. visibility:hidden;
  3224. }
  3225. #u70549_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:141px;
  3231. height:35px;
  3232. }
  3233. #u70549 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:494px;
  3237. top:318px;
  3238. width:141px;
  3239. height:35px;
  3240. display:flex;
  3241. font-size:14px;
  3242. }
  3243. #u70549 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 2px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u70549_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. visibility:hidden;
  3255. }
  3256. #u70550_img {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:372px;
  3262. height:35px;
  3263. }
  3264. #u70550 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:635px;
  3268. top:318px;
  3269. width:372px;
  3270. height:35px;
  3271. display:flex;
  3272. font-size:14px;
  3273. }
  3274. #u70550 .text {
  3275. position:absolute;
  3276. align-self:center;
  3277. padding:2px 2px 2px 2px;
  3278. box-sizing:border-box;
  3279. width:100%;
  3280. }
  3281. #u70550_text {
  3282. border-width:0px;
  3283. word-wrap:break-word;
  3284. text-transform:none;
  3285. visibility:hidden;
  3286. }
  3287. #u70551_img {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:197px;
  3293. height:35px;
  3294. }
  3295. #u70551 {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:1007px;
  3299. top:318px;
  3300. width:197px;
  3301. height:35px;
  3302. display:flex;
  3303. font-size:14px;
  3304. }
  3305. #u70551 .text {
  3306. position:absolute;
  3307. align-self:center;
  3308. padding:2px 2px 2px 2px;
  3309. box-sizing:border-box;
  3310. width:100%;
  3311. }
  3312. #u70551_text {
  3313. border-width:0px;
  3314. word-wrap:break-word;
  3315. text-transform:none;
  3316. visibility:hidden;
  3317. }
  3318. #u70552_img {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:141px;
  3324. height:35px;
  3325. }
  3326. #u70552 {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:353px;
  3331. width:141px;
  3332. height:35px;
  3333. display:flex;
  3334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:14px;
  3338. }
  3339. #u70552 .text {
  3340. position:absolute;
  3341. align-self:center;
  3342. padding:2px 2px 2px 2px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u70552_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. visibility:hidden;
  3351. }
  3352. #u70553_img {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:353px;
  3358. height:35px;
  3359. }
  3360. #u70553 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:141px;
  3364. top:353px;
  3365. width:353px;
  3366. height:35px;
  3367. display:flex;
  3368. font-size:14px;
  3369. }
  3370. #u70553 .text {
  3371. position:absolute;
  3372. align-self:center;
  3373. padding:2px 2px 2px 2px;
  3374. box-sizing:border-box;
  3375. width:100%;
  3376. }
  3377. #u70553_text {
  3378. border-width:0px;
  3379. word-wrap:break-word;
  3380. text-transform:none;
  3381. visibility:hidden;
  3382. }
  3383. #u70554_img {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:0px;
  3387. top:0px;
  3388. width:141px;
  3389. height:35px;
  3390. }
  3391. #u70554 {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:494px;
  3395. top:353px;
  3396. width:141px;
  3397. height:35px;
  3398. display:flex;
  3399. font-size:14px;
  3400. }
  3401. #u70554 .text {
  3402. position:absolute;
  3403. align-self:center;
  3404. padding:2px 2px 2px 2px;
  3405. box-sizing:border-box;
  3406. width:100%;
  3407. }
  3408. #u70554_text {
  3409. border-width:0px;
  3410. word-wrap:break-word;
  3411. text-transform:none;
  3412. visibility:hidden;
  3413. }
  3414. #u70555_img {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:0px;
  3418. top:0px;
  3419. width:372px;
  3420. height:35px;
  3421. }
  3422. #u70555 {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:635px;
  3426. top:353px;
  3427. width:372px;
  3428. height:35px;
  3429. display:flex;
  3430. font-size:14px;
  3431. }
  3432. #u70555 .text {
  3433. position:absolute;
  3434. align-self:center;
  3435. padding:2px 2px 2px 2px;
  3436. box-sizing:border-box;
  3437. width:100%;
  3438. }
  3439. #u70555_text {
  3440. border-width:0px;
  3441. word-wrap:break-word;
  3442. text-transform:none;
  3443. visibility:hidden;
  3444. }
  3445. #u70556_img {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:0px;
  3450. width:197px;
  3451. height:35px;
  3452. }
  3453. #u70556 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:1007px;
  3457. top:353px;
  3458. width:197px;
  3459. height:35px;
  3460. display:flex;
  3461. font-size:14px;
  3462. }
  3463. #u70556 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 2px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u70556_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. visibility:hidden;
  3475. }
  3476. #u70557_img {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:141px;
  3482. height:35px;
  3483. }
  3484. #u70557 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:388px;
  3489. width:141px;
  3490. height:35px;
  3491. display:flex;
  3492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3493. font-weight:400;
  3494. font-style:normal;
  3495. font-size:14px;
  3496. }
  3497. #u70557 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 2px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u70557_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. visibility:hidden;
  3509. }
  3510. #u70558_img {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:353px;
  3516. height:35px;
  3517. }
  3518. #u70558 {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:141px;
  3522. top:388px;
  3523. width:353px;
  3524. height:35px;
  3525. display:flex;
  3526. font-size:14px;
  3527. }
  3528. #u70558 .text {
  3529. position:absolute;
  3530. align-self:center;
  3531. padding:2px 2px 2px 2px;
  3532. box-sizing:border-box;
  3533. width:100%;
  3534. }
  3535. #u70558_text {
  3536. border-width:0px;
  3537. word-wrap:break-word;
  3538. text-transform:none;
  3539. visibility:hidden;
  3540. }
  3541. #u70559_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:141px;
  3547. height:35px;
  3548. }
  3549. #u70559 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:494px;
  3553. top:388px;
  3554. width:141px;
  3555. height:35px;
  3556. display:flex;
  3557. font-size:14px;
  3558. }
  3559. #u70559 .text {
  3560. position:absolute;
  3561. align-self:center;
  3562. padding:2px 2px 2px 2px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u70559_text {
  3567. border-width:0px;
  3568. word-wrap:break-word;
  3569. text-transform:none;
  3570. visibility:hidden;
  3571. }
  3572. #u70560_img {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:372px;
  3578. height:35px;
  3579. }
  3580. #u70560 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:635px;
  3584. top:388px;
  3585. width:372px;
  3586. height:35px;
  3587. display:flex;
  3588. font-size:14px;
  3589. }
  3590. #u70560 .text {
  3591. position:absolute;
  3592. align-self:center;
  3593. padding:2px 2px 2px 2px;
  3594. box-sizing:border-box;
  3595. width:100%;
  3596. }
  3597. #u70560_text {
  3598. border-width:0px;
  3599. word-wrap:break-word;
  3600. text-transform:none;
  3601. visibility:hidden;
  3602. }
  3603. #u70561_img {
  3604. border-width:0px;
  3605. position:absolute;
  3606. left:0px;
  3607. top:0px;
  3608. width:197px;
  3609. height:35px;
  3610. }
  3611. #u70561 {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:1007px;
  3615. top:388px;
  3616. width:197px;
  3617. height:35px;
  3618. display:flex;
  3619. font-size:14px;
  3620. }
  3621. #u70561 .text {
  3622. position:absolute;
  3623. align-self:center;
  3624. padding:2px 2px 2px 2px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u70561_text {
  3629. border-width:0px;
  3630. word-wrap:break-word;
  3631. text-transform:none;
  3632. visibility:hidden;
  3633. }
  3634. #u70562_img {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:141px;
  3640. height:35px;
  3641. }
  3642. #u70562 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:423px;
  3647. width:141px;
  3648. height:35px;
  3649. display:flex;
  3650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3651. font-weight:400;
  3652. font-style:normal;
  3653. font-size:14px;
  3654. }
  3655. #u70562 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 2px 2px 2px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u70562_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u70563_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:353px;
  3674. height:35px;
  3675. }
  3676. #u70563 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:141px;
  3680. top:423px;
  3681. width:353px;
  3682. height:35px;
  3683. display:flex;
  3684. font-size:14px;
  3685. }
  3686. #u70563 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u70563_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u70564_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:141px;
  3705. height:35px;
  3706. }
  3707. #u70564 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:494px;
  3711. top:423px;
  3712. width:141px;
  3713. height:35px;
  3714. display:flex;
  3715. font-size:14px;
  3716. }
  3717. #u70564 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:2px 2px 2px 2px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u70564_text {
  3725. border-width:0px;
  3726. word-wrap:break-word;
  3727. text-transform:none;
  3728. visibility:hidden;
  3729. }
  3730. #u70565_img {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:372px;
  3736. height:35px;
  3737. }
  3738. #u70565 {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:635px;
  3742. top:423px;
  3743. width:372px;
  3744. height:35px;
  3745. display:flex;
  3746. font-size:14px;
  3747. }
  3748. #u70565 .text {
  3749. position:absolute;
  3750. align-self:center;
  3751. padding:2px 2px 2px 2px;
  3752. box-sizing:border-box;
  3753. width:100%;
  3754. }
  3755. #u70565_text {
  3756. border-width:0px;
  3757. word-wrap:break-word;
  3758. text-transform:none;
  3759. visibility:hidden;
  3760. }
  3761. #u70566_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:0px;
  3766. width:197px;
  3767. height:35px;
  3768. }
  3769. #u70566 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:1007px;
  3773. top:423px;
  3774. width:197px;
  3775. height:35px;
  3776. display:flex;
  3777. font-size:14px;
  3778. }
  3779. #u70566 .text {
  3780. position:absolute;
  3781. align-self:center;
  3782. padding:2px 2px 2px 2px;
  3783. box-sizing:border-box;
  3784. width:100%;
  3785. }
  3786. #u70566_text {
  3787. border-width:0px;
  3788. word-wrap:break-word;
  3789. text-transform:none;
  3790. visibility:hidden;
  3791. }
  3792. #u70567_div {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:0px;
  3796. top:0px;
  3797. width:85px;
  3798. height:50px;
  3799. background:inherit;
  3800. background-color:rgba(255, 255, 255, 0);
  3801. border:none;
  3802. border-left:0px;
  3803. border-top:0px;
  3804. border-right:0px;
  3805. border-radius:0px;
  3806. border-bottom-right-radius:0px;
  3807. border-bottom-left-radius:0px;
  3808. -moz-box-shadow:none;
  3809. -webkit-box-shadow:none;
  3810. box-shadow:none;
  3811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. font-size:14px;
  3815. line-height:40px;
  3816. }
  3817. #u70567 {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:360px;
  3821. top:50px;
  3822. width:85px;
  3823. height:50px;
  3824. display:flex;
  3825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3826. font-weight:400;
  3827. font-style:normal;
  3828. font-size:14px;
  3829. line-height:40px;
  3830. }
  3831. #u70567 .text {
  3832. position:absolute;
  3833. align-self:center;
  3834. padding:0px 0px 0px 0px;
  3835. box-sizing:border-box;
  3836. width:100%;
  3837. }
  3838. #u70567_text {
  3839. border-width:0px;
  3840. white-space:nowrap;
  3841. text-transform:none;
  3842. }
  3843. #u70568_div {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:85px;
  3849. height:50px;
  3850. background:inherit;
  3851. background-color:rgba(255, 255, 255, 0);
  3852. box-sizing:border-box;
  3853. border-width:2px;
  3854. border-style:solid;
  3855. border-color:rgba(41, 143, 255, 1);
  3856. border-left:0px;
  3857. border-top:0px;
  3858. border-right:0px;
  3859. border-radius:0px;
  3860. border-bottom-right-radius:0px;
  3861. border-bottom-left-radius:0px;
  3862. -moz-box-shadow:none;
  3863. -webkit-box-shadow:none;
  3864. box-shadow:none;
  3865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3866. font-weight:400;
  3867. font-style:normal;
  3868. font-size:14px;
  3869. color:#298FFF;
  3870. line-height:40px;
  3871. }
  3872. #u70568 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:485px;
  3876. top:50px;
  3877. width:85px;
  3878. height:50px;
  3879. display:flex;
  3880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:14px;
  3884. color:#298FFF;
  3885. line-height:40px;
  3886. }
  3887. #u70568 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:0px 0px 0px 0px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u70568_text {
  3895. border-width:0px;
  3896. white-space:nowrap;
  3897. text-transform:none;
  3898. }
  3899. #u70569_div {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:113px;
  3905. height:50px;
  3906. background:inherit;
  3907. background-color:rgba(255, 255, 255, 0);
  3908. border:none;
  3909. border-left:0px;
  3910. border-top:0px;
  3911. border-right:0px;
  3912. border-radius:0px;
  3913. border-bottom-right-radius:0px;
  3914. border-bottom-left-radius:0px;
  3915. -moz-box-shadow:none;
  3916. -webkit-box-shadow:none;
  3917. box-shadow:none;
  3918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:14px;
  3922. color:#000000;
  3923. line-height:40px;
  3924. }
  3925. #u70569 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:610px;
  3929. top:50px;
  3930. width:113px;
  3931. height:50px;
  3932. display:flex;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:14px;
  3937. color:#000000;
  3938. line-height:40px;
  3939. }
  3940. #u70569 .text {
  3941. position:absolute;
  3942. align-self:center;
  3943. padding:0px 0px 0px 0px;
  3944. box-sizing:border-box;
  3945. width:100%;
  3946. }
  3947. #u70569_text {
  3948. border-width:0px;
  3949. white-space:nowrap;
  3950. text-transform:none;
  3951. }
  3952. #u70570_div {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:60px;
  3958. height:30px;
  3959. background:inherit;
  3960. background-color:rgba(24, 144, 255, 1);
  3961. border:none;
  3962. border-radius:4px;
  3963. -moz-box-shadow:none;
  3964. -webkit-box-shadow:none;
  3965. box-shadow:none;
  3966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3967. font-weight:400;
  3968. font-style:normal;
  3969. font-size:14px;
  3970. color:#FFFFFF;
  3971. }
  3972. #u70570 {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:360px;
  3976. top:170px;
  3977. width:60px;
  3978. height:30px;
  3979. display:flex;
  3980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3981. font-weight:400;
  3982. font-style:normal;
  3983. font-size:14px;
  3984. color:#FFFFFF;
  3985. }
  3986. #u70570 .text {
  3987. position:absolute;
  3988. align-self:center;
  3989. padding:2px 2px 2px 2px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u70570_text {
  3994. border-width:0px;
  3995. word-wrap:break-word;
  3996. text-transform:none;
  3997. }
  3998. #u70571 {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:0px;
  4004. height:0px;
  4005. }
  4006. #u70572_div {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:600px;
  4012. height:369px;
  4013. background:inherit;
  4014. background-color:rgba(255, 255, 255, 1);
  4015. box-sizing:border-box;
  4016. border-width:1px;
  4017. border-style:solid;
  4018. border-color:rgba(215, 215, 215, 1);
  4019. border-radius:0px;
  4020. -moz-box-shadow:none;
  4021. -webkit-box-shadow:none;
  4022. box-shadow:none;
  4023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4024. font-weight:400;
  4025. font-style:normal;
  4026. font-size:14px;
  4027. color:#AAAAAA;
  4028. text-align:center;
  4029. line-height:30px;
  4030. }
  4031. #u70572 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:667px;
  4035. top:610px;
  4036. width:600px;
  4037. height:369px;
  4038. display:flex;
  4039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:14px;
  4043. color:#AAAAAA;
  4044. text-align:center;
  4045. line-height:30px;
  4046. }
  4047. #u70572 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:5px 10px 5px 10px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u70572_text {
  4055. border-width:0px;
  4056. word-wrap:break-word;
  4057. text-transform:none;
  4058. visibility:hidden;
  4059. }
  4060. #u70573_div {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:119px;
  4066. height:35px;
  4067. background:inherit;
  4068. background-color:rgba(255, 255, 255, 0);
  4069. border:none;
  4070. border-top:0px;
  4071. border-right:0px;
  4072. border-bottom:0px;
  4073. border-radius:0px;
  4074. border-top-left-radius:0px;
  4075. border-bottom-left-radius:0px;
  4076. -moz-box-shadow:none;
  4077. -webkit-box-shadow:none;
  4078. box-shadow:none;
  4079. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4080. font-weight:500;
  4081. font-style:normal;
  4082. font-size:18px;
  4083. }
  4084. #u70573 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:687px;
  4088. top:628px;
  4089. width:119px;
  4090. height:35px;
  4091. display:flex;
  4092. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4093. font-weight:500;
  4094. font-style:normal;
  4095. font-size:18px;
  4096. }
  4097. #u70573 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:5px 10px 5px 0px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u70573_text {
  4105. border-width:0px;
  4106. white-space:nowrap;
  4107. text-transform:none;
  4108. }
  4109. #u70574_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:109px;
  4115. height:40px;
  4116. background:inherit;
  4117. background-color:rgba(255, 255, 255, 0);
  4118. border:none;
  4119. border-top:0px;
  4120. border-right:0px;
  4121. border-bottom:0px;
  4122. border-radius:0px;
  4123. border-top-left-radius:0px;
  4124. border-bottom-left-radius:0px;
  4125. -moz-box-shadow:none;
  4126. -webkit-box-shadow:none;
  4127. box-shadow:none;
  4128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:14px;
  4132. color:#7F7F7F;
  4133. text-align:right;
  4134. }
  4135. #u70574 {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:699px;
  4139. top:736px;
  4140. width:109px;
  4141. height:40px;
  4142. display:flex;
  4143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4144. font-weight:400;
  4145. font-style:normal;
  4146. font-size:14px;
  4147. color:#7F7F7F;
  4148. text-align:right;
  4149. }
  4150. #u70574 .text {
  4151. position:absolute;
  4152. align-self:center;
  4153. padding:5px 10px 5px 0px;
  4154. box-sizing:border-box;
  4155. width:100%;
  4156. }
  4157. #u70574_text {
  4158. border-width:0px;
  4159. white-space:nowrap;
  4160. text-transform:none;
  4161. }
  4162. #u70575 {
  4163. border-width:0px;
  4164. position:absolute;
  4165. left:0px;
  4166. top:0px;
  4167. width:0px;
  4168. height:0px;
  4169. }
  4170. #u70576_div {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:600px;
  4176. height:60px;
  4177. background:inherit;
  4178. background-color:rgba(255, 255, 255, 1);
  4179. box-sizing:border-box;
  4180. border-width:1px;
  4181. border-style:solid;
  4182. border-color:rgba(215, 215, 215, 1);
  4183. border-radius:0px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:14px;
  4191. color:#AAAAAA;
  4192. text-align:center;
  4193. line-height:30px;
  4194. }
  4195. #u70576 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:667px;
  4199. top:919px;
  4200. width:600px;
  4201. height:60px;
  4202. display:flex;
  4203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4204. font-weight:400;
  4205. font-style:normal;
  4206. font-size:14px;
  4207. color:#AAAAAA;
  4208. text-align:center;
  4209. line-height:30px;
  4210. }
  4211. #u70576 .text {
  4212. position:absolute;
  4213. align-self:center;
  4214. padding:5px 10px 5px 10px;
  4215. box-sizing:border-box;
  4216. width:100%;
  4217. }
  4218. #u70576_text {
  4219. border-width:0px;
  4220. word-wrap:break-word;
  4221. text-transform:none;
  4222. visibility:hidden;
  4223. }
  4224. #u70577_div {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:80px;
  4230. height:30px;
  4231. background:inherit;
  4232. background-color:rgba(24, 144, 255, 1);
  4233. border:none;
  4234. border-radius:4px;
  4235. -moz-box-shadow:none;
  4236. -webkit-box-shadow:none;
  4237. box-shadow:none;
  4238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4239. font-weight:400;
  4240. font-style:normal;
  4241. font-size:14px;
  4242. color:#FFFFFF;
  4243. }
  4244. #u70577 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:1132px;
  4248. top:934px;
  4249. width:80px;
  4250. height:30px;
  4251. display:flex;
  4252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:14px;
  4256. color:#FFFFFF;
  4257. }
  4258. #u70577 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:2px 2px 2px 2px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u70577_text {
  4266. border-width:0px;
  4267. word-wrap:break-word;
  4268. text-transform:none;
  4269. }
  4270. #u70578_div {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:80px;
  4276. height:30px;
  4277. background:inherit;
  4278. background-color:rgba(255, 255, 255, 1);
  4279. box-sizing:border-box;
  4280. border-width:1px;
  4281. border-style:solid;
  4282. border-color:rgba(170, 170, 170, 1);
  4283. border-radius:4px;
  4284. -moz-box-shadow:none;
  4285. -webkit-box-shadow:none;
  4286. box-shadow:none;
  4287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:14px;
  4291. }
  4292. #u70578 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:1032px;
  4296. top:934px;
  4297. width:80px;
  4298. height:30px;
  4299. display:flex;
  4300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4301. font-weight:400;
  4302. font-style:normal;
  4303. font-size:14px;
  4304. }
  4305. #u70578 .text {
  4306. position:absolute;
  4307. align-self:center;
  4308. padding:2px 2px 2px 2px;
  4309. box-sizing:border-box;
  4310. width:100%;
  4311. }
  4312. #u70578_text {
  4313. border-width:0px;
  4314. word-wrap:break-word;
  4315. text-transform:none;
  4316. }
  4317. #u70579 {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:0px;
  4321. top:0px;
  4322. width:0px;
  4323. height:0px;
  4324. }
  4325. #u70580_div {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:400px;
  4331. height:40px;
  4332. background:inherit;
  4333. background-color:rgba(255, 255, 255, 1);
  4334. box-sizing:border-box;
  4335. border-width:1px;
  4336. border-style:solid;
  4337. border-color:rgba(201, 201, 201, 1);
  4338. border-radius:4px;
  4339. -moz-box-shadow:none;
  4340. -webkit-box-shadow:none;
  4341. box-shadow:none;
  4342. font-family:'Microsoft YaHei', sans-serif;
  4343. font-weight:400;
  4344. font-style:normal;
  4345. font-size:14px;
  4346. color:#CCCCCC;
  4347. text-align:left;
  4348. }
  4349. #u70580 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:808px;
  4353. top:737px;
  4354. width:400px;
  4355. height:40px;
  4356. display:flex;
  4357. font-family:'Microsoft YaHei', sans-serif;
  4358. font-weight:400;
  4359. font-style:normal;
  4360. font-size:14px;
  4361. color:#CCCCCC;
  4362. text-align:left;
  4363. }
  4364. #u70580 .text {
  4365. position:absolute;
  4366. align-self:center;
  4367. padding:2px 8px 2px 8px;
  4368. box-sizing:border-box;
  4369. width:100%;
  4370. }
  4371. #u70580_text {
  4372. border-width:0px;
  4373. word-wrap:break-word;
  4374. text-transform:none;
  4375. visibility:hidden;
  4376. }
  4377. #u70581_input {
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:373px;
  4382. height:38px;
  4383. padding:2px 2px 2px 2px;
  4384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:14px;
  4388. letter-spacing:normal;
  4389. color:#000000;
  4390. vertical-align:none;
  4391. text-align:left;
  4392. text-transform:none;
  4393. background-color:transparent;
  4394. border-color:transparent;
  4395. }
  4396. #u70581_input.disabled {
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:373px;
  4401. height:38px;
  4402. padding:2px 2px 2px 2px;
  4403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4404. font-weight:400;
  4405. font-style:normal;
  4406. font-size:14px;
  4407. letter-spacing:normal;
  4408. color:#000000;
  4409. vertical-align:none;
  4410. text-align:left;
  4411. text-transform:none;
  4412. background-color:transparent;
  4413. border-color:transparent;
  4414. }
  4415. #u70581_div {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:373px;
  4421. height:38px;
  4422. background:inherit;
  4423. background-color:rgba(255, 255, 255, 1);
  4424. border:none;
  4425. border-radius:0px;
  4426. -moz-box-shadow:none;
  4427. -webkit-box-shadow:none;
  4428. box-shadow:none;
  4429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:14px;
  4433. }
  4434. #u70581 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:823px;
  4438. top:738px;
  4439. width:373px;
  4440. height:38px;
  4441. display:flex;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:14px;
  4446. }
  4447. #u70581 .text {
  4448. position:absolute;
  4449. align-self:center;
  4450. padding:2px 2px 2px 2px;
  4451. box-sizing:border-box;
  4452. width:100%;
  4453. }
  4454. #u70581_div.disabled {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:0px;
  4458. top:0px;
  4459. width:373px;
  4460. height:38px;
  4461. background:inherit;
  4462. background-color:rgba(240, 240, 240, 1);
  4463. border:none;
  4464. border-radius:0px;
  4465. -moz-box-shadow:none;
  4466. -webkit-box-shadow:none;
  4467. box-shadow:none;
  4468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:14px;
  4472. }
  4473. #u70581.disabled {
  4474. }
  4475. #u70582_div {
  4476. border-width:0px;
  4477. position:absolute;
  4478. left:0px;
  4479. top:0px;
  4480. width:116px;
  4481. height:40px;
  4482. background:inherit;
  4483. background-color:rgba(255, 255, 255, 0);
  4484. border:none;
  4485. border-top:0px;
  4486. border-right:0px;
  4487. border-bottom:0px;
  4488. border-radius:0px;
  4489. border-top-left-radius:0px;
  4490. border-bottom-left-radius:0px;
  4491. -moz-box-shadow:none;
  4492. -webkit-box-shadow:none;
  4493. box-shadow:none;
  4494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4495. font-weight:400;
  4496. font-style:normal;
  4497. font-size:14px;
  4498. color:#7F7F7F;
  4499. text-align:right;
  4500. }
  4501. #u70582 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:692px;
  4505. top:686px;
  4506. width:116px;
  4507. height:40px;
  4508. display:flex;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:14px;
  4513. color:#7F7F7F;
  4514. text-align:right;
  4515. }
  4516. #u70582 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:5px 10px 5px 0px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u70582_text {
  4524. border-width:0px;
  4525. white-space:nowrap;
  4526. text-transform:none;
  4527. }
  4528. #u70583 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:0px;
  4534. height:0px;
  4535. }
  4536. #u70584_div {
  4537. border-width:0px;
  4538. position:absolute;
  4539. left:0px;
  4540. top:0px;
  4541. width:400px;
  4542. height:40px;
  4543. background:inherit;
  4544. background-color:rgba(255, 255, 255, 1);
  4545. box-sizing:border-box;
  4546. border-width:1px;
  4547. border-style:solid;
  4548. border-color:rgba(201, 201, 201, 1);
  4549. border-radius:4px;
  4550. -moz-box-shadow:none;
  4551. -webkit-box-shadow:none;
  4552. box-shadow:none;
  4553. font-family:'Microsoft YaHei', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:14px;
  4557. color:#CCCCCC;
  4558. text-align:left;
  4559. }
  4560. #u70584 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:808px;
  4564. top:687px;
  4565. width:400px;
  4566. height:40px;
  4567. display:flex;
  4568. font-family:'Microsoft YaHei', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:14px;
  4572. color:#CCCCCC;
  4573. text-align:left;
  4574. }
  4575. #u70584 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:2px 8px 2px 8px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u70584_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u70585_input {
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:377px;
  4593. height:38px;
  4594. padding:2px 2px 2px 2px;
  4595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:14px;
  4599. letter-spacing:normal;
  4600. color:#000000;
  4601. vertical-align:none;
  4602. text-align:left;
  4603. text-transform:none;
  4604. background-color:transparent;
  4605. border-color:transparent;
  4606. }
  4607. #u70585_input.disabled {
  4608. position:absolute;
  4609. left:0px;
  4610. top:0px;
  4611. width:377px;
  4612. height:38px;
  4613. padding:2px 2px 2px 2px;
  4614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:14px;
  4618. letter-spacing:normal;
  4619. color:#000000;
  4620. vertical-align:none;
  4621. text-align:left;
  4622. text-transform:none;
  4623. background-color:transparent;
  4624. border-color:transparent;
  4625. }
  4626. #u70585_div {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:377px;
  4632. height:38px;
  4633. background:inherit;
  4634. background-color:rgba(255, 255, 255, 1);
  4635. border:none;
  4636. border-radius:0px;
  4637. -moz-box-shadow:none;
  4638. -webkit-box-shadow:none;
  4639. box-shadow:none;
  4640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4641. font-weight:400;
  4642. font-style:normal;
  4643. font-size:14px;
  4644. }
  4645. #u70585 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:819px;
  4649. top:688px;
  4650. width:377px;
  4651. height:38px;
  4652. display:flex;
  4653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:14px;
  4657. }
  4658. #u70585 .text {
  4659. position:absolute;
  4660. align-self:center;
  4661. padding:2px 2px 2px 2px;
  4662. box-sizing:border-box;
  4663. width:100%;
  4664. }
  4665. #u70585_div.disabled {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:377px;
  4671. height:38px;
  4672. background:inherit;
  4673. background-color:rgba(240, 240, 240, 1);
  4674. border:none;
  4675. border-radius:0px;
  4676. -moz-box-shadow:none;
  4677. -webkit-box-shadow:none;
  4678. box-shadow:none;
  4679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4680. font-weight:400;
  4681. font-style:normal;
  4682. font-size:14px;
  4683. }
  4684. #u70585.disabled {
  4685. }
  4686. #u70586_div {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:116px;
  4692. height:40px;
  4693. background:inherit;
  4694. background-color:rgba(255, 255, 255, 0);
  4695. border:none;
  4696. border-top:0px;
  4697. border-right:0px;
  4698. border-bottom:0px;
  4699. border-radius:0px;
  4700. border-top-left-radius:0px;
  4701. border-bottom-left-radius:0px;
  4702. -moz-box-shadow:none;
  4703. -webkit-box-shadow:none;
  4704. box-shadow:none;
  4705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4706. font-weight:400;
  4707. font-style:normal;
  4708. font-size:14px;
  4709. color:#7F7F7F;
  4710. text-align:right;
  4711. }
  4712. #u70586 {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:692px;
  4716. top:787px;
  4717. width:116px;
  4718. height:40px;
  4719. display:flex;
  4720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:14px;
  4724. color:#7F7F7F;
  4725. text-align:right;
  4726. }
  4727. #u70586 .text {
  4728. position:absolute;
  4729. align-self:center;
  4730. padding:5px 10px 5px 0px;
  4731. box-sizing:border-box;
  4732. width:100%;
  4733. }
  4734. #u70586_text {
  4735. border-width:0px;
  4736. white-space:nowrap;
  4737. text-transform:none;
  4738. }
  4739. #u70587 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:0px;
  4745. height:0px;
  4746. }
  4747. #u70588_div {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:400px;
  4753. height:40px;
  4754. background:inherit;
  4755. background-color:rgba(255, 255, 255, 1);
  4756. box-sizing:border-box;
  4757. border-width:1px;
  4758. border-style:solid;
  4759. border-color:rgba(201, 201, 201, 1);
  4760. border-radius:4px;
  4761. -moz-box-shadow:none;
  4762. -webkit-box-shadow:none;
  4763. box-shadow:none;
  4764. font-family:'Microsoft YaHei', sans-serif;
  4765. font-weight:400;
  4766. font-style:normal;
  4767. font-size:14px;
  4768. color:#CCCCCC;
  4769. text-align:left;
  4770. }
  4771. #u70588 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:808px;
  4775. top:788px;
  4776. width:400px;
  4777. height:40px;
  4778. display:flex;
  4779. font-family:'Microsoft YaHei', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:14px;
  4783. color:#CCCCCC;
  4784. text-align:left;
  4785. }
  4786. #u70588 .text {
  4787. position:absolute;
  4788. align-self:center;
  4789. padding:2px 8px 2px 8px;
  4790. box-sizing:border-box;
  4791. width:100%;
  4792. }
  4793. #u70588_text {
  4794. border-width:0px;
  4795. word-wrap:break-word;
  4796. text-transform:none;
  4797. visibility:hidden;
  4798. }
  4799. #u70589_input {
  4800. position:absolute;
  4801. left:0px;
  4802. top:0px;
  4803. width:373px;
  4804. height:38px;
  4805. padding:2px 2px 2px 2px;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:14px;
  4810. letter-spacing:normal;
  4811. color:#000000;
  4812. vertical-align:none;
  4813. text-align:left;
  4814. text-transform:none;
  4815. background-color:transparent;
  4816. border-color:transparent;
  4817. }
  4818. #u70589_input.disabled {
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:373px;
  4823. height:38px;
  4824. padding:2px 2px 2px 2px;
  4825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4826. font-weight:400;
  4827. font-style:normal;
  4828. font-size:14px;
  4829. letter-spacing:normal;
  4830. color:#000000;
  4831. vertical-align:none;
  4832. text-align:left;
  4833. text-transform:none;
  4834. background-color:transparent;
  4835. border-color:transparent;
  4836. }
  4837. #u70589_div {
  4838. border-width:0px;
  4839. position:absolute;
  4840. left:0px;
  4841. top:0px;
  4842. width:373px;
  4843. height:38px;
  4844. background:inherit;
  4845. background-color:rgba(255, 255, 255, 1);
  4846. border:none;
  4847. border-radius:0px;
  4848. -moz-box-shadow:none;
  4849. -webkit-box-shadow:none;
  4850. box-shadow:none;
  4851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4852. font-weight:400;
  4853. font-style:normal;
  4854. font-size:14px;
  4855. }
  4856. #u70589 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:823px;
  4860. top:789px;
  4861. width:373px;
  4862. height:38px;
  4863. display:flex;
  4864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:14px;
  4868. }
  4869. #u70589 .text {
  4870. position:absolute;
  4871. align-self:center;
  4872. padding:2px 2px 2px 2px;
  4873. box-sizing:border-box;
  4874. width:100%;
  4875. }
  4876. #u70589_div.disabled {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:373px;
  4882. height:38px;
  4883. background:inherit;
  4884. background-color:rgba(240, 240, 240, 1);
  4885. border:none;
  4886. border-radius:0px;
  4887. -moz-box-shadow:none;
  4888. -webkit-box-shadow:none;
  4889. box-shadow:none;
  4890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4891. font-weight:400;
  4892. font-style:normal;
  4893. font-size:14px;
  4894. }
  4895. #u70589.disabled {
  4896. }
  4897. #u70590_div {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:0px;
  4901. top:0px;
  4902. width:53px;
  4903. height:40px;
  4904. background:inherit;
  4905. background-color:rgba(255, 255, 255, 0);
  4906. border:none;
  4907. border-top:0px;
  4908. border-right:0px;
  4909. border-bottom:0px;
  4910. border-radius:0px;
  4911. border-top-left-radius:0px;
  4912. border-bottom-left-radius:0px;
  4913. -moz-box-shadow:none;
  4914. -webkit-box-shadow:none;
  4915. box-shadow:none;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:14px;
  4920. color:#7F7F7F;
  4921. text-align:right;
  4922. }
  4923. #u70590 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:755px;
  4927. top:838px;
  4928. width:53px;
  4929. height:40px;
  4930. display:flex;
  4931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:14px;
  4935. color:#7F7F7F;
  4936. text-align:right;
  4937. }
  4938. #u70590 .text {
  4939. position:absolute;
  4940. align-self:center;
  4941. padding:5px 10px 5px 0px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u70590_text {
  4946. border-width:0px;
  4947. white-space:nowrap;
  4948. text-transform:none;
  4949. }
  4950. #u70591 {
  4951. border-width:0px;
  4952. position:absolute;
  4953. left:0px;
  4954. top:0px;
  4955. width:0px;
  4956. height:0px;
  4957. }
  4958. #u70592_div {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:400px;
  4964. height:40px;
  4965. background:inherit;
  4966. background-color:rgba(255, 255, 255, 1);
  4967. box-sizing:border-box;
  4968. border-width:1px;
  4969. border-style:solid;
  4970. border-color:rgba(201, 201, 201, 1);
  4971. border-radius:4px;
  4972. -moz-box-shadow:none;
  4973. -webkit-box-shadow:none;
  4974. box-shadow:none;
  4975. font-family:'Microsoft YaHei', sans-serif;
  4976. font-weight:400;
  4977. font-style:normal;
  4978. font-size:14px;
  4979. color:#CCCCCC;
  4980. text-align:left;
  4981. }
  4982. #u70592 {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:808px;
  4986. top:839px;
  4987. width:400px;
  4988. height:40px;
  4989. display:flex;
  4990. font-family:'Microsoft YaHei', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:14px;
  4994. color:#CCCCCC;
  4995. text-align:left;
  4996. }
  4997. #u70592 .text {
  4998. position:absolute;
  4999. align-self:center;
  5000. padding:2px 8px 2px 8px;
  5001. box-sizing:border-box;
  5002. width:100%;
  5003. }
  5004. #u70592_text {
  5005. border-width:0px;
  5006. word-wrap:break-word;
  5007. text-transform:none;
  5008. visibility:hidden;
  5009. }
  5010. #u70593_input {
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:373px;
  5015. height:38px;
  5016. padding:2px 2px 2px 2px;
  5017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:14px;
  5021. letter-spacing:normal;
  5022. color:#000000;
  5023. vertical-align:none;
  5024. text-align:left;
  5025. text-transform:none;
  5026. background-color:transparent;
  5027. border-color:transparent;
  5028. }
  5029. #u70593_input.disabled {
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:373px;
  5034. height:38px;
  5035. padding:2px 2px 2px 2px;
  5036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5037. font-weight:400;
  5038. font-style:normal;
  5039. font-size:14px;
  5040. letter-spacing:normal;
  5041. color:#000000;
  5042. vertical-align:none;
  5043. text-align:left;
  5044. text-transform:none;
  5045. background-color:transparent;
  5046. border-color:transparent;
  5047. }
  5048. #u70593_div {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:373px;
  5054. height:38px;
  5055. background:inherit;
  5056. background-color:rgba(255, 255, 255, 1);
  5057. border:none;
  5058. border-radius:0px;
  5059. -moz-box-shadow:none;
  5060. -webkit-box-shadow:none;
  5061. box-shadow:none;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:14px;
  5066. }
  5067. #u70593 {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:823px;
  5071. top:840px;
  5072. width:373px;
  5073. height:38px;
  5074. display:flex;
  5075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:14px;
  5079. }
  5080. #u70593 .text {
  5081. position:absolute;
  5082. align-self:center;
  5083. padding:2px 2px 2px 2px;
  5084. box-sizing:border-box;
  5085. width:100%;
  5086. }
  5087. #u70593_div.disabled {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:0px;
  5091. top:0px;
  5092. width:373px;
  5093. height:38px;
  5094. background:inherit;
  5095. background-color:rgba(240, 240, 240, 1);
  5096. border:none;
  5097. border-radius:0px;
  5098. -moz-box-shadow:none;
  5099. -webkit-box-shadow:none;
  5100. box-shadow:none;
  5101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:14px;
  5105. }
  5106. #u70593.disabled {
  5107. }
  5108. #u70594 {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:0px;
  5114. height:0px;
  5115. }
  5116. #u70595_div {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:0px;
  5120. top:0px;
  5121. width:160px;
  5122. height:30px;
  5123. background:inherit;
  5124. background-color:rgba(255, 255, 255, 1);
  5125. box-sizing:border-box;
  5126. border-width:1px;
  5127. border-style:solid;
  5128. border-color:rgba(201, 201, 201, 1);
  5129. border-radius:4px;
  5130. -moz-box-shadow:none;
  5131. -webkit-box-shadow:none;
  5132. box-shadow:none;
  5133. font-family:'Microsoft YaHei', sans-serif;
  5134. font-weight:400;
  5135. font-style:normal;
  5136. font-size:14px;
  5137. color:#CCCCCC;
  5138. text-align:left;
  5139. }
  5140. #u70595 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:361px;
  5144. top:120px;
  5145. width:160px;
  5146. height:30px;
  5147. display:flex;
  5148. font-family:'Microsoft YaHei', sans-serif;
  5149. font-weight:400;
  5150. font-style:normal;
  5151. font-size:14px;
  5152. color:#CCCCCC;
  5153. text-align:left;
  5154. }
  5155. #u70595 .text {
  5156. position:absolute;
  5157. align-self:center;
  5158. padding:2px 8px 2px 8px;
  5159. box-sizing:border-box;
  5160. width:100%;
  5161. }
  5162. #u70595_text {
  5163. border-width:0px;
  5164. word-wrap:break-word;
  5165. text-transform:none;
  5166. visibility:hidden;
  5167. }
  5168. #u70596_input {
  5169. position:absolute;
  5170. left:0px;
  5171. top:0px;
  5172. width:150px;
  5173. height:28px;
  5174. padding:2px 2px 2px 2px;
  5175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5176. font-weight:400;
  5177. font-style:normal;
  5178. font-size:14px;
  5179. letter-spacing:normal;
  5180. color:#000000;
  5181. vertical-align:none;
  5182. text-align:left;
  5183. text-transform:none;
  5184. background-color:transparent;
  5185. border-color:transparent;
  5186. }
  5187. #u70596_input.disabled {
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:150px;
  5192. height:28px;
  5193. padding:2px 2px 2px 2px;
  5194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5195. font-weight:400;
  5196. font-style:normal;
  5197. font-size:14px;
  5198. letter-spacing:normal;
  5199. color:#000000;
  5200. vertical-align:none;
  5201. text-align:left;
  5202. text-transform:none;
  5203. background-color:transparent;
  5204. border-color:transparent;
  5205. }
  5206. #u70596_div {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:150px;
  5212. height:28px;
  5213. background:inherit;
  5214. background-color:rgba(255, 255, 255, 1);
  5215. border:none;
  5216. border-radius:0px;
  5217. -moz-box-shadow:none;
  5218. -webkit-box-shadow:none;
  5219. box-shadow:none;
  5220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5221. font-weight:400;
  5222. font-style:normal;
  5223. font-size:14px;
  5224. }
  5225. #u70596 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:367px;
  5229. top:121px;
  5230. width:150px;
  5231. height:28px;
  5232. display:flex;
  5233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5234. font-weight:400;
  5235. font-style:normal;
  5236. font-size:14px;
  5237. }
  5238. #u70596 .text {
  5239. position:absolute;
  5240. align-self:center;
  5241. padding:2px 2px 2px 2px;
  5242. box-sizing:border-box;
  5243. width:100%;
  5244. }
  5245. #u70596_div.disabled {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:0px;
  5249. top:0px;
  5250. width:150px;
  5251. height:28px;
  5252. background:inherit;
  5253. background-color:rgba(240, 240, 240, 1);
  5254. border:none;
  5255. border-radius:0px;
  5256. -moz-box-shadow:none;
  5257. -webkit-box-shadow:none;
  5258. box-shadow:none;
  5259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:14px;
  5263. }
  5264. #u70596.disabled {
  5265. }
  5266. #u70597_div {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:60px;
  5272. height:30px;
  5273. background:inherit;
  5274. background-color:rgba(24, 144, 255, 1);
  5275. border:none;
  5276. border-radius:4px;
  5277. -moz-box-shadow:none;
  5278. -webkit-box-shadow:none;
  5279. box-shadow:none;
  5280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:14px;
  5284. color:#FFFFFF;
  5285. }
  5286. #u70597 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:531px;
  5290. top:120px;
  5291. width:60px;
  5292. height:30px;
  5293. display:flex;
  5294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5295. font-weight:400;
  5296. font-style:normal;
  5297. font-size:14px;
  5298. color:#FFFFFF;
  5299. }
  5300. #u70597 .text {
  5301. position:absolute;
  5302. align-self:center;
  5303. padding:2px 2px 2px 2px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u70597_text {
  5308. border-width:0px;
  5309. word-wrap:break-word;
  5310. text-transform:none;
  5311. }
  5312. #u70598 {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:0px;
  5318. height:0px;
  5319. }
  5320. #u70599_div {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:200px;
  5326. height:1180px;
  5327. background:inherit;
  5328. background-color:rgba(255, 255, 255, 1);
  5329. border:none;
  5330. border-radius:0px;
  5331. -moz-box-shadow:none;
  5332. -webkit-box-shadow:none;
  5333. box-shadow:none;
  5334. }
  5335. #u70599 {
  5336. border-width:0px;
  5337. position:absolute;
  5338. left:122px;
  5339. top:50px;
  5340. width:200px;
  5341. height:1180px;
  5342. display:flex;
  5343. }
  5344. #u70599 .text {
  5345. position:absolute;
  5346. align-self:center;
  5347. padding:2px 2px 2px 2px;
  5348. box-sizing:border-box;
  5349. width:100%;
  5350. }
  5351. #u70599_text {
  5352. border-width:0px;
  5353. word-wrap:break-word;
  5354. text-transform:none;
  5355. visibility:hidden;
  5356. }
  5357. #u70600_div {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:0px;
  5361. top:0px;
  5362. width:200px;
  5363. height:60px;
  5364. background:inherit;
  5365. background-color:rgba(224, 231, 247, 1);
  5366. border:none;
  5367. border-radius:0px;
  5368. -moz-box-shadow:none;
  5369. -webkit-box-shadow:none;
  5370. box-shadow:none;
  5371. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5372. font-weight:500;
  5373. font-style:normal;
  5374. font-size:18px;
  5375. }
  5376. #u70600 {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:122px;
  5380. top:50px;
  5381. width:200px;
  5382. height:60px;
  5383. display:flex;
  5384. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5385. font-weight:500;
  5386. font-style:normal;
  5387. font-size:18px;
  5388. }
  5389. #u70600 .text {
  5390. position:absolute;
  5391. align-self:center;
  5392. padding:0px 0px 0px 20px;
  5393. box-sizing:border-box;
  5394. width:100%;
  5395. }
  5396. #u70600_text {
  5397. border-width:0px;
  5398. word-wrap:break-word;
  5399. text-transform:none;
  5400. }
  5401. #u70601_div {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:65px;
  5407. height:22px;
  5408. background:inherit;
  5409. background-color:rgba(255, 255, 255, 0);
  5410. border:none;
  5411. border-radius:0px;
  5412. -moz-box-shadow:none;
  5413. -webkit-box-shadow:none;
  5414. box-shadow:none;
  5415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5416. font-weight:400;
  5417. font-style:normal;
  5418. font-size:16px;
  5419. }
  5420. #u70601 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:149px;
  5424. top:161px;
  5425. width:65px;
  5426. height:22px;
  5427. display:flex;
  5428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:16px;
  5432. }
  5433. #u70601 .text {
  5434. position:absolute;
  5435. align-self:flex-start;
  5436. padding:0px 0px 0px 0px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u70601_text {
  5441. border-width:0px;
  5442. white-space:nowrap;
  5443. text-transform:none;
  5444. }
  5445. #u70602_div {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:65px;
  5451. height:22px;
  5452. background:inherit;
  5453. background-color:rgba(255, 255, 255, 0);
  5454. border:none;
  5455. border-radius:0px;
  5456. -moz-box-shadow:none;
  5457. -webkit-box-shadow:none;
  5458. box-shadow:none;
  5459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:16px;
  5463. }
  5464. #u70602 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:149px;
  5468. top:203px;
  5469. width:65px;
  5470. height:22px;
  5471. display:flex;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:16px;
  5476. }
  5477. #u70602 .text {
  5478. position:absolute;
  5479. align-self:flex-start;
  5480. padding:0px 0px 0px 0px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u70602_text {
  5485. border-width:0px;
  5486. white-space:nowrap;
  5487. text-transform:none;
  5488. }
  5489. #u70603_div {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:65px;
  5495. height:22px;
  5496. background:inherit;
  5497. background-color:rgba(255, 255, 255, 0);
  5498. border:none;
  5499. border-radius:0px;
  5500. -moz-box-shadow:none;
  5501. -webkit-box-shadow:none;
  5502. box-shadow:none;
  5503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5504. font-weight:400;
  5505. font-style:normal;
  5506. font-size:16px;
  5507. }
  5508. #u70603 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:149px;
  5512. top:245px;
  5513. width:65px;
  5514. height:22px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:16px;
  5520. }
  5521. #u70603 .text {
  5522. position:absolute;
  5523. align-self:flex-start;
  5524. padding:0px 0px 0px 0px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u70603_text {
  5529. border-width:0px;
  5530. white-space:nowrap;
  5531. text-transform:none;
  5532. }
  5533. #u70604_div {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:65px;
  5539. height:22px;
  5540. background:inherit;
  5541. background-color:rgba(255, 255, 255, 0);
  5542. border:none;
  5543. border-radius:0px;
  5544. -moz-box-shadow:none;
  5545. -webkit-box-shadow:none;
  5546. box-shadow:none;
  5547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:16px;
  5551. }
  5552. #u70604 {
  5553. border-width:0px;
  5554. position:absolute;
  5555. left:149px;
  5556. top:287px;
  5557. width:65px;
  5558. height:22px;
  5559. display:flex;
  5560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5561. font-weight:400;
  5562. font-style:normal;
  5563. font-size:16px;
  5564. }
  5565. #u70604 .text {
  5566. position:absolute;
  5567. align-self:flex-start;
  5568. padding:0px 0px 0px 0px;
  5569. box-sizing:border-box;
  5570. width:100%;
  5571. }
  5572. #u70604_text {
  5573. border-width:0px;
  5574. white-space:nowrap;
  5575. text-transform:none;
  5576. }
  5577. #u70605_div {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:0px;
  5581. top:0px;
  5582. width:49px;
  5583. height:17px;
  5584. background:inherit;
  5585. background-color:rgba(255, 255, 255, 0);
  5586. border:none;
  5587. border-radius:0px;
  5588. -moz-box-shadow:none;
  5589. -webkit-box-shadow:none;
  5590. box-shadow:none;
  5591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:12px;
  5595. color:#AAAAAA;
  5596. }
  5597. #u70605 {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:149px;
  5601. top:125px;
  5602. width:49px;
  5603. height:17px;
  5604. display:flex;
  5605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5606. font-weight:400;
  5607. font-style:normal;
  5608. font-size:12px;
  5609. color:#AAAAAA;
  5610. }
  5611. #u70605 .text {
  5612. position:absolute;
  5613. align-self:flex-start;
  5614. padding:0px 0px 0px 0px;
  5615. box-sizing:border-box;
  5616. width:100%;
  5617. }
  5618. #u70605_text {
  5619. border-width:0px;
  5620. white-space:nowrap;
  5621. text-transform:none;
  5622. }
  5623. #u70606_div {
  5624. border-width:0px;
  5625. position:absolute;
  5626. left:0px;
  5627. top:0px;
  5628. width:65px;
  5629. height:22px;
  5630. background:inherit;
  5631. background-color:rgba(255, 255, 255, 0);
  5632. border:none;
  5633. border-radius:0px;
  5634. -moz-box-shadow:none;
  5635. -webkit-box-shadow:none;
  5636. box-shadow:none;
  5637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5638. font-weight:400;
  5639. font-style:normal;
  5640. font-size:16px;
  5641. color:#3399FF;
  5642. }
  5643. #u70606 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:149px;
  5647. top:387px;
  5648. width:65px;
  5649. height:22px;
  5650. display:flex;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:16px;
  5655. color:#3399FF;
  5656. }
  5657. #u70606 .text {
  5658. position:absolute;
  5659. align-self:flex-start;
  5660. padding:0px 0px 0px 0px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u70606_text {
  5665. border-width:0px;
  5666. white-space:nowrap;
  5667. text-transform:none;
  5668. }
  5669. #u70607_div {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:49px;
  5675. height:17px;
  5676. background:inherit;
  5677. background-color:rgba(255, 255, 255, 0);
  5678. border:none;
  5679. border-radius:0px;
  5680. -moz-box-shadow:none;
  5681. -webkit-box-shadow:none;
  5682. box-shadow:none;
  5683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:12px;
  5687. color:#AAAAAA;
  5688. }
  5689. #u70607 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:149px;
  5693. top:351px;
  5694. width:49px;
  5695. height:17px;
  5696. display:flex;
  5697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. font-size:12px;
  5701. color:#AAAAAA;
  5702. }
  5703. #u70607 .text {
  5704. position:absolute;
  5705. align-self:flex-start;
  5706. padding:0px 0px 0px 0px;
  5707. box-sizing:border-box;
  5708. width:100%;
  5709. }
  5710. #u70607_text {
  5711. border-width:0px;
  5712. white-space:nowrap;
  5713. text-transform:none;
  5714. }
  5715. #u70608_img {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:201px;
  5721. height:2px;
  5722. }
  5723. #u70608 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:122px;
  5727. top:329px;
  5728. width:200px;
  5729. height:1px;
  5730. display:flex;
  5731. }
  5732. #u70608 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:2px 2px 2px 2px;
  5736. box-sizing:border-box;
  5737. width:100%;
  5738. }
  5739. #u70608_text {
  5740. border-width:0px;
  5741. word-wrap:break-word;
  5742. text-transform:none;
  5743. visibility:hidden;
  5744. }
  5745. #u70609_div {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:65px;
  5751. height:22px;
  5752. background:inherit;
  5753. background-color:rgba(255, 255, 255, 0);
  5754. border:none;
  5755. border-radius:0px;
  5756. -moz-box-shadow:none;
  5757. -webkit-box-shadow:none;
  5758. box-shadow:none;
  5759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5760. font-weight:400;
  5761. font-style:normal;
  5762. font-size:16px;
  5763. }
  5764. #u70609 {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:149px;
  5768. top:484px;
  5769. width:65px;
  5770. height:22px;
  5771. display:flex;
  5772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5773. font-weight:400;
  5774. font-style:normal;
  5775. font-size:16px;
  5776. }
  5777. #u70609 .text {
  5778. position:absolute;
  5779. align-self:flex-start;
  5780. padding:0px 0px 0px 0px;
  5781. box-sizing:border-box;
  5782. width:100%;
  5783. }
  5784. #u70609_text {
  5785. border-width:0px;
  5786. white-space:nowrap;
  5787. text-transform:none;
  5788. }
  5789. #u70610_div {
  5790. border-width:0px;
  5791. position:absolute;
  5792. left:0px;
  5793. top:0px;
  5794. width:49px;
  5795. height:17px;
  5796. background:inherit;
  5797. background-color:rgba(255, 255, 255, 0);
  5798. border:none;
  5799. border-radius:0px;
  5800. -moz-box-shadow:none;
  5801. -webkit-box-shadow:none;
  5802. box-shadow:none;
  5803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5804. font-weight:400;
  5805. font-style:normal;
  5806. font-size:12px;
  5807. color:#AAAAAA;
  5808. }
  5809. #u70610 {
  5810. border-width:0px;
  5811. position:absolute;
  5812. left:149px;
  5813. top:448px;
  5814. width:49px;
  5815. height:17px;
  5816. display:flex;
  5817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5818. font-weight:400;
  5819. font-style:normal;
  5820. font-size:12px;
  5821. color:#AAAAAA;
  5822. }
  5823. #u70610 .text {
  5824. position:absolute;
  5825. align-self:flex-start;
  5826. padding:0px 0px 0px 0px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u70610_text {
  5831. border-width:0px;
  5832. white-space:nowrap;
  5833. text-transform:none;
  5834. }
  5835. #u70611_img {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:201px;
  5841. height:2px;
  5842. }
  5843. #u70611 {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:122px;
  5847. top:426px;
  5848. width:200px;
  5849. height:1px;
  5850. display:flex;
  5851. }
  5852. #u70611 .text {
  5853. position:absolute;
  5854. align-self:center;
  5855. padding:2px 2px 2px 2px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u70611_text {
  5860. border-width:0px;
  5861. word-wrap:break-word;
  5862. text-transform:none;
  5863. visibility:hidden;
  5864. }
  5865. #u70612_div {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:65px;
  5871. height:22px;
  5872. background:inherit;
  5873. background-color:rgba(255, 255, 255, 0);
  5874. border:none;
  5875. border-radius:0px;
  5876. -moz-box-shadow:none;
  5877. -webkit-box-shadow:none;
  5878. box-shadow:none;
  5879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5880. font-weight:400;
  5881. font-style:normal;
  5882. font-size:16px;
  5883. }
  5884. #u70612 {
  5885. border-width:0px;
  5886. position:absolute;
  5887. left:149px;
  5888. top:526px;
  5889. width:65px;
  5890. height:22px;
  5891. display:flex;
  5892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5893. font-weight:400;
  5894. font-style:normal;
  5895. font-size:16px;
  5896. }
  5897. #u70612 .text {
  5898. position:absolute;
  5899. align-self:flex-start;
  5900. padding:0px 0px 0px 0px;
  5901. box-sizing:border-box;
  5902. width:100%;
  5903. }
  5904. #u70612_text {
  5905. border-width:0px;
  5906. white-space:nowrap;
  5907. text-transform:none;
  5908. }