styles.css 79 KB

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