styles.css 78 KB

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