styles.css 133 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2464px;
  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. #u6904_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u6904 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u6904 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u6904_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u6905_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u6905 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u6905 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u6905_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u6906 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u6907_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u6907 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u6907 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u6907_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u6908_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u6908 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u6908 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u6908_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u6909_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u6909 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u6909 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u6909_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u6910_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u6910 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u6910 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u6910_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u6911 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u6912_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u6912 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u6912 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u6912_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u6913_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u6913 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u6913 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u6913_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u6914 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u6915_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u6915 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u6915 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u6915_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u6916_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u6916 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u6916 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u6916_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u6917 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u6918_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u6918 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u6918 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u6918_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u6919_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u6919 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u6919 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u6919_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u6920 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u6921_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u6921 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u6921 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u6921_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u6922_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u6922 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u6922 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u6922_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u6923 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u6924_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u6924 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u6924 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u6924_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u6925_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u6925 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u6925 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u6925_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u6926 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u6927_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u6927 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u6927 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u6927_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u6928_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u6928 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u6928 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u6928_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u6929 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u6930_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u6930 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u6930 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u6930_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u6931_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u6931 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u6931 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u6931_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u6932 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u6933_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u6933 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u6933 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u6933_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u6934_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u6934 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u6934 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u6934_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u6935 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u6936_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u6936 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:529px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u6936 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u6936_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u6937_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u6937 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:533px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u6937 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u6937_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u6938_input {
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:214px;
  1014. height:27px;
  1015. padding:2px 2px 2px 2px;
  1016. font-family:'ArialMT', 'Arial', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:14px;
  1020. letter-spacing:normal;
  1021. color:#FFFFFF;
  1022. vertical-align:none;
  1023. text-align:left;
  1024. text-transform:none;
  1025. background-color:transparent;
  1026. border-color:transparent;
  1027. }
  1028. #u6938_input.disabled {
  1029. position:absolute;
  1030. left:0px;
  1031. top:0px;
  1032. width:214px;
  1033. height:27px;
  1034. padding:2px 2px 2px 2px;
  1035. font-family:'ArialMT', 'Arial', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. letter-spacing:normal;
  1040. color:#FFFFFF;
  1041. vertical-align:none;
  1042. text-align:left;
  1043. text-transform:none;
  1044. background-color:transparent;
  1045. border-color:transparent;
  1046. }
  1047. #u6938_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:214px;
  1053. height:27px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. font-size:14px;
  1062. color:#FFFFFF;
  1063. }
  1064. #u6938 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:1221px;
  1068. top:10px;
  1069. width:214px;
  1070. height:27px;
  1071. display:flex;
  1072. font-size:14px;
  1073. color:#FFFFFF;
  1074. }
  1075. #u6938 .text {
  1076. position:absolute;
  1077. align-self:flex-start;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u6938_div.disabled {
  1083. border-width:0px;
  1084. position:absolute;
  1085. left:0px;
  1086. top:0px;
  1087. width:214px;
  1088. height:27px;
  1089. background:inherit;
  1090. background-color:rgba(240, 240, 240, 1);
  1091. border:none;
  1092. border-radius:0px;
  1093. -moz-box-shadow:none;
  1094. -webkit-box-shadow:none;
  1095. box-shadow:none;
  1096. font-size:14px;
  1097. color:#FFFFFF;
  1098. }
  1099. #u6938.disabled {
  1100. }
  1101. .u6938_input_option {
  1102. font-size:14px;
  1103. }
  1104. #u6939_img {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:0px;
  1108. top:0px;
  1109. width:22px;
  1110. height:22px;
  1111. }
  1112. #u6939 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:1194px;
  1116. top:15px;
  1117. width:22px;
  1118. height:22px;
  1119. display:flex;
  1120. }
  1121. #u6939 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u6939_text {
  1129. border-width:0px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. visibility:hidden;
  1133. }
  1134. #u6940_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:100px;
  1140. height:24px;
  1141. background:inherit;
  1142. background-color:rgba(242, 242, 242, 0.2);
  1143. border:none;
  1144. border-radius:25px;
  1145. -moz-box-shadow:none;
  1146. -webkit-box-shadow:none;
  1147. box-shadow:none;
  1148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. color:#FFFFFF;
  1152. text-align:center;
  1153. }
  1154. #u6940 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:1480px;
  1158. top:12px;
  1159. width:100px;
  1160. height:24px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. color:#FFFFFF;
  1166. text-align:center;
  1167. }
  1168. #u6940 .text {
  1169. position:absolute;
  1170. align-self:center;
  1171. padding:0px 0px 0px 0px;
  1172. box-sizing:border-box;
  1173. width:100%;
  1174. }
  1175. #u6940_text {
  1176. border-width:0px;
  1177. word-wrap:break-word;
  1178. text-transform:none;
  1179. }
  1180. #u6941_img {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:2px;
  1186. height:12px;
  1187. }
  1188. #u6941 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:1452px;
  1192. top:19px;
  1193. width:1px;
  1194. height:11px;
  1195. display:flex;
  1196. }
  1197. #u6941 .text {
  1198. position:absolute;
  1199. align-self:center;
  1200. padding:2px 2px 2px 2px;
  1201. box-sizing:border-box;
  1202. width:100%;
  1203. }
  1204. #u6941_text {
  1205. border-width:0px;
  1206. word-wrap:break-word;
  1207. text-transform:none;
  1208. visibility:hidden;
  1209. }
  1210. #u6942 {
  1211. border-width:0px;
  1212. position:absolute;
  1213. left:0px;
  1214. top:0px;
  1215. width:0px;
  1216. height:0px;
  1217. }
  1218. #u6943_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:33px;
  1224. height:22px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-radius:0px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. font-size:16px;
  1236. color:#FFFFFF;
  1237. }
  1238. #u6943 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:39px;
  1242. top:319px;
  1243. width:33px;
  1244. height:22px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:16px;
  1250. color:#FFFFFF;
  1251. }
  1252. #u6943 .text {
  1253. position:absolute;
  1254. align-self:flex-start;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u6943_text {
  1260. border-width:0px;
  1261. white-space:nowrap;
  1262. text-transform:none;
  1263. }
  1264. #u6944_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:14px;
  1270. height:14px;
  1271. }
  1272. #u6944 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:20px;
  1276. top:323px;
  1277. width:14px;
  1278. height:14px;
  1279. display:flex;
  1280. }
  1281. #u6944 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u6944_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u6945 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u6946_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u6946 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:361px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u6946 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u6946_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u6947_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u6947 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:365px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u6947 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u6947_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u6948 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u6949_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u6949 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:151px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u6949 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u6949_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u6950_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u6950 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:155px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u6950 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u6950_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u6951 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u6952_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u6952 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:487px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u6952 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u6952_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u6953_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u6953 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:491px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u6953 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u6953_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u6954 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u6955_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u6955 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:193px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u6955 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u6955_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u6956_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u6956 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:197px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u6956 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u6956_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u6957_img {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:2px;
  1636. height:12px;
  1637. }
  1638. #u6957 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:1375px;
  1642. top:22px;
  1643. width:1px;
  1644. height:11px;
  1645. display:flex;
  1646. }
  1647. #u6957 .text {
  1648. position:absolute;
  1649. align-self:center;
  1650. padding:2px 2px 2px 2px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u6957_text {
  1655. border-width:0px;
  1656. word-wrap:break-word;
  1657. text-transform:none;
  1658. visibility:hidden;
  1659. }
  1660. #u6958_div {
  1661. border-width:0px;
  1662. position:absolute;
  1663. left:0px;
  1664. top:0px;
  1665. width:1252px;
  1666. height:1179px;
  1667. background:inherit;
  1668. background-color:rgba(255, 255, 255, 1);
  1669. border:none;
  1670. border-radius:0px;
  1671. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1672. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1673. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1674. }
  1675. #u6958 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:335px;
  1679. top:49px;
  1680. width:1252px;
  1681. height:1179px;
  1682. display:flex;
  1683. }
  1684. #u6958 .text {
  1685. position:absolute;
  1686. align-self:center;
  1687. padding:2px 2px 2px 2px;
  1688. box-sizing:border-box;
  1689. width:100%;
  1690. }
  1691. #u6958_text {
  1692. border-width:0px;
  1693. word-wrap:break-word;
  1694. text-transform:none;
  1695. visibility:hidden;
  1696. }
  1697. #u6959_div {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:91px;
  1703. height:50px;
  1704. background:inherit;
  1705. background-color:rgba(255, 255, 255, 0);
  1706. border:none;
  1707. border-left:0px;
  1708. border-top:0px;
  1709. border-right:0px;
  1710. border-radius:0px;
  1711. border-bottom-right-radius:0px;
  1712. border-bottom-left-radius:0px;
  1713. -moz-box-shadow:none;
  1714. -webkit-box-shadow:none;
  1715. box-shadow:none;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:18px;
  1720. }
  1721. #u6959 {
  1722. border-width:0px;
  1723. position:absolute;
  1724. left:365px;
  1725. top:54px;
  1726. width:91px;
  1727. height:50px;
  1728. display:flex;
  1729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1730. font-weight:400;
  1731. font-style:normal;
  1732. font-size:18px;
  1733. }
  1734. #u6959 .text {
  1735. position:absolute;
  1736. align-self:center;
  1737. padding:0px 0px 0px 0px;
  1738. box-sizing:border-box;
  1739. width:100%;
  1740. }
  1741. #u6959_text {
  1742. border-width:0px;
  1743. white-space:nowrap;
  1744. text-transform:none;
  1745. }
  1746. #u6960_div {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:55px;
  1752. height:30px;
  1753. background:inherit;
  1754. background-color:rgba(25, 140, 251, 1);
  1755. border:none;
  1756. border-radius:4px;
  1757. -moz-box-shadow:none;
  1758. -webkit-box-shadow:none;
  1759. box-shadow:none;
  1760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:12px;
  1764. color:#FFFFFF;
  1765. }
  1766. #u6960 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:365px;
  1770. top:154px;
  1771. width:55px;
  1772. height:30px;
  1773. display:flex;
  1774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:12px;
  1778. color:#FFFFFF;
  1779. }
  1780. #u6960 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:5px 15px 5px 15px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u6960_text {
  1788. border-width:0px;
  1789. white-space:nowrap;
  1790. text-transform:none;
  1791. }
  1792. #u6961_div {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:59px;
  1798. height:30px;
  1799. background:inherit;
  1800. background-color:rgba(41, 143, 255, 1);
  1801. border:none;
  1802. border-radius:4px;
  1803. -moz-box-shadow:none;
  1804. -webkit-box-shadow:none;
  1805. box-shadow:none;
  1806. font-family:'Microsoft YaHei', sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:14px;
  1810. color:#FFFFFF;
  1811. }
  1812. #u6961 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:665px;
  1816. top:111px;
  1817. width:59px;
  1818. height:30px;
  1819. display:flex;
  1820. font-family:'Microsoft YaHei', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:14px;
  1824. color:#FFFFFF;
  1825. }
  1826. #u6961 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:5px 15px 5px 15px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u6961_text {
  1834. border-width:0px;
  1835. white-space:nowrap;
  1836. text-transform:none;
  1837. }
  1838. #u6962_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:55px;
  1844. height:30px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 1);
  1847. box-sizing:border-box;
  1848. border-width:1px;
  1849. border-style:solid;
  1850. border-color:rgba(170, 170, 170, 1);
  1851. border-radius:4px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:12px;
  1859. color:#555555;
  1860. }
  1861. #u6962 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:734px;
  1865. top:111px;
  1866. width:55px;
  1867. height:30px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. color:#555555;
  1874. }
  1875. #u6962 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:5px 15px 5px 15px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u6962_text {
  1883. border-width:0px;
  1884. white-space:nowrap;
  1885. text-transform:none;
  1886. }
  1887. #u6963 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:0px;
  1893. height:0px;
  1894. }
  1895. #u6964_div {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:140px;
  1901. height:30px;
  1902. background:inherit;
  1903. background-color:rgba(255, 255, 255, 1);
  1904. box-sizing:border-box;
  1905. border-width:1px;
  1906. border-style:solid;
  1907. border-color:rgba(201, 201, 201, 1);
  1908. border-radius:4px;
  1909. -moz-box-shadow:none;
  1910. -webkit-box-shadow:none;
  1911. box-shadow:none;
  1912. font-family:'Microsoft YaHei', sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. font-size:14px;
  1916. color:#CCCCCC;
  1917. text-align:left;
  1918. }
  1919. #u6964 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:515px;
  1923. top:111px;
  1924. width:140px;
  1925. height:30px;
  1926. display:flex;
  1927. font-family:'Microsoft YaHei', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. font-size:14px;
  1931. color:#CCCCCC;
  1932. text-align:left;
  1933. }
  1934. #u6964 .text {
  1935. position:absolute;
  1936. align-self:center;
  1937. padding:2px 8px 2px 8px;
  1938. box-sizing:border-box;
  1939. width:100%;
  1940. }
  1941. #u6964_text {
  1942. border-width:0px;
  1943. word-wrap:break-word;
  1944. text-transform:none;
  1945. visibility:hidden;
  1946. }
  1947. #u6965_input {
  1948. position:absolute;
  1949. left:0px;
  1950. top:0px;
  1951. width:127px;
  1952. height:25px;
  1953. padding:2px 2px 2px 2px;
  1954. font-family:'Microsoft YaHei', sans-serif;
  1955. font-weight:400;
  1956. font-style:normal;
  1957. font-size:10px;
  1958. letter-spacing:normal;
  1959. color:#000000;
  1960. vertical-align:none;
  1961. text-align:left;
  1962. text-transform:none;
  1963. background-color:transparent;
  1964. border-color:transparent;
  1965. }
  1966. #u6965_input.disabled {
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:127px;
  1971. height:25px;
  1972. padding:2px 2px 2px 2px;
  1973. font-family:'Microsoft YaHei', sans-serif;
  1974. font-weight:400;
  1975. font-style:normal;
  1976. font-size:10px;
  1977. letter-spacing:normal;
  1978. color:#000000;
  1979. vertical-align:none;
  1980. text-align:left;
  1981. text-transform:none;
  1982. background-color:transparent;
  1983. border-color:transparent;
  1984. }
  1985. #u6965_div {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:0px;
  1989. top:0px;
  1990. width:127px;
  1991. height:25px;
  1992. background:inherit;
  1993. background-color:rgba(255, 255, 255, 1);
  1994. border:none;
  1995. border-radius:0px;
  1996. -moz-box-shadow:none;
  1997. -webkit-box-shadow:none;
  1998. box-shadow:none;
  1999. font-family:'Microsoft YaHei', sans-serif;
  2000. font-weight:400;
  2001. font-style:normal;
  2002. font-size:10px;
  2003. }
  2004. #u6965 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:523px;
  2008. top:112px;
  2009. width:127px;
  2010. height:25px;
  2011. display:flex;
  2012. font-family:'Microsoft YaHei', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:10px;
  2016. }
  2017. #u6965 .text {
  2018. position:absolute;
  2019. align-self:center;
  2020. padding:2px 2px 2px 2px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u6965_div.disabled {
  2025. border-width:0px;
  2026. position:absolute;
  2027. left:0px;
  2028. top:0px;
  2029. width:127px;
  2030. height:25px;
  2031. background:inherit;
  2032. background-color:rgba(240, 240, 240, 1);
  2033. border:none;
  2034. border-radius:0px;
  2035. -moz-box-shadow:none;
  2036. -webkit-box-shadow:none;
  2037. box-shadow:none;
  2038. font-family:'Microsoft YaHei', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:10px;
  2042. }
  2043. #u6965.disabled {
  2044. }
  2045. #u6966 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:0px;
  2051. height:0px;
  2052. }
  2053. #u6967_div {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:140px;
  2059. height:30px;
  2060. background:inherit;
  2061. background-color:rgba(255, 255, 255, 1);
  2062. box-sizing:border-box;
  2063. border-width:1px;
  2064. border-style:solid;
  2065. border-color:rgba(215, 215, 215, 1);
  2066. border-radius:4px;
  2067. -moz-box-shadow:none;
  2068. -webkit-box-shadow:none;
  2069. box-shadow:none;
  2070. font-size:11px;
  2071. }
  2072. #u6967 {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:365px;
  2076. top:111px;
  2077. width:140px;
  2078. height:30px;
  2079. display:flex;
  2080. font-size:11px;
  2081. }
  2082. #u6967 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 2px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u6967_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. visibility:hidden;
  2094. }
  2095. #u6968_input {
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:120px;
  2100. height:23px;
  2101. padding:2px 2px 2px 2px;
  2102. font-family:'ArialMT', 'Arial', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:11px;
  2106. letter-spacing:normal;
  2107. color:#AAAAAA;
  2108. vertical-align:none;
  2109. text-align:left;
  2110. text-transform:none;
  2111. background-color:transparent;
  2112. border-color:transparent;
  2113. }
  2114. #u6968_input.disabled {
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:120px;
  2119. height:23px;
  2120. padding:2px 2px 2px 2px;
  2121. font-family:'ArialMT', 'Arial', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:11px;
  2125. letter-spacing:normal;
  2126. color:#AAAAAA;
  2127. vertical-align:none;
  2128. text-align:left;
  2129. text-transform:none;
  2130. background-color:transparent;
  2131. border-color:transparent;
  2132. }
  2133. #u6968_div {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:0px;
  2137. top:0px;
  2138. width:120px;
  2139. height:23px;
  2140. background:inherit;
  2141. background-color:rgba(255, 255, 255, 1);
  2142. border:none;
  2143. border-radius:0px;
  2144. -moz-box-shadow:none;
  2145. -webkit-box-shadow:none;
  2146. box-shadow:none;
  2147. font-size:11px;
  2148. color:#AAAAAA;
  2149. }
  2150. #u6968 {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:372px;
  2154. top:113px;
  2155. width:120px;
  2156. height:23px;
  2157. display:flex;
  2158. font-size:11px;
  2159. color:#AAAAAA;
  2160. }
  2161. #u6968 .text {
  2162. position:absolute;
  2163. align-self:flex-start;
  2164. padding:2px 2px 2px 2px;
  2165. box-sizing:border-box;
  2166. width:100%;
  2167. }
  2168. #u6968_div.disabled {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:120px;
  2174. height:23px;
  2175. background:inherit;
  2176. background-color:rgba(240, 240, 240, 1);
  2177. border:none;
  2178. border-radius:0px;
  2179. -moz-box-shadow:none;
  2180. -webkit-box-shadow:none;
  2181. box-shadow:none;
  2182. font-size:11px;
  2183. color:#AAAAAA;
  2184. }
  2185. #u6968.disabled {
  2186. }
  2187. .u6968_input_option {
  2188. font-size:11px;
  2189. }
  2190. #u6969 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:365px;
  2194. top:194px;
  2195. width:1206px;
  2196. height:170px;
  2197. }
  2198. #u6970_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:75px;
  2204. height:38px;
  2205. }
  2206. #u6970 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:75px;
  2212. height:38px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:14px;
  2218. color:#FFFFFF;
  2219. }
  2220. #u6970 .text {
  2221. position:absolute;
  2222. align-self:center;
  2223. padding:2px 2px 2px 0px;
  2224. box-sizing:border-box;
  2225. width:100%;
  2226. }
  2227. #u6970_text {
  2228. border-width:0px;
  2229. word-wrap:break-word;
  2230. text-transform:none;
  2231. }
  2232. #u6971_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:132px;
  2238. height:38px;
  2239. }
  2240. #u6971 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:75px;
  2244. top:0px;
  2245. width:132px;
  2246. height:38px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:14px;
  2252. color:#FFFFFF;
  2253. }
  2254. #u6971 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 2px 2px 0px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u6971_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. }
  2266. #u6972_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:75px;
  2272. height:38px;
  2273. }
  2274. #u6972 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:207px;
  2278. top:0px;
  2279. width:75px;
  2280. height:38px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:14px;
  2286. color:#FFFFFF;
  2287. }
  2288. #u6972 .text {
  2289. position:absolute;
  2290. align-self:center;
  2291. padding:2px 2px 2px 0px;
  2292. box-sizing:border-box;
  2293. width:100%;
  2294. }
  2295. #u6972_text {
  2296. border-width:0px;
  2297. word-wrap:break-word;
  2298. text-transform:none;
  2299. }
  2300. #u6973_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:75px;
  2306. height:38px;
  2307. }
  2308. #u6973 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:282px;
  2312. top:0px;
  2313. width:75px;
  2314. height:38px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:14px;
  2320. color:#FFFFFF;
  2321. }
  2322. #u6973 .text {
  2323. position:absolute;
  2324. align-self:center;
  2325. padding:2px 2px 2px 0px;
  2326. box-sizing:border-box;
  2327. width:100%;
  2328. }
  2329. #u6973_text {
  2330. border-width:0px;
  2331. word-wrap:break-word;
  2332. text-transform:none;
  2333. }
  2334. #u6974_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:132px;
  2340. height:38px;
  2341. }
  2342. #u6974 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:357px;
  2346. top:0px;
  2347. width:132px;
  2348. height:38px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:14px;
  2354. color:#FFFFFF;
  2355. }
  2356. #u6974 .text {
  2357. position:absolute;
  2358. align-self:center;
  2359. padding:2px 2px 2px 0px;
  2360. box-sizing:border-box;
  2361. width:100%;
  2362. }
  2363. #u6974_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. }
  2368. #u6975_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:170px;
  2374. height:38px;
  2375. }
  2376. #u6975 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:489px;
  2380. top:0px;
  2381. width:170px;
  2382. height:38px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:14px;
  2388. color:#FFFFFF;
  2389. }
  2390. #u6975 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 2px 2px 0px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u6975_text {
  2398. border-width:0px;
  2399. word-wrap:break-word;
  2400. text-transform:none;
  2401. }
  2402. #u6976_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:170px;
  2408. height:38px;
  2409. }
  2410. #u6976 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:659px;
  2414. top:0px;
  2415. width:170px;
  2416. height:38px;
  2417. display:flex;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:14px;
  2422. color:#FFFFFF;
  2423. }
  2424. #u6976 .text {
  2425. position:absolute;
  2426. align-self:center;
  2427. padding:2px 2px 2px 0px;
  2428. box-sizing:border-box;
  2429. width:100%;
  2430. }
  2431. #u6976_text {
  2432. border-width:0px;
  2433. word-wrap:break-word;
  2434. text-transform:none;
  2435. }
  2436. #u6977_img {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:132px;
  2442. height:38px;
  2443. }
  2444. #u6977 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:829px;
  2448. top:0px;
  2449. width:132px;
  2450. height:38px;
  2451. display:flex;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. font-size:14px;
  2456. color:#FFFFFF;
  2457. }
  2458. #u6977 .text {
  2459. position:absolute;
  2460. align-self:center;
  2461. padding:2px 2px 2px 0px;
  2462. box-sizing:border-box;
  2463. width:100%;
  2464. }
  2465. #u6977_text {
  2466. border-width:0px;
  2467. word-wrap:break-word;
  2468. text-transform:none;
  2469. }
  2470. #u6978_img {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:245px;
  2476. height:38px;
  2477. }
  2478. #u6978 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:961px;
  2482. top:0px;
  2483. width:245px;
  2484. height:38px;
  2485. display:flex;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:14px;
  2490. color:#FFFFFF;
  2491. }
  2492. #u6978 .text {
  2493. position:absolute;
  2494. align-self:center;
  2495. padding:2px 2px 2px 0px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u6978_text {
  2500. border-width:0px;
  2501. word-wrap:break-word;
  2502. text-transform:none;
  2503. }
  2504. #u6979_img {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:75px;
  2510. height:44px;
  2511. }
  2512. #u6979 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:0px;
  2516. top:38px;
  2517. width:75px;
  2518. height:44px;
  2519. display:flex;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:14px;
  2524. color:#333333;
  2525. }
  2526. #u6979 .text {
  2527. position:absolute;
  2528. align-self:center;
  2529. padding:2px 2px 2px 0px;
  2530. box-sizing:border-box;
  2531. width:100%;
  2532. }
  2533. #u6979_text {
  2534. border-width:0px;
  2535. word-wrap:break-word;
  2536. text-transform:none;
  2537. }
  2538. #u6980_img {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:132px;
  2544. height:44px;
  2545. }
  2546. #u6980 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:75px;
  2550. top:38px;
  2551. width:132px;
  2552. height:44px;
  2553. display:flex;
  2554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:14px;
  2558. color:#333333;
  2559. }
  2560. #u6980 .text {
  2561. position:absolute;
  2562. align-self:center;
  2563. padding:2px 2px 2px 0px;
  2564. box-sizing:border-box;
  2565. width:100%;
  2566. }
  2567. #u6980_text {
  2568. border-width:0px;
  2569. word-wrap:break-word;
  2570. text-transform:none;
  2571. }
  2572. #u6981_img {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:75px;
  2578. height:44px;
  2579. }
  2580. #u6981 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:207px;
  2584. top:38px;
  2585. width:75px;
  2586. height:44px;
  2587. display:flex;
  2588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:14px;
  2592. color:#333333;
  2593. }
  2594. #u6981 .text {
  2595. position:absolute;
  2596. align-self:center;
  2597. padding:2px 2px 2px 0px;
  2598. box-sizing:border-box;
  2599. width:100%;
  2600. }
  2601. #u6981_text {
  2602. border-width:0px;
  2603. word-wrap:break-word;
  2604. text-transform:none;
  2605. }
  2606. #u6982_img {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:75px;
  2612. height:44px;
  2613. }
  2614. #u6982 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:282px;
  2618. top:38px;
  2619. width:75px;
  2620. height:44px;
  2621. display:flex;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:14px;
  2626. color:#333333;
  2627. }
  2628. #u6982 .text {
  2629. position:absolute;
  2630. align-self:center;
  2631. padding:2px 2px 2px 0px;
  2632. box-sizing:border-box;
  2633. width:100%;
  2634. }
  2635. #u6982_text {
  2636. border-width:0px;
  2637. word-wrap:break-word;
  2638. text-transform:none;
  2639. }
  2640. #u6983_img {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:132px;
  2646. height:44px;
  2647. }
  2648. #u6983 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:357px;
  2652. top:38px;
  2653. width:132px;
  2654. height:44px;
  2655. display:flex;
  2656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. font-size:14px;
  2660. color:#333333;
  2661. }
  2662. #u6983 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 0px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u6983_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u6984_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:170px;
  2681. height:44px;
  2682. }
  2683. #u6984 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:489px;
  2687. top:38px;
  2688. width:170px;
  2689. height:44px;
  2690. display:flex;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:14px;
  2695. color:#333333;
  2696. }
  2697. #u6984 .text {
  2698. position:absolute;
  2699. align-self:center;
  2700. padding:2px 2px 2px 0px;
  2701. box-sizing:border-box;
  2702. width:100%;
  2703. }
  2704. #u6984_text {
  2705. border-width:0px;
  2706. word-wrap:break-word;
  2707. text-transform:none;
  2708. }
  2709. #u6985_img {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:0px;
  2713. top:0px;
  2714. width:170px;
  2715. height:44px;
  2716. }
  2717. #u6985 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:659px;
  2721. top:38px;
  2722. width:170px;
  2723. height:44px;
  2724. display:flex;
  2725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2726. font-weight:400;
  2727. font-style:normal;
  2728. font-size:14px;
  2729. color:#333333;
  2730. }
  2731. #u6985 .text {
  2732. position:absolute;
  2733. align-self:center;
  2734. padding:2px 2px 2px 0px;
  2735. box-sizing:border-box;
  2736. width:100%;
  2737. }
  2738. #u6985_text {
  2739. border-width:0px;
  2740. word-wrap:break-word;
  2741. text-transform:none;
  2742. }
  2743. #u6986_img {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:132px;
  2749. height:44px;
  2750. }
  2751. #u6986 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:829px;
  2755. top:38px;
  2756. width:132px;
  2757. height:44px;
  2758. display:flex;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:14px;
  2763. color:#1890FF;
  2764. }
  2765. #u6986 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:2px 2px 2px 0px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u6986_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. }
  2777. #u6987_img {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:245px;
  2783. height:44px;
  2784. }
  2785. #u6987 {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:961px;
  2789. top:38px;
  2790. width:245px;
  2791. height:44px;
  2792. display:flex;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:14px;
  2797. color:#1890FF;
  2798. }
  2799. #u6987 .text {
  2800. position:absolute;
  2801. align-self:center;
  2802. padding:2px 2px 2px 0px;
  2803. box-sizing:border-box;
  2804. width:100%;
  2805. }
  2806. #u6987_text {
  2807. border-width:0px;
  2808. word-wrap:break-word;
  2809. text-transform:none;
  2810. }
  2811. #u6988_img {
  2812. border-width:0px;
  2813. position:absolute;
  2814. left:0px;
  2815. top:0px;
  2816. width:75px;
  2817. height:44px;
  2818. }
  2819. #u6988 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:82px;
  2824. width:75px;
  2825. height:44px;
  2826. display:flex;
  2827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2828. font-weight:400;
  2829. font-style:normal;
  2830. font-size:14px;
  2831. color:#333333;
  2832. }
  2833. #u6988 .text {
  2834. position:absolute;
  2835. align-self:center;
  2836. padding:2px 2px 2px 0px;
  2837. box-sizing:border-box;
  2838. width:100%;
  2839. }
  2840. #u6988_text {
  2841. border-width:0px;
  2842. word-wrap:break-word;
  2843. text-transform:none;
  2844. }
  2845. #u6989_img {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:0px;
  2849. top:0px;
  2850. width:132px;
  2851. height:44px;
  2852. }
  2853. #u6989 {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:75px;
  2857. top:82px;
  2858. width:132px;
  2859. height:44px;
  2860. display:flex;
  2861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2862. font-weight:400;
  2863. font-style:normal;
  2864. font-size:14px;
  2865. color:#333333;
  2866. }
  2867. #u6989 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 0px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u6989_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. }
  2879. #u6990_img {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:75px;
  2885. height:44px;
  2886. }
  2887. #u6990 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:207px;
  2891. top:82px;
  2892. width:75px;
  2893. height:44px;
  2894. display:flex;
  2895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:14px;
  2899. color:#333333;
  2900. }
  2901. #u6990 .text {
  2902. position:absolute;
  2903. align-self:center;
  2904. padding:2px 2px 2px 0px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u6990_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. }
  2913. #u6991_img {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:75px;
  2919. height:44px;
  2920. }
  2921. #u6991 {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:282px;
  2925. top:82px;
  2926. width:75px;
  2927. height:44px;
  2928. display:flex;
  2929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2930. font-weight:400;
  2931. font-style:normal;
  2932. font-size:14px;
  2933. color:#333333;
  2934. }
  2935. #u6991 .text {
  2936. position:absolute;
  2937. align-self:center;
  2938. padding:2px 2px 2px 0px;
  2939. box-sizing:border-box;
  2940. width:100%;
  2941. }
  2942. #u6991_text {
  2943. border-width:0px;
  2944. word-wrap:break-word;
  2945. text-transform:none;
  2946. }
  2947. #u6992_img {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:0px;
  2951. top:0px;
  2952. width:132px;
  2953. height:44px;
  2954. }
  2955. #u6992 {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:357px;
  2959. top:82px;
  2960. width:132px;
  2961. height:44px;
  2962. display:flex;
  2963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2964. font-weight:400;
  2965. font-style:normal;
  2966. font-size:14px;
  2967. color:#333333;
  2968. }
  2969. #u6992 .text {
  2970. position:absolute;
  2971. align-self:center;
  2972. padding:2px 2px 2px 0px;
  2973. box-sizing:border-box;
  2974. width:100%;
  2975. }
  2976. #u6992_text {
  2977. border-width:0px;
  2978. word-wrap:break-word;
  2979. text-transform:none;
  2980. visibility:hidden;
  2981. }
  2982. #u6993_img {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:0px;
  2986. top:0px;
  2987. width:170px;
  2988. height:44px;
  2989. }
  2990. #u6993 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:489px;
  2994. top:82px;
  2995. width:170px;
  2996. height:44px;
  2997. display:flex;
  2998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. font-size:14px;
  3002. color:#333333;
  3003. }
  3004. #u6993 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:2px 2px 2px 0px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u6993_text {
  3012. border-width:0px;
  3013. word-wrap:break-word;
  3014. text-transform:none;
  3015. }
  3016. #u6994_img {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:170px;
  3022. height:44px;
  3023. }
  3024. #u6994 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:659px;
  3028. top:82px;
  3029. width:170px;
  3030. height:44px;
  3031. display:flex;
  3032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:14px;
  3036. color:#333333;
  3037. }
  3038. #u6994 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 2px 2px 0px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u6994_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. }
  3050. #u6995_img {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:132px;
  3056. height:44px;
  3057. }
  3058. #u6995 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:829px;
  3062. top:82px;
  3063. width:132px;
  3064. height:44px;
  3065. display:flex;
  3066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3067. font-weight:400;
  3068. font-style:normal;
  3069. font-size:14px;
  3070. color:#1890FF;
  3071. }
  3072. #u6995 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 2px 2px 0px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u6995_text {
  3080. border-width:0px;
  3081. word-wrap:break-word;
  3082. text-transform:none;
  3083. }
  3084. #u6996_img {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:0px;
  3088. top:0px;
  3089. width:245px;
  3090. height:44px;
  3091. }
  3092. #u6996 {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:961px;
  3096. top:82px;
  3097. width:245px;
  3098. height:44px;
  3099. display:flex;
  3100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3101. font-weight:400;
  3102. font-style:normal;
  3103. font-size:14px;
  3104. color:#1890FF;
  3105. }
  3106. #u6996 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 2px 2px 0px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u6996_text {
  3114. border-width:0px;
  3115. word-wrap:break-word;
  3116. text-transform:none;
  3117. }
  3118. #u6997_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:75px;
  3124. height:44px;
  3125. }
  3126. #u6997 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:126px;
  3131. width:75px;
  3132. height:44px;
  3133. display:flex;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:14px;
  3138. color:#333333;
  3139. }
  3140. #u6997 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 2px 2px 0px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u6997_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. }
  3152. #u6998_img {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:132px;
  3158. height:44px;
  3159. }
  3160. #u6998 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:75px;
  3164. top:126px;
  3165. width:132px;
  3166. height:44px;
  3167. display:flex;
  3168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3169. font-weight:400;
  3170. font-style:normal;
  3171. font-size:14px;
  3172. color:#333333;
  3173. }
  3174. #u6998 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 0px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u6998_text {
  3182. border-width:0px;
  3183. word-wrap:break-word;
  3184. text-transform:none;
  3185. }
  3186. #u6999_img {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:75px;
  3192. height:44px;
  3193. }
  3194. #u6999 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:207px;
  3198. top:126px;
  3199. width:75px;
  3200. height:44px;
  3201. display:flex;
  3202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3203. font-weight:400;
  3204. font-style:normal;
  3205. font-size:14px;
  3206. color:#333333;
  3207. }
  3208. #u6999 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:2px 2px 2px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u6999_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. }
  3220. #u7000_img {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:75px;
  3226. height:44px;
  3227. }
  3228. #u7000 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:282px;
  3232. top:126px;
  3233. width:75px;
  3234. height:44px;
  3235. display:flex;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:14px;
  3240. color:#333333;
  3241. }
  3242. #u7000 .text {
  3243. position:absolute;
  3244. align-self:center;
  3245. padding:2px 2px 2px 0px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u7000_text {
  3250. border-width:0px;
  3251. word-wrap:break-word;
  3252. text-transform:none;
  3253. }
  3254. #u7001_img {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:132px;
  3260. height:44px;
  3261. }
  3262. #u7001 {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:357px;
  3266. top:126px;
  3267. width:132px;
  3268. height:44px;
  3269. display:flex;
  3270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3271. font-weight:400;
  3272. font-style:normal;
  3273. font-size:14px;
  3274. color:#333333;
  3275. }
  3276. #u7001 .text {
  3277. position:absolute;
  3278. align-self:center;
  3279. padding:2px 2px 2px 0px;
  3280. box-sizing:border-box;
  3281. width:100%;
  3282. }
  3283. #u7001_text {
  3284. border-width:0px;
  3285. word-wrap:break-word;
  3286. text-transform:none;
  3287. visibility:hidden;
  3288. }
  3289. #u7002_img {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:170px;
  3295. height:44px;
  3296. }
  3297. #u7002 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:489px;
  3301. top:126px;
  3302. width:170px;
  3303. height:44px;
  3304. display:flex;
  3305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:14px;
  3309. color:#333333;
  3310. }
  3311. #u7002 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 0px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u7002_text {
  3319. border-width:0px;
  3320. word-wrap:break-word;
  3321. text-transform:none;
  3322. }
  3323. #u7003_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:170px;
  3329. height:44px;
  3330. }
  3331. #u7003 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:659px;
  3335. top:126px;
  3336. width:170px;
  3337. height:44px;
  3338. display:flex;
  3339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. font-size:14px;
  3343. color:#333333;
  3344. }
  3345. #u7003 .text {
  3346. position:absolute;
  3347. align-self:center;
  3348. padding:2px 2px 2px 0px;
  3349. box-sizing:border-box;
  3350. width:100%;
  3351. }
  3352. #u7003_text {
  3353. border-width:0px;
  3354. word-wrap:break-word;
  3355. text-transform:none;
  3356. }
  3357. #u7004_img {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:132px;
  3363. height:44px;
  3364. }
  3365. #u7004 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:829px;
  3369. top:126px;
  3370. width:132px;
  3371. height:44px;
  3372. display:flex;
  3373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. font-size:14px;
  3377. color:#1890FF;
  3378. }
  3379. #u7004 .text {
  3380. position:absolute;
  3381. align-self:center;
  3382. padding:2px 2px 2px 0px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u7004_text {
  3387. border-width:0px;
  3388. word-wrap:break-word;
  3389. text-transform:none;
  3390. }
  3391. #u7005_img {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:245px;
  3397. height:44px;
  3398. }
  3399. #u7005 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:961px;
  3403. top:126px;
  3404. width:245px;
  3405. height:44px;
  3406. display:flex;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:14px;
  3411. color:#1890FF;
  3412. }
  3413. #u7005 .text {
  3414. position:absolute;
  3415. align-self:center;
  3416. padding:2px 2px 2px 0px;
  3417. box-sizing:border-box;
  3418. width:100%;
  3419. }
  3420. #u7005_text {
  3421. border-width:0px;
  3422. word-wrap:break-word;
  3423. text-transform:none;
  3424. }
  3425. #u7006 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:0px;
  3429. top:0px;
  3430. width:0px;
  3431. height:0px;
  3432. }
  3433. #u7007_div {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:100px;
  3439. height:100px;
  3440. background:inherit;
  3441. background-color:rgba(255, 255, 255, 1);
  3442. box-sizing:border-box;
  3443. border-width:1px;
  3444. border-style:solid;
  3445. border-color:rgba(242, 242, 242, 1);
  3446. border-radius:4px;
  3447. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3448. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3449. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  3450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3451. font-weight:400;
  3452. font-style:normal;
  3453. font-size:14px;
  3454. text-align:left;
  3455. }
  3456. #u7007 {
  3457. border-width:0px;
  3458. position:absolute;
  3459. left:1449px;
  3460. top:352px;
  3461. width:100px;
  3462. height:100px;
  3463. display:flex;
  3464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3465. font-weight:400;
  3466. font-style:normal;
  3467. font-size:14px;
  3468. text-align:left;
  3469. }
  3470. #u7007 .text {
  3471. position:absolute;
  3472. align-self:center;
  3473. padding:2px 2px 2px 2px;
  3474. box-sizing:border-box;
  3475. width:100%;
  3476. }
  3477. #u7007_text {
  3478. border-width:0px;
  3479. word-wrap:break-word;
  3480. text-transform:none;
  3481. visibility:hidden;
  3482. }
  3483. #u7008_div {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:0px;
  3487. top:0px;
  3488. width:85px;
  3489. height:40px;
  3490. background:inherit;
  3491. background-color:rgba(255, 255, 255, 1);
  3492. box-sizing:border-box;
  3493. border-width:1px;
  3494. border-style:solid;
  3495. border-color:rgba(215, 215, 215, 1);
  3496. border-left:0px;
  3497. border-top:0px;
  3498. border-right:0px;
  3499. border-radius:0px;
  3500. border-bottom-right-radius:0px;
  3501. border-bottom-left-radius:0px;
  3502. -moz-box-shadow:none;
  3503. -webkit-box-shadow:none;
  3504. box-shadow:none;
  3505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:14px;
  3509. }
  3510. #u7008 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:1457px;
  3514. top:362px;
  3515. width:85px;
  3516. height:40px;
  3517. display:flex;
  3518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:14px;
  3522. }
  3523. #u7008 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:2px 2px 2px 2px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u7008_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. }
  3535. #u7009_div {
  3536. border-width:0px;
  3537. position:absolute;
  3538. left:0px;
  3539. top:0px;
  3540. width:85px;
  3541. height:40px;
  3542. background:inherit;
  3543. background-color:rgba(255, 255, 255, 1);
  3544. border:none;
  3545. border-left:0px;
  3546. border-top:0px;
  3547. border-right:0px;
  3548. border-radius:0px;
  3549. border-bottom-right-radius:0px;
  3550. border-bottom-left-radius:0px;
  3551. -moz-box-shadow:none;
  3552. -webkit-box-shadow:none;
  3553. box-shadow:none;
  3554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3555. font-weight:400;
  3556. font-style:normal;
  3557. font-size:14px;
  3558. color:#D9001B;
  3559. }
  3560. #u7009 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:1457px;
  3564. top:402px;
  3565. width:85px;
  3566. height:40px;
  3567. display:flex;
  3568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3569. font-weight:400;
  3570. font-style:normal;
  3571. font-size:14px;
  3572. color:#D9001B;
  3573. }
  3574. #u7009 .text {
  3575. position:absolute;
  3576. align-self:center;
  3577. padding:2px 2px 2px 2px;
  3578. box-sizing:border-box;
  3579. width:100%;
  3580. }
  3581. #u7009_text {
  3582. border-width:0px;
  3583. word-wrap:break-word;
  3584. text-transform:none;
  3585. }
  3586. #u7010 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:0px;
  3592. height:0px;
  3593. }
  3594. #u7011_div {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:800px;
  3600. height:60px;
  3601. background:inherit;
  3602. background-color:rgba(255, 255, 255, 1);
  3603. box-sizing:border-box;
  3604. border-width:1px;
  3605. border-style:solid;
  3606. border-color:rgba(242, 242, 242, 1);
  3607. border-radius:0px;
  3608. -moz-box-shadow:none;
  3609. -webkit-box-shadow:none;
  3610. box-shadow:none;
  3611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3612. font-weight:400;
  3613. font-style:normal;
  3614. font-size:14px;
  3615. color:#AAAAAA;
  3616. text-align:center;
  3617. line-height:30px;
  3618. }
  3619. #u7011 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:1664px;
  3623. top:50px;
  3624. width:800px;
  3625. height:60px;
  3626. display:flex;
  3627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3628. font-weight:400;
  3629. font-style:normal;
  3630. font-size:14px;
  3631. color:#AAAAAA;
  3632. text-align:center;
  3633. line-height:30px;
  3634. }
  3635. #u7011 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:5px 10px 5px 10px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u7011_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u7012_div {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:137px;
  3654. height:35px;
  3655. background:inherit;
  3656. background-color:rgba(255, 255, 255, 0);
  3657. border:none;
  3658. border-top:0px;
  3659. border-right:0px;
  3660. border-bottom:0px;
  3661. border-radius:0px;
  3662. border-top-left-radius:0px;
  3663. border-bottom-left-radius:0px;
  3664. -moz-box-shadow:none;
  3665. -webkit-box-shadow:none;
  3666. box-shadow:none;
  3667. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3668. font-weight:500;
  3669. font-style:normal;
  3670. font-size:18px;
  3671. }
  3672. #u7012 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:1695px;
  3676. top:63px;
  3677. width:137px;
  3678. height:35px;
  3679. display:flex;
  3680. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3681. font-weight:500;
  3682. font-style:normal;
  3683. font-size:18px;
  3684. }
  3685. #u7012 .text {
  3686. position:absolute;
  3687. align-self:center;
  3688. padding:5px 10px 5px 0px;
  3689. box-sizing:border-box;
  3690. width:100%;
  3691. }
  3692. #u7012_text {
  3693. border-width:0px;
  3694. white-space:nowrap;
  3695. text-transform:none;
  3696. }
  3697. #u7013_div {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:40px;
  3703. height:40px;
  3704. background:inherit;
  3705. background-color:rgba(255, 255, 255, 0);
  3706. border:none;
  3707. border-top:0px;
  3708. border-right:0px;
  3709. border-bottom:0px;
  3710. border-radius:0px;
  3711. border-top-left-radius:0px;
  3712. border-bottom-left-radius:0px;
  3713. -moz-box-shadow:none;
  3714. -webkit-box-shadow:none;
  3715. box-shadow:none;
  3716. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3717. font-weight:500;
  3718. font-style:normal;
  3719. font-size:24px;
  3720. text-align:center;
  3721. }
  3722. #u7013 {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:2424px;
  3726. top:50px;
  3727. width:40px;
  3728. height:40px;
  3729. display:flex;
  3730. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3731. font-weight:500;
  3732. font-style:normal;
  3733. font-size:24px;
  3734. text-align:center;
  3735. }
  3736. #u7013 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:5px 10px 5px 0px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u7013_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. }
  3748. #u7014_div {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:800px;
  3754. height:1140px;
  3755. background:inherit;
  3756. background-color:rgba(255, 255, 255, 1);
  3757. box-sizing:border-box;
  3758. border-width:1px;
  3759. border-style:solid;
  3760. border-color:rgba(242, 242, 242, 1);
  3761. border-radius:0px;
  3762. -moz-box-shadow:none;
  3763. -webkit-box-shadow:none;
  3764. box-shadow:none;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:14px;
  3769. color:#AAAAAA;
  3770. text-align:center;
  3771. line-height:30px;
  3772. }
  3773. #u7014 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:1664px;
  3777. top:110px;
  3778. width:800px;
  3779. height:1140px;
  3780. display:flex;
  3781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. font-size:14px;
  3785. color:#AAAAAA;
  3786. text-align:center;
  3787. line-height:30px;
  3788. }
  3789. #u7014 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:5px 10px 5px 10px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u7014_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u7015 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:0px;
  3808. height:0px;
  3809. }
  3810. #u7016_div {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:800px;
  3816. height:60px;
  3817. background:inherit;
  3818. background-color:rgba(255, 255, 255, 1);
  3819. box-sizing:border-box;
  3820. border-width:1px;
  3821. border-style:solid;
  3822. border-color:rgba(215, 215, 215, 1);
  3823. border-radius:0px;
  3824. -moz-box-shadow:none;
  3825. -webkit-box-shadow:none;
  3826. box-shadow:none;
  3827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3828. font-weight:400;
  3829. font-style:normal;
  3830. font-size:14px;
  3831. color:#AAAAAA;
  3832. text-align:center;
  3833. line-height:30px;
  3834. }
  3835. #u7016 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:1664px;
  3839. top:1190px;
  3840. width:800px;
  3841. height:60px;
  3842. display:flex;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:14px;
  3847. color:#AAAAAA;
  3848. text-align:center;
  3849. line-height:30px;
  3850. }
  3851. #u7016 .text {
  3852. position:absolute;
  3853. align-self:center;
  3854. padding:5px 10px 5px 10px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u7016_text {
  3859. border-width:0px;
  3860. word-wrap:break-word;
  3861. text-transform:none;
  3862. visibility:hidden;
  3863. }
  3864. #u7017_div {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:80px;
  3870. height:30px;
  3871. background:inherit;
  3872. background-color:rgba(24, 144, 255, 1);
  3873. border:none;
  3874. border-radius:4px;
  3875. -moz-box-shadow:none;
  3876. -webkit-box-shadow:none;
  3877. box-shadow:none;
  3878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3879. font-weight:400;
  3880. font-style:normal;
  3881. font-size:14px;
  3882. color:#FFFFFF;
  3883. }
  3884. #u7017 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:2344px;
  3888. top:1205px;
  3889. width:80px;
  3890. height:30px;
  3891. display:flex;
  3892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3893. font-weight:400;
  3894. font-style:normal;
  3895. font-size:14px;
  3896. color:#FFFFFF;
  3897. }
  3898. #u7017 .text {
  3899. position:absolute;
  3900. align-self:center;
  3901. padding:2px 2px 2px 2px;
  3902. box-sizing:border-box;
  3903. width:100%;
  3904. }
  3905. #u7017_text {
  3906. border-width:0px;
  3907. word-wrap:break-word;
  3908. text-transform:none;
  3909. }
  3910. #u7018_div {
  3911. border-width:0px;
  3912. position:absolute;
  3913. left:0px;
  3914. top:0px;
  3915. width:80px;
  3916. height:30px;
  3917. background:inherit;
  3918. background-color:rgba(255, 255, 255, 1);
  3919. box-sizing:border-box;
  3920. border-width:1px;
  3921. border-style:solid;
  3922. border-color:rgba(170, 170, 170, 1);
  3923. border-radius:4px;
  3924. -moz-box-shadow:none;
  3925. -webkit-box-shadow:none;
  3926. box-shadow:none;
  3927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3928. font-weight:400;
  3929. font-style:normal;
  3930. font-size:14px;
  3931. }
  3932. #u7018 {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:2254px;
  3936. top:1205px;
  3937. width:80px;
  3938. height:30px;
  3939. display:flex;
  3940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3941. font-weight:400;
  3942. font-style:normal;
  3943. font-size:14px;
  3944. }
  3945. #u7018 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 2px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u7018_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. }
  3957. #u7019 {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:0px;
  3963. height:0px;
  3964. }
  3965. #u7020 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:0px;
  3971. height:0px;
  3972. }
  3973. #u7021_div {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:300px;
  3979. height:40px;
  3980. background:inherit;
  3981. background-color:rgba(255, 255, 255, 1);
  3982. box-sizing:border-box;
  3983. border-width:1px;
  3984. border-style:solid;
  3985. border-color:rgba(201, 201, 201, 1);
  3986. border-radius:4px;
  3987. -moz-box-shadow:none;
  3988. -webkit-box-shadow:none;
  3989. box-shadow:none;
  3990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:14px;
  3994. text-align:right;
  3995. }
  3996. #u7021 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:2057px;
  4000. top:218px;
  4001. width:300px;
  4002. height:40px;
  4003. display:flex;
  4004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4005. font-weight:400;
  4006. font-style:normal;
  4007. font-size:14px;
  4008. text-align:right;
  4009. }
  4010. #u7021 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 8px 2px 8px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u7021_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. visibility:hidden;
  4022. }
  4023. #u7022_input {
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:279px;
  4028. height:33px;
  4029. padding:2px 2px 2px 2px;
  4030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4031. font-weight:400;
  4032. font-style:normal;
  4033. font-size:14px;
  4034. letter-spacing:normal;
  4035. color:#D7D7D7;
  4036. vertical-align:none;
  4037. text-align:left;
  4038. text-transform:none;
  4039. background-color:transparent;
  4040. border-color:transparent;
  4041. }
  4042. #u7022_input.disabled {
  4043. position:absolute;
  4044. left:0px;
  4045. top:0px;
  4046. width:279px;
  4047. height:33px;
  4048. padding:2px 2px 2px 2px;
  4049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4050. font-weight:400;
  4051. font-style:normal;
  4052. font-size:14px;
  4053. letter-spacing:normal;
  4054. color:#D7D7D7;
  4055. vertical-align:none;
  4056. text-align:left;
  4057. text-transform:none;
  4058. background-color:transparent;
  4059. border-color:transparent;
  4060. }
  4061. #u7022_div {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:279px;
  4067. height:33px;
  4068. background:inherit;
  4069. background-color:rgba(255, 255, 255, 0);
  4070. border:none;
  4071. border-radius:0px;
  4072. -moz-box-shadow:none;
  4073. -webkit-box-shadow:none;
  4074. box-shadow:none;
  4075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4076. font-weight:400;
  4077. font-style:normal;
  4078. font-size:14px;
  4079. color:#D7D7D7;
  4080. }
  4081. #u7022 {
  4082. border-width:0px;
  4083. position:absolute;
  4084. left:2062px;
  4085. top:221px;
  4086. width:279px;
  4087. height:33px;
  4088. display:flex;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:14px;
  4093. color:#D7D7D7;
  4094. }
  4095. #u7022 .text {
  4096. position:absolute;
  4097. align-self:center;
  4098. padding:2px 2px 2px 2px;
  4099. box-sizing:border-box;
  4100. width:100%;
  4101. }
  4102. #u7022_div.disabled {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:279px;
  4108. height:33px;
  4109. background:inherit;
  4110. background-color:rgba(240, 240, 240, 1);
  4111. border:none;
  4112. border-radius:0px;
  4113. -moz-box-shadow:none;
  4114. -webkit-box-shadow:none;
  4115. box-shadow:none;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:14px;
  4120. color:#D7D7D7;
  4121. }
  4122. #u7022.disabled {
  4123. }
  4124. #u7023_div {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:0px;
  4128. top:0px;
  4129. width:92px;
  4130. height:40px;
  4131. background:inherit;
  4132. background-color:rgba(255, 255, 255, 0);
  4133. border:none;
  4134. border-left:0px;
  4135. border-top:0px;
  4136. border-right:0px;
  4137. border-radius:0px;
  4138. border-bottom-right-radius:0px;
  4139. border-bottom-left-radius:0px;
  4140. -moz-box-shadow:none;
  4141. -webkit-box-shadow:none;
  4142. box-shadow:none;
  4143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4144. font-weight:400;
  4145. font-style:normal;
  4146. font-size:14px;
  4147. }
  4148. #u7023 {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:2057px;
  4152. top:178px;
  4153. width:92px;
  4154. height:40px;
  4155. display:flex;
  4156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4157. font-weight:400;
  4158. font-style:normal;
  4159. font-size:14px;
  4160. }
  4161. #u7023 .text {
  4162. position:absolute;
  4163. align-self:center;
  4164. padding:0px 0px 0px 0px;
  4165. box-sizing:border-box;
  4166. width:100%;
  4167. }
  4168. #u7023_text {
  4169. border-width:0px;
  4170. white-space:nowrap;
  4171. text-transform:none;
  4172. }
  4173. #u7024 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:0px;
  4177. top:0px;
  4178. width:0px;
  4179. height:0px;
  4180. }
  4181. #u7025_div {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:0px;
  4185. top:0px;
  4186. width:300px;
  4187. height:80px;
  4188. background:inherit;
  4189. background-color:rgba(255, 255, 255, 1);
  4190. box-sizing:border-box;
  4191. border-width:1px;
  4192. border-style:solid;
  4193. border-color:rgba(201, 201, 201, 1);
  4194. border-radius:4px;
  4195. -moz-box-shadow:none;
  4196. -webkit-box-shadow:none;
  4197. box-shadow:none;
  4198. font-family:'Microsoft YaHei', sans-serif;
  4199. font-weight:400;
  4200. font-style:normal;
  4201. font-size:14px;
  4202. color:#CCCCCC;
  4203. text-align:left;
  4204. }
  4205. #u7025 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:2057px;
  4209. top:462px;
  4210. width:300px;
  4211. height:80px;
  4212. display:flex;
  4213. font-family:'Microsoft YaHei', sans-serif;
  4214. font-weight:400;
  4215. font-style:normal;
  4216. font-size:14px;
  4217. color:#CCCCCC;
  4218. text-align:left;
  4219. }
  4220. #u7025 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:2px 8px 2px 8px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u7025_text {
  4228. border-width:0px;
  4229. word-wrap:break-word;
  4230. text-transform:none;
  4231. visibility:hidden;
  4232. }
  4233. #u7026_input {
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:279px;
  4238. height:33px;
  4239. padding:2px 2px 2px 2px;
  4240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:14px;
  4244. letter-spacing:normal;
  4245. color:#D7D7D7;
  4246. vertical-align:none;
  4247. text-align:left;
  4248. text-transform:none;
  4249. background-color:transparent;
  4250. border-color:transparent;
  4251. }
  4252. #u7026_input.disabled {
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:279px;
  4257. height:33px;
  4258. padding:2px 2px 2px 2px;
  4259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4260. font-weight:400;
  4261. font-style:normal;
  4262. font-size:14px;
  4263. letter-spacing:normal;
  4264. color:#D7D7D7;
  4265. vertical-align:none;
  4266. text-align:left;
  4267. text-transform:none;
  4268. background-color:transparent;
  4269. border-color:transparent;
  4270. }
  4271. #u7026_div {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:279px;
  4277. height:33px;
  4278. background:inherit;
  4279. background-color:rgba(255, 255, 255, 0);
  4280. border:none;
  4281. border-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:#D7D7D7;
  4290. }
  4291. #u7026 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:2062px;
  4295. top:465px;
  4296. width:279px;
  4297. height:33px;
  4298. display:flex;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:14px;
  4303. color:#D7D7D7;
  4304. }
  4305. #u7026 .text {
  4306. position:absolute;
  4307. align-self:center;
  4308. padding:2px 2px 2px 2px;
  4309. box-sizing:border-box;
  4310. width:100%;
  4311. }
  4312. #u7026_div.disabled {
  4313. border-width:0px;
  4314. position:absolute;
  4315. left:0px;
  4316. top:0px;
  4317. width:279px;
  4318. height:33px;
  4319. background:inherit;
  4320. background-color:rgba(240, 240, 240, 1);
  4321. border:none;
  4322. border-radius:0px;
  4323. -moz-box-shadow:none;
  4324. -webkit-box-shadow:none;
  4325. box-shadow:none;
  4326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:14px;
  4330. color:#D7D7D7;
  4331. }
  4332. #u7026.disabled {
  4333. }
  4334. #u7027_div {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:64px;
  4340. height:40px;
  4341. background:inherit;
  4342. background-color:rgba(255, 255, 255, 0);
  4343. border:none;
  4344. border-left:0px;
  4345. border-top:0px;
  4346. border-right:0px;
  4347. border-radius:0px;
  4348. border-bottom-right-radius:0px;
  4349. border-bottom-left-radius:0px;
  4350. -moz-box-shadow:none;
  4351. -webkit-box-shadow:none;
  4352. box-shadow:none;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:14px;
  4357. }
  4358. #u7027 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:1717px;
  4362. top:340px;
  4363. width:64px;
  4364. height:40px;
  4365. display:flex;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:14px;
  4370. }
  4371. #u7027 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:0px 0px 0px 0px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u7027_text {
  4379. border-width:0px;
  4380. white-space:nowrap;
  4381. text-transform:none;
  4382. }
  4383. #u7028_div {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:57px;
  4389. height:40px;
  4390. background:inherit;
  4391. background-color:rgba(255, 255, 255, 0);
  4392. border:none;
  4393. border-left:0px;
  4394. border-top:0px;
  4395. border-right:0px;
  4396. border-radius:0px;
  4397. border-bottom-right-radius:0px;
  4398. border-bottom-left-radius:0px;
  4399. -moz-box-shadow:none;
  4400. -webkit-box-shadow:none;
  4401. box-shadow:none;
  4402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4403. font-weight:400;
  4404. font-style:normal;
  4405. font-size:14px;
  4406. }
  4407. #u7028 {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:2057px;
  4411. top:422px;
  4412. width:57px;
  4413. height:40px;
  4414. display:flex;
  4415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4416. font-weight:400;
  4417. font-style:normal;
  4418. font-size:14px;
  4419. }
  4420. #u7028 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:0px 0px 0px 0px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u7028_text {
  4428. border-width:0px;
  4429. white-space:nowrap;
  4430. text-transform:none;
  4431. }
  4432. #u7029_div {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:80px;
  4438. height:80px;
  4439. background:inherit;
  4440. background-color:rgba(255, 255, 255, 1);
  4441. box-sizing:border-box;
  4442. border-width:1px;
  4443. border-style:solid;
  4444. border-color:rgba(201, 201, 201, 1);
  4445. border-radius:4px;
  4446. -moz-box-shadow:none;
  4447. -webkit-box-shadow:none;
  4448. box-shadow:none;
  4449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4450. font-weight:400;
  4451. font-style:normal;
  4452. font-size:28px;
  4453. }
  4454. #u7029 {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:1717px;
  4458. top:460px;
  4459. width:80px;
  4460. height:80px;
  4461. display:flex;
  4462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:28px;
  4466. }
  4467. #u7029 .text {
  4468. position:absolute;
  4469. align-self:center;
  4470. padding:2px 8px 2px 8px;
  4471. box-sizing:border-box;
  4472. width:100%;
  4473. }
  4474. #u7029_text {
  4475. border-width:0px;
  4476. word-wrap:break-word;
  4477. text-transform:none;
  4478. }
  4479. #u7030_div {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:0px;
  4483. top:0px;
  4484. width:85px;
  4485. height:40px;
  4486. background:inherit;
  4487. background-color:rgba(255, 255, 255, 0);
  4488. border:none;
  4489. border-left:0px;
  4490. border-top:0px;
  4491. border-right:0px;
  4492. border-radius:0px;
  4493. border-bottom-right-radius:0px;
  4494. border-bottom-left-radius:0px;
  4495. -moz-box-shadow:none;
  4496. -webkit-box-shadow:none;
  4497. box-shadow:none;
  4498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:14px;
  4502. }
  4503. #u7030 {
  4504. border-width:0px;
  4505. position:absolute;
  4506. left:1717px;
  4507. top:420px;
  4508. width:85px;
  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. }
  4516. #u7030 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:0px 0px 0px 0px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u7030_text {
  4524. border-width:0px;
  4525. white-space:nowrap;
  4526. text-transform:none;
  4527. }
  4528. #u7031_div {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:0px;
  4532. top:0px;
  4533. width:171px;
  4534. height:40px;
  4535. background:inherit;
  4536. background-color:rgba(255, 255, 255, 0);
  4537. border:none;
  4538. border-left:0px;
  4539. border-top:0px;
  4540. border-right:0px;
  4541. border-radius:0px;
  4542. border-bottom-right-radius:0px;
  4543. border-bottom-left-radius:0px;
  4544. -moz-box-shadow:none;
  4545. -webkit-box-shadow:none;
  4546. box-shadow:none;
  4547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:12px;
  4551. color:#7F7F7F;
  4552. }
  4553. #u7031 {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:1807px;
  4557. top:462px;
  4558. width:171px;
  4559. height:40px;
  4560. display:flex;
  4561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:12px;
  4565. color:#7F7F7F;
  4566. }
  4567. #u7031 .text {
  4568. position:absolute;
  4569. align-self:center;
  4570. padding:0px 0px 0px 0px;
  4571. box-sizing:border-box;
  4572. width:100%;
  4573. }
  4574. #u7031_text {
  4575. border-width:0px;
  4576. word-wrap:break-word;
  4577. text-transform:none;
  4578. }
  4579. #u7032_div {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:64px;
  4585. height:40px;
  4586. background:inherit;
  4587. background-color:rgba(255, 255, 255, 0);
  4588. border:none;
  4589. border-left:0px;
  4590. border-top:0px;
  4591. border-right:0px;
  4592. border-radius:0px;
  4593. border-bottom-right-radius:0px;
  4594. border-bottom-left-radius:0px;
  4595. -moz-box-shadow:none;
  4596. -webkit-box-shadow:none;
  4597. box-shadow:none;
  4598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:14px;
  4602. }
  4603. #u7032 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:1717px;
  4607. top:176px;
  4608. width:64px;
  4609. height:40px;
  4610. display:flex;
  4611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. font-size:14px;
  4615. }
  4616. #u7032 .text {
  4617. position:absolute;
  4618. align-self:center;
  4619. padding:0px 0px 0px 0px;
  4620. box-sizing:border-box;
  4621. width:100%;
  4622. }
  4623. #u7032_text {
  4624. border-width:0px;
  4625. white-space:nowrap;
  4626. text-transform:none;
  4627. }
  4628. #u7033 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:0px;
  4634. height:0px;
  4635. }
  4636. #u7034_div {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:300px;
  4642. height:40px;
  4643. background:inherit;
  4644. background-color:rgba(255, 255, 255, 1);
  4645. box-sizing:border-box;
  4646. border-width:1px;
  4647. border-style:solid;
  4648. border-color:rgba(215, 215, 215, 1);
  4649. border-radius:4px;
  4650. -moz-box-shadow:none;
  4651. -webkit-box-shadow:none;
  4652. box-shadow:none;
  4653. font-size:11px;
  4654. }
  4655. #u7034 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:1717px;
  4659. top:218px;
  4660. width:300px;
  4661. height:40px;
  4662. display:flex;
  4663. font-size:11px;
  4664. }
  4665. #u7034 .text {
  4666. position:absolute;
  4667. align-self:center;
  4668. padding:2px 2px 2px 2px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u7034_text {
  4673. border-width:0px;
  4674. word-wrap:break-word;
  4675. text-transform:none;
  4676. visibility:hidden;
  4677. }
  4678. #u7035_input {
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:280px;
  4683. height:31px;
  4684. padding:2px 2px 2px 2px;
  4685. font-family:'ArialMT', 'Arial', sans-serif;
  4686. font-weight:400;
  4687. font-style:normal;
  4688. font-size:11px;
  4689. letter-spacing:normal;
  4690. color:#AAAAAA;
  4691. vertical-align:none;
  4692. text-align:left;
  4693. text-transform:none;
  4694. background-color:transparent;
  4695. border-color:transparent;
  4696. }
  4697. #u7035_input.disabled {
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:280px;
  4702. height:31px;
  4703. padding:2px 2px 2px 2px;
  4704. font-family:'ArialMT', 'Arial', sans-serif;
  4705. font-weight:400;
  4706. font-style:normal;
  4707. font-size:11px;
  4708. letter-spacing:normal;
  4709. color:#AAAAAA;
  4710. vertical-align:none;
  4711. text-align:left;
  4712. text-transform:none;
  4713. background-color:transparent;
  4714. border-color:transparent;
  4715. }
  4716. #u7035_div {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:280px;
  4722. height:31px;
  4723. background:inherit;
  4724. background-color:rgba(255, 255, 255, 1);
  4725. border:none;
  4726. border-radius:0px;
  4727. -moz-box-shadow:none;
  4728. -webkit-box-shadow:none;
  4729. box-shadow:none;
  4730. font-size:11px;
  4731. color:#AAAAAA;
  4732. }
  4733. #u7035 {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:1726px;
  4737. top:221px;
  4738. width:280px;
  4739. height:31px;
  4740. display:flex;
  4741. font-size:11px;
  4742. color:#AAAAAA;
  4743. }
  4744. #u7035 .text {
  4745. position:absolute;
  4746. align-self:flex-start;
  4747. padding:2px 2px 2px 2px;
  4748. box-sizing:border-box;
  4749. width:100%;
  4750. }
  4751. #u7035_div.disabled {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:280px;
  4757. height:31px;
  4758. background:inherit;
  4759. background-color:rgba(240, 240, 240, 1);
  4760. border:none;
  4761. border-radius:0px;
  4762. -moz-box-shadow:none;
  4763. -webkit-box-shadow:none;
  4764. box-shadow:none;
  4765. font-size:11px;
  4766. color:#AAAAAA;
  4767. }
  4768. #u7035.disabled {
  4769. }
  4770. .u7035_input_option {
  4771. font-size:11px;
  4772. }
  4773. #u7036_div {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:64px;
  4779. height:40px;
  4780. background:inherit;
  4781. background-color:rgba(255, 255, 255, 0);
  4782. border:none;
  4783. border-left:0px;
  4784. border-top:0px;
  4785. border-right:0px;
  4786. border-radius:0px;
  4787. border-bottom-right-radius:0px;
  4788. border-bottom-left-radius:0px;
  4789. -moz-box-shadow:none;
  4790. -webkit-box-shadow:none;
  4791. box-shadow:none;
  4792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:14px;
  4796. }
  4797. #u7036 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:1717px;
  4801. top:258px;
  4802. width:64px;
  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. }
  4810. #u7036 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:0px 0px 0px 0px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u7036_text {
  4818. border-width:0px;
  4819. white-space:nowrap;
  4820. text-transform:none;
  4821. }
  4822. #u7037 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:0px;
  4826. top:0px;
  4827. width:0px;
  4828. height:0px;
  4829. }
  4830. #u7038_div {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:300px;
  4836. height:40px;
  4837. background:inherit;
  4838. background-color:rgba(255, 255, 255, 1);
  4839. box-sizing:border-box;
  4840. border-width:1px;
  4841. border-style:solid;
  4842. border-color:rgba(215, 215, 215, 1);
  4843. border-radius:4px;
  4844. -moz-box-shadow:none;
  4845. -webkit-box-shadow:none;
  4846. box-shadow:none;
  4847. font-size:11px;
  4848. }
  4849. #u7038 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:1717px;
  4853. top:300px;
  4854. width:300px;
  4855. height:40px;
  4856. display:flex;
  4857. font-size:11px;
  4858. }
  4859. #u7038 .text {
  4860. position:absolute;
  4861. align-self:center;
  4862. padding:2px 2px 2px 2px;
  4863. box-sizing:border-box;
  4864. width:100%;
  4865. }
  4866. #u7038_text {
  4867. border-width:0px;
  4868. word-wrap:break-word;
  4869. text-transform:none;
  4870. visibility:hidden;
  4871. }
  4872. #u7039_input {
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:280px;
  4877. height:31px;
  4878. padding:2px 2px 2px 2px;
  4879. font-family:'ArialMT', 'Arial', sans-serif;
  4880. font-weight:400;
  4881. font-style:normal;
  4882. font-size:11px;
  4883. letter-spacing:normal;
  4884. color:#AAAAAA;
  4885. vertical-align:none;
  4886. text-align:left;
  4887. text-transform:none;
  4888. background-color:transparent;
  4889. border-color:transparent;
  4890. }
  4891. #u7039_input.disabled {
  4892. position:absolute;
  4893. left:0px;
  4894. top:0px;
  4895. width:280px;
  4896. height:31px;
  4897. padding:2px 2px 2px 2px;
  4898. font-family:'ArialMT', 'Arial', sans-serif;
  4899. font-weight:400;
  4900. font-style:normal;
  4901. font-size:11px;
  4902. letter-spacing:normal;
  4903. color:#AAAAAA;
  4904. vertical-align:none;
  4905. text-align:left;
  4906. text-transform:none;
  4907. background-color:transparent;
  4908. border-color:transparent;
  4909. }
  4910. #u7039_div {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:280px;
  4916. height:31px;
  4917. background:inherit;
  4918. background-color:rgba(255, 255, 255, 1);
  4919. border:none;
  4920. border-radius:0px;
  4921. -moz-box-shadow:none;
  4922. -webkit-box-shadow:none;
  4923. box-shadow:none;
  4924. font-size:11px;
  4925. color:#AAAAAA;
  4926. }
  4927. #u7039 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:1726px;
  4931. top:303px;
  4932. width:280px;
  4933. height:31px;
  4934. display:flex;
  4935. font-size:11px;
  4936. color:#AAAAAA;
  4937. }
  4938. #u7039 .text {
  4939. position:absolute;
  4940. align-self:flex-start;
  4941. padding:2px 2px 2px 2px;
  4942. box-sizing:border-box;
  4943. width:100%;
  4944. }
  4945. #u7039_div.disabled {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:280px;
  4951. height:31px;
  4952. background:inherit;
  4953. background-color:rgba(240, 240, 240, 1);
  4954. border:none;
  4955. border-radius:0px;
  4956. -moz-box-shadow:none;
  4957. -webkit-box-shadow:none;
  4958. box-shadow:none;
  4959. font-size:11px;
  4960. color:#AAAAAA;
  4961. }
  4962. #u7039.disabled {
  4963. }
  4964. .u7039_input_option {
  4965. font-size:11px;
  4966. }
  4967. #u7040_div {
  4968. border-width:0px;
  4969. position:absolute;
  4970. left:0px;
  4971. top:0px;
  4972. width:64px;
  4973. height:40px;
  4974. background:inherit;
  4975. background-color:rgba(255, 255, 255, 0);
  4976. border:none;
  4977. border-left:0px;
  4978. border-top:0px;
  4979. border-right:0px;
  4980. border-radius:0px;
  4981. border-bottom-right-radius:0px;
  4982. border-bottom-left-radius:0px;
  4983. -moz-box-shadow:none;
  4984. -webkit-box-shadow:none;
  4985. box-shadow:none;
  4986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:14px;
  4990. }
  4991. #u7040 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:2057px;
  4995. top:258px;
  4996. width:64px;
  4997. height:40px;
  4998. display:flex;
  4999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5000. font-weight:400;
  5001. font-style:normal;
  5002. font-size:14px;
  5003. }
  5004. #u7040 .text {
  5005. position:absolute;
  5006. align-self:center;
  5007. padding:0px 0px 0px 0px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u7040_text {
  5012. border-width:0px;
  5013. white-space:nowrap;
  5014. text-transform:none;
  5015. }
  5016. #u7041 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:0px;
  5022. height:0px;
  5023. }
  5024. #u7042_div {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:300px;
  5030. height:40px;
  5031. background:inherit;
  5032. background-color:rgba(255, 255, 255, 1);
  5033. box-sizing:border-box;
  5034. border-width:1px;
  5035. border-style:solid;
  5036. border-color:rgba(215, 215, 215, 1);
  5037. border-radius:4px;
  5038. -moz-box-shadow:none;
  5039. -webkit-box-shadow:none;
  5040. box-shadow:none;
  5041. font-size:11px;
  5042. }
  5043. #u7042 {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:2057px;
  5047. top:300px;
  5048. width:300px;
  5049. height:40px;
  5050. display:flex;
  5051. font-size:11px;
  5052. }
  5053. #u7042 .text {
  5054. position:absolute;
  5055. align-self:center;
  5056. padding:2px 2px 2px 2px;
  5057. box-sizing:border-box;
  5058. width:100%;
  5059. }
  5060. #u7042_text {
  5061. border-width:0px;
  5062. word-wrap:break-word;
  5063. text-transform:none;
  5064. visibility:hidden;
  5065. }
  5066. #u7043_input {
  5067. position:absolute;
  5068. left:0px;
  5069. top:0px;
  5070. width:280px;
  5071. height:31px;
  5072. padding:2px 2px 2px 2px;
  5073. font-family:'ArialMT', 'Arial', sans-serif;
  5074. font-weight:400;
  5075. font-style:normal;
  5076. font-size:11px;
  5077. letter-spacing:normal;
  5078. color:#AAAAAA;
  5079. vertical-align:none;
  5080. text-align:left;
  5081. text-transform:none;
  5082. background-color:transparent;
  5083. border-color:transparent;
  5084. }
  5085. #u7043_input.disabled {
  5086. position:absolute;
  5087. left:0px;
  5088. top:0px;
  5089. width:280px;
  5090. height:31px;
  5091. padding:2px 2px 2px 2px;
  5092. font-family:'ArialMT', 'Arial', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:11px;
  5096. letter-spacing:normal;
  5097. color:#AAAAAA;
  5098. vertical-align:none;
  5099. text-align:left;
  5100. text-transform:none;
  5101. background-color:transparent;
  5102. border-color:transparent;
  5103. }
  5104. #u7043_div {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:280px;
  5110. height:31px;
  5111. background:inherit;
  5112. background-color:rgba(255, 255, 255, 1);
  5113. border:none;
  5114. border-radius:0px;
  5115. -moz-box-shadow:none;
  5116. -webkit-box-shadow:none;
  5117. box-shadow:none;
  5118. font-size:11px;
  5119. color:#AAAAAA;
  5120. }
  5121. #u7043 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:2066px;
  5125. top:303px;
  5126. width:280px;
  5127. height:31px;
  5128. display:flex;
  5129. font-size:11px;
  5130. color:#AAAAAA;
  5131. }
  5132. #u7043 .text {
  5133. position:absolute;
  5134. align-self:flex-start;
  5135. padding:2px 2px 2px 2px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u7043_div.disabled {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:280px;
  5145. height:31px;
  5146. background:inherit;
  5147. background-color:rgba(240, 240, 240, 1);
  5148. border:none;
  5149. border-radius:0px;
  5150. -moz-box-shadow:none;
  5151. -webkit-box-shadow:none;
  5152. box-shadow:none;
  5153. font-size:11px;
  5154. color:#AAAAAA;
  5155. }
  5156. #u7043.disabled {
  5157. }
  5158. .u7043_input_option {
  5159. font-size:11px;
  5160. }
  5161. #u7044 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:0px;
  5167. height:0px;
  5168. }
  5169. #u7045_div {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:0px;
  5173. top:0px;
  5174. width:300px;
  5175. height:40px;
  5176. background:inherit;
  5177. background-color:rgba(255, 255, 255, 1);
  5178. box-sizing:border-box;
  5179. border-width:1px;
  5180. border-style:solid;
  5181. border-color:rgba(201, 201, 201, 1);
  5182. border-radius:4px;
  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. text-align:right;
  5191. }
  5192. #u7045 {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:1717px;
  5196. top:380px;
  5197. width:300px;
  5198. height:40px;
  5199. display:flex;
  5200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5201. font-weight:400;
  5202. font-style:normal;
  5203. font-size:14px;
  5204. text-align:right;
  5205. }
  5206. #u7045 .text {
  5207. position:absolute;
  5208. align-self:center;
  5209. padding:2px 8px 2px 8px;
  5210. box-sizing:border-box;
  5211. width:100%;
  5212. }
  5213. #u7045_text {
  5214. border-width:0px;
  5215. word-wrap:break-word;
  5216. text-transform:none;
  5217. visibility:hidden;
  5218. }
  5219. #u7046_input {
  5220. position:absolute;
  5221. left:0px;
  5222. top:0px;
  5223. width:242px;
  5224. height:33px;
  5225. padding:2px 2px 2px 2px;
  5226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5227. font-weight:400;
  5228. font-style:normal;
  5229. font-size:14px;
  5230. letter-spacing:normal;
  5231. color:#D7D7D7;
  5232. vertical-align:none;
  5233. text-align:left;
  5234. text-transform:none;
  5235. background-color:transparent;
  5236. border-color:transparent;
  5237. }
  5238. #u7046_input.disabled {
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:242px;
  5243. height:33px;
  5244. padding:2px 2px 2px 2px;
  5245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:14px;
  5249. letter-spacing:normal;
  5250. color:#D7D7D7;
  5251. vertical-align:none;
  5252. text-align:left;
  5253. text-transform:none;
  5254. background-color:transparent;
  5255. border-color:transparent;
  5256. }
  5257. #u7046_div {
  5258. border-width:0px;
  5259. position:absolute;
  5260. left:0px;
  5261. top:0px;
  5262. width:242px;
  5263. height:33px;
  5264. background:inherit;
  5265. background-color:rgba(255, 255, 255, 0);
  5266. border:none;
  5267. border-radius:0px;
  5268. -moz-box-shadow:none;
  5269. -webkit-box-shadow:none;
  5270. box-shadow:none;
  5271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5272. font-weight:400;
  5273. font-style:normal;
  5274. font-size:14px;
  5275. color:#D7D7D7;
  5276. }
  5277. #u7046 {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:1729px;
  5281. top:383px;
  5282. width:242px;
  5283. height:33px;
  5284. display:flex;
  5285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:14px;
  5289. color:#D7D7D7;
  5290. }
  5291. #u7046 .text {
  5292. position:absolute;
  5293. align-self:center;
  5294. padding:2px 2px 2px 2px;
  5295. box-sizing:border-box;
  5296. width:100%;
  5297. }
  5298. #u7046_div.disabled {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:242px;
  5304. height:33px;
  5305. background:inherit;
  5306. background-color:rgba(240, 240, 240, 1);
  5307. border:none;
  5308. border-radius:0px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5313. font-weight:400;
  5314. font-style:normal;
  5315. font-size:14px;
  5316. color:#D7D7D7;
  5317. }
  5318. #u7046.disabled {
  5319. }
  5320. #u7047_div {
  5321. border-width:0px;
  5322. position:absolute;
  5323. left:0px;
  5324. top:0px;
  5325. width:83px;
  5326. height:35px;
  5327. background:inherit;
  5328. background-color:rgba(255, 255, 255, 0);
  5329. border:none;
  5330. border-top:0px;
  5331. border-right:0px;
  5332. border-bottom:0px;
  5333. border-radius:0px;
  5334. border-top-left-radius:0px;
  5335. border-bottom-left-radius:0px;
  5336. -moz-box-shadow:none;
  5337. -webkit-box-shadow:none;
  5338. box-shadow:none;
  5339. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5340. font-weight:500;
  5341. font-style:normal;
  5342. font-size:18px;
  5343. }
  5344. #u7047 {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:1717px;
  5348. top:131px;
  5349. width:83px;
  5350. height:35px;
  5351. display:flex;
  5352. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5353. font-weight:500;
  5354. font-style:normal;
  5355. font-size:18px;
  5356. }
  5357. #u7047 .text {
  5358. position:absolute;
  5359. align-self:center;
  5360. padding:5px 10px 5px 0px;
  5361. box-sizing:border-box;
  5362. width:100%;
  5363. }
  5364. #u7047_text {
  5365. border-width:0px;
  5366. white-space:nowrap;
  5367. text-transform:none;
  5368. }
  5369. #u7048_div {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:99px;
  5375. height:40px;
  5376. background:inherit;
  5377. background-color:rgba(255, 255, 255, 0);
  5378. border:none;
  5379. border-left:0px;
  5380. border-top:0px;
  5381. border-right:0px;
  5382. border-radius:0px;
  5383. border-bottom-right-radius:0px;
  5384. border-bottom-left-radius:0px;
  5385. -moz-box-shadow:none;
  5386. -webkit-box-shadow:none;
  5387. box-shadow:none;
  5388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. font-size:14px;
  5392. }
  5393. #u7048 {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:2057px;
  5397. top:340px;
  5398. width:99px;
  5399. height:40px;
  5400. display:flex;
  5401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5402. font-weight:400;
  5403. font-style:normal;
  5404. font-size:14px;
  5405. }
  5406. #u7048 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:0px 0px 0px 0px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u7048_text {
  5414. border-width:0px;
  5415. white-space:nowrap;
  5416. text-transform:none;
  5417. }
  5418. #u7049 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:0px;
  5424. height:0px;
  5425. }
  5426. #u7050_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(242, 242, 242, 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:11px;
  5444. }
  5445. #u7050 {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:2057px;
  5449. top:382px;
  5450. width:300px;
  5451. height:40px;
  5452. display:flex;
  5453. font-size:11px;
  5454. }
  5455. #u7050 .text {
  5456. position:absolute;
  5457. align-self:center;
  5458. padding:2px 2px 2px 2px;
  5459. box-sizing:border-box;
  5460. width:100%;
  5461. }
  5462. #u7050_text {
  5463. border-width:0px;
  5464. word-wrap:break-word;
  5465. text-transform:none;
  5466. visibility:hidden;
  5467. }
  5468. #u7051_input {
  5469. position:absolute;
  5470. left:0px;
  5471. top:0px;
  5472. width:291px;
  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:11px;
  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. #u7051_input.disabled {
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:291px;
  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:11px;
  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. #u7051_div {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:0px;
  5510. top:0px;
  5511. width:291px;
  5512. height:31px;
  5513. background:inherit;
  5514. background-color:rgba(242, 242, 242, 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:11px;
  5521. color:#AAAAAA;
  5522. }
  5523. #u7051 {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:2061px;
  5527. top:385px;
  5528. width:291px;
  5529. height:31px;
  5530. display:flex;
  5531. font-size:11px;
  5532. color:#AAAAAA;
  5533. }
  5534. #u7051 .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. #u7051_div.disabled {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:291px;
  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:11px;
  5556. color:#AAAAAA;
  5557. }
  5558. #u7051.disabled {
  5559. }
  5560. .u7051_input_option {
  5561. font-size:11px;
  5562. }
  5563. #u7052_div {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:50px;
  5569. height:40px;
  5570. background:inherit;
  5571. background-color:rgba(255, 255, 255, 0);
  5572. border:none;
  5573. border-top:0px;
  5574. border-right:0px;
  5575. border-bottom:0px;
  5576. border-radius:0px;
  5577. border-top-left-radius:0px;
  5578. border-bottom-left-radius:0px;
  5579. -moz-box-shadow:none;
  5580. -webkit-box-shadow:none;
  5581. box-shadow:none;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:14px;
  5586. }
  5587. #u7052 {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:1717px;
  5591. top:699px;
  5592. width:50px;
  5593. height:40px;
  5594. display:flex;
  5595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5596. font-weight:400;
  5597. font-style:normal;
  5598. font-size:14px;
  5599. }
  5600. #u7052 .text {
  5601. position:absolute;
  5602. align-self:center;
  5603. padding:5px 10px 5px 0px;
  5604. box-sizing:border-box;
  5605. width:100%;
  5606. }
  5607. #u7052_text {
  5608. border-width:0px;
  5609. white-space:nowrap;
  5610. text-transform:none;
  5611. }
  5612. #u7053_div {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:39px;
  5618. height:40px;
  5619. background:inherit;
  5620. background-color:rgba(255, 255, 255, 0);
  5621. border:none;
  5622. border-top:0px;
  5623. border-right:0px;
  5624. border-bottom:0px;
  5625. border-radius:0px;
  5626. border-top-left-radius:0px;
  5627. border-bottom-left-radius:0px;
  5628. -moz-box-shadow:none;
  5629. -webkit-box-shadow:none;
  5630. box-shadow:none;
  5631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5632. font-weight:400;
  5633. font-style:normal;
  5634. font-size:14px;
  5635. }
  5636. #u7053 {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:1717px;
  5640. top:779px;
  5641. width:39px;
  5642. height:40px;
  5643. display:flex;
  5644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5645. font-weight:400;
  5646. font-style:normal;
  5647. font-size:14px;
  5648. }
  5649. #u7053 .text {
  5650. position:absolute;
  5651. align-self:center;
  5652. padding:5px 10px 5px 0px;
  5653. box-sizing:border-box;
  5654. width:100%;
  5655. }
  5656. #u7053_text {
  5657. border-width:0px;
  5658. white-space:nowrap;
  5659. text-transform:none;
  5660. }
  5661. #u7054 {
  5662. border-width:0px;
  5663. position:absolute;
  5664. left:0px;
  5665. top:0px;
  5666. width:0px;
  5667. height:0px;
  5668. }
  5669. #u7055_div {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:684px;
  5675. height:40px;
  5676. background:inherit;
  5677. background-color:rgba(255, 255, 255, 1);
  5678. box-sizing:border-box;
  5679. border-width:1px;
  5680. border-style:solid;
  5681. border-color:rgba(201, 201, 201, 1);
  5682. border-radius:4px;
  5683. -moz-box-shadow:none;
  5684. -webkit-box-shadow:none;
  5685. box-shadow:none;
  5686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5687. font-weight:400;
  5688. font-style:normal;
  5689. font-size:14px;
  5690. text-align:right;
  5691. }
  5692. #u7055 {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:1717px;
  5696. top:741px;
  5697. width:684px;
  5698. height:40px;
  5699. display:flex;
  5700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5701. font-weight:400;
  5702. font-style:normal;
  5703. font-size:14px;
  5704. text-align:right;
  5705. }
  5706. #u7055 .text {
  5707. position:absolute;
  5708. align-self:center;
  5709. padding:2px 8px 2px 8px;
  5710. box-sizing:border-box;
  5711. width:100%;
  5712. }
  5713. #u7055_text {
  5714. border-width:0px;
  5715. word-wrap:break-word;
  5716. text-transform:none;
  5717. visibility:hidden;
  5718. }
  5719. #u7056_input {
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:242px;
  5724. height:33px;
  5725. padding:2px 2px 2px 2px;
  5726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5727. font-weight:400;
  5728. font-style:normal;
  5729. font-size:14px;
  5730. letter-spacing:normal;
  5731. color:#D7D7D7;
  5732. vertical-align:none;
  5733. text-align:left;
  5734. text-transform:none;
  5735. background-color:transparent;
  5736. border-color:transparent;
  5737. }
  5738. #u7056_input.disabled {
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:242px;
  5743. height:33px;
  5744. padding:2px 2px 2px 2px;
  5745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5746. font-weight:400;
  5747. font-style:normal;
  5748. font-size:14px;
  5749. letter-spacing:normal;
  5750. color:#D7D7D7;
  5751. vertical-align:none;
  5752. text-align:left;
  5753. text-transform:none;
  5754. background-color:transparent;
  5755. border-color:transparent;
  5756. }
  5757. #u7056_div {
  5758. border-width:0px;
  5759. position:absolute;
  5760. left:0px;
  5761. top:0px;
  5762. width:242px;
  5763. height:33px;
  5764. background:inherit;
  5765. background-color:rgba(255, 255, 255, 0);
  5766. border:none;
  5767. border-radius:0px;
  5768. -moz-box-shadow:none;
  5769. -webkit-box-shadow:none;
  5770. box-shadow:none;
  5771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:14px;
  5775. color:#D7D7D7;
  5776. }
  5777. #u7056 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:1729px;
  5781. top:744px;
  5782. width:242px;
  5783. height:33px;
  5784. display:flex;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:14px;
  5789. color:#D7D7D7;
  5790. }
  5791. #u7056 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:2px 2px 2px 2px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u7056_div.disabled {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:0px;
  5802. top:0px;
  5803. width:242px;
  5804. height:33px;
  5805. background:inherit;
  5806. background-color:rgba(240, 240, 240, 1);
  5807. border:none;
  5808. border-radius:0px;
  5809. -moz-box-shadow:none;
  5810. -webkit-box-shadow:none;
  5811. box-shadow:none;
  5812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5813. font-weight:400;
  5814. font-style:normal;
  5815. font-size:14px;
  5816. color:#D7D7D7;
  5817. }
  5818. #u7056.disabled {
  5819. }
  5820. #u7057 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:0px;
  5826. height:0px;
  5827. }
  5828. #u7058_div {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:684px;
  5834. height:40px;
  5835. background:inherit;
  5836. background-color:rgba(255, 255, 255, 1);
  5837. box-sizing:border-box;
  5838. border-width:1px;
  5839. border-style:solid;
  5840. border-color:rgba(201, 201, 201, 1);
  5841. border-radius:4px;
  5842. -moz-box-shadow:none;
  5843. -webkit-box-shadow:none;
  5844. box-shadow:none;
  5845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5846. font-weight:400;
  5847. font-style:normal;
  5848. font-size:14px;
  5849. text-align:right;
  5850. }
  5851. #u7058 {
  5852. border-width:0px;
  5853. position:absolute;
  5854. left:1717px;
  5855. top:821px;
  5856. width:684px;
  5857. height:40px;
  5858. display:flex;
  5859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5860. font-weight:400;
  5861. font-style:normal;
  5862. font-size:14px;
  5863. text-align:right;
  5864. }
  5865. #u7058 .text {
  5866. position:absolute;
  5867. align-self:center;
  5868. padding:2px 8px 2px 8px;
  5869. box-sizing:border-box;
  5870. width:100%;
  5871. }
  5872. #u7058_text {
  5873. border-width:0px;
  5874. word-wrap:break-word;
  5875. text-transform:none;
  5876. visibility:hidden;
  5877. }
  5878. #u7059_input {
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:242px;
  5883. height:33px;
  5884. padding:2px 2px 2px 2px;
  5885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5886. font-weight:400;
  5887. font-style:normal;
  5888. font-size:14px;
  5889. letter-spacing:normal;
  5890. color:#D7D7D7;
  5891. vertical-align:none;
  5892. text-align:left;
  5893. text-transform:none;
  5894. background-color:transparent;
  5895. border-color:transparent;
  5896. }
  5897. #u7059_input.disabled {
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:242px;
  5902. height:33px;
  5903. padding:2px 2px 2px 2px;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:14px;
  5908. letter-spacing:normal;
  5909. color:#D7D7D7;
  5910. vertical-align:none;
  5911. text-align:left;
  5912. text-transform:none;
  5913. background-color:transparent;
  5914. border-color:transparent;
  5915. }
  5916. #u7059_div {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:0px;
  5921. width:242px;
  5922. height:33px;
  5923. background:inherit;
  5924. background-color:rgba(255, 255, 255, 0);
  5925. border:none;
  5926. border-radius:0px;
  5927. -moz-box-shadow:none;
  5928. -webkit-box-shadow:none;
  5929. box-shadow:none;
  5930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5931. font-weight:400;
  5932. font-style:normal;
  5933. font-size:14px;
  5934. color:#D7D7D7;
  5935. }
  5936. #u7059 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:1729px;
  5940. top:824px;
  5941. width:242px;
  5942. height:33px;
  5943. display:flex;
  5944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:14px;
  5948. color:#D7D7D7;
  5949. }
  5950. #u7059 .text {
  5951. position:absolute;
  5952. align-self:center;
  5953. padding:2px 2px 2px 2px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u7059_div.disabled {
  5958. border-width:0px;
  5959. position:absolute;
  5960. left:0px;
  5961. top:0px;
  5962. width:242px;
  5963. height:33px;
  5964. background:inherit;
  5965. background-color:rgba(240, 240, 240, 1);
  5966. border:none;
  5967. border-radius:0px;
  5968. -moz-box-shadow:none;
  5969. -webkit-box-shadow:none;
  5970. box-shadow:none;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:14px;
  5975. color:#D7D7D7;
  5976. }
  5977. #u7059.disabled {
  5978. }
  5979. #u7060_div {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:73px;
  5985. height:40px;
  5986. background:inherit;
  5987. background-color:rgba(255, 255, 255, 0);
  5988. border:none;
  5989. border-top:0px;
  5990. border-right:0px;
  5991. border-bottom:0px;
  5992. border-radius:0px;
  5993. border-top-left-radius:0px;
  5994. border-bottom-left-radius:0px;
  5995. -moz-box-shadow:none;
  5996. -webkit-box-shadow:none;
  5997. box-shadow:none;
  5998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5999. font-weight:400;
  6000. font-style:normal;
  6001. font-size:14px;
  6002. }
  6003. #u7060 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:1717px;
  6007. top:619px;
  6008. width:73px;
  6009. height:40px;
  6010. display:flex;
  6011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6012. font-weight:400;
  6013. font-style:normal;
  6014. font-size:14px;
  6015. }
  6016. #u7060 .text {
  6017. position:absolute;
  6018. align-self:center;
  6019. padding:5px 10px 5px 0px;
  6020. box-sizing:border-box;
  6021. width:100%;
  6022. }
  6023. #u7060_text {
  6024. border-width:0px;
  6025. white-space:nowrap;
  6026. text-transform:none;
  6027. }
  6028. #u7061 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:0px;
  6032. top:0px;
  6033. width:0px;
  6034. height:0px;
  6035. }
  6036. #u7062_div {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:684px;
  6042. height:40px;
  6043. background:inherit;
  6044. background-color:rgba(255, 255, 255, 1);
  6045. box-sizing:border-box;
  6046. border-width:1px;
  6047. border-style:solid;
  6048. border-color:rgba(201, 201, 201, 1);
  6049. border-radius:4px;
  6050. -moz-box-shadow:none;
  6051. -webkit-box-shadow:none;
  6052. box-shadow:none;
  6053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:14px;
  6057. text-align:right;
  6058. }
  6059. #u7062 {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:1717px;
  6063. top:661px;
  6064. width:684px;
  6065. height:40px;
  6066. display:flex;
  6067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6068. font-weight:400;
  6069. font-style:normal;
  6070. font-size:14px;
  6071. text-align:right;
  6072. }
  6073. #u7062 .text {
  6074. position:absolute;
  6075. align-self:center;
  6076. padding:2px 8px 2px 8px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u7062_text {
  6081. border-width:0px;
  6082. word-wrap:break-word;
  6083. text-transform:none;
  6084. visibility:hidden;
  6085. }
  6086. #u7063_input {
  6087. position:absolute;
  6088. left:0px;
  6089. top:0px;
  6090. width:242px;
  6091. height:33px;
  6092. padding:2px 2px 2px 2px;
  6093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:14px;
  6097. letter-spacing:normal;
  6098. color:#D7D7D7;
  6099. vertical-align:none;
  6100. text-align:left;
  6101. text-transform:none;
  6102. background-color:transparent;
  6103. border-color:transparent;
  6104. }
  6105. #u7063_input.disabled {
  6106. position:absolute;
  6107. left:0px;
  6108. top:0px;
  6109. width:242px;
  6110. height:33px;
  6111. padding:2px 2px 2px 2px;
  6112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6113. font-weight:400;
  6114. font-style:normal;
  6115. font-size:14px;
  6116. letter-spacing:normal;
  6117. color:#D7D7D7;
  6118. vertical-align:none;
  6119. text-align:left;
  6120. text-transform:none;
  6121. background-color:transparent;
  6122. border-color:transparent;
  6123. }
  6124. #u7063_div {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:242px;
  6130. height:33px;
  6131. background:inherit;
  6132. background-color:rgba(255, 255, 255, 0);
  6133. border:none;
  6134. border-radius:0px;
  6135. -moz-box-shadow:none;
  6136. -webkit-box-shadow:none;
  6137. box-shadow:none;
  6138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:14px;
  6142. color:#D7D7D7;
  6143. }
  6144. #u7063 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:1729px;
  6148. top:664px;
  6149. width:242px;
  6150. height:33px;
  6151. display:flex;
  6152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6153. font-weight:400;
  6154. font-style:normal;
  6155. font-size:14px;
  6156. color:#D7D7D7;
  6157. }
  6158. #u7063 .text {
  6159. position:absolute;
  6160. align-self:center;
  6161. padding:2px 2px 2px 2px;
  6162. box-sizing:border-box;
  6163. width:100%;
  6164. }
  6165. #u7063_div.disabled {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:0px;
  6169. top:0px;
  6170. width:242px;
  6171. height:33px;
  6172. background:inherit;
  6173. background-color:rgba(240, 240, 240, 1);
  6174. border:none;
  6175. border-radius:0px;
  6176. -moz-box-shadow:none;
  6177. -webkit-box-shadow:none;
  6178. box-shadow:none;
  6179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6180. font-weight:400;
  6181. font-style:normal;
  6182. font-size:14px;
  6183. color:#D7D7D7;
  6184. }
  6185. #u7063.disabled {
  6186. }
  6187. #u7064_div {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:119px;
  6193. height:35px;
  6194. background:inherit;
  6195. background-color:rgba(255, 255, 255, 0);
  6196. border:none;
  6197. border-top:0px;
  6198. border-right:0px;
  6199. border-bottom:0px;
  6200. border-radius:0px;
  6201. border-top-left-radius:0px;
  6202. border-bottom-left-radius:0px;
  6203. -moz-box-shadow:none;
  6204. -webkit-box-shadow:none;
  6205. box-shadow:none;
  6206. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6207. font-weight:500;
  6208. font-style:normal;
  6209. font-size:18px;
  6210. }
  6211. #u7064 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:1717px;
  6215. top:572px;
  6216. width:119px;
  6217. height:35px;
  6218. display:flex;
  6219. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6220. font-weight:500;
  6221. font-style:normal;
  6222. font-size:18px;
  6223. }
  6224. #u7064 .text {
  6225. position:absolute;
  6226. align-self:center;
  6227. padding:5px 10px 5px 0px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u7064_text {
  6232. border-width:0px;
  6233. white-space:nowrap;
  6234. text-transform:none;
  6235. }
  6236. #u7065 {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:0px;
  6242. height:0px;
  6243. }
  6244. #u7066_div {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:0px;
  6248. top:0px;
  6249. width:720px;
  6250. height:60px;
  6251. background:inherit;
  6252. background-color:rgba(255, 255, 255, 1);
  6253. box-sizing:border-box;
  6254. border-width:1px;
  6255. border-style:solid;
  6256. border-color:rgba(242, 242, 242, 1);
  6257. border-radius:0px;
  6258. -moz-box-shadow:none;
  6259. -webkit-box-shadow:none;
  6260. box-shadow:none;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. font-size:14px;
  6265. color:#AAAAAA;
  6266. text-align:center;
  6267. line-height:30px;
  6268. }
  6269. #u7066 {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:411px;
  6273. top:469px;
  6274. width:720px;
  6275. height:60px;
  6276. display:flex;
  6277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:14px;
  6281. color:#AAAAAA;
  6282. text-align:center;
  6283. line-height:30px;
  6284. }
  6285. #u7066 .text {
  6286. position:absolute;
  6287. align-self:center;
  6288. padding:5px 10px 5px 10px;
  6289. box-sizing:border-box;
  6290. width:100%;
  6291. }
  6292. #u7066_text {
  6293. border-width:0px;
  6294. word-wrap:break-word;
  6295. text-transform:none;
  6296. visibility:hidden;
  6297. }
  6298. #u7067_div {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:0px;
  6302. top:0px;
  6303. width:101px;
  6304. height:35px;
  6305. background:inherit;
  6306. background-color:rgba(255, 255, 255, 0);
  6307. border:none;
  6308. border-top:0px;
  6309. border-right:0px;
  6310. border-bottom:0px;
  6311. border-radius:0px;
  6312. border-top-left-radius:0px;
  6313. border-bottom-left-radius:0px;
  6314. -moz-box-shadow:none;
  6315. -webkit-box-shadow:none;
  6316. box-shadow:none;
  6317. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6318. font-weight:500;
  6319. font-style:normal;
  6320. font-size:18px;
  6321. }
  6322. #u7067 {
  6323. border-width:0px;
  6324. position:absolute;
  6325. left:442px;
  6326. top:482px;
  6327. width:101px;
  6328. height:35px;
  6329. display:flex;
  6330. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6331. font-weight:500;
  6332. font-style:normal;
  6333. font-size:18px;
  6334. }
  6335. #u7067 .text {
  6336. position:absolute;
  6337. align-self:center;
  6338. padding:5px 10px 5px 0px;
  6339. box-sizing:border-box;
  6340. width:100%;
  6341. }
  6342. #u7067_text {
  6343. border-width:0px;
  6344. white-space:nowrap;
  6345. text-transform:none;
  6346. }
  6347. #u7068_div {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:40px;
  6353. height:40px;
  6354. background:inherit;
  6355. background-color:rgba(255, 255, 255, 0);
  6356. border:none;
  6357. border-top:0px;
  6358. border-right:0px;
  6359. border-bottom:0px;
  6360. border-radius:0px;
  6361. border-top-left-radius:0px;
  6362. border-bottom-left-radius:0px;
  6363. -moz-box-shadow:none;
  6364. -webkit-box-shadow:none;
  6365. box-shadow:none;
  6366. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6367. font-weight:500;
  6368. font-style:normal;
  6369. font-size:24px;
  6370. text-align:center;
  6371. }
  6372. #u7068 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:1091px;
  6376. top:469px;
  6377. width:40px;
  6378. height:40px;
  6379. display:flex;
  6380. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6381. font-weight:500;
  6382. font-style:normal;
  6383. font-size:24px;
  6384. text-align:center;
  6385. }
  6386. #u7068 .text {
  6387. position:absolute;
  6388. align-self:center;
  6389. padding:5px 10px 5px 0px;
  6390. box-sizing:border-box;
  6391. width:100%;
  6392. }
  6393. #u7068_text {
  6394. border-width:0px;
  6395. word-wrap:break-word;
  6396. text-transform:none;
  6397. }
  6398. #u7069_div {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:0px;
  6402. top:0px;
  6403. width:720px;
  6404. height:205px;
  6405. background:inherit;
  6406. background-color:rgba(255, 255, 255, 1);
  6407. box-sizing:border-box;
  6408. border-width:1px;
  6409. border-style:solid;
  6410. border-color:rgba(242, 242, 242, 1);
  6411. border-radius:0px;
  6412. -moz-box-shadow:none;
  6413. -webkit-box-shadow:none;
  6414. box-shadow:none;
  6415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:14px;
  6419. color:#AAAAAA;
  6420. text-align:center;
  6421. line-height:30px;
  6422. }
  6423. #u7069 {
  6424. border-width:0px;
  6425. position:absolute;
  6426. left:411px;
  6427. top:529px;
  6428. width:720px;
  6429. height:205px;
  6430. display:flex;
  6431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6432. font-weight:400;
  6433. font-style:normal;
  6434. font-size:14px;
  6435. color:#AAAAAA;
  6436. text-align:center;
  6437. line-height:30px;
  6438. }
  6439. #u7069 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:5px 10px 5px 10px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u7069_text {
  6447. border-width:0px;
  6448. word-wrap:break-word;
  6449. text-transform:none;
  6450. visibility:hidden;
  6451. }
  6452. #u7070 {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:0px;
  6458. height:0px;
  6459. }
  6460. #u7071_div {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:720px;
  6466. height:60px;
  6467. background:inherit;
  6468. background-color:rgba(255, 255, 255, 1);
  6469. box-sizing:border-box;
  6470. border-width:1px;
  6471. border-style:solid;
  6472. border-color:rgba(215, 215, 215, 1);
  6473. border-radius:0px;
  6474. -moz-box-shadow:none;
  6475. -webkit-box-shadow:none;
  6476. box-shadow:none;
  6477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6478. font-weight:400;
  6479. font-style:normal;
  6480. font-size:14px;
  6481. color:#AAAAAA;
  6482. text-align:center;
  6483. line-height:30px;
  6484. }
  6485. #u7071 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:411px;
  6489. top:674px;
  6490. width:720px;
  6491. height:60px;
  6492. display:flex;
  6493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6494. font-weight:400;
  6495. font-style:normal;
  6496. font-size:14px;
  6497. color:#AAAAAA;
  6498. text-align:center;
  6499. line-height:30px;
  6500. }
  6501. #u7071 .text {
  6502. position:absolute;
  6503. align-self:center;
  6504. padding:5px 10px 5px 10px;
  6505. box-sizing:border-box;
  6506. width:100%;
  6507. }
  6508. #u7071_text {
  6509. border-width:0px;
  6510. word-wrap:break-word;
  6511. text-transform:none;
  6512. visibility:hidden;
  6513. }
  6514. #u7072_div {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:80px;
  6520. height:30px;
  6521. background:inherit;
  6522. background-color:rgba(24, 144, 255, 1);
  6523. border:none;
  6524. border-radius:4px;
  6525. -moz-box-shadow:none;
  6526. -webkit-box-shadow:none;
  6527. box-shadow:none;
  6528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6529. font-weight:400;
  6530. font-style:normal;
  6531. font-size:14px;
  6532. color:#FFFFFF;
  6533. }
  6534. #u7072 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:1011px;
  6538. top:689px;
  6539. width:80px;
  6540. height:30px;
  6541. display:flex;
  6542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6543. font-weight:400;
  6544. font-style:normal;
  6545. font-size:14px;
  6546. color:#FFFFFF;
  6547. }
  6548. #u7072 .text {
  6549. position:absolute;
  6550. align-self:center;
  6551. padding:2px 2px 2px 2px;
  6552. box-sizing:border-box;
  6553. width:100%;
  6554. }
  6555. #u7072_text {
  6556. border-width:0px;
  6557. word-wrap:break-word;
  6558. text-transform:none;
  6559. }
  6560. #u7073_div {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:80px;
  6566. height:30px;
  6567. background:inherit;
  6568. background-color:rgba(255, 255, 255, 1);
  6569. box-sizing:border-box;
  6570. border-width:1px;
  6571. border-style:solid;
  6572. border-color:rgba(170, 170, 170, 1);
  6573. border-radius:4px;
  6574. -moz-box-shadow:none;
  6575. -webkit-box-shadow:none;
  6576. box-shadow:none;
  6577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6578. font-weight:400;
  6579. font-style:normal;
  6580. font-size:14px;
  6581. }
  6582. #u7073 {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:921px;
  6586. top:689px;
  6587. width:80px;
  6588. height:30px;
  6589. display:flex;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:14px;
  6594. }
  6595. #u7073 .text {
  6596. position:absolute;
  6597. align-self:center;
  6598. padding:2px 2px 2px 2px;
  6599. box-sizing:border-box;
  6600. width:100%;
  6601. }
  6602. #u7073_text {
  6603. border-width:0px;
  6604. word-wrap:break-word;
  6605. text-transform:none;
  6606. }
  6607. #u7074_div {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:0px;
  6611. top:0px;
  6612. width:99px;
  6613. height:40px;
  6614. background:inherit;
  6615. background-color:rgba(255, 255, 255, 0);
  6616. border:none;
  6617. border-left:0px;
  6618. border-top:0px;
  6619. border-right:0px;
  6620. border-radius:0px;
  6621. border-bottom-right-radius:0px;
  6622. border-bottom-left-radius:0px;
  6623. -moz-box-shadow:none;
  6624. -webkit-box-shadow:none;
  6625. box-shadow:none;
  6626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6627. font-weight:400;
  6628. font-style:normal;
  6629. font-size:14px;
  6630. }
  6631. #u7074 {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:464px;
  6635. top:554px;
  6636. width:99px;
  6637. height:40px;
  6638. display:flex;
  6639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6640. font-weight:400;
  6641. font-style:normal;
  6642. font-size:14px;
  6643. }
  6644. #u7074 .text {
  6645. position:absolute;
  6646. align-self:center;
  6647. padding:0px 0px 0px 0px;
  6648. box-sizing:border-box;
  6649. width:100%;
  6650. }
  6651. #u7074_text {
  6652. border-width:0px;
  6653. white-space:nowrap;
  6654. text-transform:none;
  6655. }
  6656. #u7075 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:0px;
  6662. height:0px;
  6663. }
  6664. #u7076_div {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:0px;
  6668. top:0px;
  6669. width:589px;
  6670. height:40px;
  6671. background:inherit;
  6672. background-color:rgba(255, 255, 255, 1);
  6673. box-sizing:border-box;
  6674. border-width:1px;
  6675. border-style:solid;
  6676. border-color:rgba(215, 215, 215, 1);
  6677. border-radius:4px;
  6678. -moz-box-shadow:none;
  6679. -webkit-box-shadow:none;
  6680. box-shadow:none;
  6681. font-size:11px;
  6682. }
  6683. #u7076 {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:464px;
  6687. top:594px;
  6688. width:589px;
  6689. height:40px;
  6690. display:flex;
  6691. font-size:11px;
  6692. }
  6693. #u7076 .text {
  6694. position:absolute;
  6695. align-self:center;
  6696. padding:2px 2px 2px 2px;
  6697. box-sizing:border-box;
  6698. width:100%;
  6699. }
  6700. #u7076_text {
  6701. border-width:0px;
  6702. word-wrap:break-word;
  6703. text-transform:none;
  6704. visibility:hidden;
  6705. }
  6706. #u7077_input {
  6707. position:absolute;
  6708. left:0px;
  6709. top:0px;
  6710. width:571px;
  6711. height:31px;
  6712. padding:2px 2px 2px 2px;
  6713. font-family:'ArialMT', 'Arial', sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:11px;
  6717. letter-spacing:normal;
  6718. color:#AAAAAA;
  6719. vertical-align:none;
  6720. text-align:left;
  6721. text-transform:none;
  6722. background-color:transparent;
  6723. border-color:transparent;
  6724. }
  6725. #u7077_input.disabled {
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:571px;
  6730. height:31px;
  6731. padding:2px 2px 2px 2px;
  6732. font-family:'ArialMT', 'Arial', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:11px;
  6736. letter-spacing:normal;
  6737. color:#AAAAAA;
  6738. vertical-align:none;
  6739. text-align:left;
  6740. text-transform:none;
  6741. background-color:transparent;
  6742. border-color:transparent;
  6743. }
  6744. #u7077_div {
  6745. border-width:0px;
  6746. position:absolute;
  6747. left:0px;
  6748. top:0px;
  6749. width:571px;
  6750. height:31px;
  6751. background:inherit;
  6752. background-color:rgba(255, 255, 255, 1);
  6753. border:none;
  6754. border-radius:0px;
  6755. -moz-box-shadow:none;
  6756. -webkit-box-shadow:none;
  6757. box-shadow:none;
  6758. font-size:11px;
  6759. color:#AAAAAA;
  6760. }
  6761. #u7077 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:473px;
  6765. top:597px;
  6766. width:571px;
  6767. height:31px;
  6768. display:flex;
  6769. font-size:11px;
  6770. color:#AAAAAA;
  6771. }
  6772. #u7077 .text {
  6773. position:absolute;
  6774. align-self:flex-start;
  6775. padding:2px 2px 2px 2px;
  6776. box-sizing:border-box;
  6777. width:100%;
  6778. }
  6779. #u7077_div.disabled {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:571px;
  6785. height:31px;
  6786. background:inherit;
  6787. background-color:rgba(240, 240, 240, 1);
  6788. border:none;
  6789. border-radius:0px;
  6790. -moz-box-shadow:none;
  6791. -webkit-box-shadow:none;
  6792. box-shadow:none;
  6793. font-size:11px;
  6794. color:#AAAAAA;
  6795. }
  6796. #u7077.disabled {
  6797. }
  6798. .u7077_input_option {
  6799. font-size:11px;
  6800. }
  6801. #u7078 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:0px;
  6805. top:0px;
  6806. width:0px;
  6807. height:0px;
  6808. }
  6809. #u7079_div {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:0px;
  6813. top:0px;
  6814. width:200px;
  6815. height:1180px;
  6816. background:inherit;
  6817. background-color:rgba(255, 255, 255, 1);
  6818. border:none;
  6819. border-radius:0px;
  6820. -moz-box-shadow:none;
  6821. -webkit-box-shadow:none;
  6822. box-shadow:none;
  6823. }
  6824. #u7079 {
  6825. border-width:0px;
  6826. position:absolute;
  6827. left:120px;
  6828. top:50px;
  6829. width:200px;
  6830. height:1180px;
  6831. display:flex;
  6832. }
  6833. #u7079 .text {
  6834. position:absolute;
  6835. align-self:center;
  6836. padding:2px 2px 2px 2px;
  6837. box-sizing:border-box;
  6838. width:100%;
  6839. }
  6840. #u7079_text {
  6841. border-width:0px;
  6842. word-wrap:break-word;
  6843. text-transform:none;
  6844. visibility:hidden;
  6845. }
  6846. #u7080_div {
  6847. border-width:0px;
  6848. position:absolute;
  6849. left:0px;
  6850. top:0px;
  6851. width:200px;
  6852. height:60px;
  6853. background:inherit;
  6854. background-color:rgba(224, 231, 247, 1);
  6855. border:none;
  6856. border-radius:0px;
  6857. -moz-box-shadow:none;
  6858. -webkit-box-shadow:none;
  6859. box-shadow:none;
  6860. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6861. font-weight:500;
  6862. font-style:normal;
  6863. font-size:18px;
  6864. }
  6865. #u7080 {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:120px;
  6869. top:50px;
  6870. width:200px;
  6871. height:60px;
  6872. display:flex;
  6873. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6874. font-weight:500;
  6875. font-style:normal;
  6876. font-size:18px;
  6877. }
  6878. #u7080 .text {
  6879. position:absolute;
  6880. align-self:center;
  6881. padding:0px 0px 0px 20px;
  6882. box-sizing:border-box;
  6883. width:100%;
  6884. }
  6885. #u7080_text {
  6886. border-width:0px;
  6887. word-wrap:break-word;
  6888. text-transform:none;
  6889. }
  6890. #u7081_div {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:0px;
  6894. top:0px;
  6895. width:55px;
  6896. height:22px;
  6897. background:inherit;
  6898. background-color:rgba(255, 255, 255, 0);
  6899. border:none;
  6900. border-radius:0px;
  6901. -moz-box-shadow:none;
  6902. -webkit-box-shadow:none;
  6903. box-shadow:none;
  6904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6905. font-weight:400;
  6906. font-style:normal;
  6907. font-size:16px;
  6908. }
  6909. #u7081 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:147px;
  6913. top:171px;
  6914. width:55px;
  6915. height:22px;
  6916. display:flex;
  6917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6918. font-weight:400;
  6919. font-style:normal;
  6920. font-size:16px;
  6921. }
  6922. #u7081 .text {
  6923. position:absolute;
  6924. align-self:flex-start;
  6925. padding:0px 0px 0px 0px;
  6926. box-sizing:border-box;
  6927. width:100%;
  6928. }
  6929. #u7081_text {
  6930. border-width:0px;
  6931. white-space:nowrap;
  6932. text-transform:none;
  6933. }
  6934. #u7082_div {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:81px;
  6940. height:22px;
  6941. background:inherit;
  6942. background-color:rgba(255, 255, 255, 0);
  6943. border:none;
  6944. border-radius:0px;
  6945. -moz-box-shadow:none;
  6946. -webkit-box-shadow:none;
  6947. box-shadow:none;
  6948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6949. font-weight:400;
  6950. font-style:normal;
  6951. font-size:16px;
  6952. }
  6953. #u7082 {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:147px;
  6957. top:213px;
  6958. width:81px;
  6959. height:22px;
  6960. display:flex;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:16px;
  6965. }
  6966. #u7082 .text {
  6967. position:absolute;
  6968. align-self:flex-start;
  6969. padding:0px 0px 0px 0px;
  6970. box-sizing:border-box;
  6971. width:100%;
  6972. }
  6973. #u7082_text {
  6974. border-width:0px;
  6975. white-space:nowrap;
  6976. text-transform:none;
  6977. }
  6978. #u7083_div {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:65px;
  6984. height:22px;
  6985. background:inherit;
  6986. background-color:rgba(255, 255, 255, 0);
  6987. border:none;
  6988. border-radius:0px;
  6989. -moz-box-shadow:none;
  6990. -webkit-box-shadow:none;
  6991. box-shadow:none;
  6992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6993. font-weight:400;
  6994. font-style:normal;
  6995. font-size:16px;
  6996. }
  6997. #u7083 {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:147px;
  7001. top:255px;
  7002. width:65px;
  7003. height:22px;
  7004. display:flex;
  7005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:16px;
  7009. }
  7010. #u7083 .text {
  7011. position:absolute;
  7012. align-self:flex-start;
  7013. padding:0px 0px 0px 0px;
  7014. box-sizing:border-box;
  7015. width:100%;
  7016. }
  7017. #u7083_text {
  7018. border-width:0px;
  7019. white-space:nowrap;
  7020. text-transform:none;
  7021. }
  7022. #u7084_img {
  7023. border-width:0px;
  7024. position:absolute;
  7025. left:0px;
  7026. top:0px;
  7027. width:201px;
  7028. height:2px;
  7029. }
  7030. #u7084 {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:120px;
  7034. top:304px;
  7035. width:200px;
  7036. height:1px;
  7037. display:flex;
  7038. }
  7039. #u7084 .text {
  7040. position:absolute;
  7041. align-self:center;
  7042. padding:2px 2px 2px 2px;
  7043. box-sizing:border-box;
  7044. width:100%;
  7045. }
  7046. #u7084_text {
  7047. border-width:0px;
  7048. word-wrap:break-word;
  7049. text-transform:none;
  7050. visibility:hidden;
  7051. }
  7052. #u7085_div {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:81px;
  7058. height:22px;
  7059. background:inherit;
  7060. background-color:rgba(255, 255, 255, 0);
  7061. border:none;
  7062. border-radius:0px;
  7063. -moz-box-shadow:none;
  7064. -webkit-box-shadow:none;
  7065. box-shadow:none;
  7066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:16px;
  7070. }
  7071. #u7085 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:150px;
  7075. top:360px;
  7076. width:81px;
  7077. height:22px;
  7078. display:flex;
  7079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7080. font-weight:400;
  7081. font-style:normal;
  7082. font-size:16px;
  7083. }
  7084. #u7085 .text {
  7085. position:absolute;
  7086. align-self:flex-start;
  7087. padding:0px 0px 0px 0px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u7085_text {
  7092. border-width:0px;
  7093. white-space:nowrap;
  7094. text-transform:none;
  7095. }
  7096. #u7086_div {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:61px;
  7102. height:17px;
  7103. background:inherit;
  7104. background-color:rgba(255, 255, 255, 0);
  7105. border:none;
  7106. border-radius:0px;
  7107. -moz-box-shadow:none;
  7108. -webkit-box-shadow:none;
  7109. box-shadow:none;
  7110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:12px;
  7114. color:#AAAAAA;
  7115. }
  7116. #u7086 {
  7117. border-width:0px;
  7118. position:absolute;
  7119. left:150px;
  7120. top:324px;
  7121. width:61px;
  7122. height:17px;
  7123. display:flex;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:12px;
  7128. color:#AAAAAA;
  7129. }
  7130. #u7086 .text {
  7131. position:absolute;
  7132. align-self:flex-start;
  7133. padding:0px 0px 0px 0px;
  7134. box-sizing:border-box;
  7135. width:100%;
  7136. }
  7137. #u7086_text {
  7138. border-width:0px;
  7139. white-space:nowrap;
  7140. text-transform:none;
  7141. }
  7142. #u7087_img {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:201px;
  7148. height:2px;
  7149. }
  7150. #u7087 {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:120px;
  7154. top:402px;
  7155. width:200px;
  7156. height:1px;
  7157. display:flex;
  7158. }
  7159. #u7087 .text {
  7160. position:absolute;
  7161. align-self:center;
  7162. padding:2px 2px 2px 2px;
  7163. box-sizing:border-box;
  7164. width:100%;
  7165. }
  7166. #u7087_text {
  7167. border-width:0px;
  7168. word-wrap:break-word;
  7169. text-transform:none;
  7170. visibility:hidden;
  7171. }
  7172. #u7088_div {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:65px;
  7178. height:22px;
  7179. background:inherit;
  7180. background-color:rgba(255, 255, 255, 0);
  7181. border:none;
  7182. border-radius:0px;
  7183. -moz-box-shadow:none;
  7184. -webkit-box-shadow:none;
  7185. box-shadow:none;
  7186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7187. font-weight:400;
  7188. font-style:normal;
  7189. font-size:16px;
  7190. }
  7191. #u7088 {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:150px;
  7195. top:458px;
  7196. width:65px;
  7197. height:22px;
  7198. display:flex;
  7199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7200. font-weight:400;
  7201. font-style:normal;
  7202. font-size:16px;
  7203. }
  7204. #u7088 .text {
  7205. position:absolute;
  7206. align-self:flex-start;
  7207. padding:0px 0px 0px 0px;
  7208. box-sizing:border-box;
  7209. width:100%;
  7210. }
  7211. #u7088_text {
  7212. border-width:0px;
  7213. white-space:nowrap;
  7214. text-transform:none;
  7215. }
  7216. #u7089_div {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:49px;
  7222. height:17px;
  7223. background:inherit;
  7224. background-color:rgba(255, 255, 255, 0);
  7225. border:none;
  7226. border-radius:0px;
  7227. -moz-box-shadow:none;
  7228. -webkit-box-shadow:none;
  7229. box-shadow:none;
  7230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7231. font-weight:400;
  7232. font-style:normal;
  7233. font-size:12px;
  7234. color:#AAAAAA;
  7235. }
  7236. #u7089 {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:150px;
  7240. top:422px;
  7241. width:49px;
  7242. height:17px;
  7243. display:flex;
  7244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7245. font-weight:400;
  7246. font-style:normal;
  7247. font-size:12px;
  7248. color:#AAAAAA;
  7249. }
  7250. #u7089 .text {
  7251. position:absolute;
  7252. align-self:flex-start;
  7253. padding:0px 0px 0px 0px;
  7254. box-sizing:border-box;
  7255. width:100%;
  7256. }
  7257. #u7089_text {
  7258. border-width:0px;
  7259. white-space:nowrap;
  7260. text-transform:none;
  7261. }
  7262. #u7090_div {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:0px;
  7266. top:0px;
  7267. width:49px;
  7268. height:17px;
  7269. background:inherit;
  7270. background-color:rgba(255, 255, 255, 0);
  7271. border:none;
  7272. border-radius:0px;
  7273. -moz-box-shadow:none;
  7274. -webkit-box-shadow:none;
  7275. box-shadow:none;
  7276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:12px;
  7280. color:#AAAAAA;
  7281. }
  7282. #u7090 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:147px;
  7286. top:130px;
  7287. width:49px;
  7288. height:17px;
  7289. display:flex;
  7290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7291. font-weight:400;
  7292. font-style:normal;
  7293. font-size:12px;
  7294. color:#AAAAAA;
  7295. }
  7296. #u7090 .text {
  7297. position:absolute;
  7298. align-self:flex-start;
  7299. padding:0px 0px 0px 0px;
  7300. box-sizing:border-box;
  7301. width:100%;
  7302. }
  7303. #u7090_text {
  7304. border-width:0px;
  7305. white-space:nowrap;
  7306. text-transform:none;
  7307. }
  7308. #u7091_div {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:65px;
  7314. height:22px;
  7315. background:inherit;
  7316. background-color:rgba(255, 255, 255, 0);
  7317. border:none;
  7318. border-radius:0px;
  7319. -moz-box-shadow:none;
  7320. -webkit-box-shadow:none;
  7321. box-shadow:none;
  7322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7323. font-weight:400;
  7324. font-style:normal;
  7325. font-size:16px;
  7326. }
  7327. #u7091 {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:150px;
  7331. top:500px;
  7332. width:65px;
  7333. height:22px;
  7334. display:flex;
  7335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7336. font-weight:400;
  7337. font-style:normal;
  7338. font-size:16px;
  7339. }
  7340. #u7091 .text {
  7341. position:absolute;
  7342. align-self:flex-start;
  7343. padding:0px 0px 0px 0px;
  7344. box-sizing:border-box;
  7345. width:100%;
  7346. }
  7347. #u7091_text {
  7348. border-width:0px;
  7349. white-space:nowrap;
  7350. text-transform:none;
  7351. }