styles.css 107 KB

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