styles.css 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-83px;
  6. width:1000px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u14290_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1000px;
  25. height:1000px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 1);
  28. box-sizing:border-box;
  29. border-width:1px;
  30. border-style:solid;
  31. border-color:rgba(242, 242, 242, 1);
  32. border-radius:0px;
  33. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  34. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  35. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  36. color:#1890FF;
  37. }
  38. #u14290 {
  39. border-width:0px;
  40. position:absolute;
  41. left:83px;
  42. top:50px;
  43. width:1000px;
  44. height:1000px;
  45. display:flex;
  46. color:#1890FF;
  47. }
  48. #u14290 .text {
  49. position:absolute;
  50. align-self:center;
  51. padding:2px 2px 2px 2px;
  52. box-sizing:border-box;
  53. width:100%;
  54. }
  55. #u14290_text {
  56. border-width:0px;
  57. word-wrap:break-word;
  58. text-transform:none;
  59. visibility:hidden;
  60. }
  61. #u14291_div {
  62. border-width:0px;
  63. position:absolute;
  64. left:0px;
  65. top:0px;
  66. width:109px;
  67. height:30px;
  68. background:inherit;
  69. background-color:rgba(255, 255, 255, 0);
  70. border:none;
  71. border-radius:0px;
  72. -moz-box-shadow:none;
  73. -webkit-box-shadow:none;
  74. box-shadow:none;
  75. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  76. font-weight:400;
  77. font-style:normal;
  78. font-size:18px;
  79. color:#000000;
  80. line-height:30px;
  81. }
  82. #u14291 {
  83. border-width:0px;
  84. position:absolute;
  85. left:119px;
  86. top:82px;
  87. width:109px;
  88. height:30px;
  89. display:flex;
  90. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  91. font-weight:400;
  92. font-style:normal;
  93. font-size:18px;
  94. color:#000000;
  95. line-height:30px;
  96. }
  97. #u14291 .text {
  98. position:absolute;
  99. align-self:flex-start;
  100. padding:0px 0px 0px 0px;
  101. box-sizing:border-box;
  102. width:100%;
  103. }
  104. #u14291_text {
  105. border-width:0px;
  106. white-space:nowrap;
  107. text-transform:none;
  108. }
  109. #u14292 {
  110. border-width:0px;
  111. position:absolute;
  112. left:0px;
  113. top:0px;
  114. width:0px;
  115. height:0px;
  116. }
  117. #u14293_div {
  118. border-width:0px;
  119. position:absolute;
  120. left:0px;
  121. top:0px;
  122. width:40px;
  123. height:40px;
  124. background:inherit;
  125. background-color:rgba(255, 255, 255, 0);
  126. border:none;
  127. border-top:0px;
  128. border-right:0px;
  129. border-bottom:0px;
  130. border-radius:0px;
  131. border-top-left-radius:0px;
  132. border-bottom-left-radius:0px;
  133. -moz-box-shadow:none;
  134. -webkit-box-shadow:none;
  135. box-shadow:none;
  136. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  137. font-weight:500;
  138. font-style:normal;
  139. font-size:18px;
  140. text-align:center;
  141. }
  142. #u14293 {
  143. border-width:0px;
  144. position:absolute;
  145. left:1043px;
  146. top:50px;
  147. width:40px;
  148. height:40px;
  149. display:flex;
  150. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  151. font-weight:500;
  152. font-style:normal;
  153. font-size:18px;
  154. text-align:center;
  155. }
  156. #u14293 .text {
  157. position:absolute;
  158. align-self:center;
  159. padding:5px 10px 5px 0px;
  160. box-sizing:border-box;
  161. width:100%;
  162. }
  163. #u14293_text {
  164. border-width:0px;
  165. word-wrap:break-word;
  166. text-transform:none;
  167. }
  168. #u14294_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:13px;
  174. height:13px;
  175. }
  176. #u14294 {
  177. border-width:0px;
  178. position:absolute;
  179. left:1030px;
  180. top:68px;
  181. width:13px;
  182. height:13px;
  183. display:flex;
  184. }
  185. #u14294 .text {
  186. position:absolute;
  187. align-self:center;
  188. padding:2px 2px 2px 2px;
  189. box-sizing:border-box;
  190. width:100%;
  191. }
  192. #u14294_text {
  193. border-width:0px;
  194. word-wrap:break-word;
  195. text-transform:none;
  196. visibility:hidden;
  197. }
  198. #u14295 {
  199. border-width:0px;
  200. position:absolute;
  201. left:0px;
  202. top:0px;
  203. width:0px;
  204. height:0px;
  205. }
  206. #u14296_div {
  207. border-width:0px;
  208. position:absolute;
  209. left:0px;
  210. top:0px;
  211. width:900px;
  212. height:200px;
  213. background:inherit;
  214. background-color:rgba(255, 255, 255, 0.933333333333333);
  215. box-sizing:border-box;
  216. border-width:1px;
  217. border-style:solid;
  218. border-color:rgba(242, 242, 242, 1);
  219. border-radius:4px;
  220. -moz-box-shadow:none;
  221. -webkit-box-shadow:none;
  222. box-shadow:none;
  223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  224. font-weight:400;
  225. font-style:normal;
  226. color:#1890FF;
  227. line-height:80px;
  228. }
  229. #u14296 {
  230. border-width:0px;
  231. position:absolute;
  232. left:119px;
  233. top:217px;
  234. width:900px;
  235. height:200px;
  236. display:flex;
  237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  238. font-weight:400;
  239. font-style:normal;
  240. color:#1890FF;
  241. line-height:80px;
  242. }
  243. #u14296 .text {
  244. position:absolute;
  245. align-self:flex-start;
  246. padding:0px 0px 0px 10px;
  247. box-sizing:border-box;
  248. width:100%;
  249. }
  250. #u14296_text {
  251. border-width:0px;
  252. word-wrap:break-word;
  253. text-transform:none;
  254. visibility:hidden;
  255. }
  256. #u14297_div {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:900px;
  262. height:50px;
  263. background:inherit;
  264. background-color:rgba(255, 255, 255, 0.0980392156862745);
  265. box-sizing:border-box;
  266. border-width:1px;
  267. border-style:solid;
  268. border-color:rgba(242, 242, 242, 1);
  269. border-left:0px;
  270. border-top:0px;
  271. border-right:0px;
  272. border-radius:4px;
  273. border-bottom-right-radius:0px;
  274. border-bottom-left-radius:0px;
  275. -moz-box-shadow:none;
  276. -webkit-box-shadow:none;
  277. box-shadow:none;
  278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  279. font-weight:400;
  280. font-style:normal;
  281. color:#1890FF;
  282. line-height:40px;
  283. }
  284. #u14297 {
  285. border-width:0px;
  286. position:absolute;
  287. left:119px;
  288. top:217px;
  289. width:900px;
  290. height:50px;
  291. display:flex;
  292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  293. font-weight:400;
  294. font-style:normal;
  295. color:#1890FF;
  296. line-height:40px;
  297. }
  298. #u14297 .text {
  299. position:absolute;
  300. align-self:flex-start;
  301. padding:0px 0px 0px 10px;
  302. box-sizing:border-box;
  303. width:100%;
  304. }
  305. #u14297_text {
  306. border-width:0px;
  307. word-wrap:break-word;
  308. text-transform:none;
  309. visibility:hidden;
  310. }
  311. #u14298_div {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:57px;
  317. height:40px;
  318. background:inherit;
  319. background-color:rgba(255, 255, 255, 0);
  320. border:none;
  321. border-top:0px;
  322. border-right:0px;
  323. border-bottom:0px;
  324. border-radius:0px;
  325. border-top-left-radius:0px;
  326. border-bottom-left-radius:0px;
  327. -moz-box-shadow:none;
  328. -webkit-box-shadow:none;
  329. box-shadow:none;
  330. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  331. font-weight:500;
  332. font-style:normal;
  333. font-size:14px;
  334. }
  335. #u14298 {
  336. border-width:0px;
  337. position:absolute;
  338. left:149px;
  339. top:222px;
  340. width:57px;
  341. height:40px;
  342. display:flex;
  343. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  344. font-weight:500;
  345. font-style:normal;
  346. font-size:14px;
  347. }
  348. #u14298 .text {
  349. position:absolute;
  350. align-self:center;
  351. padding:5px 0px 5px 0px;
  352. box-sizing:border-box;
  353. width:100%;
  354. }
  355. #u14298_text {
  356. border-width:0px;
  357. white-space:nowrap;
  358. text-transform:none;
  359. }
  360. #u14299_div {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:99px;
  366. height:40px;
  367. background:inherit;
  368. background-color:rgba(255, 255, 255, 0);
  369. border:none;
  370. border-top:0px;
  371. border-right:0px;
  372. border-bottom:0px;
  373. border-radius:0px;
  374. border-top-left-radius:0px;
  375. border-bottom-left-radius:0px;
  376. -moz-box-shadow:none;
  377. -webkit-box-shadow:none;
  378. box-shadow:none;
  379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  380. font-weight:400;
  381. font-style:normal;
  382. font-size:14px;
  383. }
  384. #u14299 {
  385. border-width:0px;
  386. position:absolute;
  387. left:149px;
  388. top:287px;
  389. width:99px;
  390. height:40px;
  391. display:flex;
  392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  393. font-weight:400;
  394. font-style:normal;
  395. font-size:14px;
  396. }
  397. #u14299 .text {
  398. position:absolute;
  399. align-self:center;
  400. padding:5px 0px 5px 0px;
  401. box-sizing:border-box;
  402. width:100%;
  403. }
  404. #u14299_text {
  405. border-width:0px;
  406. white-space:nowrap;
  407. text-transform:none;
  408. }
  409. #u14300_div {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:455px;
  415. height:27px;
  416. background:inherit;
  417. background-color:rgba(129, 211, 248, 0.0980392156862745);
  418. border:none;
  419. border-radius:10px;
  420. -moz-box-shadow:none;
  421. -webkit-box-shadow:none;
  422. box-shadow:none;
  423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  424. font-weight:400;
  425. font-style:normal;
  426. font-size:12px;
  427. color:#1890FF;
  428. }
  429. #u14300 {
  430. border-width:0px;
  431. position:absolute;
  432. left:248px;
  433. top:294px;
  434. width:455px;
  435. height:27px;
  436. display:flex;
  437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  438. font-weight:400;
  439. font-style:normal;
  440. font-size:12px;
  441. color:#1890FF;
  442. }
  443. #u14300 .text {
  444. position:absolute;
  445. align-self:center;
  446. padding:5px 0px 5px 10px;
  447. box-sizing:border-box;
  448. width:100%;
  449. }
  450. #u14300_text {
  451. border-width:0px;
  452. white-space:nowrap;
  453. text-transform:none;
  454. }
  455. #u14301 label {
  456. left:0px;
  457. width:100%;
  458. }
  459. #u14301_img {
  460. border-width:0px;
  461. position:absolute;
  462. left:0px;
  463. top:4px;
  464. width:12px;
  465. height:12px;
  466. }
  467. #u14301 {
  468. border-width:0px;
  469. position:absolute;
  470. left:221px;
  471. top:339px;
  472. width:100px;
  473. height:20px;
  474. display:flex;
  475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  476. font-weight:400;
  477. font-style:normal;
  478. font-size:14px;
  479. }
  480. #u14301 .text {
  481. position:absolute;
  482. align-self:center;
  483. padding:0px 2px 0px 2px;
  484. box-sizing:border-box;
  485. }
  486. #u14301_img.selected {
  487. }
  488. #u14301.selected {
  489. }
  490. #u14301_img.disabled {
  491. }
  492. #u14301.disabled {
  493. }
  494. #u14301_img.selectedDisabled {
  495. }
  496. #u14301.selectedDisabled {
  497. }
  498. #u14301_text {
  499. border-width:0px;
  500. position:absolute;
  501. left:14px;
  502. top:0px;
  503. width:84px;
  504. word-wrap:break-word;
  505. text-transform:none;
  506. }
  507. #u14301_input {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. opacity:0;
  515. }
  516. #u14302 label {
  517. left:0px;
  518. width:100%;
  519. }
  520. #u14302_img {
  521. border-width:0px;
  522. position:absolute;
  523. left:0px;
  524. top:4px;
  525. width:12px;
  526. height:12px;
  527. }
  528. #u14302 {
  529. border-width:0px;
  530. position:absolute;
  531. left:391px;
  532. top:339px;
  533. width:300px;
  534. height:20px;
  535. display:flex;
  536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  537. font-weight:400;
  538. font-style:normal;
  539. font-size:14px;
  540. }
  541. #u14302 .text {
  542. position:absolute;
  543. align-self:center;
  544. padding:0px 2px 0px 2px;
  545. box-sizing:border-box;
  546. }
  547. #u14302_img.selected {
  548. }
  549. #u14302.selected {
  550. }
  551. #u14302_img.disabled {
  552. }
  553. #u14302.disabled {
  554. }
  555. #u14302_img.selectedDisabled {
  556. }
  557. #u14302.selectedDisabled {
  558. }
  559. #u14302_text {
  560. border-width:0px;
  561. position:absolute;
  562. left:14px;
  563. top:0px;
  564. width:284px;
  565. word-wrap:break-word;
  566. text-transform:none;
  567. }
  568. #u14302_input {
  569. border-width:0px;
  570. position:absolute;
  571. left:0px;
  572. top:0px;
  573. width:0px;
  574. height:0px;
  575. opacity:0;
  576. }
  577. #u14303 label {
  578. left:0px;
  579. width:100%;
  580. }
  581. #u14303_img {
  582. border-width:0px;
  583. position:absolute;
  584. left:0px;
  585. top:4px;
  586. width:12px;
  587. height:12px;
  588. }
  589. #u14303 {
  590. border-width:0px;
  591. position:absolute;
  592. left:221px;
  593. top:379px;
  594. width:100px;
  595. height:20px;
  596. display:flex;
  597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  598. font-weight:400;
  599. font-style:normal;
  600. font-size:14px;
  601. }
  602. #u14303 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:0px 2px 0px 2px;
  606. box-sizing:border-box;
  607. }
  608. #u14303_img.selected {
  609. }
  610. #u14303.selected {
  611. }
  612. #u14303_img.disabled {
  613. }
  614. #u14303.disabled {
  615. }
  616. #u14303_img.selectedDisabled {
  617. }
  618. #u14303.selectedDisabled {
  619. }
  620. #u14303_text {
  621. border-width:0px;
  622. position:absolute;
  623. left:14px;
  624. top:0px;
  625. width:84px;
  626. word-wrap:break-word;
  627. text-transform:none;
  628. }
  629. #u14303_input {
  630. border-width:0px;
  631. position:absolute;
  632. left:0px;
  633. top:0px;
  634. width:0px;
  635. height:0px;
  636. opacity:0;
  637. }
  638. #u14304 label {
  639. left:0px;
  640. width:100%;
  641. }
  642. #u14304_img {
  643. border-width:0px;
  644. position:absolute;
  645. left:0px;
  646. top:4px;
  647. width:12px;
  648. height:12px;
  649. }
  650. #u14304 {
  651. border-width:0px;
  652. position:absolute;
  653. left:391px;
  654. top:379px;
  655. width:300px;
  656. height:20px;
  657. display:flex;
  658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  659. font-weight:400;
  660. font-style:normal;
  661. font-size:14px;
  662. }
  663. #u14304 .text {
  664. position:absolute;
  665. align-self:center;
  666. padding:0px 2px 0px 2px;
  667. box-sizing:border-box;
  668. }
  669. #u14304_img.selected {
  670. }
  671. #u14304.selected {
  672. }
  673. #u14304_img.disabled {
  674. }
  675. #u14304.disabled {
  676. }
  677. #u14304_img.selectedDisabled {
  678. }
  679. #u14304.selectedDisabled {
  680. }
  681. #u14304_text {
  682. border-width:0px;
  683. position:absolute;
  684. left:14px;
  685. top:0px;
  686. width:284px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. }
  690. #u14304_input {
  691. border-width:0px;
  692. position:absolute;
  693. left:0px;
  694. top:0px;
  695. width:0px;
  696. height:0px;
  697. opacity:0;
  698. }
  699. #u14305 label {
  700. left:0px;
  701. width:100%;
  702. }
  703. #u14305_img {
  704. border-width:0px;
  705. position:absolute;
  706. left:0px;
  707. top:4px;
  708. width:12px;
  709. height:12px;
  710. }
  711. #u14305 {
  712. border-width:0px;
  713. position:absolute;
  714. left:691px;
  715. top:379px;
  716. width:300px;
  717. height:20px;
  718. display:flex;
  719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  720. font-weight:400;
  721. font-style:normal;
  722. font-size:14px;
  723. }
  724. #u14305 .text {
  725. position:absolute;
  726. align-self:center;
  727. padding:0px 2px 0px 2px;
  728. box-sizing:border-box;
  729. }
  730. #u14305_img.selected {
  731. }
  732. #u14305.selected {
  733. }
  734. #u14305_img.disabled {
  735. }
  736. #u14305.disabled {
  737. }
  738. #u14305_img.selectedDisabled {
  739. }
  740. #u14305.selectedDisabled {
  741. }
  742. #u14305_text {
  743. border-width:0px;
  744. position:absolute;
  745. left:14px;
  746. top:0px;
  747. width:284px;
  748. word-wrap:break-word;
  749. text-transform:none;
  750. }
  751. #u14305_input {
  752. border-width:0px;
  753. position:absolute;
  754. left:0px;
  755. top:0px;
  756. width:0px;
  757. height:0px;
  758. opacity:0;
  759. }
  760. #u14306_div {
  761. border-width:0px;
  762. position:absolute;
  763. left:0px;
  764. top:0px;
  765. width:71px;
  766. height:40px;
  767. background:inherit;
  768. background-color:rgba(255, 255, 255, 0);
  769. border:none;
  770. border-top:0px;
  771. border-right:0px;
  772. border-bottom:0px;
  773. border-radius:0px;
  774. border-top-left-radius:0px;
  775. border-bottom-left-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:14px;
  783. }
  784. #u14306 {
  785. border-width:0px;
  786. position:absolute;
  787. left:150px;
  788. top:327px;
  789. width:71px;
  790. height:40px;
  791. display:flex;
  792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  793. font-weight:400;
  794. font-style:normal;
  795. font-size:14px;
  796. }
  797. #u14306 .text {
  798. position:absolute;
  799. align-self:center;
  800. padding:5px 0px 5px 0px;
  801. box-sizing:border-box;
  802. width:100%;
  803. }
  804. #u14306_text {
  805. border-width:0px;
  806. white-space:nowrap;
  807. text-transform:none;
  808. }
  809. #u14307_div {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:71px;
  815. height:40px;
  816. background:inherit;
  817. background-color:rgba(255, 255, 255, 0);
  818. border:none;
  819. border-top:0px;
  820. border-right:0px;
  821. border-bottom:0px;
  822. border-radius:0px;
  823. border-top-left-radius:0px;
  824. border-bottom-left-radius:0px;
  825. -moz-box-shadow:none;
  826. -webkit-box-shadow:none;
  827. box-shadow:none;
  828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  829. font-weight:400;
  830. font-style:normal;
  831. font-size:14px;
  832. }
  833. #u14307 {
  834. border-width:0px;
  835. position:absolute;
  836. left:149px;
  837. top:367px;
  838. width:71px;
  839. height:40px;
  840. display:flex;
  841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  842. font-weight:400;
  843. font-style:normal;
  844. font-size:14px;
  845. }
  846. #u14307 .text {
  847. position:absolute;
  848. align-self:center;
  849. padding:5px 0px 5px 0px;
  850. box-sizing:border-box;
  851. width:100%;
  852. }
  853. #u14307_text {
  854. border-width:0px;
  855. white-space:nowrap;
  856. text-transform:none;
  857. }
  858. #u14308 {
  859. border-width:0px;
  860. position:absolute;
  861. left:0px;
  862. top:0px;
  863. width:0px;
  864. height:0px;
  865. }
  866. #u14309_div {
  867. border-width:0px;
  868. position:absolute;
  869. left:0px;
  870. top:0px;
  871. width:900px;
  872. height:200px;
  873. background:inherit;
  874. background-color:rgba(255, 255, 255, 0.933333333333333);
  875. box-sizing:border-box;
  876. border-width:1px;
  877. border-style:solid;
  878. border-color:rgba(242, 242, 242, 1);
  879. border-radius:4px;
  880. -moz-box-shadow:none;
  881. -webkit-box-shadow:none;
  882. box-shadow:none;
  883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  884. font-weight:400;
  885. font-style:normal;
  886. color:#1890FF;
  887. line-height:40px;
  888. }
  889. #u14309 {
  890. border-width:0px;
  891. position:absolute;
  892. left:119px;
  893. top:637px;
  894. width:900px;
  895. height:200px;
  896. display:flex;
  897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. color:#1890FF;
  901. line-height:40px;
  902. }
  903. #u14309 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 10px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u14309_text {
  911. border-width:0px;
  912. word-wrap:break-word;
  913. text-transform:none;
  914. visibility:hidden;
  915. }
  916. #u14310 label {
  917. left:0px;
  918. width:100%;
  919. }
  920. #u14310_img {
  921. border-width:0px;
  922. position:absolute;
  923. left:0px;
  924. top:4px;
  925. width:12px;
  926. height:12px;
  927. }
  928. #u14310 {
  929. border-width:0px;
  930. position:absolute;
  931. left:162px;
  932. top:706px;
  933. width:100px;
  934. height:20px;
  935. display:flex;
  936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  937. font-weight:400;
  938. font-style:normal;
  939. font-size:14px;
  940. }
  941. #u14310 .text {
  942. position:absolute;
  943. align-self:center;
  944. padding:0px 2px 0px 2px;
  945. box-sizing:border-box;
  946. }
  947. #u14310_img.selected {
  948. }
  949. #u14310.selected {
  950. }
  951. #u14310_img.disabled {
  952. }
  953. #u14310.disabled {
  954. }
  955. #u14310_img.selectedDisabled {
  956. }
  957. #u14310.selectedDisabled {
  958. }
  959. #u14310_text {
  960. border-width:0px;
  961. position:absolute;
  962. left:14px;
  963. top:0px;
  964. width:84px;
  965. word-wrap:break-word;
  966. text-transform:none;
  967. }
  968. #u14310_input {
  969. border-width:0px;
  970. position:absolute;
  971. left:0px;
  972. top:0px;
  973. width:0px;
  974. height:0px;
  975. opacity:0;
  976. }
  977. #u14311_div {
  978. border-width:0px;
  979. position:absolute;
  980. left:0px;
  981. top:0px;
  982. width:900px;
  983. height:50px;
  984. background:inherit;
  985. background-color:rgba(255, 255, 255, 0.0980392156862745);
  986. box-sizing:border-box;
  987. border-width:1px;
  988. border-style:solid;
  989. border-color:rgba(242, 242, 242, 1);
  990. border-left:0px;
  991. border-top:0px;
  992. border-right:0px;
  993. border-radius:4px;
  994. border-bottom-right-radius:0px;
  995. border-bottom-left-radius:0px;
  996. -moz-box-shadow:none;
  997. -webkit-box-shadow:none;
  998. box-shadow:none;
  999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1000. font-weight:400;
  1001. font-style:normal;
  1002. color:#1890FF;
  1003. line-height:40px;
  1004. }
  1005. #u14311 {
  1006. border-width:0px;
  1007. position:absolute;
  1008. left:119px;
  1009. top:637px;
  1010. width:900px;
  1011. height:50px;
  1012. display:flex;
  1013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1014. font-weight:400;
  1015. font-style:normal;
  1016. color:#1890FF;
  1017. line-height:40px;
  1018. }
  1019. #u14311 .text {
  1020. position:absolute;
  1021. align-self:flex-start;
  1022. padding:0px 0px 0px 10px;
  1023. box-sizing:border-box;
  1024. width:100%;
  1025. }
  1026. #u14311_text {
  1027. border-width:0px;
  1028. word-wrap:break-word;
  1029. text-transform:none;
  1030. visibility:hidden;
  1031. }
  1032. #u14312_div {
  1033. border-width:0px;
  1034. position:absolute;
  1035. left:0px;
  1036. top:0px;
  1037. width:57px;
  1038. height:40px;
  1039. background:inherit;
  1040. background-color:rgba(255, 255, 255, 0);
  1041. border:none;
  1042. border-top:0px;
  1043. border-right:0px;
  1044. border-bottom:0px;
  1045. border-radius:0px;
  1046. border-top-left-radius:0px;
  1047. border-bottom-left-radius:0px;
  1048. -moz-box-shadow:none;
  1049. -webkit-box-shadow:none;
  1050. box-shadow:none;
  1051. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1052. font-weight:500;
  1053. font-style:normal;
  1054. font-size:14px;
  1055. }
  1056. #u14312 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:149px;
  1060. top:642px;
  1061. width:57px;
  1062. height:40px;
  1063. display:flex;
  1064. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1065. font-weight:500;
  1066. font-style:normal;
  1067. font-size:14px;
  1068. }
  1069. #u14312 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:5px 0px 5px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u14312_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u14313 label {
  1082. left:0px;
  1083. width:100%;
  1084. }
  1085. #u14313_img {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:4px;
  1090. width:12px;
  1091. height:12px;
  1092. }
  1093. #u14313 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:163px;
  1097. top:746px;
  1098. width:100px;
  1099. height:20px;
  1100. display:flex;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. font-size:14px;
  1105. }
  1106. #u14313 .text {
  1107. position:absolute;
  1108. align-self:center;
  1109. padding:0px 2px 0px 2px;
  1110. box-sizing:border-box;
  1111. }
  1112. #u14313_img.selected {
  1113. }
  1114. #u14313.selected {
  1115. }
  1116. #u14313_img.disabled {
  1117. }
  1118. #u14313.disabled {
  1119. }
  1120. #u14313_img.selectedDisabled {
  1121. }
  1122. #u14313.selectedDisabled {
  1123. }
  1124. #u14313_text {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:14px;
  1128. top:0px;
  1129. width:84px;
  1130. word-wrap:break-word;
  1131. text-transform:none;
  1132. }
  1133. #u14313_input {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:0px;
  1137. top:0px;
  1138. width:0px;
  1139. height:0px;
  1140. opacity:0;
  1141. }
  1142. #u14314 label {
  1143. left:0px;
  1144. width:100%;
  1145. }
  1146. #u14314_img {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:0px;
  1150. top:4px;
  1151. width:12px;
  1152. height:12px;
  1153. }
  1154. #u14314 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:162px;
  1158. top:786px;
  1159. width:100px;
  1160. height:20px;
  1161. display:flex;
  1162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1163. font-weight:400;
  1164. font-style:normal;
  1165. font-size:14px;
  1166. }
  1167. #u14314 .text {
  1168. position:absolute;
  1169. align-self:center;
  1170. padding:0px 2px 0px 2px;
  1171. box-sizing:border-box;
  1172. }
  1173. #u14314_img.selected {
  1174. }
  1175. #u14314.selected {
  1176. }
  1177. #u14314_img.disabled {
  1178. }
  1179. #u14314.disabled {
  1180. }
  1181. #u14314_img.selectedDisabled {
  1182. }
  1183. #u14314.selectedDisabled {
  1184. }
  1185. #u14314_text {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:14px;
  1189. top:0px;
  1190. width:84px;
  1191. word-wrap:break-word;
  1192. text-transform:none;
  1193. }
  1194. #u14314_input {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:0px;
  1198. top:0px;
  1199. width:0px;
  1200. height:0px;
  1201. opacity:0;
  1202. }
  1203. #u14315 {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:0px;
  1209. height:0px;
  1210. }
  1211. #u14316_div {
  1212. border-width:0px;
  1213. position:absolute;
  1214. left:0px;
  1215. top:0px;
  1216. width:140px;
  1217. height:30px;
  1218. background:inherit;
  1219. background-color:rgba(255, 255, 255, 1);
  1220. box-sizing:border-box;
  1221. border-width:1px;
  1222. border-style:solid;
  1223. border-color:rgba(215, 215, 215, 1);
  1224. border-radius:4px;
  1225. -moz-box-shadow:none;
  1226. -webkit-box-shadow:none;
  1227. box-shadow:none;
  1228. font-size:14px;
  1229. }
  1230. #u14316 {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:354px;
  1234. top:701px;
  1235. width:140px;
  1236. height:30px;
  1237. display:flex;
  1238. font-size:14px;
  1239. }
  1240. #u14316 .text {
  1241. position:absolute;
  1242. align-self:center;
  1243. padding:2px 2px 2px 2px;
  1244. box-sizing:border-box;
  1245. width:100%;
  1246. }
  1247. #u14316_text {
  1248. border-width:0px;
  1249. word-wrap:break-word;
  1250. text-transform:none;
  1251. visibility:hidden;
  1252. }
  1253. #u14317_input {
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:134px;
  1258. height:23px;
  1259. padding:2px 2px 2px 2px;
  1260. font-family:'ArialMT', 'Arial', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:14px;
  1264. letter-spacing:normal;
  1265. color:#AAAAAA;
  1266. vertical-align:none;
  1267. text-align:left;
  1268. text-transform:none;
  1269. background-color:transparent;
  1270. border-color:transparent;
  1271. }
  1272. #u14317_input.disabled {
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:134px;
  1277. height:23px;
  1278. padding:2px 2px 2px 2px;
  1279. font-family:'ArialMT', 'Arial', sans-serif;
  1280. font-weight:400;
  1281. font-style:normal;
  1282. font-size:14px;
  1283. letter-spacing:normal;
  1284. color:#AAAAAA;
  1285. vertical-align:none;
  1286. text-align:left;
  1287. text-transform:none;
  1288. background-color:transparent;
  1289. border-color:transparent;
  1290. }
  1291. #u14317_div {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:0px;
  1295. top:0px;
  1296. width:134px;
  1297. height:23px;
  1298. background:inherit;
  1299. background-color:rgba(255, 255, 255, 1);
  1300. border:none;
  1301. border-radius:0px;
  1302. -moz-box-shadow:none;
  1303. -webkit-box-shadow:none;
  1304. box-shadow:none;
  1305. font-size:14px;
  1306. color:#AAAAAA;
  1307. }
  1308. #u14317 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:357px;
  1312. top:703px;
  1313. width:134px;
  1314. height:23px;
  1315. display:flex;
  1316. font-size:14px;
  1317. color:#AAAAAA;
  1318. }
  1319. #u14317 .text {
  1320. position:absolute;
  1321. align-self:flex-start;
  1322. padding:2px 2px 2px 2px;
  1323. box-sizing:border-box;
  1324. width:100%;
  1325. }
  1326. #u14317_div.disabled {
  1327. border-width:0px;
  1328. position:absolute;
  1329. left:0px;
  1330. top:0px;
  1331. width:134px;
  1332. height:23px;
  1333. background:inherit;
  1334. background-color:rgba(240, 240, 240, 1);
  1335. border:none;
  1336. border-radius:0px;
  1337. -moz-box-shadow:none;
  1338. -webkit-box-shadow:none;
  1339. box-shadow:none;
  1340. font-size:14px;
  1341. color:#AAAAAA;
  1342. }
  1343. #u14317.disabled {
  1344. }
  1345. .u14317_input_option {
  1346. font-size:14px;
  1347. }
  1348. #u14318_div {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:61px;
  1354. height:30px;
  1355. background:inherit;
  1356. background-color:rgba(255, 255, 255, 0);
  1357. border:none;
  1358. border-top:0px;
  1359. border-right:0px;
  1360. border-bottom:0px;
  1361. border-radius:0px;
  1362. border-top-left-radius:0px;
  1363. border-bottom-left-radius:0px;
  1364. -moz-box-shadow:none;
  1365. -webkit-box-shadow:none;
  1366. box-shadow:none;
  1367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1368. font-weight:400;
  1369. font-style:normal;
  1370. font-size:12px;
  1371. color:#AAAAAA;
  1372. }
  1373. #u14318 {
  1374. border-width:0px;
  1375. position:absolute;
  1376. left:293px;
  1377. top:701px;
  1378. width:61px;
  1379. height:30px;
  1380. display:flex;
  1381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1382. font-weight:400;
  1383. font-style:normal;
  1384. font-size:12px;
  1385. color:#AAAAAA;
  1386. }
  1387. #u14318 .text {
  1388. position:absolute;
  1389. align-self:center;
  1390. padding:5px 0px 5px 0px;
  1391. box-sizing:border-box;
  1392. width:100%;
  1393. }
  1394. #u14318_text {
  1395. border-width:0px;
  1396. white-space:nowrap;
  1397. text-transform:none;
  1398. }
  1399. #u14319 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:0px;
  1403. top:0px;
  1404. width:0px;
  1405. height:0px;
  1406. }
  1407. #u14320_div {
  1408. border-width:0px;
  1409. position:absolute;
  1410. left:0px;
  1411. top:0px;
  1412. width:140px;
  1413. height:30px;
  1414. background:inherit;
  1415. background-color:rgba(255, 255, 255, 1);
  1416. box-sizing:border-box;
  1417. border-width:1px;
  1418. border-style:solid;
  1419. border-color:rgba(215, 215, 215, 1);
  1420. border-radius:4px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-size:14px;
  1425. }
  1426. #u14320 {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:354px;
  1430. top:741px;
  1431. width:140px;
  1432. height:30px;
  1433. display:flex;
  1434. font-size:14px;
  1435. }
  1436. #u14320 .text {
  1437. position:absolute;
  1438. align-self:center;
  1439. padding:2px 2px 2px 2px;
  1440. box-sizing:border-box;
  1441. width:100%;
  1442. }
  1443. #u14320_text {
  1444. border-width:0px;
  1445. word-wrap:break-word;
  1446. text-transform:none;
  1447. visibility:hidden;
  1448. }
  1449. #u14321_input {
  1450. position:absolute;
  1451. left:0px;
  1452. top:0px;
  1453. width:134px;
  1454. height:23px;
  1455. padding:2px 2px 2px 2px;
  1456. font-family:'ArialMT', 'Arial', sans-serif;
  1457. font-weight:400;
  1458. font-style:normal;
  1459. font-size:14px;
  1460. letter-spacing:normal;
  1461. color:#AAAAAA;
  1462. vertical-align:none;
  1463. text-align:left;
  1464. text-transform:none;
  1465. background-color:transparent;
  1466. border-color:transparent;
  1467. }
  1468. #u14321_input.disabled {
  1469. position:absolute;
  1470. left:0px;
  1471. top:0px;
  1472. width:134px;
  1473. height:23px;
  1474. padding:2px 2px 2px 2px;
  1475. font-family:'ArialMT', 'Arial', sans-serif;
  1476. font-weight:400;
  1477. font-style:normal;
  1478. font-size:14px;
  1479. letter-spacing:normal;
  1480. color:#AAAAAA;
  1481. vertical-align:none;
  1482. text-align:left;
  1483. text-transform:none;
  1484. background-color:transparent;
  1485. border-color:transparent;
  1486. }
  1487. #u14321_div {
  1488. border-width:0px;
  1489. position:absolute;
  1490. left:0px;
  1491. top:0px;
  1492. width:134px;
  1493. height:23px;
  1494. background:inherit;
  1495. background-color:rgba(255, 255, 255, 1);
  1496. border:none;
  1497. border-radius:0px;
  1498. -moz-box-shadow:none;
  1499. -webkit-box-shadow:none;
  1500. box-shadow:none;
  1501. font-size:14px;
  1502. color:#AAAAAA;
  1503. }
  1504. #u14321 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:357px;
  1508. top:743px;
  1509. width:134px;
  1510. height:23px;
  1511. display:flex;
  1512. font-size:14px;
  1513. color:#AAAAAA;
  1514. }
  1515. #u14321 .text {
  1516. position:absolute;
  1517. align-self:flex-start;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u14321_div.disabled {
  1523. border-width:0px;
  1524. position:absolute;
  1525. left:0px;
  1526. top:0px;
  1527. width:134px;
  1528. height:23px;
  1529. background:inherit;
  1530. background-color:rgba(240, 240, 240, 1);
  1531. border:none;
  1532. border-radius:0px;
  1533. -moz-box-shadow:none;
  1534. -webkit-box-shadow:none;
  1535. box-shadow:none;
  1536. font-size:14px;
  1537. color:#AAAAAA;
  1538. }
  1539. #u14321.disabled {
  1540. }
  1541. .u14321_input_option {
  1542. font-size:14px;
  1543. }
  1544. #u14322_div {
  1545. border-width:0px;
  1546. position:absolute;
  1547. left:0px;
  1548. top:0px;
  1549. width:61px;
  1550. height:30px;
  1551. background:inherit;
  1552. background-color:rgba(255, 255, 255, 0);
  1553. border:none;
  1554. border-top:0px;
  1555. border-right:0px;
  1556. border-bottom:0px;
  1557. border-radius:0px;
  1558. border-top-left-radius:0px;
  1559. border-bottom-left-radius:0px;
  1560. -moz-box-shadow:none;
  1561. -webkit-box-shadow:none;
  1562. box-shadow:none;
  1563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1564. font-weight:400;
  1565. font-style:normal;
  1566. font-size:12px;
  1567. color:#AAAAAA;
  1568. }
  1569. #u14322 {
  1570. border-width:0px;
  1571. position:absolute;
  1572. left:293px;
  1573. top:741px;
  1574. width:61px;
  1575. height:30px;
  1576. display:flex;
  1577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1578. font-weight:400;
  1579. font-style:normal;
  1580. font-size:12px;
  1581. color:#AAAAAA;
  1582. }
  1583. #u14322 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:5px 0px 5px 0px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u14322_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u14323_div {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:85px;
  1601. height:30px;
  1602. background:inherit;
  1603. background-color:rgba(255, 255, 255, 0);
  1604. border:none;
  1605. border-top:0px;
  1606. border-right:0px;
  1607. border-bottom:0px;
  1608. border-radius:0px;
  1609. border-top-left-radius:0px;
  1610. border-bottom-left-radius:0px;
  1611. -moz-box-shadow:none;
  1612. -webkit-box-shadow:none;
  1613. box-shadow:none;
  1614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1615. font-weight:400;
  1616. font-style:normal;
  1617. font-size:12px;
  1618. color:#AAAAAA;
  1619. }
  1620. #u14323 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:551px;
  1624. top:701px;
  1625. width:85px;
  1626. height:30px;
  1627. display:flex;
  1628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1629. font-weight:400;
  1630. font-style:normal;
  1631. font-size:12px;
  1632. color:#AAAAAA;
  1633. }
  1634. #u14323 .text {
  1635. position:absolute;
  1636. align-self:center;
  1637. padding:5px 0px 5px 0px;
  1638. box-sizing:border-box;
  1639. width:100%;
  1640. }
  1641. #u14323_text {
  1642. border-width:0px;
  1643. white-space:nowrap;
  1644. text-transform:none;
  1645. }
  1646. #u14324_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:140px;
  1652. height:30px;
  1653. background:inherit;
  1654. background-color:rgba(242, 242, 242, 1);
  1655. box-sizing:border-box;
  1656. border-width:1px;
  1657. border-style:solid;
  1658. border-color:rgba(215, 215, 215, 1);
  1659. border-radius:4px;
  1660. -moz-box-shadow:none;
  1661. -webkit-box-shadow:none;
  1662. box-shadow:none;
  1663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1664. font-weight:400;
  1665. font-style:normal;
  1666. font-size:14px;
  1667. color:#7F7F7F;
  1668. text-align:left;
  1669. }
  1670. #u14324 {
  1671. border-width:0px;
  1672. position:absolute;
  1673. left:354px;
  1674. top:781px;
  1675. width:140px;
  1676. height:30px;
  1677. display:flex;
  1678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1679. font-weight:400;
  1680. font-style:normal;
  1681. font-size:14px;
  1682. color:#7F7F7F;
  1683. text-align:left;
  1684. }
  1685. #u14324 .text {
  1686. position:absolute;
  1687. align-self:center;
  1688. padding:2px 2px 2px 10px;
  1689. box-sizing:border-box;
  1690. width:100%;
  1691. }
  1692. #u14324_text {
  1693. border-width:0px;
  1694. word-wrap:break-word;
  1695. text-transform:none;
  1696. }
  1697. #u14325_div {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:61px;
  1703. height:30px;
  1704. background:inherit;
  1705. background-color:rgba(255, 255, 255, 0);
  1706. border:none;
  1707. border-top:0px;
  1708. border-right:0px;
  1709. border-bottom:0px;
  1710. border-radius:0px;
  1711. border-top-left-radius:0px;
  1712. border-bottom-left-radius:0px;
  1713. -moz-box-shadow:none;
  1714. -webkit-box-shadow:none;
  1715. box-shadow:none;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:12px;
  1720. color:#AAAAAA;
  1721. }
  1722. #u14325 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:293px;
  1726. top:781px;
  1727. width:61px;
  1728. height:30px;
  1729. display:flex;
  1730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. font-size:12px;
  1734. color:#AAAAAA;
  1735. }
  1736. #u14325 .text {
  1737. position:absolute;
  1738. align-self:center;
  1739. padding:5px 0px 5px 0px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u14325_text {
  1744. border-width:0px;
  1745. white-space:nowrap;
  1746. text-transform:none;
  1747. }
  1748. #u14326_div {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:55px;
  1754. height:30px;
  1755. background:inherit;
  1756. background-color:rgba(255, 255, 255, 1);
  1757. box-sizing:border-box;
  1758. border-width:1px;
  1759. border-style:solid;
  1760. border-color:rgba(24, 144, 255, 1);
  1761. border-radius:4px;
  1762. -moz-box-shadow:none;
  1763. -webkit-box-shadow:none;
  1764. box-shadow:none;
  1765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1766. font-weight:400;
  1767. font-style:normal;
  1768. font-size:14px;
  1769. color:#1890FF;
  1770. }
  1771. #u14326 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:636px;
  1775. top:701px;
  1776. width:55px;
  1777. height:30px;
  1778. display:flex;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:14px;
  1783. color:#1890FF;
  1784. }
  1785. #u14326 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u14326_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. }
  1797. #u14327_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:85px;
  1803. height:30px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-top:0px;
  1808. border-right:0px;
  1809. border-bottom:0px;
  1810. border-radius:0px;
  1811. border-top-left-radius:0px;
  1812. border-bottom-left-radius:0px;
  1813. -moz-box-shadow:none;
  1814. -webkit-box-shadow:none;
  1815. box-shadow:none;
  1816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:12px;
  1820. color:#AAAAAA;
  1821. }
  1822. #u14327 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:761px;
  1826. top:701px;
  1827. width:85px;
  1828. height:30px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:12px;
  1834. color:#AAAAAA;
  1835. }
  1836. #u14327 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:5px 0px 5px 0px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u14327_text {
  1844. border-width:0px;
  1845. white-space:nowrap;
  1846. text-transform:none;
  1847. }
  1848. #u14328_div {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:55px;
  1854. height:30px;
  1855. background:inherit;
  1856. background-color:rgba(255, 255, 255, 1);
  1857. box-sizing:border-box;
  1858. border-width:1px;
  1859. border-style:solid;
  1860. border-color:rgba(24, 144, 255, 1);
  1861. border-radius:4px;
  1862. -moz-box-shadow:none;
  1863. -webkit-box-shadow:none;
  1864. box-shadow:none;
  1865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1866. font-weight:400;
  1867. font-style:normal;
  1868. font-size:14px;
  1869. color:#1890FF;
  1870. }
  1871. #u14328 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:846px;
  1875. top:701px;
  1876. width:55px;
  1877. height:30px;
  1878. display:flex;
  1879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1880. font-weight:400;
  1881. font-style:normal;
  1882. font-size:14px;
  1883. color:#1890FF;
  1884. }
  1885. #u14328 .text {
  1886. position:absolute;
  1887. align-self:center;
  1888. padding:2px 2px 2px 2px;
  1889. box-sizing:border-box;
  1890. width:100%;
  1891. }
  1892. #u14328_text {
  1893. border-width:0px;
  1894. word-wrap:break-word;
  1895. text-transform:none;
  1896. }
  1897. #u14329_div {
  1898. border-width:0px;
  1899. position:absolute;
  1900. left:0px;
  1901. top:0px;
  1902. width:85px;
  1903. height:30px;
  1904. background:inherit;
  1905. background-color:rgba(255, 255, 255, 0);
  1906. border:none;
  1907. border-top:0px;
  1908. border-right:0px;
  1909. border-bottom:0px;
  1910. border-radius:0px;
  1911. border-top-left-radius:0px;
  1912. border-bottom-left-radius:0px;
  1913. -moz-box-shadow:none;
  1914. -webkit-box-shadow:none;
  1915. box-shadow:none;
  1916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1917. font-weight:400;
  1918. font-style:normal;
  1919. font-size:12px;
  1920. color:#AAAAAA;
  1921. }
  1922. #u14329 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:551px;
  1926. top:740px;
  1927. width:85px;
  1928. height:30px;
  1929. display:flex;
  1930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1931. font-weight:400;
  1932. font-style:normal;
  1933. font-size:12px;
  1934. color:#AAAAAA;
  1935. }
  1936. #u14329 .text {
  1937. position:absolute;
  1938. align-self:center;
  1939. padding:5px 0px 5px 0px;
  1940. box-sizing:border-box;
  1941. width:100%;
  1942. }
  1943. #u14329_text {
  1944. border-width:0px;
  1945. white-space:nowrap;
  1946. text-transform:none;
  1947. }
  1948. #u14330_div {
  1949. border-width:0px;
  1950. position:absolute;
  1951. left:0px;
  1952. top:0px;
  1953. width:55px;
  1954. height:30px;
  1955. background:inherit;
  1956. background-color:rgba(255, 255, 255, 1);
  1957. box-sizing:border-box;
  1958. border-width:1px;
  1959. border-style:solid;
  1960. border-color:rgba(24, 144, 255, 1);
  1961. border-radius:4px;
  1962. -moz-box-shadow:none;
  1963. -webkit-box-shadow:none;
  1964. box-shadow:none;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:14px;
  1969. color:#1890FF;
  1970. }
  1971. #u14330 {
  1972. border-width:0px;
  1973. position:absolute;
  1974. left:636px;
  1975. top:740px;
  1976. width:55px;
  1977. height:30px;
  1978. display:flex;
  1979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1980. font-weight:400;
  1981. font-style:normal;
  1982. font-size:14px;
  1983. color:#1890FF;
  1984. }
  1985. #u14330 .text {
  1986. position:absolute;
  1987. align-self:center;
  1988. padding:2px 2px 2px 2px;
  1989. box-sizing:border-box;
  1990. width:100%;
  1991. }
  1992. #u14330_text {
  1993. border-width:0px;
  1994. word-wrap:break-word;
  1995. text-transform:none;
  1996. }
  1997. #u14331_div {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:0px;
  2001. top:0px;
  2002. width:85px;
  2003. height:30px;
  2004. background:inherit;
  2005. background-color:rgba(255, 255, 255, 0);
  2006. border:none;
  2007. border-top:0px;
  2008. border-right:0px;
  2009. border-bottom:0px;
  2010. border-radius:0px;
  2011. border-top-left-radius:0px;
  2012. border-bottom-left-radius:0px;
  2013. -moz-box-shadow:none;
  2014. -webkit-box-shadow:none;
  2015. box-shadow:none;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:12px;
  2020. color:#AAAAAA;
  2021. }
  2022. #u14331 {
  2023. border-width:0px;
  2024. position:absolute;
  2025. left:761px;
  2026. top:740px;
  2027. width:85px;
  2028. height:30px;
  2029. display:flex;
  2030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2031. font-weight:400;
  2032. font-style:normal;
  2033. font-size:12px;
  2034. color:#AAAAAA;
  2035. }
  2036. #u14331 .text {
  2037. position:absolute;
  2038. align-self:center;
  2039. padding:5px 0px 5px 0px;
  2040. box-sizing:border-box;
  2041. width:100%;
  2042. }
  2043. #u14331_text {
  2044. border-width:0px;
  2045. white-space:nowrap;
  2046. text-transform:none;
  2047. }
  2048. #u14332_div {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:0px;
  2052. top:0px;
  2053. width:55px;
  2054. height:30px;
  2055. background:inherit;
  2056. background-color:rgba(255, 255, 255, 1);
  2057. box-sizing:border-box;
  2058. border-width:1px;
  2059. border-style:solid;
  2060. border-color:rgba(24, 144, 255, 1);
  2061. border-radius:4px;
  2062. -moz-box-shadow:none;
  2063. -webkit-box-shadow:none;
  2064. box-shadow:none;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:14px;
  2069. color:#1890FF;
  2070. }
  2071. #u14332 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:846px;
  2075. top:740px;
  2076. width:55px;
  2077. height:30px;
  2078. display:flex;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:14px;
  2083. color:#1890FF;
  2084. }
  2085. #u14332 .text {
  2086. position:absolute;
  2087. align-self:center;
  2088. padding:2px 2px 2px 2px;
  2089. box-sizing:border-box;
  2090. width:100%;
  2091. }
  2092. #u14332_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. }
  2097. #u14333_div {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:85px;
  2103. height:30px;
  2104. background:inherit;
  2105. background-color:rgba(255, 255, 255, 0);
  2106. border:none;
  2107. border-top:0px;
  2108. border-right:0px;
  2109. border-bottom:0px;
  2110. border-radius:0px;
  2111. border-top-left-radius:0px;
  2112. border-bottom-left-radius:0px;
  2113. -moz-box-shadow:none;
  2114. -webkit-box-shadow:none;
  2115. box-shadow:none;
  2116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:12px;
  2120. color:#AAAAAA;
  2121. }
  2122. #u14333 {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:551px;
  2126. top:780px;
  2127. width:85px;
  2128. height:30px;
  2129. display:flex;
  2130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2131. font-weight:400;
  2132. font-style:normal;
  2133. font-size:12px;
  2134. color:#AAAAAA;
  2135. }
  2136. #u14333 .text {
  2137. position:absolute;
  2138. align-self:center;
  2139. padding:5px 0px 5px 0px;
  2140. box-sizing:border-box;
  2141. width:100%;
  2142. }
  2143. #u14333_text {
  2144. border-width:0px;
  2145. white-space:nowrap;
  2146. text-transform:none;
  2147. }
  2148. #u14334_div {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:0px;
  2152. top:0px;
  2153. width:55px;
  2154. height:30px;
  2155. background:inherit;
  2156. background-color:rgba(255, 255, 255, 1);
  2157. box-sizing:border-box;
  2158. border-width:1px;
  2159. border-style:solid;
  2160. border-color:rgba(24, 144, 255, 1);
  2161. border-radius:4px;
  2162. -moz-box-shadow:none;
  2163. -webkit-box-shadow:none;
  2164. box-shadow:none;
  2165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2166. font-weight:400;
  2167. font-style:normal;
  2168. font-size:14px;
  2169. color:#1890FF;
  2170. }
  2171. #u14334 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:636px;
  2175. top:780px;
  2176. width:55px;
  2177. height:30px;
  2178. display:flex;
  2179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2180. font-weight:400;
  2181. font-style:normal;
  2182. font-size:14px;
  2183. color:#1890FF;
  2184. }
  2185. #u14334 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 2px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u14334_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. }
  2197. #u14335_div {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:85px;
  2203. height:30px;
  2204. background:inherit;
  2205. background-color:rgba(255, 255, 255, 0);
  2206. border:none;
  2207. border-top:0px;
  2208. border-right:0px;
  2209. border-bottom:0px;
  2210. border-radius:0px;
  2211. border-top-left-radius:0px;
  2212. border-bottom-left-radius:0px;
  2213. -moz-box-shadow:none;
  2214. -webkit-box-shadow:none;
  2215. box-shadow:none;
  2216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2217. font-weight:400;
  2218. font-style:normal;
  2219. font-size:12px;
  2220. color:#AAAAAA;
  2221. }
  2222. #u14335 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:761px;
  2226. top:780px;
  2227. width:85px;
  2228. height:30px;
  2229. display:flex;
  2230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2231. font-weight:400;
  2232. font-style:normal;
  2233. font-size:12px;
  2234. color:#AAAAAA;
  2235. }
  2236. #u14335 .text {
  2237. position:absolute;
  2238. align-self:center;
  2239. padding:5px 0px 5px 0px;
  2240. box-sizing:border-box;
  2241. width:100%;
  2242. }
  2243. #u14335_text {
  2244. border-width:0px;
  2245. white-space:nowrap;
  2246. text-transform:none;
  2247. }
  2248. #u14336_div {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:0px;
  2252. top:0px;
  2253. width:55px;
  2254. height:30px;
  2255. background:inherit;
  2256. background-color:rgba(255, 255, 255, 1);
  2257. box-sizing:border-box;
  2258. border-width:1px;
  2259. border-style:solid;
  2260. border-color:rgba(24, 144, 255, 1);
  2261. border-radius:4px;
  2262. -moz-box-shadow:none;
  2263. -webkit-box-shadow:none;
  2264. box-shadow:none;
  2265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:14px;
  2269. color:#1890FF;
  2270. }
  2271. #u14336 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:846px;
  2275. top:780px;
  2276. width:55px;
  2277. height:30px;
  2278. display:flex;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:14px;
  2283. color:#1890FF;
  2284. }
  2285. #u14336 .text {
  2286. position:absolute;
  2287. align-self:center;
  2288. padding:2px 2px 2px 2px;
  2289. box-sizing:border-box;
  2290. width:100%;
  2291. }
  2292. #u14336_text {
  2293. border-width:0px;
  2294. word-wrap:break-word;
  2295. text-transform:none;
  2296. }
  2297. #u14337_img {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:15px;
  2303. height:15px;
  2304. }
  2305. #u14337 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:500px;
  2309. top:707px;
  2310. width:15px;
  2311. height:15px;
  2312. display:flex;
  2313. }
  2314. #u14337 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u14337_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. visibility:hidden;
  2326. }
  2327. #u14338_img {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:15px;
  2333. height:15px;
  2334. }
  2335. #u14338 {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:500px;
  2339. top:749px;
  2340. width:15px;
  2341. height:15px;
  2342. display:flex;
  2343. }
  2344. #u14338 .text {
  2345. position:absolute;
  2346. align-self:center;
  2347. padding:2px 2px 2px 2px;
  2348. box-sizing:border-box;
  2349. width:100%;
  2350. }
  2351. #u14338_text {
  2352. border-width:0px;
  2353. word-wrap:break-word;
  2354. text-transform:none;
  2355. visibility:hidden;
  2356. }
  2357. #u14339_img {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:0px;
  2361. top:0px;
  2362. width:15px;
  2363. height:15px;
  2364. }
  2365. #u14339 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:500px;
  2369. top:789px;
  2370. width:15px;
  2371. height:15px;
  2372. display:flex;
  2373. }
  2374. #u14339 .text {
  2375. position:absolute;
  2376. align-self:center;
  2377. padding:2px 2px 2px 2px;
  2378. box-sizing:border-box;
  2379. width:100%;
  2380. }
  2381. #u14339_text {
  2382. border-width:0px;
  2383. word-wrap:break-word;
  2384. text-transform:none;
  2385. visibility:hidden;
  2386. }
  2387. #u14340_img {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:-5px;
  2391. top:-5px;
  2392. width:324px;
  2393. height:54px;
  2394. }
  2395. #u14340 {
  2396. border-width:0px;
  2397. position:absolute;
  2398. left:507px;
  2399. top:661px;
  2400. width:314px;
  2401. height:44px;
  2402. display:flex;
  2403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2404. font-weight:400;
  2405. font-style:normal;
  2406. font-size:12px;
  2407. color:#FFFFFF;
  2408. text-align:left;
  2409. }
  2410. #u14340 .text {
  2411. position:absolute;
  2412. align-self:center;
  2413. padding:5px 10px 5px 10px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u14340_text {
  2418. border-width:0px;
  2419. word-wrap:break-word;
  2420. text-transform:none;
  2421. }
  2422. #u14341_img {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:-5px;
  2426. top:-5px;
  2427. width:324px;
  2428. height:54px;
  2429. }
  2430. #u14341 {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:508px;
  2434. top:747px;
  2435. width:314px;
  2436. height:44px;
  2437. display:flex;
  2438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2439. font-weight:400;
  2440. font-style:normal;
  2441. font-size:12px;
  2442. color:#FFFFFF;
  2443. text-align:left;
  2444. }
  2445. #u14341 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:5px 10px 5px 10px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u14341_text {
  2453. border-width:0px;
  2454. word-wrap:break-word;
  2455. text-transform:none;
  2456. }
  2457. #u14342 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:0px;
  2461. top:0px;
  2462. width:0px;
  2463. height:0px;
  2464. }
  2465. #u14343_div {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:1000px;
  2471. height:60px;
  2472. background:inherit;
  2473. background-color:rgba(255, 255, 255, 1);
  2474. box-sizing:border-box;
  2475. border-width:1px;
  2476. border-style:solid;
  2477. border-color:rgba(215, 215, 215, 1);
  2478. border-radius:0px;
  2479. -moz-box-shadow:none;
  2480. -webkit-box-shadow:none;
  2481. box-shadow:none;
  2482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2483. font-weight:400;
  2484. font-style:normal;
  2485. font-size:14px;
  2486. color:#AAAAAA;
  2487. text-align:center;
  2488. line-height:30px;
  2489. }
  2490. #u14343 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:83px;
  2494. top:990px;
  2495. width:1000px;
  2496. height:60px;
  2497. display:flex;
  2498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:14px;
  2502. color:#AAAAAA;
  2503. text-align:center;
  2504. line-height:30px;
  2505. }
  2506. #u14343 .text {
  2507. position:absolute;
  2508. align-self:center;
  2509. padding:5px 10px 5px 10px;
  2510. box-sizing:border-box;
  2511. width:100%;
  2512. }
  2513. #u14343_text {
  2514. border-width:0px;
  2515. word-wrap:break-word;
  2516. text-transform:none;
  2517. visibility:hidden;
  2518. }
  2519. #u14344_img {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:80px;
  2525. height:30px;
  2526. }
  2527. #u14344 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:963px;
  2531. top:1005px;
  2532. width:80px;
  2533. height:30px;
  2534. display:flex;
  2535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2536. font-weight:400;
  2537. font-style:normal;
  2538. font-size:14px;
  2539. color:#FFFFFF;
  2540. }
  2541. #u14344 .text {
  2542. position:absolute;
  2543. align-self:center;
  2544. padding:2px 2px 2px 2px;
  2545. box-sizing:border-box;
  2546. width:100%;
  2547. }
  2548. #u14344_text {
  2549. border-width:0px;
  2550. word-wrap:break-word;
  2551. text-transform:none;
  2552. }
  2553. #u14345_div {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:80px;
  2559. height:30px;
  2560. background:inherit;
  2561. background-color:rgba(255, 255, 255, 1);
  2562. box-sizing:border-box;
  2563. border-width:1px;
  2564. border-style:solid;
  2565. border-color:rgba(170, 170, 170, 1);
  2566. border-radius:4px;
  2567. -moz-box-shadow:none;
  2568. -webkit-box-shadow:none;
  2569. box-shadow:none;
  2570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:14px;
  2574. }
  2575. #u14345 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:873px;
  2579. top:1005px;
  2580. width:80px;
  2581. height:30px;
  2582. display:flex;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:14px;
  2587. }
  2588. #u14345 .text {
  2589. position:absolute;
  2590. align-self:center;
  2591. padding:2px 2px 2px 2px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u14345_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. }
  2600. #u14346 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:0px;
  2604. top:0px;
  2605. width:0px;
  2606. height:0px;
  2607. }
  2608. #u14347 {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:0px;
  2614. height:0px;
  2615. }
  2616. #u14348_div {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:380px;
  2622. height:164px;
  2623. background:inherit;
  2624. background-color:rgba(255, 255, 255, 1);
  2625. box-sizing:border-box;
  2626. border-width:1px;
  2627. border-style:solid;
  2628. border-color:rgba(204, 204, 204, 1);
  2629. border-radius:4px;
  2630. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  2631. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  2632. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  2633. font-family:'Microsoft YaHei', sans-serif;
  2634. font-weight:400;
  2635. font-style:normal;
  2636. }
  2637. #u14348 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:424px;
  2641. top:856px;
  2642. width:380px;
  2643. height:164px;
  2644. display:flex;
  2645. font-family:'Microsoft YaHei', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. }
  2649. #u14348 .text {
  2650. position:absolute;
  2651. align-self:center;
  2652. padding:2px 2px 2px 2px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u14348_text {
  2657. border-width:0px;
  2658. word-wrap:break-word;
  2659. text-transform:none;
  2660. visibility:hidden;
  2661. }
  2662. #u14349_div {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:0px;
  2666. top:0px;
  2667. width:299px;
  2668. height:44px;
  2669. background:inherit;
  2670. background-color:rgba(255, 255, 255, 0);
  2671. border:none;
  2672. border-radius:0px;
  2673. -moz-box-shadow:none;
  2674. -webkit-box-shadow:none;
  2675. box-shadow:none;
  2676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2677. font-weight:400;
  2678. font-style:normal;
  2679. font-size:14px;
  2680. color:#666666;
  2681. line-height:22px;
  2682. }
  2683. #u14349 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:484px;
  2687. top:911px;
  2688. width:299px;
  2689. height:44px;
  2690. display:flex;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:14px;
  2695. color:#666666;
  2696. line-height:22px;
  2697. }
  2698. #u14349 .text {
  2699. position:absolute;
  2700. align-self:flex-start;
  2701. padding:0px 0px 0px 0px;
  2702. box-sizing:border-box;
  2703. width:100%;
  2704. }
  2705. #u14349_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. }
  2710. #u14350_div {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:0px;
  2714. top:0px;
  2715. width:199px;
  2716. height:21px;
  2717. background:inherit;
  2718. background-color:rgba(255, 255, 255, 0);
  2719. border:none;
  2720. border-radius:0px;
  2721. -moz-box-shadow:none;
  2722. -webkit-box-shadow:none;
  2723. box-shadow:none;
  2724. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2725. font-weight:650;
  2726. font-style:normal;
  2727. font-size:18px;
  2728. color:#000000;
  2729. line-height:22px;
  2730. }
  2731. #u14350 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:484px;
  2735. top:881px;
  2736. width:199px;
  2737. height:21px;
  2738. display:flex;
  2739. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  2740. font-weight:650;
  2741. font-style:normal;
  2742. font-size:18px;
  2743. color:#000000;
  2744. line-height:22px;
  2745. }
  2746. #u14350 .text {
  2747. position:absolute;
  2748. align-self:flex-start;
  2749. padding:0px 0px 0px 0px;
  2750. box-sizing:border-box;
  2751. width:100%;
  2752. }
  2753. #u14350_text {
  2754. border-width:0px;
  2755. white-space:nowrap;
  2756. text-transform:none;
  2757. }
  2758. #u14351_div {
  2759. border-width:0px;
  2760. position:absolute;
  2761. left:0px;
  2762. top:0px;
  2763. width:61px;
  2764. height:30px;
  2765. background:inherit;
  2766. background-color:rgba(24, 144, 255, 1);
  2767. border:none;
  2768. border-radius:4px;
  2769. -moz-box-shadow:none;
  2770. -webkit-box-shadow:none;
  2771. box-shadow:none;
  2772. font-family:'Microsoft YaHei', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:14px;
  2776. color:#FFFFFF;
  2777. }
  2778. #u14351 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:726px;
  2782. top:971px;
  2783. width:61px;
  2784. height:30px;
  2785. display:flex;
  2786. font-family:'Microsoft YaHei', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:14px;
  2790. color:#FFFFFF;
  2791. }
  2792. #u14351 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:2px 16px 2px 16px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u14351_text {
  2800. border-width:0px;
  2801. white-space:nowrap;
  2802. text-transform:none;
  2803. }
  2804. #u14352_div {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:66px;
  2810. height:30px;
  2811. background:inherit;
  2812. background-color:rgba(255, 255, 255, 1);
  2813. box-sizing:border-box;
  2814. border-width:1px;
  2815. border-style:solid;
  2816. border-color:rgba(217, 217, 217, 1);
  2817. border-radius:4px;
  2818. -moz-box-shadow:none;
  2819. -webkit-box-shadow:none;
  2820. box-shadow:none;
  2821. font-family:'Microsoft YaHei', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:14px;
  2825. color:rgba(0, 0, 0, 0.647058823529412);
  2826. line-height:21px;
  2827. }
  2828. #u14352 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:644px;
  2832. top:971px;
  2833. width:66px;
  2834. height:30px;
  2835. display:flex;
  2836. font-family:'Microsoft YaHei', sans-serif;
  2837. font-weight:400;
  2838. font-style:normal;
  2839. font-size:14px;
  2840. color:rgba(0, 0, 0, 0.647058823529412);
  2841. line-height:21px;
  2842. }
  2843. #u14352 .text {
  2844. position:absolute;
  2845. align-self:center;
  2846. padding:2px 16px 2px 16px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u14352_text {
  2851. border-width:0px;
  2852. white-space:nowrap;
  2853. text-transform:none;
  2854. }
  2855. #u14353_img {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:20px;
  2861. height:20px;
  2862. }
  2863. #u14353 {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:453px;
  2867. top:885px;
  2868. width:20px;
  2869. height:20px;
  2870. display:flex;
  2871. }
  2872. #u14353 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 2px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u14353_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u14354_div {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:900px;
  2891. height:60px;
  2892. background:inherit;
  2893. background-color:rgba(255, 255, 255, 0.933333333333333);
  2894. box-sizing:border-box;
  2895. border-width:1px;
  2896. border-style:solid;
  2897. border-color:rgba(242, 242, 242, 1);
  2898. border-radius:4px;
  2899. -moz-box-shadow:none;
  2900. -webkit-box-shadow:none;
  2901. box-shadow:none;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. color:#1890FF;
  2906. line-height:80px;
  2907. }
  2908. #u14354 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:119px;
  2912. top:137px;
  2913. width:900px;
  2914. height:60px;
  2915. display:flex;
  2916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2917. font-weight:400;
  2918. font-style:normal;
  2919. color:#1890FF;
  2920. line-height:80px;
  2921. }
  2922. #u14354 .text {
  2923. position:absolute;
  2924. align-self:flex-start;
  2925. padding:0px 0px 0px 10px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u14354_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u14355_div {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:145px;
  2941. height:30px;
  2942. background:inherit;
  2943. background-color:rgba(255, 255, 255, 0);
  2944. border:none;
  2945. border-radius:0px;
  2946. -moz-box-shadow:none;
  2947. -webkit-box-shadow:none;
  2948. box-shadow:none;
  2949. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2950. font-weight:500;
  2951. font-style:normal;
  2952. font-size:18px;
  2953. color:#000000;
  2954. line-height:30px;
  2955. }
  2956. #u14355 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:139px;
  2960. top:152px;
  2961. width:145px;
  2962. height:30px;
  2963. display:flex;
  2964. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2965. font-weight:500;
  2966. font-style:normal;
  2967. font-size:18px;
  2968. color:#000000;
  2969. line-height:30px;
  2970. }
  2971. #u14355 .text {
  2972. position:absolute;
  2973. align-self:flex-start;
  2974. padding:0px 0px 0px 0px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u14355_text {
  2979. border-width:0px;
  2980. white-space:nowrap;
  2981. text-transform:none;
  2982. }
  2983. #u14356_img {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:20px;
  2989. height:11px;
  2990. }
  2991. #u14356 {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:983px;
  2995. top:162px;
  2996. width:20px;
  2997. height:11px;
  2998. display:flex;
  2999. -webkit-transform:rotate(180deg);
  3000. -moz-transform:rotate(180deg);
  3001. -ms-transform:rotate(180deg);
  3002. transform:rotate(180deg);
  3003. }
  3004. #u14356 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:2px 2px 2px 2px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u14356_text {
  3012. border-width:0px;
  3013. word-wrap:break-word;
  3014. text-transform:none;
  3015. visibility:hidden;
  3016. }
  3017. #u14357 {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:0px;
  3023. height:0px;
  3024. }
  3025. #u14358_div {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:0px;
  3029. top:0px;
  3030. width:900px;
  3031. height:200px;
  3032. background:inherit;
  3033. background-color:rgba(255, 255, 255, 0.933333333333333);
  3034. box-sizing:border-box;
  3035. border-width:1px;
  3036. border-style:solid;
  3037. border-color:rgba(242, 242, 242, 1);
  3038. border-radius:4px;
  3039. -moz-box-shadow:none;
  3040. -webkit-box-shadow:none;
  3041. box-shadow:none;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. color:#1890FF;
  3046. line-height:80px;
  3047. }
  3048. #u14358 {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:119px;
  3052. top:427px;
  3053. width:900px;
  3054. height:200px;
  3055. display:flex;
  3056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3057. font-weight:400;
  3058. font-style:normal;
  3059. color:#1890FF;
  3060. line-height:80px;
  3061. }
  3062. #u14358 .text {
  3063. position:absolute;
  3064. align-self:flex-start;
  3065. padding:0px 0px 0px 10px;
  3066. box-sizing:border-box;
  3067. width:100%;
  3068. }
  3069. #u14358_text {
  3070. border-width:0px;
  3071. word-wrap:break-word;
  3072. text-transform:none;
  3073. visibility:hidden;
  3074. }
  3075. #u14359_div {
  3076. border-width:0px;
  3077. position:absolute;
  3078. left:0px;
  3079. top:0px;
  3080. width:900px;
  3081. height:50px;
  3082. background:inherit;
  3083. background-color:rgba(255, 255, 255, 0.0980392156862745);
  3084. box-sizing:border-box;
  3085. border-width:1px;
  3086. border-style:solid;
  3087. border-color:rgba(242, 242, 242, 1);
  3088. border-left:0px;
  3089. border-top:0px;
  3090. border-right:0px;
  3091. border-radius:4px;
  3092. border-bottom-right-radius:0px;
  3093. border-bottom-left-radius:0px;
  3094. -moz-box-shadow:none;
  3095. -webkit-box-shadow:none;
  3096. box-shadow:none;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. color:#1890FF;
  3101. line-height:40px;
  3102. }
  3103. #u14359 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:119px;
  3107. top:427px;
  3108. width:900px;
  3109. height:50px;
  3110. display:flex;
  3111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3112. font-weight:400;
  3113. font-style:normal;
  3114. color:#1890FF;
  3115. line-height:40px;
  3116. }
  3117. #u14359 .text {
  3118. position:absolute;
  3119. align-self:flex-start;
  3120. padding:0px 0px 0px 10px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u14359_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. visibility:hidden;
  3129. }
  3130. #u14360_div {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:57px;
  3136. height:40px;
  3137. background:inherit;
  3138. background-color:rgba(255, 255, 255, 0);
  3139. border:none;
  3140. border-top:0px;
  3141. border-right:0px;
  3142. border-bottom:0px;
  3143. border-radius:0px;
  3144. border-top-left-radius:0px;
  3145. border-bottom-left-radius:0px;
  3146. -moz-box-shadow:none;
  3147. -webkit-box-shadow:none;
  3148. box-shadow:none;
  3149. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3150. font-weight:500;
  3151. font-style:normal;
  3152. font-size:14px;
  3153. }
  3154. #u14360 {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:149px;
  3158. top:432px;
  3159. width:57px;
  3160. height:40px;
  3161. display:flex;
  3162. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3163. font-weight:500;
  3164. font-style:normal;
  3165. font-size:14px;
  3166. }
  3167. #u14360 .text {
  3168. position:absolute;
  3169. align-self:center;
  3170. padding:5px 0px 5px 0px;
  3171. box-sizing:border-box;
  3172. width:100%;
  3173. }
  3174. #u14360_text {
  3175. border-width:0px;
  3176. white-space:nowrap;
  3177. text-transform:none;
  3178. }
  3179. #u14361_div {
  3180. border-width:0px;
  3181. position:absolute;
  3182. left:0px;
  3183. top:0px;
  3184. width:99px;
  3185. height:40px;
  3186. background:inherit;
  3187. background-color:rgba(255, 255, 255, 0);
  3188. border:none;
  3189. border-top:0px;
  3190. border-right:0px;
  3191. border-bottom:0px;
  3192. border-radius:0px;
  3193. border-top-left-radius:0px;
  3194. border-bottom-left-radius:0px;
  3195. -moz-box-shadow:none;
  3196. -webkit-box-shadow:none;
  3197. box-shadow:none;
  3198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3199. font-weight:400;
  3200. font-style:normal;
  3201. font-size:14px;
  3202. }
  3203. #u14361 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:149px;
  3207. top:497px;
  3208. width:99px;
  3209. height:40px;
  3210. display:flex;
  3211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3212. font-weight:400;
  3213. font-style:normal;
  3214. font-size:14px;
  3215. }
  3216. #u14361 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:5px 0px 5px 0px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u14361_text {
  3224. border-width:0px;
  3225. white-space:nowrap;
  3226. text-transform:none;
  3227. }
  3228. #u14362_div {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:455px;
  3234. height:27px;
  3235. background:inherit;
  3236. background-color:rgba(129, 211, 248, 0.0980392156862745);
  3237. border:none;
  3238. border-radius:10px;
  3239. -moz-box-shadow:none;
  3240. -webkit-box-shadow:none;
  3241. box-shadow:none;
  3242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3243. font-weight:400;
  3244. font-style:normal;
  3245. font-size:12px;
  3246. color:#1890FF;
  3247. }
  3248. #u14362 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:248px;
  3252. top:504px;
  3253. width:455px;
  3254. height:27px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. color:#1890FF;
  3261. }
  3262. #u14362 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:5px 0px 5px 10px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u14362_text {
  3270. border-width:0px;
  3271. white-space:nowrap;
  3272. text-transform:none;
  3273. }
  3274. #u14363 label {
  3275. left:0px;
  3276. width:100%;
  3277. }
  3278. #u14363_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:4px;
  3283. width:12px;
  3284. height:12px;
  3285. }
  3286. #u14363 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:221px;
  3290. top:549px;
  3291. width:100px;
  3292. height:20px;
  3293. display:flex;
  3294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3295. font-weight:400;
  3296. font-style:normal;
  3297. font-size:14px;
  3298. }
  3299. #u14363 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:0px 2px 0px 2px;
  3303. box-sizing:border-box;
  3304. }
  3305. #u14363_img.selected {
  3306. }
  3307. #u14363.selected {
  3308. }
  3309. #u14363_img.disabled {
  3310. }
  3311. #u14363.disabled {
  3312. }
  3313. #u14363_img.selectedDisabled {
  3314. }
  3315. #u14363.selectedDisabled {
  3316. }
  3317. #u14363_text {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:14px;
  3321. top:0px;
  3322. width:84px;
  3323. word-wrap:break-word;
  3324. text-transform:none;
  3325. }
  3326. #u14363_input {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:0px;
  3332. height:0px;
  3333. opacity:0;
  3334. }
  3335. #u14364 label {
  3336. left:0px;
  3337. width:100%;
  3338. }
  3339. #u14364_img {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:4px;
  3344. width:12px;
  3345. height:12px;
  3346. }
  3347. #u14364 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:391px;
  3351. top:549px;
  3352. width:300px;
  3353. height:20px;
  3354. display:flex;
  3355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:14px;
  3359. }
  3360. #u14364 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:0px 2px 0px 2px;
  3364. box-sizing:border-box;
  3365. }
  3366. #u14364_img.selected {
  3367. }
  3368. #u14364.selected {
  3369. }
  3370. #u14364_img.disabled {
  3371. }
  3372. #u14364.disabled {
  3373. }
  3374. #u14364_img.selectedDisabled {
  3375. }
  3376. #u14364.selectedDisabled {
  3377. }
  3378. #u14364_text {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:14px;
  3382. top:0px;
  3383. width:284px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. }
  3387. #u14364_input {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:0px;
  3391. top:0px;
  3392. width:0px;
  3393. height:0px;
  3394. opacity:0;
  3395. }
  3396. #u14365 label {
  3397. left:0px;
  3398. width:100%;
  3399. }
  3400. #u14365_img {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:4px;
  3405. width:12px;
  3406. height:12px;
  3407. }
  3408. #u14365 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:221px;
  3412. top:589px;
  3413. width:100px;
  3414. height:20px;
  3415. display:flex;
  3416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:14px;
  3420. }
  3421. #u14365 .text {
  3422. position:absolute;
  3423. align-self:center;
  3424. padding:0px 2px 0px 2px;
  3425. box-sizing:border-box;
  3426. }
  3427. #u14365_img.selected {
  3428. }
  3429. #u14365.selected {
  3430. }
  3431. #u14365_img.disabled {
  3432. }
  3433. #u14365.disabled {
  3434. }
  3435. #u14365_img.selectedDisabled {
  3436. }
  3437. #u14365.selectedDisabled {
  3438. }
  3439. #u14365_text {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:14px;
  3443. top:0px;
  3444. width:84px;
  3445. word-wrap:break-word;
  3446. text-transform:none;
  3447. }
  3448. #u14365_input {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:0px;
  3452. top:0px;
  3453. width:0px;
  3454. height:0px;
  3455. opacity:0;
  3456. }
  3457. #u14366 label {
  3458. left:0px;
  3459. width:100%;
  3460. }
  3461. #u14366_img {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:4px;
  3466. width:12px;
  3467. height:12px;
  3468. }
  3469. #u14366 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:391px;
  3473. top:589px;
  3474. width:300px;
  3475. height:20px;
  3476. display:flex;
  3477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. font-size:14px;
  3481. }
  3482. #u14366 .text {
  3483. position:absolute;
  3484. align-self:center;
  3485. padding:0px 2px 0px 2px;
  3486. box-sizing:border-box;
  3487. }
  3488. #u14366_img.selected {
  3489. }
  3490. #u14366.selected {
  3491. }
  3492. #u14366_img.disabled {
  3493. }
  3494. #u14366.disabled {
  3495. }
  3496. #u14366_img.selectedDisabled {
  3497. }
  3498. #u14366.selectedDisabled {
  3499. }
  3500. #u14366_text {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:14px;
  3504. top:0px;
  3505. width:284px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. }
  3509. #u14366_input {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:0px;
  3515. height:0px;
  3516. opacity:0;
  3517. }
  3518. #u14367_div {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:71px;
  3524. height:40px;
  3525. background:inherit;
  3526. background-color:rgba(255, 255, 255, 0);
  3527. border:none;
  3528. border-top:0px;
  3529. border-right:0px;
  3530. border-bottom:0px;
  3531. border-radius:0px;
  3532. border-top-left-radius:0px;
  3533. border-bottom-left-radius:0px;
  3534. -moz-box-shadow:none;
  3535. -webkit-box-shadow:none;
  3536. box-shadow:none;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:14px;
  3541. }
  3542. #u14367 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:150px;
  3546. top:537px;
  3547. width:71px;
  3548. height:40px;
  3549. display:flex;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:14px;
  3554. }
  3555. #u14367 .text {
  3556. position:absolute;
  3557. align-self:center;
  3558. padding:5px 0px 5px 0px;
  3559. box-sizing:border-box;
  3560. width:100%;
  3561. }
  3562. #u14367_text {
  3563. border-width:0px;
  3564. white-space:nowrap;
  3565. text-transform:none;
  3566. }
  3567. #u14368_div {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:71px;
  3573. height:40px;
  3574. background:inherit;
  3575. background-color:rgba(255, 255, 255, 0);
  3576. border:none;
  3577. border-top:0px;
  3578. border-right:0px;
  3579. border-bottom:0px;
  3580. border-radius:0px;
  3581. border-top-left-radius:0px;
  3582. border-bottom-left-radius:0px;
  3583. -moz-box-shadow:none;
  3584. -webkit-box-shadow:none;
  3585. box-shadow:none;
  3586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3587. font-weight:400;
  3588. font-style:normal;
  3589. font-size:14px;
  3590. }
  3591. #u14368 {
  3592. border-width:0px;
  3593. position:absolute;
  3594. left:149px;
  3595. top:577px;
  3596. width:71px;
  3597. height:40px;
  3598. display:flex;
  3599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3600. font-weight:400;
  3601. font-style:normal;
  3602. font-size:14px;
  3603. }
  3604. #u14368 .text {
  3605. position:absolute;
  3606. align-self:center;
  3607. padding:5px 0px 5px 0px;
  3608. box-sizing:border-box;
  3609. width:100%;
  3610. }
  3611. #u14368_text {
  3612. border-width:0px;
  3613. white-space:nowrap;
  3614. text-transform:none;
  3615. }