styles.css 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-90px;
  6. width:1000px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u97213 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u97214_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:937px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u97214 {
  53. border-width:0px;
  54. position:absolute;
  55. left:90px;
  56. top:50px;
  57. width:1000px;
  58. height:937px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u97214 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u97214_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u97215_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:287px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(215, 215, 215, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u97215 {
  107. border-width:0px;
  108. position:absolute;
  109. left:90px;
  110. top:700px;
  111. width:1000px;
  112. height:287px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u97215 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u97215_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u97216_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:1000px;
  141. height:640px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 1);
  144. box-sizing:border-box;
  145. border-width:1px;
  146. border-style:solid;
  147. border-color:rgba(215, 215, 215, 1);
  148. border-radius:0px;
  149. -moz-box-shadow:none;
  150. -webkit-box-shadow:none;
  151. box-shadow:none;
  152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  153. font-weight:400;
  154. font-style:normal;
  155. font-size:14px;
  156. color:#AAAAAA;
  157. text-align:center;
  158. line-height:30px;
  159. }
  160. #u97216 {
  161. border-width:0px;
  162. position:absolute;
  163. left:90px;
  164. top:50px;
  165. width:1000px;
  166. height:640px;
  167. display:flex;
  168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  169. font-weight:400;
  170. font-style:normal;
  171. font-size:14px;
  172. color:#AAAAAA;
  173. text-align:center;
  174. line-height:30px;
  175. }
  176. #u97216 .text {
  177. position:absolute;
  178. align-self:center;
  179. padding:5px 10px 5px 10px;
  180. box-sizing:border-box;
  181. width:100%;
  182. }
  183. #u97216_text {
  184. border-width:0px;
  185. word-wrap:break-word;
  186. text-transform:none;
  187. visibility:hidden;
  188. }
  189. #u97217_div {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:119px;
  195. height:35px;
  196. background:inherit;
  197. background-color:rgba(255, 255, 255, 0);
  198. border:none;
  199. border-top:0px;
  200. border-right:0px;
  201. border-bottom:0px;
  202. border-radius:0px;
  203. border-top-left-radius:0px;
  204. border-bottom-left-radius:0px;
  205. -moz-box-shadow:none;
  206. -webkit-box-shadow:none;
  207. box-shadow:none;
  208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  209. font-weight:500;
  210. font-style:normal;
  211. font-size:18px;
  212. }
  213. #u97217 {
  214. border-width:0px;
  215. position:absolute;
  216. left:110px;
  217. top:68px;
  218. width:119px;
  219. height:35px;
  220. display:flex;
  221. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  222. font-weight:500;
  223. font-style:normal;
  224. font-size:18px;
  225. }
  226. #u97217 .text {
  227. position:absolute;
  228. align-self:center;
  229. padding:5px 10px 5px 0px;
  230. box-sizing:border-box;
  231. width:100%;
  232. }
  233. #u97217_text {
  234. border-width:0px;
  235. white-space:nowrap;
  236. text-transform:none;
  237. }
  238. #u97218 {
  239. border-width:0px;
  240. position:absolute;
  241. left:0px;
  242. top:0px;
  243. width:0px;
  244. height:0px;
  245. }
  246. #u97219_div {
  247. border-width:0px;
  248. position:absolute;
  249. left:0px;
  250. top:0px;
  251. width:40px;
  252. height:40px;
  253. background:inherit;
  254. background-color:rgba(255, 255, 255, 0);
  255. border:none;
  256. border-top:0px;
  257. border-right:0px;
  258. border-bottom:0px;
  259. border-radius:0px;
  260. border-top-left-radius:0px;
  261. border-bottom-left-radius:0px;
  262. -moz-box-shadow:none;
  263. -webkit-box-shadow:none;
  264. box-shadow:none;
  265. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  266. font-weight:500;
  267. font-style:normal;
  268. font-size:14px;
  269. text-align:center;
  270. }
  271. #u97219 {
  272. border-width:0px;
  273. position:absolute;
  274. left:1050px;
  275. top:50px;
  276. width:40px;
  277. height:40px;
  278. display:flex;
  279. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  280. font-weight:500;
  281. font-style:normal;
  282. font-size:14px;
  283. text-align:center;
  284. }
  285. #u97219 .text {
  286. position:absolute;
  287. align-self:center;
  288. padding:5px 10px 5px 0px;
  289. box-sizing:border-box;
  290. width:100%;
  291. }
  292. #u97219_text {
  293. border-width:0px;
  294. word-wrap:break-word;
  295. text-transform:none;
  296. }
  297. #u97220_img {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:13px;
  303. height:13px;
  304. }
  305. #u97220 {
  306. border-width:0px;
  307. position:absolute;
  308. left:1038px;
  309. top:66px;
  310. width:13px;
  311. height:13px;
  312. display:flex;
  313. font-size:14px;
  314. }
  315. #u97220 .text {
  316. position:absolute;
  317. align-self:center;
  318. padding:2px 2px 2px 2px;
  319. box-sizing:border-box;
  320. width:100%;
  321. }
  322. #u97220_text {
  323. border-width:0px;
  324. word-wrap:break-word;
  325. text-transform:none;
  326. visibility:hidden;
  327. }
  328. #u97221 {
  329. border-width:0px;
  330. position:absolute;
  331. left:0px;
  332. top:0px;
  333. width:0px;
  334. height:0px;
  335. }
  336. #u97222_div {
  337. border-width:0px;
  338. position:absolute;
  339. left:0px;
  340. top:0px;
  341. width:1000px;
  342. height:60px;
  343. background:inherit;
  344. background-color:rgba(255, 255, 255, 1);
  345. box-sizing:border-box;
  346. border-width:1px;
  347. border-style:solid;
  348. border-color:rgba(215, 215, 215, 1);
  349. border-radius:0px;
  350. -moz-box-shadow:none;
  351. -webkit-box-shadow:none;
  352. box-shadow:none;
  353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  354. font-weight:400;
  355. font-style:normal;
  356. font-size:14px;
  357. color:#AAAAAA;
  358. text-align:center;
  359. line-height:30px;
  360. }
  361. #u97222 {
  362. border-width:0px;
  363. position:absolute;
  364. left:90px;
  365. top:927px;
  366. width:1000px;
  367. height:60px;
  368. display:flex;
  369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  370. font-weight:400;
  371. font-style:normal;
  372. font-size:14px;
  373. color:#AAAAAA;
  374. text-align:center;
  375. line-height:30px;
  376. }
  377. #u97222 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:5px 10px 5px 10px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u97222_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u97223_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:80px;
  396. height:30px;
  397. background:inherit;
  398. background-color:rgba(24, 144, 255, 1);
  399. border:none;
  400. border-radius:4px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. font-size:14px;
  408. color:#FFFFFF;
  409. }
  410. #u97223 {
  411. border-width:0px;
  412. position:absolute;
  413. left:970px;
  414. top:942px;
  415. width:80px;
  416. height:30px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. font-size:14px;
  422. color:#FFFFFF;
  423. }
  424. #u97223 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:2px 2px 2px 2px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u97223_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u97224_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:80px;
  442. height:30px;
  443. background:inherit;
  444. background-color:rgba(255, 255, 255, 1);
  445. box-sizing:border-box;
  446. border-width:1px;
  447. border-style:solid;
  448. border-color:rgba(170, 170, 170, 1);
  449. border-radius:4px;
  450. -moz-box-shadow:none;
  451. -webkit-box-shadow:none;
  452. box-shadow:none;
  453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  454. font-weight:400;
  455. font-style:normal;
  456. font-size:14px;
  457. }
  458. #u97224 {
  459. border-width:0px;
  460. position:absolute;
  461. left:870px;
  462. top:942px;
  463. width:80px;
  464. height:30px;
  465. display:flex;
  466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:14px;
  470. }
  471. #u97224 .text {
  472. position:absolute;
  473. align-self:center;
  474. padding:2px 2px 2px 2px;
  475. box-sizing:border-box;
  476. width:100%;
  477. }
  478. #u97224_text {
  479. border-width:0px;
  480. word-wrap:break-word;
  481. text-transform:none;
  482. }
  483. #u97225_div {
  484. border-width:0px;
  485. position:absolute;
  486. left:0px;
  487. top:0px;
  488. width:50px;
  489. height:30px;
  490. background:inherit;
  491. background-color:rgba(255, 255, 255, 0);
  492. border:none;
  493. border-top:0px;
  494. border-right:0px;
  495. border-bottom:0px;
  496. border-radius:0px;
  497. border-top-left-radius:0px;
  498. border-bottom-left-radius:0px;
  499. -moz-box-shadow:none;
  500. -webkit-box-shadow:none;
  501. box-shadow:none;
  502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  503. font-weight:400;
  504. font-style:normal;
  505. font-size:14px;
  506. color:#7F7F7F;
  507. text-align:right;
  508. }
  509. #u97225 {
  510. border-width:0px;
  511. position:absolute;
  512. left:126px;
  513. top:135px;
  514. width:50px;
  515. height:30px;
  516. display:flex;
  517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  518. font-weight:400;
  519. font-style:normal;
  520. font-size:14px;
  521. color:#7F7F7F;
  522. text-align:right;
  523. }
  524. #u97225 .text {
  525. position:absolute;
  526. align-self:center;
  527. padding:5px 0px 5px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u97225_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u97226 {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:0px;
  542. height:0px;
  543. }
  544. #u97227_div {
  545. border-width:0px;
  546. position:absolute;
  547. left:0px;
  548. top:0px;
  549. width:140px;
  550. height:40px;
  551. background:inherit;
  552. background-color:rgba(255, 255, 255, 1);
  553. box-sizing:border-box;
  554. border-width:1px;
  555. border-style:solid;
  556. border-color:rgba(201, 201, 201, 1);
  557. border-radius:4px;
  558. -moz-box-shadow:none;
  559. -webkit-box-shadow:none;
  560. box-shadow:none;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:14px;
  565. text-align:right;
  566. }
  567. #u97227 {
  568. border-width:0px;
  569. position:absolute;
  570. left:176px;
  571. top:130px;
  572. width:140px;
  573. height:40px;
  574. display:flex;
  575. opacity:0.9;
  576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  577. font-weight:400;
  578. font-style:normal;
  579. font-size:14px;
  580. text-align:right;
  581. }
  582. #u97227 .text {
  583. position:absolute;
  584. align-self:center;
  585. padding:2px 10px 2px 8px;
  586. box-sizing:border-box;
  587. width:100%;
  588. }
  589. #u97227_text {
  590. border-width:0px;
  591. word-wrap:break-word;
  592. text-transform:none;
  593. visibility:hidden;
  594. }
  595. #u97228_input {
  596. position:absolute;
  597. left:0px;
  598. top:0px;
  599. width:133px;
  600. height:23px;
  601. padding:2px 2px 2px 2px;
  602. font-family:'ArialMT', 'Arial', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:11px;
  606. letter-spacing:normal;
  607. color:#AAAAAA;
  608. vertical-align:none;
  609. text-align:left;
  610. text-transform:none;
  611. background-color:transparent;
  612. border-color:transparent;
  613. }
  614. #u97228_input.disabled {
  615. position:absolute;
  616. left:0px;
  617. top:0px;
  618. width:133px;
  619. height:23px;
  620. padding:2px 2px 2px 2px;
  621. font-family:'ArialMT', 'Arial', sans-serif;
  622. font-weight:400;
  623. font-style:normal;
  624. font-size:11px;
  625. letter-spacing:normal;
  626. color:#AAAAAA;
  627. vertical-align:none;
  628. text-align:left;
  629. text-transform:none;
  630. background-color:transparent;
  631. border-color:transparent;
  632. }
  633. #u97228_div {
  634. border-width:0px;
  635. position:absolute;
  636. left:0px;
  637. top:0px;
  638. width:133px;
  639. height:23px;
  640. background:inherit;
  641. background-color:rgba(255, 255, 255, 1);
  642. border:none;
  643. border-radius:0px;
  644. -moz-box-shadow:none;
  645. -webkit-box-shadow:none;
  646. box-shadow:none;
  647. font-size:11px;
  648. color:#AAAAAA;
  649. }
  650. #u97228 {
  651. border-width:0px;
  652. position:absolute;
  653. left:180px;
  654. top:139px;
  655. width:133px;
  656. height:23px;
  657. display:flex;
  658. opacity:0.9;
  659. font-size:11px;
  660. color:#AAAAAA;
  661. }
  662. #u97228 .text {
  663. position:absolute;
  664. align-self:flex-start;
  665. padding:2px 2px 2px 2px;
  666. box-sizing:border-box;
  667. width:100%;
  668. }
  669. #u97228_div.disabled {
  670. border-width:0px;
  671. position:absolute;
  672. left:0px;
  673. top:0px;
  674. width:133px;
  675. height:23px;
  676. background:inherit;
  677. background-color:rgba(240, 240, 240, 1);
  678. border:none;
  679. border-radius:0px;
  680. -moz-box-shadow:none;
  681. -webkit-box-shadow:none;
  682. box-shadow:none;
  683. font-size:11px;
  684. color:#AAAAAA;
  685. }
  686. #u97228.disabled {
  687. }
  688. .u97228_input_option {
  689. font-size:11px;
  690. }
  691. #u97229_div {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:71px;
  697. height:30px;
  698. background:inherit;
  699. background-color:rgba(255, 255, 255, 0);
  700. border:none;
  701. border-top:0px;
  702. border-right:0px;
  703. border-bottom:0px;
  704. border-radius:0px;
  705. border-top-left-radius:0px;
  706. border-bottom-left-radius:0px;
  707. -moz-box-shadow:none;
  708. -webkit-box-shadow:none;
  709. box-shadow:none;
  710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  711. font-weight:400;
  712. font-style:normal;
  713. font-size:14px;
  714. color:#7F7F7F;
  715. text-align:right;
  716. }
  717. #u97229 {
  718. border-width:0px;
  719. position:absolute;
  720. left:126px;
  721. top:190px;
  722. width:71px;
  723. height:30px;
  724. display:flex;
  725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  726. font-weight:400;
  727. font-style:normal;
  728. font-size:14px;
  729. color:#7F7F7F;
  730. text-align:right;
  731. }
  732. #u97229 .text {
  733. position:absolute;
  734. align-self:center;
  735. padding:5px 0px 5px 0px;
  736. box-sizing:border-box;
  737. width:100%;
  738. }
  739. #u97229_text {
  740. border-width:0px;
  741. white-space:nowrap;
  742. text-transform:none;
  743. }
  744. #u97230 {
  745. border-width:0px;
  746. position:absolute;
  747. left:0px;
  748. top:0px;
  749. width:0px;
  750. height:0px;
  751. }
  752. #u97231_div {
  753. border-width:0px;
  754. position:absolute;
  755. left:0px;
  756. top:0px;
  757. width:119px;
  758. height:40px;
  759. background:inherit;
  760. background-color:rgba(242, 242, 242, 1);
  761. box-sizing:border-box;
  762. border-width:1px;
  763. border-style:solid;
  764. border-color:rgba(201, 201, 201, 1);
  765. border-radius:4px;
  766. -moz-box-shadow:none;
  767. -webkit-box-shadow:none;
  768. box-shadow:none;
  769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  770. font-weight:400;
  771. font-style:normal;
  772. font-size:12px;
  773. color:#CCCCCC;
  774. text-align:right;
  775. }
  776. #u97231 {
  777. border-width:0px;
  778. position:absolute;
  779. left:197px;
  780. top:185px;
  781. width:119px;
  782. height:40px;
  783. display:flex;
  784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  785. font-weight:400;
  786. font-style:normal;
  787. font-size:12px;
  788. color:#CCCCCC;
  789. text-align:right;
  790. }
  791. #u97231 .text {
  792. position:absolute;
  793. align-self:center;
  794. padding:2px 8px 2px 8px;
  795. box-sizing:border-box;
  796. width:100%;
  797. }
  798. #u97231_text {
  799. border-width:0px;
  800. word-wrap:break-word;
  801. text-transform:none;
  802. }
  803. #u97232_input {
  804. position:absolute;
  805. left:0px;
  806. top:0px;
  807. width:67px;
  808. height:38px;
  809. padding:2px 2px 2px 2px;
  810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  811. font-weight:400;
  812. font-style:normal;
  813. font-size:14px;
  814. letter-spacing:normal;
  815. color:#000000;
  816. vertical-align:none;
  817. text-align:left;
  818. text-transform:none;
  819. background-color:transparent;
  820. border-color:transparent;
  821. }
  822. #u97232_input.disabled {
  823. position:absolute;
  824. left:0px;
  825. top:0px;
  826. width:67px;
  827. height:38px;
  828. padding:2px 2px 2px 2px;
  829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  830. font-weight:400;
  831. font-style:normal;
  832. font-size:14px;
  833. letter-spacing:normal;
  834. color:#000000;
  835. vertical-align:none;
  836. text-align:left;
  837. text-transform:none;
  838. background-color:transparent;
  839. border-color:transparent;
  840. }
  841. #u97232_div {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:67px;
  847. height:38px;
  848. background:inherit;
  849. background-color:rgba(242, 242, 242, 1);
  850. border:none;
  851. border-radius:0px;
  852. -moz-box-shadow:none;
  853. -webkit-box-shadow:none;
  854. box-shadow:none;
  855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  856. font-weight:400;
  857. font-style:normal;
  858. font-size:14px;
  859. }
  860. #u97232 {
  861. border-width:0px;
  862. position:absolute;
  863. left:200px;
  864. top:186px;
  865. width:67px;
  866. height:38px;
  867. display:flex;
  868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  869. font-weight:400;
  870. font-style:normal;
  871. font-size:14px;
  872. }
  873. #u97232 .text {
  874. position:absolute;
  875. align-self:center;
  876. padding:2px 2px 2px 2px;
  877. box-sizing:border-box;
  878. width:100%;
  879. }
  880. #u97232_div.disabled {
  881. border-width:0px;
  882. position:absolute;
  883. left:0px;
  884. top:0px;
  885. width:67px;
  886. height:38px;
  887. background:inherit;
  888. background-color:rgba(240, 240, 240, 1);
  889. border:none;
  890. border-radius:0px;
  891. -moz-box-shadow:none;
  892. -webkit-box-shadow:none;
  893. box-shadow:none;
  894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  895. font-weight:400;
  896. font-style:normal;
  897. font-size:14px;
  898. }
  899. #u97232.disabled {
  900. }
  901. #u97233_div {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:50px;
  907. height:30px;
  908. background:inherit;
  909. background-color:rgba(255, 255, 255, 0);
  910. border:none;
  911. border-top:0px;
  912. border-right:0px;
  913. border-bottom:0px;
  914. border-radius:0px;
  915. border-top-left-radius:0px;
  916. border-bottom-left-radius:0px;
  917. -moz-box-shadow:none;
  918. -webkit-box-shadow:none;
  919. box-shadow:none;
  920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  921. font-weight:400;
  922. font-style:normal;
  923. font-size:14px;
  924. color:#7F7F7F;
  925. text-align:right;
  926. }
  927. #u97233 {
  928. border-width:0px;
  929. position:absolute;
  930. left:333px;
  931. top:135px;
  932. width:50px;
  933. height:30px;
  934. display:flex;
  935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  936. font-weight:400;
  937. font-style:normal;
  938. font-size:14px;
  939. color:#7F7F7F;
  940. text-align:right;
  941. }
  942. #u97233 .text {
  943. position:absolute;
  944. align-self:center;
  945. padding:5px 0px 5px 0px;
  946. box-sizing:border-box;
  947. width:100%;
  948. }
  949. #u97233_text {
  950. border-width:0px;
  951. white-space:nowrap;
  952. text-transform:none;
  953. }
  954. #u97234 {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:0px;
  960. height:0px;
  961. }
  962. #u97235_div {
  963. border-width:0px;
  964. position:absolute;
  965. left:0px;
  966. top:0px;
  967. width:140px;
  968. height:40px;
  969. background:inherit;
  970. background-color:rgba(255, 255, 255, 1);
  971. box-sizing:border-box;
  972. border-width:1px;
  973. border-style:solid;
  974. border-color:rgba(201, 201, 201, 1);
  975. border-radius:4px;
  976. -moz-box-shadow:none;
  977. -webkit-box-shadow:none;
  978. box-shadow:none;
  979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  980. font-weight:400;
  981. font-style:normal;
  982. font-size:14px;
  983. text-align:right;
  984. }
  985. #u97235 {
  986. border-width:0px;
  987. position:absolute;
  988. left:383px;
  989. top:130px;
  990. width:140px;
  991. height:40px;
  992. display:flex;
  993. opacity:0.9;
  994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  995. font-weight:400;
  996. font-style:normal;
  997. font-size:14px;
  998. text-align:right;
  999. }
  1000. #u97235 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 10px 2px 8px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u97235_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u97236_input {
  1014. position:absolute;
  1015. left:0px;
  1016. top:0px;
  1017. width:133px;
  1018. height:23px;
  1019. padding:2px 2px 2px 2px;
  1020. font-family:'ArialMT', 'Arial', sans-serif;
  1021. font-weight:400;
  1022. font-style:normal;
  1023. font-size:11px;
  1024. letter-spacing:normal;
  1025. color:#AAAAAA;
  1026. vertical-align:none;
  1027. text-align:left;
  1028. text-transform:none;
  1029. background-color:transparent;
  1030. border-color:transparent;
  1031. }
  1032. #u97236_input.disabled {
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:133px;
  1037. height:23px;
  1038. padding:2px 2px 2px 2px;
  1039. font-family:'ArialMT', 'Arial', sans-serif;
  1040. font-weight:400;
  1041. font-style:normal;
  1042. font-size:11px;
  1043. letter-spacing:normal;
  1044. color:#AAAAAA;
  1045. vertical-align:none;
  1046. text-align:left;
  1047. text-transform:none;
  1048. background-color:transparent;
  1049. border-color:transparent;
  1050. }
  1051. #u97236_div {
  1052. border-width:0px;
  1053. position:absolute;
  1054. left:0px;
  1055. top:0px;
  1056. width:133px;
  1057. height:23px;
  1058. background:inherit;
  1059. background-color:rgba(255, 255, 255, 1);
  1060. border:none;
  1061. border-radius:0px;
  1062. -moz-box-shadow:none;
  1063. -webkit-box-shadow:none;
  1064. box-shadow:none;
  1065. font-size:11px;
  1066. color:#AAAAAA;
  1067. }
  1068. #u97236 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:387px;
  1072. top:139px;
  1073. width:133px;
  1074. height:23px;
  1075. display:flex;
  1076. opacity:0.9;
  1077. font-size:11px;
  1078. color:#AAAAAA;
  1079. }
  1080. #u97236 .text {
  1081. position:absolute;
  1082. align-self:flex-start;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u97236_div.disabled {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:133px;
  1093. height:23px;
  1094. background:inherit;
  1095. background-color:rgba(240, 240, 240, 1);
  1096. border:none;
  1097. border-radius:0px;
  1098. -moz-box-shadow:none;
  1099. -webkit-box-shadow:none;
  1100. box-shadow:none;
  1101. font-size:11px;
  1102. color:#AAAAAA;
  1103. }
  1104. #u97236.disabled {
  1105. }
  1106. .u97236_input_option {
  1107. font-size:11px;
  1108. }
  1109. #u97237_div {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:0px;
  1113. top:0px;
  1114. width:43px;
  1115. height:30px;
  1116. background:inherit;
  1117. background-color:rgba(255, 255, 255, 0);
  1118. border:none;
  1119. border-top:0px;
  1120. border-right:0px;
  1121. border-bottom:0px;
  1122. border-radius:0px;
  1123. border-top-left-radius:0px;
  1124. border-bottom-left-radius:0px;
  1125. -moz-box-shadow:none;
  1126. -webkit-box-shadow:none;
  1127. box-shadow:none;
  1128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1129. font-weight:400;
  1130. font-style:normal;
  1131. font-size:14px;
  1132. color:#7F7F7F;
  1133. text-align:right;
  1134. }
  1135. #u97237 {
  1136. border-width:0px;
  1137. position:absolute;
  1138. left:540px;
  1139. top:135px;
  1140. width:43px;
  1141. height:30px;
  1142. display:flex;
  1143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1144. font-weight:400;
  1145. font-style:normal;
  1146. font-size:14px;
  1147. color:#7F7F7F;
  1148. text-align:right;
  1149. }
  1150. #u97237 .text {
  1151. position:absolute;
  1152. align-self:center;
  1153. padding:5px 0px 5px 0px;
  1154. box-sizing:border-box;
  1155. width:100%;
  1156. }
  1157. #u97237_text {
  1158. border-width:0px;
  1159. white-space:nowrap;
  1160. text-transform:none;
  1161. }
  1162. #u97238 {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:0px;
  1168. height:0px;
  1169. }
  1170. #u97239_div {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:0px;
  1174. top:0px;
  1175. width:140px;
  1176. height:40px;
  1177. background:inherit;
  1178. background-color:rgba(255, 255, 255, 1);
  1179. box-sizing:border-box;
  1180. border-width:1px;
  1181. border-style:solid;
  1182. border-color:rgba(201, 201, 201, 1);
  1183. border-radius:4px;
  1184. -moz-box-shadow:none;
  1185. -webkit-box-shadow:none;
  1186. box-shadow:none;
  1187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1188. font-weight:400;
  1189. font-style:normal;
  1190. font-size:14px;
  1191. text-align:right;
  1192. }
  1193. #u97239 {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:583px;
  1197. top:130px;
  1198. width:140px;
  1199. height:40px;
  1200. display:flex;
  1201. opacity:0.9;
  1202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1203. font-weight:400;
  1204. font-style:normal;
  1205. font-size:14px;
  1206. text-align:right;
  1207. }
  1208. #u97239 .text {
  1209. position:absolute;
  1210. align-self:center;
  1211. padding:2px 10px 2px 8px;
  1212. box-sizing:border-box;
  1213. width:100%;
  1214. }
  1215. #u97239_text {
  1216. border-width:0px;
  1217. word-wrap:break-word;
  1218. text-transform:none;
  1219. visibility:hidden;
  1220. }
  1221. #u97240_input {
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:133px;
  1226. height:23px;
  1227. padding:2px 2px 2px 2px;
  1228. font-family:'ArialMT', 'Arial', sans-serif;
  1229. font-weight:400;
  1230. font-style:normal;
  1231. font-size:11px;
  1232. letter-spacing:normal;
  1233. color:#AAAAAA;
  1234. vertical-align:none;
  1235. text-align:left;
  1236. text-transform:none;
  1237. background-color:transparent;
  1238. border-color:transparent;
  1239. }
  1240. #u97240_input.disabled {
  1241. position:absolute;
  1242. left:0px;
  1243. top:0px;
  1244. width:133px;
  1245. height:23px;
  1246. padding:2px 2px 2px 2px;
  1247. font-family:'ArialMT', 'Arial', sans-serif;
  1248. font-weight:400;
  1249. font-style:normal;
  1250. font-size:11px;
  1251. letter-spacing:normal;
  1252. color:#AAAAAA;
  1253. vertical-align:none;
  1254. text-align:left;
  1255. text-transform:none;
  1256. background-color:transparent;
  1257. border-color:transparent;
  1258. }
  1259. #u97240_div {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:0px;
  1263. top:0px;
  1264. width:133px;
  1265. height:23px;
  1266. background:inherit;
  1267. background-color:rgba(255, 255, 255, 1);
  1268. border:none;
  1269. border-radius:0px;
  1270. -moz-box-shadow:none;
  1271. -webkit-box-shadow:none;
  1272. box-shadow:none;
  1273. font-size:11px;
  1274. color:#AAAAAA;
  1275. }
  1276. #u97240 {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:587px;
  1280. top:139px;
  1281. width:133px;
  1282. height:23px;
  1283. display:flex;
  1284. opacity:0.9;
  1285. font-size:11px;
  1286. color:#AAAAAA;
  1287. }
  1288. #u97240 .text {
  1289. position:absolute;
  1290. align-self:flex-start;
  1291. padding:2px 2px 2px 2px;
  1292. box-sizing:border-box;
  1293. width:100%;
  1294. }
  1295. #u97240_div.disabled {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:133px;
  1301. height:23px;
  1302. background:inherit;
  1303. background-color:rgba(240, 240, 240, 1);
  1304. border:none;
  1305. border-radius:0px;
  1306. -moz-box-shadow:none;
  1307. -webkit-box-shadow:none;
  1308. box-shadow:none;
  1309. font-size:11px;
  1310. color:#AAAAAA;
  1311. }
  1312. #u97240.disabled {
  1313. }
  1314. .u97240_input_option {
  1315. font-size:11px;
  1316. }
  1317. #u97241_div {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:0px;
  1321. top:0px;
  1322. width:50px;
  1323. height:30px;
  1324. background:inherit;
  1325. background-color:rgba(255, 255, 255, 0);
  1326. border:none;
  1327. border-top:0px;
  1328. border-right:0px;
  1329. border-bottom:0px;
  1330. border-radius:0px;
  1331. border-top-left-radius:0px;
  1332. border-bottom-left-radius:0px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. font-size:14px;
  1340. color:#7F7F7F;
  1341. text-align:right;
  1342. }
  1343. #u97241 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:740px;
  1347. top:135px;
  1348. width:50px;
  1349. height:30px;
  1350. display:flex;
  1351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1352. font-weight:400;
  1353. font-style:normal;
  1354. font-size:14px;
  1355. color:#7F7F7F;
  1356. text-align:right;
  1357. }
  1358. #u97241 .text {
  1359. position:absolute;
  1360. align-self:center;
  1361. padding:5px 0px 5px 0px;
  1362. box-sizing:border-box;
  1363. width:100%;
  1364. }
  1365. #u97241_text {
  1366. border-width:0px;
  1367. white-space:nowrap;
  1368. text-transform:none;
  1369. }
  1370. #u97242 {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:0px;
  1376. height:0px;
  1377. }
  1378. #u97243_div {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:140px;
  1384. height:40px;
  1385. background:inherit;
  1386. background-color:rgba(255, 255, 255, 1);
  1387. box-sizing:border-box;
  1388. border-width:1px;
  1389. border-style:solid;
  1390. border-color:rgba(201, 201, 201, 1);
  1391. border-radius:4px;
  1392. -moz-box-shadow:none;
  1393. -webkit-box-shadow:none;
  1394. box-shadow:none;
  1395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1396. font-weight:400;
  1397. font-style:normal;
  1398. font-size:14px;
  1399. text-align:right;
  1400. }
  1401. #u97243 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:790px;
  1405. top:130px;
  1406. width:140px;
  1407. height:40px;
  1408. display:flex;
  1409. opacity:0.9;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. font-size:14px;
  1414. text-align:right;
  1415. }
  1416. #u97243 .text {
  1417. position:absolute;
  1418. align-self:center;
  1419. padding:2px 10px 2px 8px;
  1420. box-sizing:border-box;
  1421. width:100%;
  1422. }
  1423. #u97243_text {
  1424. border-width:0px;
  1425. word-wrap:break-word;
  1426. text-transform:none;
  1427. visibility:hidden;
  1428. }
  1429. #u97244_input {
  1430. position:absolute;
  1431. left:0px;
  1432. top:0px;
  1433. width:133px;
  1434. height:23px;
  1435. padding:2px 2px 2px 2px;
  1436. font-family:'ArialMT', 'Arial', sans-serif;
  1437. font-weight:400;
  1438. font-style:normal;
  1439. font-size:11px;
  1440. letter-spacing:normal;
  1441. color:#AAAAAA;
  1442. vertical-align:none;
  1443. text-align:left;
  1444. text-transform:none;
  1445. background-color:transparent;
  1446. border-color:transparent;
  1447. }
  1448. #u97244_input.disabled {
  1449. position:absolute;
  1450. left:0px;
  1451. top:0px;
  1452. width:133px;
  1453. height:23px;
  1454. padding:2px 2px 2px 2px;
  1455. font-family:'ArialMT', 'Arial', sans-serif;
  1456. font-weight:400;
  1457. font-style:normal;
  1458. font-size:11px;
  1459. letter-spacing:normal;
  1460. color:#AAAAAA;
  1461. vertical-align:none;
  1462. text-align:left;
  1463. text-transform:none;
  1464. background-color:transparent;
  1465. border-color:transparent;
  1466. }
  1467. #u97244_div {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:0px;
  1471. top:0px;
  1472. width:133px;
  1473. height:23px;
  1474. background:inherit;
  1475. background-color:rgba(255, 255, 255, 1);
  1476. border:none;
  1477. border-radius:0px;
  1478. -moz-box-shadow:none;
  1479. -webkit-box-shadow:none;
  1480. box-shadow:none;
  1481. font-size:11px;
  1482. color:#AAAAAA;
  1483. }
  1484. #u97244 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:794px;
  1488. top:139px;
  1489. width:133px;
  1490. height:23px;
  1491. display:flex;
  1492. opacity:0.9;
  1493. font-size:11px;
  1494. color:#AAAAAA;
  1495. }
  1496. #u97244 .text {
  1497. position:absolute;
  1498. align-self:flex-start;
  1499. padding:2px 2px 2px 2px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u97244_div.disabled {
  1504. border-width:0px;
  1505. position:absolute;
  1506. left:0px;
  1507. top:0px;
  1508. width:133px;
  1509. height:23px;
  1510. background:inherit;
  1511. background-color:rgba(240, 240, 240, 1);
  1512. border:none;
  1513. border-radius:0px;
  1514. -moz-box-shadow:none;
  1515. -webkit-box-shadow:none;
  1516. box-shadow:none;
  1517. font-size:11px;
  1518. color:#AAAAAA;
  1519. }
  1520. #u97244.disabled {
  1521. }
  1522. .u97244_input_option {
  1523. font-size:11px;
  1524. }
  1525. #u97245_div {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:71px;
  1531. height:30px;
  1532. background:inherit;
  1533. background-color:rgba(255, 255, 255, 0);
  1534. border:none;
  1535. border-top:0px;
  1536. border-right:0px;
  1537. border-bottom:0px;
  1538. border-radius:0px;
  1539. border-top-left-radius:0px;
  1540. border-bottom-left-radius:0px;
  1541. -moz-box-shadow:none;
  1542. -webkit-box-shadow:none;
  1543. box-shadow:none;
  1544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1545. font-weight:400;
  1546. font-style:normal;
  1547. font-size:14px;
  1548. color:#7F7F7F;
  1549. text-align:right;
  1550. }
  1551. #u97245 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:330px;
  1555. top:190px;
  1556. width:71px;
  1557. height:30px;
  1558. display:flex;
  1559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1560. font-weight:400;
  1561. font-style:normal;
  1562. font-size:14px;
  1563. color:#7F7F7F;
  1564. text-align:right;
  1565. }
  1566. #u97245 .text {
  1567. position:absolute;
  1568. align-self:center;
  1569. padding:5px 0px 5px 0px;
  1570. box-sizing:border-box;
  1571. width:100%;
  1572. }
  1573. #u97245_text {
  1574. border-width:0px;
  1575. white-space:nowrap;
  1576. text-transform:none;
  1577. }
  1578. #u97246 {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:0px;
  1584. height:0px;
  1585. }
  1586. #u97247_div {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:119px;
  1592. height:40px;
  1593. background:inherit;
  1594. background-color:rgba(242, 242, 242, 1);
  1595. box-sizing:border-box;
  1596. border-width:1px;
  1597. border-style:solid;
  1598. border-color:rgba(201, 201, 201, 1);
  1599. border-radius:4px;
  1600. -moz-box-shadow:none;
  1601. -webkit-box-shadow:none;
  1602. box-shadow:none;
  1603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1604. font-weight:400;
  1605. font-style:normal;
  1606. font-size:12px;
  1607. color:#CCCCCC;
  1608. text-align:right;
  1609. }
  1610. #u97247 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:401px;
  1614. top:185px;
  1615. width:119px;
  1616. height:40px;
  1617. display:flex;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:12px;
  1622. color:#CCCCCC;
  1623. text-align:right;
  1624. }
  1625. #u97247 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 8px 2px 8px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u97247_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. }
  1637. #u97248_input {
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:68px;
  1642. height:38px;
  1643. padding:2px 2px 2px 2px;
  1644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1645. font-weight:400;
  1646. font-style:normal;
  1647. font-size:14px;
  1648. letter-spacing:normal;
  1649. color:#000000;
  1650. vertical-align:none;
  1651. text-align:left;
  1652. text-transform:none;
  1653. background-color:transparent;
  1654. border-color:transparent;
  1655. }
  1656. #u97248_input.disabled {
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:68px;
  1661. height:38px;
  1662. padding:2px 2px 2px 2px;
  1663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1664. font-weight:400;
  1665. font-style:normal;
  1666. font-size:14px;
  1667. letter-spacing:normal;
  1668. color:#000000;
  1669. vertical-align:none;
  1670. text-align:left;
  1671. text-transform:none;
  1672. background-color:transparent;
  1673. border-color:transparent;
  1674. }
  1675. #u97248_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:68px;
  1681. height:38px;
  1682. background:inherit;
  1683. background-color:rgba(242, 242, 242, 1);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:14px;
  1693. }
  1694. #u97248 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:404px;
  1698. top:186px;
  1699. width:68px;
  1700. height:38px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:14px;
  1706. }
  1707. #u97248 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 2px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u97248_div.disabled {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:68px;
  1720. height:38px;
  1721. background:inherit;
  1722. background-color:rgba(240, 240, 240, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:none;
  1726. -webkit-box-shadow:none;
  1727. box-shadow:none;
  1728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1729. font-weight:400;
  1730. font-style:normal;
  1731. font-size:14px;
  1732. }
  1733. #u97248.disabled {
  1734. }
  1735. #u97249_div {
  1736. border-width:0px;
  1737. position:absolute;
  1738. left:0px;
  1739. top:0px;
  1740. width:71px;
  1741. height:30px;
  1742. background:inherit;
  1743. background-color:rgba(255, 255, 255, 0);
  1744. border:none;
  1745. border-top:0px;
  1746. border-right:0px;
  1747. border-bottom:0px;
  1748. border-radius:0px;
  1749. border-top-left-radius:0px;
  1750. border-bottom-left-radius:0px;
  1751. -moz-box-shadow:none;
  1752. -webkit-box-shadow:none;
  1753. box-shadow:none;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. color:#7F7F7F;
  1759. text-align:right;
  1760. }
  1761. #u97249 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:533px;
  1765. top:190px;
  1766. width:71px;
  1767. height:30px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:14px;
  1773. color:#7F7F7F;
  1774. text-align:right;
  1775. }
  1776. #u97249 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:5px 0px 5px 0px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u97249_text {
  1784. border-width:0px;
  1785. white-space:nowrap;
  1786. text-transform:none;
  1787. }
  1788. #u97250 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:0px;
  1794. height:0px;
  1795. }
  1796. #u97251_div {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:0px;
  1800. top:0px;
  1801. width:119px;
  1802. height:40px;
  1803. background:inherit;
  1804. background-color:rgba(242, 242, 242, 1);
  1805. box-sizing:border-box;
  1806. border-width:1px;
  1807. border-style:solid;
  1808. border-color:rgba(201, 201, 201, 1);
  1809. border-radius:4px;
  1810. -moz-box-shadow:none;
  1811. -webkit-box-shadow:none;
  1812. box-shadow:none;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:12px;
  1817. color:#CCCCCC;
  1818. text-align:right;
  1819. }
  1820. #u97251 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:604px;
  1824. top:185px;
  1825. width:119px;
  1826. height:40px;
  1827. display:flex;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:12px;
  1832. color:#CCCCCC;
  1833. text-align:right;
  1834. }
  1835. #u97251 .text {
  1836. position:absolute;
  1837. align-self:center;
  1838. padding:2px 8px 2px 8px;
  1839. box-sizing:border-box;
  1840. width:100%;
  1841. }
  1842. #u97251_text {
  1843. border-width:0px;
  1844. word-wrap:break-word;
  1845. text-transform:none;
  1846. }
  1847. #u97252_input {
  1848. position:absolute;
  1849. left:0px;
  1850. top:0px;
  1851. width:67px;
  1852. height:38px;
  1853. padding:2px 2px 2px 2px;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:14px;
  1858. letter-spacing:normal;
  1859. color:#000000;
  1860. vertical-align:none;
  1861. text-align:left;
  1862. text-transform:none;
  1863. background-color:transparent;
  1864. border-color:transparent;
  1865. }
  1866. #u97252_input.disabled {
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:67px;
  1871. height:38px;
  1872. padding:2px 2px 2px 2px;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:14px;
  1877. letter-spacing:normal;
  1878. color:#000000;
  1879. vertical-align:none;
  1880. text-align:left;
  1881. text-transform:none;
  1882. background-color:transparent;
  1883. border-color:transparent;
  1884. }
  1885. #u97252_div {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:67px;
  1891. height:38px;
  1892. background:inherit;
  1893. background-color:rgba(242, 242, 242, 1);
  1894. border:none;
  1895. border-radius:0px;
  1896. -moz-box-shadow:none;
  1897. -webkit-box-shadow:none;
  1898. box-shadow:none;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:14px;
  1903. }
  1904. #u97252 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:607px;
  1908. top:186px;
  1909. width:67px;
  1910. height:38px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. font-size:14px;
  1916. }
  1917. #u97252 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 2px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u97252_div.disabled {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:67px;
  1930. height:38px;
  1931. background:inherit;
  1932. background-color:rgba(240, 240, 240, 1);
  1933. border:none;
  1934. border-radius:0px;
  1935. -moz-box-shadow:none;
  1936. -webkit-box-shadow:none;
  1937. box-shadow:none;
  1938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1939. font-weight:400;
  1940. font-style:normal;
  1941. font-size:14px;
  1942. }
  1943. #u97252.disabled {
  1944. }
  1945. #u97253_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:43px;
  1951. height:30px;
  1952. background:inherit;
  1953. background-color:rgba(255, 255, 255, 0);
  1954. border:none;
  1955. border-top:0px;
  1956. border-right:0px;
  1957. border-bottom:0px;
  1958. border-radius:0px;
  1959. border-top-left-radius:0px;
  1960. border-bottom-left-radius:0px;
  1961. -moz-box-shadow:none;
  1962. -webkit-box-shadow:none;
  1963. box-shadow:none;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:14px;
  1968. color:#7F7F7F;
  1969. text-align:right;
  1970. }
  1971. #u97253 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:740px;
  1975. top:190px;
  1976. width:43px;
  1977. height:30px;
  1978. display:flex;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:14px;
  1983. color:#7F7F7F;
  1984. text-align:right;
  1985. }
  1986. #u97253 .text {
  1987. position:absolute;
  1988. align-self:center;
  1989. padding:5px 0px 5px 0px;
  1990. box-sizing:border-box;
  1991. width:100%;
  1992. }
  1993. #u97253_text {
  1994. border-width:0px;
  1995. white-space:nowrap;
  1996. text-transform:none;
  1997. }
  1998. #u97254 {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:0px;
  2002. top:0px;
  2003. width:0px;
  2004. height:0px;
  2005. }
  2006. #u97255_div {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:137px;
  2012. height:40px;
  2013. background:inherit;
  2014. background-color:rgba(242, 242, 242, 1);
  2015. box-sizing:border-box;
  2016. border-width:1px;
  2017. border-style:solid;
  2018. border-color:rgba(201, 201, 201, 1);
  2019. border-radius:4px;
  2020. -moz-box-shadow:none;
  2021. -webkit-box-shadow:none;
  2022. box-shadow:none;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:12px;
  2027. color:#CCCCCC;
  2028. text-align:right;
  2029. }
  2030. #u97255 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:793px;
  2034. top:185px;
  2035. width:137px;
  2036. height:40px;
  2037. display:flex;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:12px;
  2042. color:#CCCCCC;
  2043. text-align:right;
  2044. }
  2045. #u97255 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 8px 2px 8px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u97255_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. visibility:hidden;
  2057. }
  2058. #u97256_input {
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:107px;
  2063. height:38px;
  2064. padding:2px 2px 2px 2px;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:14px;
  2069. letter-spacing:normal;
  2070. color:#000000;
  2071. vertical-align:none;
  2072. text-align:left;
  2073. text-transform:none;
  2074. background-color:transparent;
  2075. border-color:transparent;
  2076. }
  2077. #u97256_input.disabled {
  2078. position:absolute;
  2079. left:0px;
  2080. top:0px;
  2081. width:107px;
  2082. height:38px;
  2083. padding:2px 2px 2px 2px;
  2084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2085. font-weight:400;
  2086. font-style:normal;
  2087. font-size:14px;
  2088. letter-spacing:normal;
  2089. color:#000000;
  2090. vertical-align:none;
  2091. text-align:left;
  2092. text-transform:none;
  2093. background-color:transparent;
  2094. border-color:transparent;
  2095. }
  2096. #u97256_div {
  2097. border-width:0px;
  2098. position:absolute;
  2099. left:0px;
  2100. top:0px;
  2101. width:107px;
  2102. height:38px;
  2103. background:inherit;
  2104. background-color:rgba(242, 242, 242, 1);
  2105. border:none;
  2106. border-radius:0px;
  2107. -moz-box-shadow:none;
  2108. -webkit-box-shadow:none;
  2109. box-shadow:none;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. font-size:14px;
  2114. }
  2115. #u97256 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:797px;
  2119. top:186px;
  2120. width:107px;
  2121. height:38px;
  2122. display:flex;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. }
  2128. #u97256 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 2px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u97256_div.disabled {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:107px;
  2141. height:38px;
  2142. background:inherit;
  2143. background-color:rgba(240, 240, 240, 1);
  2144. border:none;
  2145. border-radius:0px;
  2146. -moz-box-shadow:none;
  2147. -webkit-box-shadow:none;
  2148. box-shadow:none;
  2149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2150. font-weight:400;
  2151. font-style:normal;
  2152. font-size:14px;
  2153. }
  2154. #u97256.disabled {
  2155. }
  2156. #u97257_div {
  2157. border-width:0px;
  2158. position:absolute;
  2159. left:0px;
  2160. top:0px;
  2161. width:64px;
  2162. height:30px;
  2163. background:inherit;
  2164. background-color:rgba(255, 255, 255, 0);
  2165. border:none;
  2166. border-top:0px;
  2167. border-right:0px;
  2168. border-bottom:0px;
  2169. border-radius:0px;
  2170. border-top-left-radius:0px;
  2171. border-bottom-left-radius:0px;
  2172. -moz-box-shadow:none;
  2173. -webkit-box-shadow:none;
  2174. box-shadow:none;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:14px;
  2179. text-align:right;
  2180. }
  2181. #u97257 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:584px;
  2185. top:739px;
  2186. width:64px;
  2187. height:30px;
  2188. display:flex;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:14px;
  2193. text-align:right;
  2194. }
  2195. #u97257 .text {
  2196. position:absolute;
  2197. align-self:center;
  2198. padding:5px 0px 5px 0px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u97257_text {
  2203. border-width:0px;
  2204. white-space:nowrap;
  2205. text-transform:none;
  2206. }
  2207. #u97258 {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:0px;
  2213. height:0px;
  2214. }
  2215. #u97259_div {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:0px;
  2219. top:0px;
  2220. width:299px;
  2221. height:40px;
  2222. background:inherit;
  2223. background-color:rgba(255, 255, 255, 1);
  2224. box-sizing:border-box;
  2225. border-width:1px;
  2226. border-style:solid;
  2227. border-color:rgba(201, 201, 201, 1);
  2228. border-radius:4px;
  2229. -moz-box-shadow:none;
  2230. -webkit-box-shadow:none;
  2231. box-shadow:none;
  2232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:12px;
  2236. color:#CCCCCC;
  2237. text-align:right;
  2238. }
  2239. #u97259 {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:658px;
  2243. top:734px;
  2244. width:299px;
  2245. height:40px;
  2246. display:flex;
  2247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2248. font-weight:400;
  2249. font-style:normal;
  2250. font-size:12px;
  2251. color:#CCCCCC;
  2252. text-align:right;
  2253. }
  2254. #u97259 .text {
  2255. position:absolute;
  2256. align-self:center;
  2257. padding:2px 8px 2px 8px;
  2258. box-sizing:border-box;
  2259. width:100%;
  2260. }
  2261. #u97259_text {
  2262. border-width:0px;
  2263. word-wrap:break-word;
  2264. text-transform:none;
  2265. visibility:hidden;
  2266. }
  2267. #u97260_input {
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:282px;
  2272. height:38px;
  2273. padding:2px 2px 2px 2px;
  2274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2275. font-weight:400;
  2276. font-style:normal;
  2277. font-size:14px;
  2278. letter-spacing:normal;
  2279. color:#000000;
  2280. vertical-align:none;
  2281. text-align:left;
  2282. text-transform:none;
  2283. background-color:transparent;
  2284. border-color:transparent;
  2285. }
  2286. #u97260_input.disabled {
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:282px;
  2291. height:38px;
  2292. padding:2px 2px 2px 2px;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:14px;
  2297. letter-spacing:normal;
  2298. color:#000000;
  2299. vertical-align:none;
  2300. text-align:left;
  2301. text-transform:none;
  2302. background-color:transparent;
  2303. border-color:transparent;
  2304. }
  2305. #u97260_div {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:282px;
  2311. height:38px;
  2312. background:inherit;
  2313. background-color:rgba(255, 255, 255, 1);
  2314. border:none;
  2315. border-radius:0px;
  2316. -moz-box-shadow:none;
  2317. -webkit-box-shadow:none;
  2318. box-shadow:none;
  2319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2320. font-weight:400;
  2321. font-style:normal;
  2322. font-size:14px;
  2323. }
  2324. #u97260 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:666px;
  2328. top:735px;
  2329. width:282px;
  2330. height:38px;
  2331. display:flex;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:14px;
  2336. }
  2337. #u97260 .text {
  2338. position:absolute;
  2339. align-self:center;
  2340. padding:2px 2px 2px 2px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u97260_div.disabled {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:282px;
  2350. height:38px;
  2351. background:inherit;
  2352. background-color:rgba(240, 240, 240, 1);
  2353. border:none;
  2354. border-radius:0px;
  2355. -moz-box-shadow:none;
  2356. -webkit-box-shadow:none;
  2357. box-shadow:none;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:14px;
  2362. }
  2363. #u97260.disabled {
  2364. }
  2365. #u97261 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:0px;
  2371. height:0px;
  2372. }
  2373. #u97262_div {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:299px;
  2379. height:40px;
  2380. background:inherit;
  2381. background-color:rgba(255, 255, 255, 1);
  2382. box-sizing:border-box;
  2383. border-width:1px;
  2384. border-style:solid;
  2385. border-color:rgba(201, 201, 201, 1);
  2386. border-radius:4px;
  2387. -moz-box-shadow:none;
  2388. -webkit-box-shadow:none;
  2389. box-shadow:none;
  2390. font-family:'Microsoft YaHei', sans-serif;
  2391. font-weight:400;
  2392. font-style:normal;
  2393. font-size:14px;
  2394. color:#CCCCCC;
  2395. text-align:left;
  2396. }
  2397. #u97262 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:227px;
  2401. top:734px;
  2402. width:299px;
  2403. height:40px;
  2404. display:flex;
  2405. font-family:'Microsoft YaHei', sans-serif;
  2406. font-weight:400;
  2407. font-style:normal;
  2408. font-size:14px;
  2409. color:#CCCCCC;
  2410. text-align:left;
  2411. }
  2412. #u97262 .text {
  2413. position:absolute;
  2414. align-self:center;
  2415. padding:2px 8px 2px 8px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u97262_text {
  2420. border-width:0px;
  2421. word-wrap:break-word;
  2422. text-transform:none;
  2423. visibility:hidden;
  2424. }
  2425. #u97263_input {
  2426. position:absolute;
  2427. left:0px;
  2428. top:0px;
  2429. width:145px;
  2430. height:38px;
  2431. padding:2px 2px 2px 2px;
  2432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2433. font-weight:400;
  2434. font-style:normal;
  2435. font-size:14px;
  2436. letter-spacing:normal;
  2437. color:#000000;
  2438. vertical-align:none;
  2439. text-align:left;
  2440. text-transform:none;
  2441. background-color:transparent;
  2442. border-color:transparent;
  2443. }
  2444. #u97263_input.disabled {
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:145px;
  2449. height:38px;
  2450. padding:2px 2px 2px 2px;
  2451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2452. font-weight:400;
  2453. font-style:normal;
  2454. font-size:14px;
  2455. letter-spacing:normal;
  2456. color:#000000;
  2457. vertical-align:none;
  2458. text-align:left;
  2459. text-transform:none;
  2460. background-color:transparent;
  2461. border-color:transparent;
  2462. }
  2463. #u97263_div {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:145px;
  2469. height:38px;
  2470. background:inherit;
  2471. background-color:rgba(255, 255, 255, 1);
  2472. border:none;
  2473. border-radius:0px;
  2474. -moz-box-shadow:none;
  2475. -webkit-box-shadow:none;
  2476. box-shadow:none;
  2477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2478. font-weight:400;
  2479. font-style:normal;
  2480. font-size:14px;
  2481. }
  2482. #u97263 {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:235px;
  2486. top:735px;
  2487. width:145px;
  2488. height:38px;
  2489. display:flex;
  2490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2491. font-weight:400;
  2492. font-style:normal;
  2493. font-size:14px;
  2494. }
  2495. #u97263 .text {
  2496. position:absolute;
  2497. align-self:center;
  2498. padding:2px 2px 2px 2px;
  2499. box-sizing:border-box;
  2500. width:100%;
  2501. }
  2502. #u97263_div.disabled {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:145px;
  2508. height:38px;
  2509. background:inherit;
  2510. background-color:rgba(240, 240, 240, 1);
  2511. border:none;
  2512. border-radius:0px;
  2513. -moz-box-shadow:none;
  2514. -webkit-box-shadow:none;
  2515. box-shadow:none;
  2516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:14px;
  2520. }
  2521. #u97263.disabled {
  2522. }
  2523. #u97264_img {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:16px;
  2529. height:14px;
  2530. }
  2531. #u97264 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:504px;
  2535. top:747px;
  2536. width:16px;
  2537. height:14px;
  2538. display:flex;
  2539. }
  2540. #u97264 .text {
  2541. position:absolute;
  2542. align-self:center;
  2543. padding:2px 2px 2px 2px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u97264_text {
  2548. border-width:0px;
  2549. word-wrap:break-word;
  2550. text-transform:none;
  2551. visibility:hidden;
  2552. }
  2553. #u97265_div {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:78px;
  2559. height:30px;
  2560. background:inherit;
  2561. background-color:rgba(255, 255, 255, 0);
  2562. border:none;
  2563. border-top:0px;
  2564. border-right:0px;
  2565. border-bottom:0px;
  2566. border-radius:0px;
  2567. border-top-left-radius:0px;
  2568. border-bottom-left-radius:0px;
  2569. -moz-box-shadow:none;
  2570. -webkit-box-shadow:none;
  2571. box-shadow:none;
  2572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:14px;
  2576. text-align:right;
  2577. }
  2578. #u97265 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:146px;
  2582. top:739px;
  2583. width:78px;
  2584. height:30px;
  2585. display:flex;
  2586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2587. font-weight:400;
  2588. font-style:normal;
  2589. font-size:14px;
  2590. text-align:right;
  2591. }
  2592. #u97265 .text {
  2593. position:absolute;
  2594. align-self:center;
  2595. padding:5px 0px 5px 0px;
  2596. box-sizing:border-box;
  2597. width:100%;
  2598. }
  2599. #u97265_text {
  2600. border-width:0px;
  2601. white-space:nowrap;
  2602. text-transform:none;
  2603. }
  2604. #u97266 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:0px;
  2608. top:0px;
  2609. width:0px;
  2610. height:0px;
  2611. }
  2612. #u97267_div {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:730px;
  2618. height:80px;
  2619. background:inherit;
  2620. background-color:rgba(255, 255, 255, 1);
  2621. box-sizing:border-box;
  2622. border-width:1px;
  2623. border-style:solid;
  2624. border-color:rgba(201, 201, 201, 1);
  2625. border-radius:4px;
  2626. -moz-box-shadow:none;
  2627. -webkit-box-shadow:none;
  2628. box-shadow:none;
  2629. font-family:'Microsoft YaHei', sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. font-size:14px;
  2633. color:#CCCCCC;
  2634. text-align:left;
  2635. }
  2636. #u97267 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:227px;
  2640. top:784px;
  2641. width:730px;
  2642. height:80px;
  2643. display:flex;
  2644. font-family:'Microsoft YaHei', sans-serif;
  2645. font-weight:400;
  2646. font-style:normal;
  2647. font-size:14px;
  2648. color:#CCCCCC;
  2649. text-align:left;
  2650. }
  2651. #u97267 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:2px 8px 2px 8px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u97267_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. visibility:hidden;
  2663. }
  2664. #u97268_input {
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:664px;
  2669. height:33px;
  2670. padding:2px 2px 2px 2px;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:14px;
  2675. letter-spacing:normal;
  2676. color:#D7D7D7;
  2677. vertical-align:none;
  2678. text-align:left;
  2679. text-transform:none;
  2680. background-color:transparent;
  2681. border-color:transparent;
  2682. }
  2683. #u97268_input.disabled {
  2684. position:absolute;
  2685. left:0px;
  2686. top:0px;
  2687. width:664px;
  2688. height:33px;
  2689. padding:2px 2px 2px 2px;
  2690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2691. font-weight:400;
  2692. font-style:normal;
  2693. font-size:14px;
  2694. letter-spacing:normal;
  2695. color:#D7D7D7;
  2696. vertical-align:none;
  2697. text-align:left;
  2698. text-transform:none;
  2699. background-color:transparent;
  2700. border-color:transparent;
  2701. }
  2702. #u97268_div {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:664px;
  2708. height:33px;
  2709. background:inherit;
  2710. background-color:rgba(255, 255, 255, 0);
  2711. border:none;
  2712. border-radius:0px;
  2713. -moz-box-shadow:none;
  2714. -webkit-box-shadow:none;
  2715. box-shadow:none;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:14px;
  2720. color:#D7D7D7;
  2721. }
  2722. #u97268 {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:257px;
  2726. top:787px;
  2727. width:664px;
  2728. height:33px;
  2729. display:flex;
  2730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2731. font-weight:400;
  2732. font-style:normal;
  2733. font-size:14px;
  2734. color:#D7D7D7;
  2735. }
  2736. #u97268 .text {
  2737. position:absolute;
  2738. align-self:center;
  2739. padding:2px 2px 2px 2px;
  2740. box-sizing:border-box;
  2741. width:100%;
  2742. }
  2743. #u97268_div.disabled {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:0px;
  2747. top:0px;
  2748. width:664px;
  2749. height:33px;
  2750. background:inherit;
  2751. background-color:rgba(240, 240, 240, 1);
  2752. border:none;
  2753. border-radius:0px;
  2754. -moz-box-shadow:none;
  2755. -webkit-box-shadow:none;
  2756. box-shadow:none;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:14px;
  2761. color:#D7D7D7;
  2762. }
  2763. #u97268.disabled {
  2764. }
  2765. #u97269_div {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:71px;
  2771. height:40px;
  2772. background:inherit;
  2773. background-color:rgba(255, 255, 255, 0);
  2774. border:none;
  2775. border-left:0px;
  2776. border-top:0px;
  2777. border-right:0px;
  2778. border-radius:0px;
  2779. border-bottom-right-radius:0px;
  2780. border-bottom-left-radius:0px;
  2781. -moz-box-shadow:none;
  2782. -webkit-box-shadow:none;
  2783. box-shadow:none;
  2784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2785. font-weight:400;
  2786. font-style:normal;
  2787. font-size:14px;
  2788. }
  2789. #u97269 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:146px;
  2793. top:784px;
  2794. width:71px;
  2795. height:40px;
  2796. display:flex;
  2797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2798. font-weight:400;
  2799. font-style:normal;
  2800. font-size:14px;
  2801. }
  2802. #u97269 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:0px 0px 0px 0px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u97269_text {
  2810. border-width:0px;
  2811. white-space:nowrap;
  2812. text-transform:none;
  2813. }
  2814. #u97270_div {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:0px;
  2818. top:0px;
  2819. width:83px;
  2820. height:35px;
  2821. background:inherit;
  2822. background-color:rgba(255, 255, 255, 0);
  2823. border:none;
  2824. border-top:0px;
  2825. border-right:0px;
  2826. border-bottom:0px;
  2827. border-radius:0px;
  2828. border-top-left-radius:0px;
  2829. border-bottom-left-radius:0px;
  2830. -moz-box-shadow:none;
  2831. -webkit-box-shadow:none;
  2832. box-shadow:none;
  2833. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2834. font-weight:500;
  2835. font-style:normal;
  2836. font-size:18px;
  2837. }
  2838. #u97270 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:126px;
  2842. top:260px;
  2843. width:83px;
  2844. height:35px;
  2845. display:flex;
  2846. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2847. font-weight:500;
  2848. font-style:normal;
  2849. font-size:18px;
  2850. }
  2851. #u97270 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:5px 10px 5px 0px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u97270_text {
  2859. border-width:0px;
  2860. white-space:nowrap;
  2861. text-transform:none;
  2862. }
  2863. #u97271_div {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:65px;
  2869. height:30px;
  2870. background:inherit;
  2871. background-color:rgba(255, 255, 255, 0);
  2872. border:none;
  2873. border-top:0px;
  2874. border-right:0px;
  2875. border-bottom:0px;
  2876. border-radius:0px;
  2877. border-top-left-radius:0px;
  2878. border-bottom-left-radius:0px;
  2879. -moz-box-shadow:none;
  2880. -webkit-box-shadow:none;
  2881. box-shadow:none;
  2882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2883. font-weight:400;
  2884. font-style:normal;
  2885. font-size:14px;
  2886. color:#1890FF;
  2887. }
  2888. #u97271 {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:126px;
  2892. top:305px;
  2893. width:65px;
  2894. height:30px;
  2895. display:flex;
  2896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2897. font-weight:400;
  2898. font-style:normal;
  2899. font-size:14px;
  2900. color:#1890FF;
  2901. }
  2902. #u97271 .text {
  2903. position:absolute;
  2904. align-self:center;
  2905. padding:5px 0px 5px 0px;
  2906. box-sizing:border-box;
  2907. width:100%;
  2908. }
  2909. #u97271_text {
  2910. border-width:0px;
  2911. white-space:nowrap;
  2912. text-transform:none;
  2913. }
  2914. #u97272 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:0px;
  2920. height:0px;
  2921. }
  2922. #u97273 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:126px;
  2926. top:340px;
  2927. width:918px;
  2928. height:60px;
  2929. }
  2930. #u97274_img {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:102px;
  2936. height:30px;
  2937. }
  2938. #u97274 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:102px;
  2944. height:30px;
  2945. display:flex;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. color:#FFFFFF;
  2950. }
  2951. #u97274 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 2px 2px 2px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u97274_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. }
  2963. #u97275_img {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:0px;
  2967. top:0px;
  2968. width:102px;
  2969. height:30px;
  2970. }
  2971. #u97275 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:102px;
  2975. top:0px;
  2976. width:102px;
  2977. height:30px;
  2978. display:flex;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. color:#FFFFFF;
  2983. }
  2984. #u97275 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 2px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u97275_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. }
  2996. #u97276_img {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:0px;
  3000. top:0px;
  3001. width:102px;
  3002. height:30px;
  3003. }
  3004. #u97276 {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:204px;
  3008. top:0px;
  3009. width:102px;
  3010. height:30px;
  3011. display:flex;
  3012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3013. font-weight:400;
  3014. font-style:normal;
  3015. color:#FFFFFF;
  3016. }
  3017. #u97276 .text {
  3018. position:absolute;
  3019. align-self:center;
  3020. padding:2px 2px 2px 2px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u97276_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. }
  3029. #u97277_img {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:102px;
  3035. height:30px;
  3036. }
  3037. #u97277 {
  3038. border-width:0px;
  3039. position:absolute;
  3040. left:306px;
  3041. top:0px;
  3042. width:102px;
  3043. height:30px;
  3044. display:flex;
  3045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. color:#FFFFFF;
  3049. }
  3050. #u97277 .text {
  3051. position:absolute;
  3052. align-self:center;
  3053. padding:2px 2px 2px 2px;
  3054. box-sizing:border-box;
  3055. width:100%;
  3056. }
  3057. #u97277_text {
  3058. border-width:0px;
  3059. word-wrap:break-word;
  3060. text-transform:none;
  3061. }
  3062. #u97278_img {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:102px;
  3068. height:30px;
  3069. }
  3070. #u97278 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:408px;
  3074. top:0px;
  3075. width:102px;
  3076. height:30px;
  3077. display:flex;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. color:#FFFFFF;
  3082. }
  3083. #u97278 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 2px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u97278_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. }
  3095. #u97279_img {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:102px;
  3101. height:30px;
  3102. }
  3103. #u97279 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:510px;
  3107. top:0px;
  3108. width:102px;
  3109. height:30px;
  3110. display:flex;
  3111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3112. font-weight:400;
  3113. font-style:normal;
  3114. color:#FFFFFF;
  3115. }
  3116. #u97279 .text {
  3117. position:absolute;
  3118. align-self:center;
  3119. padding:2px 2px 2px 2px;
  3120. box-sizing:border-box;
  3121. width:100%;
  3122. }
  3123. #u97279_text {
  3124. border-width:0px;
  3125. word-wrap:break-word;
  3126. text-transform:none;
  3127. }
  3128. #u97280_img {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:0px;
  3132. top:0px;
  3133. width:102px;
  3134. height:30px;
  3135. }
  3136. #u97280 {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:612px;
  3140. top:0px;
  3141. width:102px;
  3142. height:30px;
  3143. display:flex;
  3144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3145. font-weight:400;
  3146. font-style:normal;
  3147. color:#FFFFFF;
  3148. }
  3149. #u97280 .text {
  3150. position:absolute;
  3151. align-self:center;
  3152. padding:2px 2px 2px 2px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u97280_text {
  3157. border-width:0px;
  3158. word-wrap:break-word;
  3159. text-transform:none;
  3160. }
  3161. #u97281_img {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:102px;
  3167. height:30px;
  3168. }
  3169. #u97281 {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:714px;
  3173. top:0px;
  3174. width:102px;
  3175. height:30px;
  3176. display:flex;
  3177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. color:#FFFFFF;
  3181. }
  3182. #u97281 .text {
  3183. position:absolute;
  3184. align-self:center;
  3185. padding:2px 2px 2px 2px;
  3186. box-sizing:border-box;
  3187. width:100%;
  3188. }
  3189. #u97281_text {
  3190. border-width:0px;
  3191. word-wrap:break-word;
  3192. text-transform:none;
  3193. }
  3194. #u97282_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:102px;
  3200. height:30px;
  3201. }
  3202. #u97282 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:816px;
  3206. top:0px;
  3207. width:102px;
  3208. height:30px;
  3209. display:flex;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. color:#FFFFFF;
  3214. }
  3215. #u97282 .text {
  3216. position:absolute;
  3217. align-self:center;
  3218. padding:2px 2px 2px 2px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u97282_text {
  3223. border-width:0px;
  3224. word-wrap:break-word;
  3225. text-transform:none;
  3226. }
  3227. #u97283_img {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:102px;
  3233. height:30px;
  3234. }
  3235. #u97283 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:0px;
  3239. top:30px;
  3240. width:102px;
  3241. height:30px;
  3242. display:flex;
  3243. }
  3244. #u97283 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:2px 2px 2px 2px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u97283_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. visibility:hidden;
  3256. }
  3257. #u97284_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:102px;
  3263. height:30px;
  3264. }
  3265. #u97284 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:102px;
  3269. top:30px;
  3270. width:102px;
  3271. height:30px;
  3272. display:flex;
  3273. }
  3274. #u97284 .text {
  3275. position:absolute;
  3276. align-self:center;
  3277. padding:2px 2px 2px 2px;
  3278. box-sizing:border-box;
  3279. width:100%;
  3280. }
  3281. #u97284_text {
  3282. border-width:0px;
  3283. word-wrap:break-word;
  3284. text-transform:none;
  3285. visibility:hidden;
  3286. }
  3287. #u97285_img {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:102px;
  3293. height:30px;
  3294. }
  3295. #u97285 {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:204px;
  3299. top:30px;
  3300. width:102px;
  3301. height:30px;
  3302. display:flex;
  3303. }
  3304. #u97285 .text {
  3305. position:absolute;
  3306. align-self:center;
  3307. padding:2px 2px 2px 2px;
  3308. box-sizing:border-box;
  3309. width:100%;
  3310. }
  3311. #u97285_text {
  3312. border-width:0px;
  3313. word-wrap:break-word;
  3314. text-transform:none;
  3315. visibility:hidden;
  3316. }
  3317. #u97286_img {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:102px;
  3323. height:30px;
  3324. }
  3325. #u97286 {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:306px;
  3329. top:30px;
  3330. width:102px;
  3331. height:30px;
  3332. display:flex;
  3333. }
  3334. #u97286 .text {
  3335. position:absolute;
  3336. align-self:center;
  3337. padding:2px 2px 2px 2px;
  3338. box-sizing:border-box;
  3339. width:100%;
  3340. }
  3341. #u97286_text {
  3342. border-width:0px;
  3343. word-wrap:break-word;
  3344. text-transform:none;
  3345. visibility:hidden;
  3346. }
  3347. #u97287_img {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:0px;
  3351. top:0px;
  3352. width:102px;
  3353. height:30px;
  3354. }
  3355. #u97287 {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:408px;
  3359. top:30px;
  3360. width:102px;
  3361. height:30px;
  3362. display:flex;
  3363. }
  3364. #u97287 .text {
  3365. position:absolute;
  3366. align-self:center;
  3367. padding:2px 2px 2px 2px;
  3368. box-sizing:border-box;
  3369. width:100%;
  3370. }
  3371. #u97287_text {
  3372. border-width:0px;
  3373. word-wrap:break-word;
  3374. text-transform:none;
  3375. visibility:hidden;
  3376. }
  3377. #u97288_img {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:0px;
  3381. top:0px;
  3382. width:102px;
  3383. height:30px;
  3384. }
  3385. #u97288 {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:510px;
  3389. top:30px;
  3390. width:102px;
  3391. height:30px;
  3392. display:flex;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. color:#1890FF;
  3397. }
  3398. #u97288 .text {
  3399. position:absolute;
  3400. align-self:center;
  3401. padding:2px 2px 2px 2px;
  3402. box-sizing:border-box;
  3403. width:100%;
  3404. }
  3405. #u97288_text {
  3406. border-width:0px;
  3407. word-wrap:break-word;
  3408. text-transform:none;
  3409. }
  3410. #u97289_img {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:102px;
  3416. height:30px;
  3417. }
  3418. #u97289 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:612px;
  3422. top:30px;
  3423. width:102px;
  3424. height:30px;
  3425. display:flex;
  3426. }
  3427. #u97289 .text {
  3428. position:absolute;
  3429. align-self:center;
  3430. padding:2px 2px 2px 2px;
  3431. box-sizing:border-box;
  3432. width:100%;
  3433. }
  3434. #u97289_text {
  3435. border-width:0px;
  3436. word-wrap:break-word;
  3437. text-transform:none;
  3438. visibility:hidden;
  3439. }
  3440. #u97290_img {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:102px;
  3446. height:30px;
  3447. }
  3448. #u97290 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:714px;
  3452. top:30px;
  3453. width:102px;
  3454. height:30px;
  3455. display:flex;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. color:#1890FF;
  3460. }
  3461. #u97290 .text {
  3462. position:absolute;
  3463. align-self:center;
  3464. padding:2px 2px 2px 2px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u97290_text {
  3469. border-width:0px;
  3470. word-wrap:break-word;
  3471. text-transform:none;
  3472. }
  3473. #u97291_img {
  3474. border-width:0px;
  3475. position:absolute;
  3476. left:0px;
  3477. top:0px;
  3478. width:102px;
  3479. height:30px;
  3480. }
  3481. #u97291 {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:816px;
  3485. top:30px;
  3486. width:102px;
  3487. height:30px;
  3488. display:flex;
  3489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. color:#1890FF;
  3493. }
  3494. #u97291 .text {
  3495. position:absolute;
  3496. align-self:center;
  3497. padding:2px 2px 2px 2px;
  3498. box-sizing:border-box;
  3499. width:100%;
  3500. }
  3501. #u97291_text {
  3502. border-width:0px;
  3503. word-wrap:break-word;
  3504. text-transform:none;
  3505. }
  3506. #u97292_div {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:65px;
  3512. height:30px;
  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-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:14px;
  3529. color:#1890FF;
  3530. }
  3531. #u97292 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:126px;
  3535. top:430px;
  3536. width:65px;
  3537. height:30px;
  3538. display:flex;
  3539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:14px;
  3543. color:#1890FF;
  3544. }
  3545. #u97292 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:5px 0px 5px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u97292_text {
  3553. border-width:0px;
  3554. white-space:nowrap;
  3555. text-transform:none;
  3556. }
  3557. #u97293 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:0px;
  3561. top:0px;
  3562. width:0px;
  3563. height:0px;
  3564. }
  3565. #u97294 {
  3566. border-width:0px;
  3567. position:absolute;
  3568. left:126px;
  3569. top:465px;
  3570. width:918px;
  3571. height:60px;
  3572. }
  3573. #u97295_img {
  3574. border-width:0px;
  3575. position:absolute;
  3576. left:0px;
  3577. top:0px;
  3578. width:184px;
  3579. height:30px;
  3580. }
  3581. #u97295 {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:184px;
  3587. height:30px;
  3588. display:flex;
  3589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. color:#FFFFFF;
  3593. }
  3594. #u97295 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:2px 2px 2px 2px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u97295_text {
  3602. border-width:0px;
  3603. word-wrap:break-word;
  3604. text-transform:none;
  3605. }
  3606. #u97296_img {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:184px;
  3612. height:30px;
  3613. }
  3614. #u97296 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:184px;
  3618. top:0px;
  3619. width:184px;
  3620. height:30px;
  3621. display:flex;
  3622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. color:#FFFFFF;
  3626. }
  3627. #u97296 .text {
  3628. position:absolute;
  3629. align-self:center;
  3630. padding:2px 2px 2px 2px;
  3631. box-sizing:border-box;
  3632. width:100%;
  3633. }
  3634. #u97296_text {
  3635. border-width:0px;
  3636. word-wrap:break-word;
  3637. text-transform:none;
  3638. }
  3639. #u97297_img {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:184px;
  3645. height:30px;
  3646. }
  3647. #u97297 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:368px;
  3651. top:0px;
  3652. width:184px;
  3653. height:30px;
  3654. display:flex;
  3655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3656. font-weight:400;
  3657. font-style:normal;
  3658. color:#FFFFFF;
  3659. }
  3660. #u97297 .text {
  3661. position:absolute;
  3662. align-self:center;
  3663. padding:2px 2px 2px 2px;
  3664. box-sizing:border-box;
  3665. width:100%;
  3666. }
  3667. #u97297_text {
  3668. border-width:0px;
  3669. word-wrap:break-word;
  3670. text-transform:none;
  3671. }
  3672. #u97298_img {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:184px;
  3678. height:30px;
  3679. }
  3680. #u97298 {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:552px;
  3684. top:0px;
  3685. width:184px;
  3686. height:30px;
  3687. display:flex;
  3688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3689. font-weight:400;
  3690. font-style:normal;
  3691. color:#FFFFFF;
  3692. }
  3693. #u97298 .text {
  3694. position:absolute;
  3695. align-self:center;
  3696. padding:2px 2px 2px 2px;
  3697. box-sizing:border-box;
  3698. width:100%;
  3699. }
  3700. #u97298_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. }
  3705. #u97299_img {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:182px;
  3711. height:30px;
  3712. }
  3713. #u97299 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:736px;
  3717. top:0px;
  3718. width:182px;
  3719. height:30px;
  3720. display:flex;
  3721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3722. font-weight:400;
  3723. font-style:normal;
  3724. color:#FFFFFF;
  3725. }
  3726. #u97299 .text {
  3727. position:absolute;
  3728. align-self:center;
  3729. padding:2px 2px 2px 2px;
  3730. box-sizing:border-box;
  3731. width:100%;
  3732. }
  3733. #u97299_text {
  3734. border-width:0px;
  3735. word-wrap:break-word;
  3736. text-transform:none;
  3737. }
  3738. #u97300_img {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:184px;
  3744. height:30px;
  3745. }
  3746. #u97300 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:30px;
  3751. width:184px;
  3752. height:30px;
  3753. display:flex;
  3754. }
  3755. #u97300 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 2px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u97300_text {
  3763. border-width:0px;
  3764. word-wrap:break-word;
  3765. text-transform:none;
  3766. visibility:hidden;
  3767. }
  3768. #u97301_img {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:0px;
  3772. top:0px;
  3773. width:184px;
  3774. height:30px;
  3775. }
  3776. #u97301 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:184px;
  3780. top:30px;
  3781. width:184px;
  3782. height:30px;
  3783. display:flex;
  3784. }
  3785. #u97301 .text {
  3786. position:absolute;
  3787. align-self:center;
  3788. padding:2px 2px 2px 2px;
  3789. box-sizing:border-box;
  3790. width:100%;
  3791. }
  3792. #u97301_text {
  3793. border-width:0px;
  3794. word-wrap:break-word;
  3795. text-transform:none;
  3796. visibility:hidden;
  3797. }
  3798. #u97302_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:184px;
  3804. height:30px;
  3805. }
  3806. #u97302 {
  3807. border-width:0px;
  3808. position:absolute;
  3809. left:368px;
  3810. top:30px;
  3811. width:184px;
  3812. height:30px;
  3813. display:flex;
  3814. }
  3815. #u97302 .text {
  3816. position:absolute;
  3817. align-self:center;
  3818. padding:2px 2px 2px 2px;
  3819. box-sizing:border-box;
  3820. width:100%;
  3821. }
  3822. #u97302_text {
  3823. border-width:0px;
  3824. word-wrap:break-word;
  3825. text-transform:none;
  3826. visibility:hidden;
  3827. }
  3828. #u97303_img {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:184px;
  3834. height:30px;
  3835. }
  3836. #u97303 {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:552px;
  3840. top:30px;
  3841. width:184px;
  3842. height:30px;
  3843. display:flex;
  3844. color:#7F7F7F;
  3845. }
  3846. #u97303 .text {
  3847. position:absolute;
  3848. align-self:center;
  3849. padding:2px 2px 2px 2px;
  3850. box-sizing:border-box;
  3851. width:100%;
  3852. }
  3853. #u97303_text {
  3854. border-width:0px;
  3855. word-wrap:break-word;
  3856. text-transform:none;
  3857. }
  3858. #u97304_img {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:182px;
  3864. height:30px;
  3865. }
  3866. #u97304 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:736px;
  3870. top:30px;
  3871. width:182px;
  3872. height:30px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. color:#1890FF;
  3878. }
  3879. #u97304 .text {
  3880. position:absolute;
  3881. align-self:center;
  3882. padding:2px 2px 2px 2px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u97304_text {
  3887. border-width:0px;
  3888. word-wrap:break-word;
  3889. text-transform:none;
  3890. }
  3891. #u97305_div {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:65px;
  3897. height:30px;
  3898. background:inherit;
  3899. background-color:rgba(255, 255, 255, 0);
  3900. border:none;
  3901. border-top:0px;
  3902. border-right:0px;
  3903. border-bottom:0px;
  3904. border-radius:0px;
  3905. border-top-left-radius:0px;
  3906. border-bottom-left-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. color:#1890FF;
  3915. }
  3916. #u97305 {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:126px;
  3920. top:545px;
  3921. width:65px;
  3922. height:30px;
  3923. display:flex;
  3924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:14px;
  3928. color:#1890FF;
  3929. }
  3930. #u97305 .text {
  3931. position:absolute;
  3932. align-self:center;
  3933. padding:5px 0px 5px 0px;
  3934. box-sizing:border-box;
  3935. width:100%;
  3936. }
  3937. #u97305_text {
  3938. border-width:0px;
  3939. white-space:nowrap;
  3940. text-transform:none;
  3941. }
  3942. #u97306 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:0px;
  3948. height:0px;
  3949. }
  3950. #u97307 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:126px;
  3954. top:580px;
  3955. width:918px;
  3956. height:60px;
  3957. }
  3958. #u97308_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:131px;
  3964. height:30px;
  3965. }
  3966. #u97308 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:131px;
  3972. height:30px;
  3973. display:flex;
  3974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. color:#FFFFFF;
  3978. }
  3979. #u97308 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 2px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u97308_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. }
  3991. #u97309_img {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:131px;
  3997. height:30px;
  3998. }
  3999. #u97309 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:131px;
  4003. top:0px;
  4004. width:131px;
  4005. height:30px;
  4006. display:flex;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. color:#FFFFFF;
  4011. }
  4012. #u97309 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 2px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u97309_text {
  4020. border-width:0px;
  4021. word-wrap:break-word;
  4022. text-transform:none;
  4023. }
  4024. #u97310_img {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:131px;
  4030. height:30px;
  4031. }
  4032. #u97310 {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:262px;
  4036. top:0px;
  4037. width:131px;
  4038. height:30px;
  4039. display:flex;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. color:#FFFFFF;
  4044. }
  4045. #u97310 .text {
  4046. position:absolute;
  4047. align-self:center;
  4048. padding:2px 2px 2px 2px;
  4049. box-sizing:border-box;
  4050. width:100%;
  4051. }
  4052. #u97310_text {
  4053. border-width:0px;
  4054. word-wrap:break-word;
  4055. text-transform:none;
  4056. }
  4057. #u97311_img {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:131px;
  4063. height:30px;
  4064. }
  4065. #u97311 {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:393px;
  4069. top:0px;
  4070. width:131px;
  4071. height:30px;
  4072. display:flex;
  4073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4074. font-weight:400;
  4075. font-style:normal;
  4076. color:#FFFFFF;
  4077. }
  4078. #u97311 .text {
  4079. position:absolute;
  4080. align-self:center;
  4081. padding:2px 2px 2px 2px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u97311_text {
  4086. border-width:0px;
  4087. word-wrap:break-word;
  4088. text-transform:none;
  4089. }
  4090. #u97312_img {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:131px;
  4096. height:30px;
  4097. }
  4098. #u97312 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:524px;
  4102. top:0px;
  4103. width:131px;
  4104. height:30px;
  4105. display:flex;
  4106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4107. font-weight:400;
  4108. font-style:normal;
  4109. color:#FFFFFF;
  4110. }
  4111. #u97312 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:2px 2px 2px 2px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u97312_text {
  4119. border-width:0px;
  4120. word-wrap:break-word;
  4121. text-transform:none;
  4122. }
  4123. #u97313_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:131px;
  4129. height:30px;
  4130. }
  4131. #u97313 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:655px;
  4135. top:0px;
  4136. width:131px;
  4137. height:30px;
  4138. display:flex;
  4139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. color:#FFFFFF;
  4143. }
  4144. #u97313 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 2px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u97313_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. }
  4156. #u97314_img {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:0px;
  4160. top:0px;
  4161. width:132px;
  4162. height:30px;
  4163. }
  4164. #u97314 {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:786px;
  4168. top:0px;
  4169. width:132px;
  4170. height:30px;
  4171. display:flex;
  4172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4173. font-weight:400;
  4174. font-style:normal;
  4175. color:#FFFFFF;
  4176. }
  4177. #u97314 .text {
  4178. position:absolute;
  4179. align-self:center;
  4180. padding:2px 2px 2px 2px;
  4181. box-sizing:border-box;
  4182. width:100%;
  4183. }
  4184. #u97314_text {
  4185. border-width:0px;
  4186. word-wrap:break-word;
  4187. text-transform:none;
  4188. }
  4189. #u97315_img {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:131px;
  4195. height:30px;
  4196. }
  4197. #u97315 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:0px;
  4201. top:30px;
  4202. width:131px;
  4203. height:30px;
  4204. display:flex;
  4205. }
  4206. #u97315 .text {
  4207. position:absolute;
  4208. align-self:center;
  4209. padding:2px 2px 2px 2px;
  4210. box-sizing:border-box;
  4211. width:100%;
  4212. }
  4213. #u97315_text {
  4214. border-width:0px;
  4215. word-wrap:break-word;
  4216. text-transform:none;
  4217. visibility:hidden;
  4218. }
  4219. #u97316_img {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:131px;
  4225. height:30px;
  4226. }
  4227. #u97316 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:131px;
  4231. top:30px;
  4232. width:131px;
  4233. height:30px;
  4234. display:flex;
  4235. }
  4236. #u97316 .text {
  4237. position:absolute;
  4238. align-self:center;
  4239. padding:2px 2px 2px 2px;
  4240. box-sizing:border-box;
  4241. width:100%;
  4242. }
  4243. #u97316_text {
  4244. border-width:0px;
  4245. word-wrap:break-word;
  4246. text-transform:none;
  4247. visibility:hidden;
  4248. }
  4249. #u97317_img {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:131px;
  4255. height:30px;
  4256. }
  4257. #u97317 {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:262px;
  4261. top:30px;
  4262. width:131px;
  4263. height:30px;
  4264. display:flex;
  4265. }
  4266. #u97317 .text {
  4267. position:absolute;
  4268. align-self:center;
  4269. padding:2px 2px 2px 2px;
  4270. box-sizing:border-box;
  4271. width:100%;
  4272. }
  4273. #u97317_text {
  4274. border-width:0px;
  4275. word-wrap:break-word;
  4276. text-transform:none;
  4277. visibility:hidden;
  4278. }
  4279. #u97318_img {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:0px;
  4283. top:0px;
  4284. width:131px;
  4285. height:30px;
  4286. }
  4287. #u97318 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:393px;
  4291. top:30px;
  4292. width:131px;
  4293. height:30px;
  4294. display:flex;
  4295. }
  4296. #u97318 .text {
  4297. position:absolute;
  4298. align-self:center;
  4299. padding:2px 2px 2px 2px;
  4300. box-sizing:border-box;
  4301. width:100%;
  4302. }
  4303. #u97318_text {
  4304. border-width:0px;
  4305. word-wrap:break-word;
  4306. text-transform:none;
  4307. visibility:hidden;
  4308. }
  4309. #u97319_img {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:0px;
  4313. top:0px;
  4314. width:131px;
  4315. height:30px;
  4316. }
  4317. #u97319 {
  4318. border-width:0px;
  4319. position:absolute;
  4320. left:524px;
  4321. top:30px;
  4322. width:131px;
  4323. height:30px;
  4324. display:flex;
  4325. }
  4326. #u97319 .text {
  4327. position:absolute;
  4328. align-self:center;
  4329. padding:2px 2px 2px 2px;
  4330. box-sizing:border-box;
  4331. width:100%;
  4332. }
  4333. #u97319_text {
  4334. border-width:0px;
  4335. word-wrap:break-word;
  4336. text-transform:none;
  4337. visibility:hidden;
  4338. }
  4339. #u97320_img {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:131px;
  4345. height:30px;
  4346. }
  4347. #u97320 {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:655px;
  4351. top:30px;
  4352. width:131px;
  4353. height:30px;
  4354. display:flex;
  4355. }
  4356. #u97320 .text {
  4357. position:absolute;
  4358. align-self:center;
  4359. padding:2px 2px 2px 2px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u97320_text {
  4364. border-width:0px;
  4365. word-wrap:break-word;
  4366. text-transform:none;
  4367. visibility:hidden;
  4368. }
  4369. #u97321_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:132px;
  4375. height:30px;
  4376. }
  4377. #u97321 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:786px;
  4381. top:30px;
  4382. width:132px;
  4383. height:30px;
  4384. display:flex;
  4385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4386. font-weight:400;
  4387. font-style:normal;
  4388. color:#1890FF;
  4389. }
  4390. #u97321 .text {
  4391. position:absolute;
  4392. align-self:center;
  4393. padding:2px 2px 2px 2px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u97321_text {
  4398. border-width:0px;
  4399. word-wrap:break-word;
  4400. text-transform:none;
  4401. }