styles.css 106 KB

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