styles.css 86 KB

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