styles.css 104 KB

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