zk.scss 105 KB

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