styles.css 87 KB

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