styles.css 109 KB

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