You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 83 kB

7 years ago
7 years ago
7 years ago
6 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
5 years ago
6 years ago
6 years ago
3 years ago
3 years ago
5 years ago
7 years ago
7 years ago
7 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191
  1. @charset "utf-8";
  2. @font-face {
  3. font-family: 'FOT-KurokaneStd-EB';
  4. src:
  5. local("FOT-Kurokane Std EB"),
  6. local("KurokaneStd-EB"),
  7. local("FOT-くろかね Std"),
  8. url("./fonts/FOT-KurokaneStd-EB.woff2") format('woff2');
  9. font-style: normal;
  10. font-weight: normal;
  11. }
  12. @font-face {
  13. font-family: 'zpix';
  14. src:
  15. local("Zpix"),
  16. url("./fonts/zpix.woff2") format('woff2');
  17. font-weight: normal;
  18. font-style: normal;
  19. }
  20. @font-face {
  21. font-family: 'Font Awesome';
  22. src:
  23. local("FontAwesome"),
  24. url("fonts/fa-solid-900.woff2") format("woff2");
  25. font-style: normal;
  26. font-weight: 900;
  27. font-display: block;
  28. }
  29. @keyframes rotate-animate{
  30. from {
  31. transform: rotate(0deg);
  32. }
  33. to {
  34. transform: rotate(360deg);
  35. }
  36. }
  37. @keyframes gravity-animate{
  38. from {
  39. transform: scaley(1);
  40. }
  41. to {
  42. transform: scaley(0.5);
  43. }
  44. }
  45. body{
  46. --head-block-width: 108px;
  47. --head-block-height: 108px;
  48. --search-icon-unchecked: 0.4;
  49. --font-family : "Microsoft Yahei","Microsoft JhengHei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  50. --icon-font-family : 'Font Awesome', "Microsoft Yahei","Microsoft JhengHei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  51. --game-font-family : 'FOT-KurokaneStd-EB',"Microsoft Yahei","Microsoft JhengHei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  52. --border-width: 2px;
  53. font-family: var(--font-family);
  54. margin: 0;
  55. }
  56. .control-box,
  57. .formation-box
  58. {
  59. margin: 10px;
  60. }
  61. .control-box{margin-bottom: 0;}
  62. .formation-box{margin-top: 0;}
  63. .noscript {
  64. color: red;
  65. font-size: 2em;
  66. }
  67. .display-none{
  68. display:none !important;
  69. }
  70. .disabled{
  71. cursor: not-allowed;
  72. pointer-events: none;
  73. opacity: 0.5;
  74. }
  75. details>summary {
  76. cursor: pointer;
  77. }
  78. .help-link::before{
  79. content: "\f05a Help & Tips";
  80. }
  81. .feedback-link::before{
  82. content: "\f4ad Feedback";
  83. }
  84. #rich-text-tools {
  85. background-color: rgba(200,200,200,0.5);
  86. position: sticky;
  87. bottom: 0;
  88. margin-top: 10px;
  89. backdrop-filter: blur(3px);
  90. padding: 5px;
  91. user-select: none; /*让内容不可选中*/
  92. }
  93. #rich-text-tools button
  94. {
  95. min-width: 64px;
  96. }
  97. #rich-text-tools button,
  98. #rich-text-tools input
  99. {
  100. height: 40px;
  101. vertical-align: middle;
  102. text-align: center;
  103. }
  104. #rich-text-tools button::before {
  105. font-family: var(--icon-font-family);
  106. vertical-align: middle;
  107. }
  108. :where(
  109. #insert-card-avatar,
  110. #insert-type-icon,
  111. #insert-awoken-icon,
  112. #insert-latent-icon,
  113. #insert-orb-icon
  114. )::before {
  115. display: inline-block;
  116. content: "";
  117. background-repeat: no-repeat;
  118. }
  119. label[for="siwtch-code-mode"] {
  120. vertical-align: middle;
  121. margin: 0 0 0 5px;
  122. }
  123. label[for="siwtch-code-mode"]::after {
  124. font-size: 1.7em;
  125. font-family: var(--icon-font-family);
  126. content: "\f121";
  127. vertical-align: middle;
  128. }
  129. #set-font-color::before {
  130. content: "A";
  131. font-size: 1.7em;
  132. }
  133. #color-chooser {
  134. width: 30px;
  135. }
  136. #insert-card-avatar::before {
  137. width: 100px;
  138. height: 100px;
  139. background-image: url(images/CARDFRAME2.PNG), url(images/CARDFRAME2.PNG);
  140. background-position: -102px -104px, 0 0;
  141. transform: scale(calc(32 / 100));
  142. margin: calc(-100px * (1 - (32 / 100)) / 2);
  143. }
  144. #insert-type-icon::before {
  145. width: 32px;
  146. height: 32px;
  147. background-image: url(images/type.png);
  148. background-position-y: calc(-32px * 4);
  149. }
  150. #insert-awoken-icon::before {
  151. width: 32px;
  152. height: 32px;
  153. background-image: url(images/awoken.png);
  154. background-position-y: calc(-32px * 43);
  155. }
  156. #insert-latent-icon::before {
  157. width: 32px;
  158. height: 32px;
  159. background-color: #4499EE;
  160. border: 2px ridge #CCEEFF;
  161. box-shadow: inset 0 1px 0 0 rgba(0,0,0,0.5);
  162. border-radius: 5px;
  163. box-sizing: border-box;
  164. background-image: url(images/icon-latent.png);
  165. background-position-x: -2px;
  166. background-position-y: calc(-32px * 11 - 2px);
  167. }
  168. #insert-orb-icon::before {
  169. width: 36px;
  170. height: 36px;
  171. background-image: url(images/icon-orbs.png);
  172. transform: scale(calc(32 / 36));
  173. margin: calc(-36px * (1 - (32 / 36)) / 2);
  174. }
  175. #rich-text-tools>ul icon {
  176. cursor: pointer;
  177. }
  178. #rich-text-tools>ul {
  179. margin-top: 10px;
  180. display: grid;
  181. grid-template-columns: repeat(auto-fill, 32px);
  182. grid-auto-rows: 32px;
  183. grid-gap: 4px;
  184. }
  185. #rich-text-tools>.orb-ul{
  186. grid-template-columns: repeat(auto-fill, 36px);
  187. grid-auto-rows: 36px;
  188. }
  189. .rich-text icon{
  190. vertical-align: middle;
  191. }
  192. .title-code,
  193. .title-display
  194. {
  195. font-size: 2em;
  196. font-weight: bold;
  197. }
  198. .title-display br{ /*隐藏所有换行*/
  199. display: none;
  200. }
  201. .detail-code,
  202. .detail-display
  203. {
  204. min-height: 1.5em;
  205. font-size: 1.5em;
  206. }
  207. .title-code,
  208. .detail-code,
  209. .title-display,
  210. .detail-display
  211. {
  212. font-family: var(--font-family);
  213. width:100%;
  214. border: none;
  215. background: none;
  216. box-sizing: border-box;
  217. padding: 1px;
  218. margin: 0;
  219. white-space: break-spaces;
  220. }
  221. :where(
  222. .title-display,
  223. .detail-display,
  224. ):empty::before{
  225. color: grey;
  226. position: absolute;
  227. content: attr(data-placeholder);
  228. }
  229. .guide-mod .control-box>div.status
  230. {
  231. display: block;
  232. }
  233. .formation-box:not(.edit-code) :where(
  234. .title-code,
  235. .detail-code,
  236. ){
  237. display: none;
  238. }
  239. .edit-code :where(
  240. .title-display,
  241. .detail-display,
  242. ){
  243. display: none;
  244. }
  245. .config-checkbox-ipt{
  246. display:none;
  247. }
  248. .config-checkbox-lbl .config-checkbox-lbl-cicle{
  249. width: 28px;
  250. height: 12px;
  251. display: inline-block;
  252. position: relative;
  253. background-color: #8884;
  254. border-radius: 16px;
  255. margin-right: 5px;
  256. }
  257. .config-checkbox-lbl .config-checkbox-lbl-cicle::before{
  258. content:"";
  259. width: 20px;
  260. height: 20px;
  261. position: absolute;
  262. transition: .3s ease-out;
  263. background-color: #c6c6c6;
  264. box-shadow: 0 2px 4px 0 #0003;
  265. border-radius: 50%;
  266. left: -4px;
  267. top: -4px;
  268. }
  269. .config-checkbox-ipt:checked+.config-checkbox-lbl .config-checkbox-lbl-cicle {
  270. background: rgba(0,160,216,0.8);
  271. }
  272. .config-checkbox-ipt:checked+.config-checkbox-lbl .config-checkbox-lbl-cicle::before {
  273. background: #00A0D8;
  274. box-shadow: 0 2px 4px 0 rgba(0,160,216,0.4);
  275. left: calc(100% - 16px);
  276. }
  277. .config-checkbox-lbl{
  278. cursor: pointer;
  279. line-height: 25px;
  280. margin-right: 20px;
  281. display: inline-block;
  282. }
  283. .config-checkbox-lbl[for$=and-or]::after{
  284. content: "OR";
  285. }
  286. input:checked+ .config-checkbox-lbl[for$=and-or]::after{
  287. content: "AND";
  288. }
  289. .status{
  290. line-height: 16px;
  291. }
  292. /*.status.loading-mon-info .text::before{
  293. content: "正在加载怪物数据";
  294. }*/
  295. .status.loading-check-version .icon,
  296. .status.loading-mon-info .icon,
  297. .status.loading-skill-info .icon,
  298. .status.prepare-capture .icon
  299. {
  300. display: inline-block;
  301. width: 16px;
  302. height: 16px;
  303. border: 4px SteelBlue dotted;
  304. border-radius: 50%;
  305. animation: rotate-animate 5s infinite linear;
  306. vertical-align: middle;
  307. }
  308. ul{
  309. margin: 0;
  310. padding: 0;
  311. list-style: none;
  312. }
  313. /*队伍的整个盒子*/
  314. .formation-box{
  315. width: 648px;
  316. min-width: 648px;
  317. }
  318. /*弹出窗口相关*/
  319. .dialog
  320. {
  321. color: white;
  322. position: absolute;
  323. padding: 5px;
  324. border: 2px ridge #D1D398;
  325. top: 0;
  326. background-image: linear-gradient(to bottom,#788321f0,#3E4D14f0);
  327. border-radius: 6px;
  328. box-shadow: black 2px 0px 1px,black 0px 2px 1px,black -2px 0px 1px,black 0px -2px 1px;
  329. margin-left: calc(50% - 200px);
  330. margin-top: 30px;
  331. font-family: var(--game-font-family);
  332. text-shadow: black 2px 2px 0;
  333. z-index: 1;
  334. backdrop-filter: blur(3px);
  335. }
  336. .dialog .dialog-title
  337. {
  338. font-size: 20px;
  339. line-height: 20px;
  340. text-align: center;
  341. margin-bottom: 5px;
  342. }
  343. .dialog .dialog-content .additional-string
  344. {
  345. border-top: 2px solid white;
  346. margin-top: 5px;
  347. }
  348. /*.dialog .dialog-content .additional-string::before
  349. {
  350. content: "其他語言";
  351. }*/
  352. .dialog .dialog-control
  353. {
  354. text-align: center;
  355. margin-top:10px;
  356. }
  357. .brown-button
  358. {
  359. background-image: linear-gradient(to bottom,#C38E5F,#2F2008);
  360. border: none;
  361. border-radius: 5px;
  362. padding: 2px;
  363. cursor: pointer;
  364. transition: transform 0.1s;
  365. }
  366. .brown-button:active
  367. {
  368. transform: scale(1.1);
  369. }
  370. .brown-button::before
  371. {
  372. display: inline-block;
  373. box-sizing: border-box;
  374. min-width: 100px;
  375. padding: 5px;
  376. background-color: #956A42;
  377. background-image: url(images/slate.svg);
  378. background-size: 120px 120px;
  379. border-radius: 2px;
  380. font-size: 20px;
  381. line-height: 20px;
  382. vertical-align: middle;
  383. color: white;
  384. font-family: var(--game-font-family);
  385. text-shadow: black 2px 2px 0;
  386. }
  387. /*
  388. .dialog-search-string .dialog-title::before
  389. {
  390. content: "以字符串搜索";
  391. }
  392. .dialog-close::before
  393. {
  394. content: "关闭";
  395. }
  396. */
  397. .dialog-show-any-string {
  398. width: 400px;
  399. top: 100px;
  400. position: fixed;
  401. }
  402. .dialog-search-string
  403. {
  404. width: 260px;
  405. }
  406. .dialog .string-copy,
  407. .dialog .string-search
  408. {
  409. box-sizing: border-box;
  410. width: 45px;
  411. margin-left: 5px;
  412. cursor: pointer;
  413. background-color: #994433;
  414. border: 2px solid #FFCC88;
  415. box-shadow: black 1px 0 1px,black -1px 0 1px,black 0 -1px 1px,black 0 3px 2px;
  416. border-radius: 5px;
  417. padding: 0;
  418. }
  419. .dialog .string-copy::before
  420. {
  421. content: "📋";
  422. }
  423. .dialog .string-search::before
  424. {
  425. content: "🔍";
  426. }
  427. .dialog .string-value
  428. {
  429. box-sizing: border-box;
  430. width: calc(100% - 50px * 1);
  431. }
  432. .dialog-search-string .original-string .string-value
  433. {
  434. width: calc(100% - 50px * 2);
  435. }
  436. /*单个怪物*/
  437. .monster{
  438. font-family: var(--game-font-family);
  439. width: 100px;
  440. height: 100px;
  441. margin: 0;
  442. display: block;
  443. background-repeat: no-repeat;
  444. position: relative;
  445. cursor: pointer;
  446. border-radius: 5px;
  447. text-decoration:none;
  448. }
  449. .monster.null,.monster.delay,
  450. .null .property,.delay .property,
  451. .null .subproperty,.delay .subproperty
  452. {
  453. box-sizing: border-box;
  454. background-image: none !important;
  455. }
  456. .monster.null{
  457. background-color: rgba(230,230,230,0.5);
  458. border: 3px grey dashed;
  459. }
  460. .edit-box .monster.null{
  461. background-color: #653;
  462. border: none;
  463. box-shadow: inset black 0 0 7px;
  464. }
  465. .member{
  466. vertical-align: top;
  467. }
  468. .monster.delay{
  469. background-color: yellow;
  470. box-shadow: inset orange 0 0 7px;
  471. border: 3px black solid;
  472. }
  473. .monster.delay::before{
  474. width: 94px;
  475. height: 94px;
  476. color: black;
  477. font-size: 30px;
  478. line-height: 47px;
  479. text-align: center;
  480. font-weight: bold;
  481. /*content: "应 对\A威 吓";*/
  482. font-family: var(--font-family);
  483. white-space: pre-wrap;
  484. display: inline-block;
  485. }
  486. /*怪物属性*/
  487. .property,.subproperty{
  488. position:absolute;
  489. left:0;top:0;
  490. width: 100px;
  491. height: 100px;
  492. background-repeat: no-repeat;
  493. background-image: url(images/CARDFRAME2.PNG);
  494. background-position: 100px 100px; /*默认都不显示*/
  495. }
  496. .subproperty.changed-sub-attr::before {
  497. content: "";
  498. right: 3px;
  499. bottom: 5px;
  500. width: 22px;
  501. height: 22px;
  502. box-sizing: border-box;
  503. border: 1px solid lightgreen;
  504. border-radius: 50%;
  505. box-shadow: 0 0 3px lightgreen,0 0 3px lightgreen,0 0 3px lightgreen;
  506. display: block;
  507. position: absolute;
  508. }
  509. .member-types .append-type::before {
  510. font-family: var(--game-font-family);
  511. content: "+";
  512. font-size: 15px;
  513. line-height: 10px;
  514. color: yellow;
  515. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  516. }
  517. .member-types .append-type .type-icon{
  518. background-color: lightgreen;
  519. box-shadow: 1px 1px 3px lightgreen,1px 1px 3px lightgreen,1px 1px 3px lightgreen;
  520. }
  521. /*怪物-加值*/
  522. .monster .plus{
  523. color: yellow;
  524. font-size: 17px;
  525. line-height: 17px;
  526. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  527. position: absolute;
  528. left:10px;
  529. }
  530. .monster.null>div,
  531. .monster.delay>div
  532. {
  533. display:none !important;
  534. }
  535. .monster .plus .hp::before,
  536. .monster .plus .atk::before,
  537. .monster .plus .rcv::before,
  538. .monster .plus.has297::before
  539. {
  540. content: "+";
  541. }
  542. .monster .plus.has297::after{
  543. content: "297";
  544. }
  545. .monster .plus.has297 .hp,
  546. .monster .plus.has297 .atk,
  547. .monster .plus.has297 .rcv
  548. { /*当是297时隐藏3维*/
  549. display:none;
  550. }
  551. /*怪物-觉醒*/
  552. .awoken-count-num
  553. {
  554. font-family: var(--game-font-family);
  555. font-size: 20px;
  556. line-height: 28px;
  557. color: yellow;
  558. text-shadow: black 0 0 4px;
  559. text-align: center;
  560. background-image: url(images/awoken-count-bg.png);
  561. background-repeat: no-repeat;
  562. width: 34px;
  563. height: 38px;
  564. }
  565. .monster .awoken-count-num{
  566. position: absolute;
  567. top: -4px;
  568. right: 0;
  569. transform: scale(0.75) translateX(4px);
  570. }
  571. /*显示怪物觉醒的数字*/
  572. .awoken-count-num
  573. {
  574. }
  575. .awoken-count-num::before
  576. {
  577. content: attr(data-value);
  578. }
  579. .awoken-count-num[data-value="0"]
  580. {
  581. display: none;
  582. }
  583. .awoken-count-num.full-awoken
  584. {
  585. display: inline-block;
  586. }
  587. .awoken-count-num.full-awoken::before
  588. {
  589. content: "★";
  590. }
  591. .allowable-assist .awoken-count-num.full-awoken
  592. {
  593. text-shadow: none;
  594. background-position-y: -38px;
  595. }
  596. .allowable-assist .awoken-count-num.full-awoken::before
  597. {
  598. display: none;
  599. }
  600. /*武器*/
  601. .monster.wepon .awoken-count-num.full-awoken{
  602. transform: scale(0.79) translateY(4px);
  603. width:32px;height:32px;
  604. background-image: url(images/awoken.png);
  605. background-position-x: 0;
  606. background-position-y: -1568px;
  607. }
  608. /*怪物-超觉醒*/
  609. .monster .super-awoken{
  610. position: absolute;
  611. right:0;
  612. top: 25px;
  613. transform: scale(0.75) translateX(4px);
  614. }
  615. /*怪物-等级*/
  616. .monster .level{
  617. font-size: 15px;
  618. line-height: 17px;
  619. color: white;
  620. height: 17px;
  621. text-shadow: black 0 0 2px, black 2px 2px 0;
  622. position: absolute;
  623. left: 5px;
  624. bottom: 0;
  625. vertical-align: top;
  626. }
  627. .monster .level::after
  628. {
  629. content: attr(data-value);
  630. }
  631. .monster .level.max
  632. {
  633. color: #FEFF85;
  634. }
  635. .monster .level.max::after
  636. {
  637. display: none;
  638. }
  639. .monster .level[data-level-range="110"]{
  640. color: #85BCFF;
  641. }
  642. .monster .level[data-level-range="120"]{
  643. color: #19F897;
  644. }
  645. .monster .level[data-level-range="error"]{
  646. color: red;
  647. }
  648. /*.monster .level::before{
  649. content: "Lv.";
  650. }.monster .level.max::before{
  651. content: "Lv.最大";
  652. }*/
  653. .monster .id{
  654. display: block;
  655. color: white;
  656. font-family: var(--font-family);
  657. font-size: 15px;
  658. font-weight: 500;
  659. line-height: 17px;
  660. height: 17px;
  661. text-shadow: black 0px 0px 2px,black -1px -1px 1px,black 1px 1px 1px;
  662. position: absolute;
  663. left: 5px;
  664. bottom: 15px;
  665. }
  666. body:not(.show-mon-id) .monster .id{
  667. display: none;
  668. }
  669. .monster .id::before{
  670. font-size: 12px;
  671. }
  672. /*.monster .id::before{
  673. content: "No.";
  674. }*/
  675. .monster .skill-cd::before{
  676. content:"CD";
  677. font-size: 10px;
  678. }
  679. .monster .skill-cd {
  680. font-size: 13px;
  681. line-height: 13px;
  682. color:white;
  683. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  684. position: absolute;
  685. right:0;
  686. bottom:0;
  687. }
  688. body:not(.show-mon-skill-cd) .monster .skill-cd.max-skill {
  689. display: none;
  690. }
  691. /*显示怪物星级*/
  692. .show-mon-awoken .monster .rarity::before{
  693. position: absolute;
  694. left: 3px;
  695. top: 10px;
  696. font-size: 22px;
  697. content: attr(data-value)"★";
  698. color: yellow;
  699. -webkit-text-stroke: 1px black;
  700. text-shadow: black 1px 1px 1px;
  701. }
  702. /*交换队长技的图标*/
  703. .monster .switch-leader
  704. {
  705. position: absolute;
  706. right: 0px;
  707. bottom: 17px;
  708. width: 23px;
  709. height: 25px;
  710. background-image: url(images/icon-switch-leader.png);
  711. background-position: center;
  712. background-repeat: no-repeat;
  713. }
  714. .monster .switch-leader:hover
  715. {
  716. box-shadow: red 0 0 5px;
  717. }
  718. .monster .switch-leader:active
  719. {
  720. animation: icon-active 0.2s;
  721. }
  722. /*怪物-箱子统计*/
  723. .monster .count-in-box
  724. {
  725. position: absolute;
  726. left: 15px;
  727. top: -10px;
  728. color: white;
  729. text-shadow: black 0px 0px 2px,black -1px -1px 1px,black 1px 1px 1px,black 0px 3px 0;
  730. font-size: 19px;
  731. }
  732. .monster .count-in-box .same-id[data-same-id]::before
  733. {
  734. content: "×"attr(data-same-id);
  735. }
  736. .monster .count-in-box .evo-tree[data-evo-tree]:not([data-evo-tree="0"])::before
  737. {
  738. content: "("attr(data-evo-tree)")";
  739. }
  740. .emphasize-box-have .monster[data-box-have="0"]
  741. {
  742. opacity: 0.45;
  743. }
  744. .emphasize-box-have .search-mon-list .monster[data-box-have="0"]
  745. {
  746. filter: grayscale(1);
  747. }
  748. .emphasize-box-have .monster[data-box-have="2"]
  749. {
  750. opacity: 0.5;
  751. }
  752. body:not(.show-awoken-count):not(.solo) .formation-box .team-total-info, /*单个队伍血量统计*/
  753. body:not(.show-awoken-count) .formation-box .team-ability, /*单个队伍三维*/
  754. body:not(.show-awoken-count) .formation-box .team-awoken /*单个队伍觉醒统计*/
  755. {
  756. display: none !important;
  757. }
  758. body:not(.show-awoken-count):not(.solo) .formation-box .team-bigbox
  759. {
  760. margin-bottom: 5px;
  761. }
  762. body:not(.show-awoken-count):not(.solo) .formation-box .team-badge
  763. {
  764. position: absolute;
  765. z-index: 10;
  766. right: 0;
  767. }
  768. /*辅助和队伍的每一只框架*/
  769. .member, .acquisitus-awoken-icon{
  770. display: inline-block;
  771. position: relative;
  772. width: var(--head-block-width);
  773. }
  774. .formation-box .monster{
  775. margin: 4px; /*留给队长边框的*/
  776. }
  777. .team-assist, .team-members,.team-badge{
  778. display: inline-block;
  779. }
  780. /* 徽章,平时都隐藏 */
  781. .team-badge li{
  782. display: inline-block;
  783. }
  784. .badge-radio{
  785. display: none;
  786. }
  787. .badge{
  788. display: none;
  789. cursor: pointer;
  790. }
  791. /* 显示所有徽章时则打开 */
  792. .show-all-badges .badge{
  793. display: inline-block;
  794. }
  795. /* 选中的徽章平时也打开 */
  796. .team-badge .badge-radio:checked+.badge{
  797. display: inline-block;
  798. }
  799. /*队伍的背景色*/
  800. .teams {
  801. counter-reset: team;
  802. }
  803. .teams .team-bigbox:nth-child(1) {
  804. --team-ft-color: red;
  805. --team-bg-color : pink;
  806. }
  807. .teams .team-bigbox:nth-child(2) {
  808. --team-ft-color: blue;
  809. --team-bg-color : lightblue;
  810. }
  811. .teams .team-bigbox:nth-child(3) {
  812. --team-ft-color: green;
  813. --team-bg-color : lightgreen;
  814. }
  815. .team-members,
  816. .team-latents
  817. {
  818. background-color: var(--team-bg-color);
  819. }
  820. .team-bigbox{
  821. position: relative;
  822. font-size:0;
  823. margin-bottom:10px;
  824. }
  825. .team-bigbox:last-of-type{
  826. margin-bottom:0;
  827. }
  828. /*队伍A、B的文字*/
  829. .team-box{
  830. display: inline-block;
  831. vertical-align:bottom;
  832. }
  833. .team-box-name .box-name
  834. {
  835. color: var(--team-ft-color);
  836. background-color: var(--team-bg-color);
  837. font-size: 30px;
  838. font-weight: bold;
  839. text-align: center;
  840. width: var(--head-block-width);
  841. height: var(--head-block-height);
  842. display: inline-flex;
  843. flex-direction: column;
  844. justify-content: center;
  845. }
  846. .team-box-name .box-name::before,
  847. .team-box-name .box-name::after
  848. {
  849. vertical-align: middle;
  850. }
  851. .team-box-name .box-name::after
  852. {
  853. counter-increment: team;
  854. content: counter(team, upper-alpha);
  855. }
  856. .reverse-member-assist .team-box-name .box-name
  857. {
  858. vertical-align:top;
  859. }
  860. .team-assist-label .assist-label {
  861. width: var(--head-block-width);
  862. color: var(--team-ft-color);
  863. display: inline-block;
  864. text-align: center;
  865. font-size: 18px;
  866. font-weight: bold;
  867. }
  868. .team-assist-label .assist-label::before {
  869. content: "▼";
  870. }
  871. .reverse-member-assist .team-assist-label .assist-label::before {
  872. content: "▲";
  873. }
  874. .formation-box .formation-total-info,
  875. .formation-box .team-total-info
  876. {
  877. font-size: 15px;
  878. vertical-align: bottom;
  879. }
  880. .formation-box .team-total-info
  881. {
  882. display: inline-block;
  883. }
  884. /*各种信息统计的图标*/
  885. .tIf-total-skill-boost,
  886. .tIf-total-move,
  887. .tIf-effect
  888. {
  889. display: inline-block;
  890. }
  891. .tIf-total-hp .general::before,
  892. .tIf-total-hp .awoken-bind::before,
  893. .tIf-total-hp .reduce .reduce-scale::before,
  894. .tIf-total-hp .reduce .general::before,
  895. .tIf-total-hp .reduce .awoken-bind::before,
  896. .tIf-total-skill-boost .general::before,
  897. .tIf-total-move .general::before,
  898. .tIf-total-move .awoken-bind::before,
  899. .tIf-effect icon::before,
  900. icon.poison-no-effect::after,
  901. .hp-range-table th::before
  902. {
  903. content: " ";
  904. background-size: cover;
  905. display: inline-block;
  906. width: 20px;
  907. height: 20px;
  908. vertical-align: bottom;
  909. }
  910. .tIf-total-hp .awoken-bind::before,
  911. .tIf-total-hp .reduce .awoken-bind::before,
  912. .tIf-total-move .awoken-bind::before,
  913. .hp-range-table .awoken-bind th::before,
  914. .hp-range-table .reduce-awoken-bind th::before
  915. {
  916. background-image: url(images/icon-awoken-bind.png);
  917. }
  918. .tIf-total-hp .general::before,
  919. .tIf-total-hp .reduce .general::before,
  920. .hp-range-table .general th::before,
  921. .hp-range-table .reduce-general th::before
  922. {
  923. background-image: url(images/icon-HP.png);
  924. }
  925. .tIf-total-hp .reduce .reduce-scale::before,
  926. .hp-range-table .reduce-scale th::before
  927. {
  928. background-image: url(images/icon-reduce.png);
  929. }
  930. .tIf-total-hp .reduce .reduce-scale::after,
  931. .hp-range-table .hp-range td span:after,
  932. .hp-range-table .reduce-scale td span:after
  933. {
  934. content: "%";
  935. }
  936. .tIf-total-hp .reduce:not(.no-reduce)::before {
  937. content: "⇔";
  938. }
  939. .tIf-total-hp .reduce.no-reduce .general,
  940. .tIf-total-hp .reduce.no-reduce .awoken-bind
  941. {
  942. display: none;
  943. }
  944. :where(:lang(en), :lang(ko)) :where(
  945. .tIf-total-hp .awoken-bind,
  946. .tIf-total-move .awoken-bind,
  947. .tIf-total-hp .reduce .reduce-scale,
  948. )::before
  949. {
  950. background-position-x: -20px;
  951. }
  952. .reduce-details
  953. {
  954. cursor: pointer;
  955. vertical-align: bottom;
  956. }
  957. .reduce-details:hover
  958. {
  959. box-shadow: red 0 0 3px;
  960. }
  961. .dialog-hp-detail
  962. {
  963. margin-left: calc(50% - 200px);
  964. margin-top: 100px;
  965. }
  966. .hp-range-table
  967. {
  968. font-family: var(--font-family);
  969. border: 1px solid white;
  970. background-color: saddlebrown;
  971. }
  972. .hp-range-table caption::before
  973. {
  974. font-family: var(--game-font-family);
  975. }
  976. .hp-range-table td,
  977. .hp-range-table th
  978. {
  979. border: 1px solid white;
  980. padding: 0 4px;
  981. }
  982. .hp-range-table .hp-range th::before
  983. {
  984. width: unset;
  985. height: unset;
  986. }
  987. .hp-range-table[data-attr="0"]
  988. {
  989. background-color: crimson;
  990. }
  991. .hp-range-table[data-attr="1"]
  992. {
  993. background-color: cornflowerblue;
  994. }
  995. .hp-range-table[data-attr="2"]
  996. {
  997. background-color: green;
  998. }
  999. .hp-range-table[data-attr="3"]
  1000. {
  1001. background-color: goldenrod;
  1002. }
  1003. .hp-range-table[data-attr="4"]
  1004. {
  1005. background-color: purple;
  1006. }
  1007. .tIf-total-skill-boost .general::before{
  1008. background-image: url(images/icon-sb.png);
  1009. }
  1010. .tIf-total-move .general::before{
  1011. background-image: url(images/icon-orb-move-time.png);
  1012. }
  1013. /*固定手指的情况*/
  1014. .tIf-total-move.fixed-move-time .awoken-bind
  1015. {
  1016. display: none;
  1017. }
  1018. .tIf-total-move.fixed-move-time{
  1019. position: relative;
  1020. }
  1021. .tIf-total-move.fixed-move-time::after {
  1022. content: " ";
  1023. display: inline-block;
  1024. width: 32px;
  1025. height: 32px;
  1026. background-image: url(images/icon-latent.png);
  1027. background-position-x: -32px;
  1028. transform: scale(0.5);
  1029. position: absolute;
  1030. left: 0;
  1031. top: 0;
  1032. }
  1033. @keyframes hidden-visible-animate{
  1034. from {
  1035. opacity: 1;
  1036. }
  1037. to {
  1038. opacity: 0;
  1039. }
  1040. }
  1041. icon.poison-no-effect::after
  1042. {
  1043. background-image: url(images/icon-bind.png);
  1044. position: absolute;
  1045. left: 0;
  1046. top: 0;
  1047. animation: hidden-visible-animate 0.5s infinite ease-in alternate;
  1048. }
  1049. /*单人时的协力觉醒和多人时的掉落觉醒显示无效*/
  1050. body.solo .awoken-icon[data-awoken-icon="30"]::after,
  1051. body:not(.solo) .awoken-icon[data-awoken-icon="64"]::after
  1052. {
  1053. content: " ";
  1054. display: inline-block;
  1055. width: 32px;
  1056. height: 32px;
  1057. background-image: url(images/icon-bind.png);
  1058. background-size: cover;
  1059. animation: hidden-visible-animate 0.5s infinite ease-in alternate;
  1060. }
  1061. .tIf-effect icon
  1062. {
  1063. position: relative;
  1064. }
  1065. icon._76board::before
  1066. {
  1067. background-image: url(images/icon-76board.png);
  1068. }
  1069. icon.no-skyfall::before
  1070. {
  1071. background-image: url(images/icon-no-skyfall.png);
  1072. }
  1073. icon.poison-no-effect::before
  1074. {
  1075. background-image: url(images/icon-poison.png);
  1076. }
  1077. icon.add-combo
  1078. {
  1079. margin-right: 7px;
  1080. }
  1081. icon.add-combo::before
  1082. {
  1083. background-image: url(images/icon-add-combo.png);
  1084. }
  1085. icon.add-combo::after
  1086. {
  1087. color: white;
  1088. text-shadow: black 1px 1px 0,black -1px 0px 0,black 0 0 1px;
  1089. font-family: var(--game-font-family);
  1090. font-size: 12px;
  1091. position: absolute;
  1092. top: -7px;
  1093. left: 10px;
  1094. content: attr(data-add-combo);
  1095. }
  1096. icon.inflicts::before
  1097. {
  1098. background-image: url(images/icon-inflicts.png);
  1099. }
  1100. icon.inflicts::after
  1101. {
  1102. content: attr(data-inflicts);
  1103. }
  1104. /*队伍内属性、type的个数统计*/
  1105. .tIf-rarity,
  1106. .tIf-attrs,
  1107. .tIf-types
  1108. {
  1109. display: inline-block;
  1110. vertical-align: top;
  1111. }
  1112. .tIf-rarity>li,
  1113. .tIf-attrs>li,
  1114. .tIf-types>li
  1115. {
  1116. display: inline-block;
  1117. }
  1118. .tIf-attrs icon.attr,
  1119. .tIf-types icon.type-icon
  1120. {
  1121. position: relative;
  1122. font-family: var(--game-font-family);
  1123. color: white;
  1124. line-height: 32px;
  1125. font-size: 16px;
  1126. margin-right: 3px;
  1127. }
  1128. .tIf-attrs icon.attr:not([data-value]),
  1129. .tIf-types icon.type-icon:not([data-value]),
  1130. .tIf-attrs icon.attr[data-value="0"],
  1131. .tIf-types icon.type-icon[data-value="0"]
  1132. {
  1133. display: none;
  1134. }
  1135. .tIf-attrs icon.attr::before,
  1136. .tIf-types icon.type-icon::before
  1137. {
  1138. content: "x"attr(data-value);
  1139. position: absolute;
  1140. right: 0;
  1141. bottom: 0;
  1142. font-size: 16px;
  1143. line-height: 17px;
  1144. -webkit-text-stroke: 1px black;
  1145. text-stroke: 1px black;
  1146. text-shadow: black 1px 1px 1px;
  1147. }
  1148. .tIf-rarity icon
  1149. {
  1150. line-height: 32px;
  1151. font-size: 25px;
  1152. font-family: var(--game-font-family);
  1153. }
  1154. .tIf-rarity icon::before
  1155. {
  1156. content: attr(data-value)"★";
  1157. color: gold;
  1158. -webkit-text-stroke: 1px black;
  1159. text-stroke: 1px black;
  1160. text-shadow: black 1px 1px 1px;
  1161. }
  1162. /*队伍的潜觉*/
  1163. .team-latents .latents{
  1164. width: var(--head-block-width);
  1165. display: inline-block;
  1166. vertical-align: top;
  1167. }
  1168. .team-latents .latent-ul{
  1169. width: 152px;
  1170. transform: scale(0.65);
  1171. transform-origin: left top;
  1172. margin-left: 4px;
  1173. margin-bottom: calc(-64px * (1 - 0.65) + 1px);
  1174. /*margin: calc(-64px * (1 - 0.63) / 2 + 3px) calc((108px - 152px) / 2);*/
  1175. /*-152 * (1 - 0.63) + 108 - 152 * 0.63,化简为108 - 152*/
  1176. min-height: 47px; /* 为了防止只有一层6格大潜觉的时候,被缩减太多的问题*/
  1177. /*潜在觉醒布局,使用 gird*/
  1178. display: grid;
  1179. grid-template: repeat(2, 32px) / repeat(3, 32px);
  1180. /*grid-template-columns: repeat(3, 32px);
  1181. grid-template-rows: repeat(2, 32px);*/
  1182. grid-auto-flow: column;
  1183. grid-gap: 3px 6px;
  1184. place-content: start center;
  1185. }
  1186. .team-latents .latent-ul.block-8{
  1187. grid-template-columns: repeat(4, 32px);
  1188. }
  1189. .team-latents .latent-icon[data-latent-hole="1"] {
  1190. grid-column: span 1;
  1191. }
  1192. .team-latents .latent-icon[data-latent-hole="2"] {
  1193. grid-column: span 1;
  1194. grid-row: span 2;
  1195. }
  1196. .team-latents .latent-icon[data-latent-hole="6"] {
  1197. grid-column: span 3;
  1198. grid-row: span 2;
  1199. }
  1200. .team-latents .latent-icon[data-latent-hole="6"]::before,
  1201. .team-latents .latent-icon[data-latent-hole="6"]::after
  1202. {
  1203. transform: scale(1.50);
  1204. margin: calc(32px / 4);
  1205. }
  1206. .team-latents .latent-icon.unallowable-latent {
  1207. opacity: unset;
  1208. filter: unset;
  1209. }
  1210. .team-latents .latent-icon.unallowable-latent::before {
  1211. opacity: var(--search-icon-unchecked);
  1212. filter: grayscale(1);
  1213. }
  1214. /*队长的边框*/
  1215. .team-members .team-leader .monster
  1216. {
  1217. border-radius: 10px;
  1218. border-width:4px;
  1219. border-style:solid;
  1220. box-sizing: initial;
  1221. margin: 0;
  1222. }
  1223. .team-leader .monster {
  1224. border-color: var(--team-ft-color);
  1225. }
  1226. /*三维计算值*/
  1227. .team-ability .abilitys
  1228. {
  1229. padding-left: 5px;
  1230. box-sizing: border-box;
  1231. font-size: 15px;
  1232. width: var(--head-block-width);
  1233. display: inline-block;
  1234. }
  1235. .team-ability .enable-bouns
  1236. {
  1237. color: cornflowerblue;
  1238. }
  1239. .abilitys>div::before
  1240. {
  1241. font-size: 0.75em;
  1242. width: 2.5em;
  1243. display: inline-block;
  1244. }
  1245. /*.abilitys .hp::before{
  1246. content: "HP:";
  1247. }
  1248. .abilitys .atk::before{
  1249. content: "攻击:";
  1250. }
  1251. .abilitys .rcv::before{
  1252. content: "回复:";
  1253. }*/
  1254. .types-ul {
  1255. display: grid;
  1256. grid-auto-flow: column;
  1257. }
  1258. /*队员觉醒统计*/
  1259. .member-awoken,
  1260. .member-types
  1261. {
  1262. width: var(--head-block-width);
  1263. display: inline-block;
  1264. vertical-align: top;
  1265. }
  1266. .team-member-awoken,
  1267. .team-assist-awoken
  1268. {
  1269. margin-top: 3px;
  1270. display : none;
  1271. }
  1272. .member-awoken .awoken-ul,
  1273. .member-types .types-ul
  1274. {
  1275. grid-auto-rows: 21px;
  1276. place-content: start center;
  1277. }
  1278. .member-awoken .awoken-ul
  1279. {
  1280. grid-gap: 2px;
  1281. grid-template-columns: repeat(4, 21px);
  1282. }
  1283. .member-awoken .awoken-icon,
  1284. .member-types .type-icon
  1285. {
  1286. filter: unset;
  1287. transform: scale(0.65);
  1288. margin: calc(-32px * (1 - 0.65) / 2);
  1289. }
  1290. .tIf-addition-info,
  1291. .team-assist-awoken,
  1292. .team-member-awoken,
  1293. .team-member-types
  1294. {
  1295. display : none;
  1296. }
  1297. .show-mon-awoken .tIf-addition-info,
  1298. .show-mon-awoken .team-assist-awoken,
  1299. .show-mon-awoken .team-member-awoken,
  1300. .show-mon-awoken .team-member-types
  1301. {
  1302. display : block;
  1303. }
  1304. .show-mon-awoken .monster .super-awoken
  1305. {
  1306. filter: grayscale(100%);
  1307. }
  1308. /*编辑窗口*/
  1309. .blur-bg{
  1310. pointer-events: none; /*打开编辑窗后禁止后方有鼠标反应*/
  1311. }
  1312. .edit-box{
  1313. background-color: rgba(82, 53, 30, 0.8);
  1314. color: white;
  1315. position: absolute;
  1316. left:0;
  1317. top:0;
  1318. width:100%;
  1319. box-sizing: border-box;
  1320. min-width:664px;
  1321. backdrop-filter: blur(5px);
  1322. }
  1323. .edit-box::backdrop{
  1324. filter: blur(5px);
  1325. }
  1326. .guide-mod .edit-box{
  1327. background-color: rgb(102, 73, 50);
  1328. backdrop-filter: unset;
  1329. }
  1330. .edit-box-title{
  1331. text-align: center;
  1332. font-size: 2em;
  1333. font-weight: bold;
  1334. }
  1335. /*.guide-mod .edit-box-title,
  1336. .guide-mod .button-box .button-null,
  1337. .guide-mod .button-box .button-delay,
  1338. .guide-mod .button-box .button-done
  1339. {
  1340. display: none;
  1341. }*/
  1342. /*.edit-box .edit-box-title::before{
  1343. content: "修改队员";
  1344. }
  1345. .edit-box .edit-box-title.edit-box-title-assist::before{
  1346. content: "修改辅助";
  1347. }*/
  1348. .edit-box .search-box,
  1349. .edit-box .setting-box{
  1350. padding: 10px;
  1351. position: relative;
  1352. }
  1353. /*.edit-box .setting-box .row-mon-id::before{
  1354. content: "▼怪物ID";
  1355. }*/
  1356. .edit-box .setting-box .row-mon-id .m-id{
  1357. box-sizing: border-box;
  1358. font-size: 25px;
  1359. height: 40px;
  1360. width: calc(100% - 50px);
  1361. }
  1362. .edit-box .setting-box .row-mon-id .search-by-string{
  1363. box-sizing: border-box;
  1364. font-size: 25px;
  1365. height: 40px;
  1366. width: 45px;
  1367. margin-left: 5px;
  1368. padding: 0;
  1369. }
  1370. .edit-box .setting-box .row-mon-id .search-by-string::before{
  1371. content: "🔍";
  1372. }
  1373. .edit-box .setting-box .row-mon-id .unable-monster{
  1374. pointer-events: none;
  1375. opacity: 0.5;
  1376. }
  1377. .edit-box .setting-box .row-mon-id .unable-monster .monster{
  1378. box-sizing: border-box;
  1379. border: 5px solid red;
  1380. border-radius: 10px;
  1381. overflow: hidden;
  1382. }
  1383. .edit-box .setting-box .row-mon-id .unable-monster .id{
  1384. display: none;
  1385. }
  1386. .edit-box .setting-box .row-mon-id .search-button{
  1387. width: 100%;
  1388. height: 40px;
  1389. font-size: 25px;
  1390. }
  1391. .edit-box .setting-box .row-mon-id .evo-card-list>li,
  1392. .edit-box .search-mon-list>li
  1393. {
  1394. display: inline-block;
  1395. vertical-align: top;
  1396. margin: 2px;
  1397. }
  1398. .detail-mon{
  1399. display: inline-block;
  1400. vertical-align: bottom;
  1401. }
  1402. .edit-box .setting-box .row-mon-id .evo-card-list .monster,
  1403. .edit-box .search-mon-list .monster,
  1404. .detail-mon .monster,
  1405. .mask-evolutionary-tree .evo-panel-left>.monster-head>.monster
  1406. {
  1407. float: none;
  1408. transform: scale(0.75);
  1409. margin: calc(-100px * (1 - 0.75) / 2);
  1410. }
  1411. .edit-box .setting-box .row-mon-id .evo-card-list .monster .id,
  1412. .edit-box .search-mon-list .monster .id,
  1413. .detail-mon .monster .id{
  1414. bottom: 5px;
  1415. font-size: 20px;
  1416. }
  1417. .edit-box .setting-box .row-mon-id .evo-card-list .monster
  1418. {
  1419. transform: scale(0.6);
  1420. margin: calc(-100px * (1 - 0.6) / 2);
  1421. }
  1422. .edit-box .setting-box .row-mon-id .evo-card-list .monster .id
  1423. {
  1424. font-size: 1.4em;
  1425. font-weight: bold;
  1426. text-shadow: black -3px -3px 3px, black 3px -3px 3px, black -3px 3px 3px, black 3px 3px 3px, ;
  1427. }
  1428. .edit-box .search-mon-list .monster .level {
  1429. bottom: 23px;
  1430. }
  1431. .edit-box .search-mon-list .monster .plus {
  1432. top: 20px;
  1433. }
  1434. .rich-text .detail-mon{
  1435. width: 50px;
  1436. height: 50px;
  1437. }
  1438. .rich-text .detail-mon .monster{
  1439. transform: scale(0.5);
  1440. margin: calc(-100px * (1 - 0.5) / 2);
  1441. }
  1442. .rich-text .detail-mon .monster .id{
  1443. background-color: rgba(0,0,0,0.8);
  1444. padding: 2px;
  1445. font-size: 23px;
  1446. }
  1447. .rich-text .detail-mon .monster .id::before {
  1448. display: none;
  1449. }
  1450. .rich-text .latent-icon {
  1451. width: 32px;
  1452. height: 32px;
  1453. display: inline-block;
  1454. }
  1455. /*搜索结果显示觉醒列表的相关css*/
  1456. .awoken-preview .awoken-ul
  1457. {
  1458. grid-template-columns: repeat(3, 24px);
  1459. grid-auto-rows: 24px;
  1460. grid-gap: 1px;
  1461. place-content: start center;
  1462. }
  1463. .custom-addition .awoken-ul
  1464. {
  1465. width: 75px;
  1466. }
  1467. .custom-addition ul
  1468. {
  1469. display: inline;
  1470. }
  1471. .awoken-preview .awoken-ul>li,
  1472. .custom-addition .awoken-ul>li
  1473. {
  1474. display: inline-block;
  1475. }
  1476. .awoken-preview .awoken-preview-superAwakenings{
  1477. margin-top:3px;
  1478. background-color: #432;
  1479. }
  1480. .awoken-preview .awoken-preview-superAwakenings .awoken-icon{
  1481. opacity: 0.6;
  1482. }
  1483. .awoken-preview .awoken-ul>li,
  1484. .custom-addition .awoken-ul>li
  1485. {
  1486. margin: 0.5px !important;
  1487. }
  1488. .awoken-preview .awoken-icon,
  1489. .custom-addition .awoken-icon,
  1490. .custom-addition .type-icon
  1491. {
  1492. filter: unset;
  1493. transform: scale(0.75);
  1494. margin: calc(-32px * (1 - 0.75) / 2);
  1495. }
  1496. .cd-preview .cd-max,
  1497. .cd-preview .cd-min,
  1498. .cd-preview .cd-evo
  1499. {
  1500. font-size: 14px;
  1501. }
  1502. .cd-preview .cd-min::after
  1503. {
  1504. content: "-";
  1505. }
  1506. .cd-preview .cd-evo::before
  1507. {
  1508. content: "↪";
  1509. font-family: var(--icon-font-family);
  1510. }
  1511. .cd-preview .cd-evo.loop-evo-skill::after
  1512. {
  1513. content: "⤴︎";
  1514. font-family: var(--icon-font-family);
  1515. }
  1516. .cd-preview,
  1517. .add-show-CD-label
  1518. {
  1519. color: lightblue;
  1520. }
  1521. .abilities-preview>li
  1522. {
  1523. font-size: 14px;
  1524. }
  1525. .cd-preview::before,
  1526. .abilities-preview>li::before
  1527. {
  1528. font-size: 10px;
  1529. display: inline-block;
  1530. width: 25px;
  1531. }
  1532. .add-show-abilities-with-awoken-label,
  1533. .abilities-with-awoken-preview>li
  1534. {
  1535. color: #dfd;
  1536. }
  1537. .custom-addition
  1538. {
  1539. font-size: 14px;
  1540. max-width: 75px;
  1541. }
  1542. /*.setting-box .row-mon-id .open-search::before{
  1543. content: "搜索怪物";
  1544. }
  1545. .search-box::before{
  1546. content: "▼简易搜索";
  1547. }
  1548. */
  1549. .search-box::before{
  1550. font-weight: bold;
  1551. font-size: 1.2em;
  1552. }
  1553. .search-box>div{
  1554. margin-bottom: 5px;
  1555. }
  1556. .search-box .attrs-div-div>ul{
  1557. display: block;
  1558. }
  1559. .search-box>div>ul>li{
  1560. display: inline-block;
  1561. vertical-align: top;
  1562. font-size:16px;
  1563. }
  1564. .search-box .attr-list>li{
  1565. overflow: hidden;
  1566. }
  1567. .search-box>div>ul>li>label{
  1568. cursor: pointer;
  1569. display: block;
  1570. text-align: center;
  1571. }
  1572. .attrs-div .attr-list-1::before,
  1573. .attrs-div .attr-list-2::before,
  1574. .types-div::before,
  1575. .awoken-div::before,
  1576. .sawoken-div::before{
  1577. /*float: left;*/
  1578. font-size: 16px;
  1579. /*width: 55px;*/
  1580. margin-right: 3px;
  1581. display: inline-block;
  1582. }
  1583. /*.search-box .attrs-div-div .attr-list-1::before{
  1584. content: "属性1";
  1585. }
  1586. .search-box .attrs-div-div .attr-list-2::before{
  1587. content: "属性2";
  1588. }
  1589. .search-box .attrs-div-div .fix-main-color-label::after{
  1590. content: "限制属性1为主属性,属性2为副属性";
  1591. }*/
  1592. .attr-radio,
  1593. .attr-check,
  1594. .type-check,
  1595. .rare-check,
  1596. .sawoken-check
  1597. {
  1598. display: none;
  1599. }
  1600. .attrs-div .attr-list{
  1601. font-size:0;
  1602. }
  1603. .attrs-div .attr-list>li,
  1604. .qr-data-type-ul>li
  1605. {
  1606. border: 1px solid white;
  1607. border-left: none;
  1608. background: #947244;
  1609. display: inline-block;
  1610. overflow: hidden;
  1611. }
  1612. .attrs-div .attr-list>li:hover,
  1613. .qr-data-type-ul>li:hover
  1614. {
  1615. background: #E9CB9E;
  1616. }
  1617. .attrs-div .attr-list>li:first-of-type,
  1618. .qr-data-type-ul>li:first-of-type
  1619. {
  1620. border-radius: 8px 0 0 8px;
  1621. border-left: 1px solid white;
  1622. }
  1623. .attrs-div .attr-list>li:last-of-type,
  1624. .qr-data-type-ul>li:last-of-type
  1625. {
  1626. border-radius: 0 8px 8px 0;
  1627. }
  1628. .attrs-div .attr-list>li>label
  1629. {
  1630. width: 55px;
  1631. text-align: center;
  1632. }
  1633. .attrs-div .attr-list input:checked+label,
  1634. .qr-data-type-ul>li input:checked+label
  1635. {
  1636. background-color:#8C4242;
  1637. box-shadow: inset black 0 0 5px;
  1638. cursor: auto;
  1639. }
  1640. .attr-list-1{
  1641. margin-bottom: 5px;
  1642. }
  1643. /*.search-box .types-div::before{
  1644. content: "类型";
  1645. }*/
  1646. .types-div .type-list,
  1647. .types-div .latent-list,
  1648. .rare-div .rare-list
  1649. {
  1650. display: inline-block;
  1651. }
  1652. :where(
  1653. .type-list,
  1654. .awoken-ul,
  1655. .rare-list,
  1656. .attr-list,
  1657. ) input[type="checkbox"]:not(:checked)+label
  1658. {
  1659. opacity: var(--search-icon-unchecked);
  1660. }
  1661. .types-div .type-and-or-label{
  1662. margin-left: 10px;
  1663. margin-right: 0;
  1664. }
  1665. .types-div .type-list>li
  1666. {
  1667. position: relative;
  1668. }
  1669. .types-div .type-list>li:after
  1670. {
  1671. content: "⚔️";
  1672. font-size: 10px;
  1673. position: absolute;
  1674. right: 0;
  1675. bottom: 0;
  1676. display: none;
  1677. pointer-events:none;
  1678. }
  1679. /*不同type允许的杀*/
  1680. .types-div .type-list.type-killer-5 li[data-type-icon="7"]:after,
  1681. .types-div .type-list.type-killer-4 li[data-type-icon="8"]:after,
  1682. .types-div .type-list.type-killer-4 li[data-type-icon="3"]:after,
  1683. .types-div .type-list.type-killer-7 li[data-type-icon="5"]:after,
  1684. .types-div .type-list.type-killer-8 li[data-type-icon="5"]:after,
  1685. .types-div .type-list.type-killer-8 li[data-type-icon="1"]:after,
  1686. .types-div .type-list.type-killer-1 li[data-type-icon="5"]:after,
  1687. .types-div .type-list.type-killer-1 li[data-type-icon="4"]:after,
  1688. .types-div .type-list.type-killer-1 li[data-type-icon="7"]:after,
  1689. .types-div .type-list.type-killer-1 li[data-type-icon="8"]:after,
  1690. .types-div .type-list.type-killer-1 li[data-type-icon="1"]:after,
  1691. .types-div .type-list.type-killer-1 li[data-type-icon="6"]:after,
  1692. .types-div .type-list.type-killer-1 li[data-type-icon="2"]:after,
  1693. .types-div .type-list.type-killer-1 li[data-type-icon="3"]:after,
  1694. .types-div .type-list.type-killer-6 li[data-type-icon="7"]:after,
  1695. .types-div .type-list.type-killer-6 li[data-type-icon="2"]:after,
  1696. .types-div .type-list.type-killer-2 li[data-type-icon="8"]:after,
  1697. .types-div .type-list.type-killer-2 li[data-type-icon="3"]:after,
  1698. .types-div .type-list.type-killer-3 li[data-type-icon="4"]:after,
  1699. .types-div .type-list.type-killer-3 li[data-type-icon="6"]:after
  1700. {
  1701. display: block;
  1702. }
  1703. .types-div .latent-list .latent-icon
  1704. {
  1705. cursor: pointer;
  1706. box-shadow: none;
  1707. }
  1708. .types-div .latent-list .latent-icon:before
  1709. {
  1710. margin-top: -3px;
  1711. margin-bottom: -5px;
  1712. }
  1713. .rare-icon
  1714. {
  1715. font-family: var(--game-font-family);
  1716. color: white;
  1717. width: 26px;
  1718. height: 26px;
  1719. box-sizing: border-box;
  1720. line-height: 26px;
  1721. position: relative;
  1722. text-align: center;
  1723. display: inline-block;
  1724. cursor: pointer;
  1725. }
  1726. .rare-radio
  1727. {
  1728. display: none;
  1729. }
  1730. .rare-radio[name="rare-low"]~.rare-icon
  1731. {
  1732. opacity: var(--search-icon-unchecked);
  1733. }
  1734. .rare-radio[name="rare-low"]:checked~.rare-icon
  1735. {
  1736. opacity: 1;
  1737. }
  1738. .rare-radio[name="rare-high"]:checked~.rare-icon
  1739. {
  1740. opacity: var(--search-icon-unchecked);
  1741. }
  1742. .rare-icon::before
  1743. {
  1744. content: "★";
  1745. color: gold;
  1746. text-shadow: goldenrod 0 0 2px;
  1747. position: absolute;
  1748. font-size: 26px;
  1749. left: 0;
  1750. top: 0;
  1751. }
  1752. .rare-icon::after
  1753. {
  1754. color: white;
  1755. text-shadow: black 0 0 4px;
  1756. font-size: 18px;
  1757. position: relative;
  1758. left: 0;
  1759. top: 0;
  1760. }
  1761. .rare-icon::after
  1762. {
  1763. content: attr(data-rare-icon);
  1764. }
  1765. .search-box .rare-clear
  1766. {
  1767. margin-left: 5px;
  1768. }
  1769. .search-box .selected-awokens-div {
  1770. margin-bottom: 5px;
  1771. }
  1772. .search-box .selected-awokens-div .selected-awokens{
  1773. min-height: 32px;
  1774. box-sizing: border-box;
  1775. width: calc(100% - 90px);
  1776. min-width: 320px;
  1777. background-color: #00000044;
  1778. border-radius: 6px;
  1779. box-shadow: inset black 0 0 3px;
  1780. display: inline-grid;
  1781. vertical-align: bottom;
  1782. grid-gap: 0;
  1783. }
  1784. /*.search-box .awoken-div::before{
  1785. content: "觉醒";
  1786. }*/
  1787. .search-box .awoken-div .all-awokens::before {
  1788. display: none;
  1789. }
  1790. .search-box .awoken-div.official-awoken-sorting :where(
  1791. .all-awokens,
  1792. .sawoken-detail,
  1793. ){
  1794. display: inline-block;
  1795. }
  1796. .search-box .awoken-div.official-awoken-sorting .all-awokens::before
  1797. {
  1798. display: block;
  1799. }
  1800. .official-awoken-sorting .sawoken-detail {
  1801. margin-left: 10px;
  1802. }
  1803. .search-box .brown-button::before
  1804. {
  1805. min-width: 80px;
  1806. background-size: 100px 100px;
  1807. background-position-y: 40px;
  1808. font-size: 18px;
  1809. line-height: 28px;
  1810. padding: 0;
  1811. vertical-align: bottom;
  1812. }
  1813. .search-box .rare-clear::before,
  1814. .search-box .special-add::before,
  1815. .search-box .special-clear::before,
  1816. .search-box .special-star::before
  1817. {
  1818. min-width: 50px;
  1819. font-size: 14px;
  1820. line-height: 20px;
  1821. }
  1822. @keyframes awoken-appear {
  1823. 0% {
  1824. transform: scale(0);
  1825. }
  1826. 50% {
  1827. transform: scale(1.5);
  1828. }
  1829. 100% {
  1830. transform: scale(1);
  1831. }
  1832. }
  1833. .selected-awokens .awoken-icon
  1834. {
  1835. animation: awoken-appear 0.2s;
  1836. }
  1837. @keyframes icon-active {
  1838. 0% {
  1839. transform: scale(1);
  1840. }
  1841. 50% {
  1842. transform: scale(1.5);
  1843. }
  1844. 100% {
  1845. transform: scale(1);
  1846. }
  1847. }
  1848. @keyframes show-disabled-action {
  1849. 0% {
  1850. box-shadow: red 0 0 0;
  1851. }
  1852. 25% {
  1853. transform: skewX(5deg);
  1854. }
  1855. 50% {
  1856. box-shadow: red 0 0 7px;
  1857. }
  1858. 75% {
  1859. transform: skewX(-5deg);
  1860. }
  1861. 100% {
  1862. box-shadow: red 0 0 0;
  1863. }
  1864. }
  1865. .show-disabled-action {
  1866. animation: show-disabled-action 0.3s;
  1867. animation-iteration-count: 2;
  1868. }
  1869. .types-div .type-icon:active,
  1870. .rare-div .rare-icon:active,
  1871. .selected-awokens .awoken-icon:active,
  1872. .awoken-div .awoken-icon:active,
  1873. .row-awoken-sawoken .awoken-icon:active
  1874. {
  1875. animation: icon-active 0.2s;
  1876. }
  1877. .awoken-ul
  1878. {
  1879. display: grid;
  1880. grid-template-columns: repeat(auto-fill, 32px);
  1881. grid-auto-rows: 32px;
  1882. grid-gap: 5px;
  1883. }
  1884. .official-awoken-sorting .awoken-ul {
  1885. grid-template-columns: repeat(9, 32px);
  1886. }
  1887. .official-awoken-sorting {
  1888. display: inline-block;
  1889. }
  1890. .team-awoken .awoken-ul,
  1891. .formation-awoken .awoken-ul {
  1892. grid-template-columns: repeat(auto-fill, 67px);
  1893. }
  1894. .awoken-ul .awoken-count
  1895. {
  1896. font-family: var(--game-font-family);
  1897. grid-column: span 1;
  1898. grid-row: span 1;
  1899. font-size: 16px;
  1900. line-height: 32px;
  1901. white-space: nowrap;
  1902. }
  1903. .awoken-ul .count::before
  1904. {
  1905. content: "×";
  1906. }
  1907. .awoken-icon
  1908. {
  1909. position: relative;
  1910. border: none;
  1911. background-color: unset;
  1912. font-family: var(--game-font-family);
  1913. color: white;
  1914. line-height: 32px;
  1915. font-size: 16px;
  1916. padding: 0;
  1917. text-align: left;
  1918. }
  1919. .awoken-icon::before
  1920. {
  1921. display: block;
  1922. position: absolute;
  1923. line-height: 18px;
  1924. font-size: 18px;
  1925. right: 0;
  1926. bottom: 0;
  1927. -webkit-text-stroke: 1px black;
  1928. text-shadow: black 1px 1px 1px;
  1929. }
  1930. .awoken-icon[data-awoken-count]:not([data-awoken-count="0"])::before
  1931. {
  1932. content: attr(data-awoken-count);
  1933. }
  1934. /*搜索框有数字的觉醒才变亮*/
  1935. .search-box .all-awokens .awoken-icon{
  1936. opacity: var(--search-icon-unchecked);
  1937. }
  1938. .search-box .all-awokens .awoken-icon[data-awoken-count]:not([data-awoken-count="0"]){
  1939. opacity: 1;
  1940. }
  1941. .search-box .awoken-ul .count{
  1942. width: 1em;
  1943. height: auto;
  1944. }
  1945. .search-box .awoken-ul .awoken-count .awoken-icon,
  1946. .search-box .awoken-ul .awoken-count .count-symbol,
  1947. .search-box .awoken-ul .awoken-count .count-symbol .count
  1948. {
  1949. cursor: pointer;
  1950. display: inline-block;
  1951. vertical-align: bottom;
  1952. }
  1953. .search-box .awoken-ul .awoken-count.zero .count-symbol,
  1954. .search-box .awoken-ul .awoken-count.zero .count-symbol .count
  1955. {
  1956. cursor: auto;
  1957. }
  1958. /*.search-box .sawoken-div::before{
  1959. content: "超觉醒";
  1960. }*/
  1961. .sawoken-div .awoken-ul .awoken-count
  1962. {
  1963. margin-right: 5px;
  1964. margin-top: 5px;
  1965. display: inline-block;
  1966. }
  1967. .sawoken-div summary {
  1968. display: inline list-item;
  1969. }
  1970. .special-filter-list>li{
  1971. margin-bottom: 5px;
  1972. margin-right: 3px;
  1973. }
  1974. .special-filter-list select{
  1975. font-size: 20px;
  1976. max-width: 100%;
  1977. box-sizing: border-box;
  1978. }
  1979. .control-div button{
  1980. font-size: 20px;
  1981. }
  1982. .control-div .search-start{
  1983. float: right;
  1984. margin-left: 5px;
  1985. }
  1986. /*.control-div .search-start::before{
  1987. content: "开始搜索";
  1988. }
  1989. .control-div .search-clear::before{
  1990. content: "清空搜索条件";
  1991. }
  1992. .control-div .search-close::before{
  1993. content: "关闭搜索";
  1994. }*/
  1995. .search-mon-list{
  1996. box-sizing: border-box;
  1997. border: 1px solid white;
  1998. border-radius: 5px;
  1999. background: grey;
  2000. display: grid;
  2001. width: 100%;
  2002. grid-template-columns: repeat(auto-fill, 75px);
  2003. grid-auto-rows: min-content;
  2004. grid-gap: 5px;
  2005. }
  2006. .search-mon-list:empty {
  2007. display: none;
  2008. }
  2009. .search-box .search-list-length
  2010. {
  2011. float: right;
  2012. }
  2013. .search-box .search-list-length[data-search-result-count="0"]
  2014. {
  2015. display: none;
  2016. }
  2017. .search-box .search-list-length:not([data-search-result-count="0"])::after
  2018. {
  2019. content: attr(data-search-result-count);
  2020. }
  2021. /*图鉴模式使用粘性定位*/
  2022. .guide-mod .sticky-box {
  2023. position: sticky;
  2024. top: 0;
  2025. z-index: 1;
  2026. }
  2027. /*图鉴模式默认高度为30%设备高度,可修改大小*/
  2028. .guide-mod .search-mon-list{
  2029. overflow: auto;
  2030. height: 30vh;
  2031. resize: vertical;
  2032. }
  2033. .setting-box .row-mon-id .real-time-change-card-label
  2034. {
  2035. margin-right: 0;
  2036. margin-left: 5px;
  2037. }
  2038. .setting-box .row-mon-id .open-search{
  2039. float: right;
  2040. }
  2041. .can-assist-label,
  2042. .sort-reverse-label
  2043. {
  2044. margin-left: 5px;
  2045. }
  2046. .edit-box .setting-row{
  2047. width: 100%;
  2048. }
  2049. .edit-box .monsterinfo-box{
  2050. display: grid;
  2051. grid-auto-rows: min-content;
  2052. grid-template-columns: 100px auto 140px;
  2053. gap: 5px;
  2054. font-family: var(--game-font-family);
  2055. color: white;
  2056. font-size: 22px;
  2057. line-height: 22px;
  2058. text-shadow: black 2px 2px 0;
  2059. background-image: linear-gradient(#798421,#394914);
  2060. border-top: #B1BB39 solid 4px;
  2061. border-bottom: #72941D ridge 7px;
  2062. box-shadow: black 0 3px 3px;
  2063. padding: 5px 10px;
  2064. position: sticky;
  2065. top: 0;
  2066. z-index: 1;
  2067. }
  2068. .row-awoken-sawoken .awoken-ul,
  2069. .row-awoken-sawoken .current-super-awoken
  2070. {
  2071. display: inline-flex;
  2072. vertical-align: top;
  2073. }
  2074. .row-awoken-sawoken .current-super-awoken::before{
  2075. content:"+";
  2076. line-height: 25px;
  2077. }
  2078. .monsterinfo-box .monster-head {
  2079. grid-row: 1 / 4;
  2080. }
  2081. .monsterinfo-box .monsterinfo-line {
  2082. display: flex;
  2083. }
  2084. .monsterinfo-box .row-awoken-sawoken {
  2085. grid-column: 1 / 4;
  2086. display: flex;
  2087. gap: 5px;
  2088. flex-wrap: wrap;
  2089. align-items: flex-start;
  2090. }
  2091. .monsterinfo-groupId{
  2092. grid-row: 1 / 3;
  2093. grid-column: 3;
  2094. display: flex;
  2095. flex-direction: column;
  2096. font-size: 14px;
  2097. line-height: 16px;
  2098. }
  2099. .monsterinfo-groupId div{
  2100. cursor: pointer;
  2101. white-space:nowrap;
  2102. text-overflow:ellipsis;
  2103. overflow:hidden;
  2104. }
  2105. .monsterinfo-groupId div:hover::after
  2106. {
  2107. content: "🔍";
  2108. }
  2109. /*.monsterinfo-box .monster-id::before{
  2110. content: "No.";
  2111. }*/
  2112. .monsterinfo-box .monster-id{
  2113. width:120px;
  2114. }
  2115. .monsterinfo-box .monster-rare{
  2116. width: 100px;
  2117. }
  2118. .monsterinfo-box .monster-rare::before,
  2119. .monsterinfo-box .monster-rare::after
  2120. {
  2121. color:gold;
  2122. text-shadow: black 0 0 3px,black 0 2px 3px;
  2123. }
  2124. .monsterinfo-box .monster-rare::before
  2125. {
  2126. display: inline-block;
  2127. width: 30px;
  2128. text-align: right;
  2129. vertical-align: top;
  2130. }
  2131. .monster-rare[data-rarity='1']::after{content: "★";}
  2132. .monster-rare[data-rarity='2']::after{content: "★★";}
  2133. .monster-rare[data-rarity='3']::after{content: "★★★";}
  2134. .monster-rare[data-rarity='4']::after{content: "★★★★";}
  2135. .monster-rare[data-rarity='5']::after{content: "★★★★★";}
  2136. .monster-rare[data-rarity='6']::after{content: "★★★★★\A★";}
  2137. .monster-rare[data-rarity='7']::after{content: "★★★★★\A★★";}
  2138. .monster-rare[data-rarity='8']::after{content: "★★★★★\A★★★";}
  2139. .monster-rare[data-rarity='9']::after{content: "★★★★★\A★★★★";}
  2140. .monster-rare[data-rarity='10']::after{content: "★★★★★\A★★★★★";}
  2141. .monster-rare::before{content: attr(data-rarity);}
  2142. .monster-rare::after{
  2143. font-size: 0.5em;
  2144. line-height: 1em;
  2145. display: inline-block;
  2146. white-space: break-spaces;
  2147. }
  2148. .monsterinfo-box .monster-mp::before
  2149. {
  2150. content: " ";
  2151. background-image: url(images/icon-MP.png);
  2152. background-size: cover;
  2153. display: inline-block;
  2154. width: 22px;
  2155. height: 22px;
  2156. vertical-align: middle;
  2157. }
  2158. .monsterinfo-box .monster-type {
  2159. display: flex;
  2160. }
  2161. .monsterinfo-box .monster-type .type-name{
  2162. display:inline-block;
  2163. margin-right: 10px;
  2164. }
  2165. .monsterinfo-box .monster-type .type-icon{
  2166. margin-right:3px;
  2167. }
  2168. /*
  2169. .edit-box .setting-box .row-mon-awoken::before{
  2170. content: "▼怪物觉醒";
  2171. }
  2172. */
  2173. .row-mon-awoken .awoken-count-num{
  2174. display: inline-block;
  2175. transform: scale(0.84);
  2176. margin: -3px -1px;
  2177. }
  2178. .edit-box .awoken-ul .awoken-icon,
  2179. .row-mon-awoken .awoken-count-num
  2180. {
  2181. cursor: pointer;
  2182. }
  2183. .row-mon-awoken .awoken-count-num,
  2184. .row-mon-awoken .awoken-icon
  2185. {
  2186. vertical-align: top;
  2187. }
  2188. /*选中的觉醒后面部分半透明,前面的不透明*/
  2189. .row-mon-awoken input[type="radio"]
  2190. {
  2191. display: none;
  2192. }
  2193. .row-mon-awoken input[type="radio"]:checked~label
  2194. {
  2195. opacity: var(--search-icon-unchecked);
  2196. }
  2197. /*.edit-box .setting-box .row-mon-super-awoken::before{
  2198. content: "▼超觉醒";
  2199. }*/
  2200. .row-awoken-sawoken .awoken-count-num,
  2201. .row-awoken-sawoken .awoken-icon
  2202. {
  2203. grid-column: span 1;
  2204. grid-row: span 1;
  2205. }
  2206. .current-super-awoken {
  2207. margin-right: 5px;
  2208. }
  2209. /*未选中的超觉醒半透明,选中的不透明*/
  2210. .row-mon-super-awoken .awoken-icon{
  2211. opacity: var(--search-icon-unchecked);
  2212. }
  2213. /*怪物能力横条*/
  2214. /*.row-ability{
  2215. border-color: #D5AF5B;
  2216. border-style: solid;
  2217. border-width: var(--border-width);
  2218. border-radius: 8px;
  2219. background-color: #B68E4A;
  2220. background-image: radial-gradient(ellipse at top,#B68E4A, #60492C);
  2221. }*/
  2222. /*.edit-box .setting-box .row-mon-ability::before{
  2223. content: "▼怪物能力";
  2224. }*/
  2225. .row-mon-ability ul{
  2226. margin-top: var(--border-width);
  2227. }
  2228. .row-mon-ability ul li::before{
  2229. width: 2.5em;
  2230. display: inline-block;
  2231. }
  2232. .row-mon-ability .ability-value{
  2233. width: 4em;
  2234. display: inline-block;
  2235. text-align: right;
  2236. }
  2237. .edit-box .setting-box .row-mon-plus::before{
  2238. /*content: "▼怪物加值";*/
  2239. display:block;
  2240. }
  2241. .row-mon-ability ul,
  2242. .row-mon-plus ul,
  2243. .row-mon-level .level-value,
  2244. .row-mon-level .monster-cost,
  2245. .row-mon-plus li
  2246. {
  2247. font-family: var(--game-font-family );
  2248. font-size: 20px;
  2249. line-height: 28px;
  2250. text-shadow: black 2px 2px 0;
  2251. }
  2252. .row-mon-level .monster-cost
  2253. {
  2254. background-color: #2F2B28;
  2255. border: solid 3px #563E22;
  2256. border-radius: 12px;
  2257. padding: 0 5px;
  2258. font-size: 0.8em;
  2259. box-shadow: inset 0 3px 3px black;
  2260. }
  2261. .row-mon-plus .plus-box{
  2262. border-color: #A07740;
  2263. border-style: solid;
  2264. border-width: var(--border-width);
  2265. border-radius: 8px;
  2266. background-color: #44392C;
  2267. box-shadow: inset black 0 3px 5px;
  2268. white-space: nowrap; /*避免纵向297跑到下一行*/
  2269. }
  2270. .row-mon-plus li{
  2271. padding: 0 5px;
  2272. }
  2273. /*.m-plus-hp-li::before{content: "HP";}
  2274. .m-plus-atk-li::before{content: "攻击";}
  2275. .m-plus-rcv-li::before{content: "回复";}*/
  2276. .row-mon-plus .plus-value{
  2277. color: yellow;
  2278. }
  2279. .row-mon-plus .plus-value::before{content: "(+";}
  2280. .row-mon-plus .plus-value::after{content: ")";}
  2281. .row-mon-plus .plus-value input
  2282. {
  2283. color: inherit;
  2284. font-family: inherit;
  2285. font-size: inherit;
  2286. text-shadow: inherit;
  2287. box-sizing: border-box;
  2288. width: 2em;
  2289. line-height: 28px;
  2290. height: 28px;
  2291. padding: 0;
  2292. -moz-appearance: textfield; /*火狐去掉数字加减*/
  2293. }
  2294. /*webkit去掉数字加减*/
  2295. .row-mon-plus .plus-value input::-webkit-outer-spin-button,
  2296. .row-mon-plus .plus-value input::-webkit-inner-spin-button{
  2297. -webkit-appearance: none !important;
  2298. margin: 0;
  2299. }
  2300. .row-mon-plus .m-plus-fast-setting::before
  2301. {
  2302. content: "+"attr(value);
  2303. }
  2304. .row-mon-plus .m-plus-fast-setting
  2305. {
  2306. padding: 0 3px;
  2307. box-sizing: border-box;
  2308. font-size: inherit;
  2309. line-height: 20px;
  2310. height: 30px;
  2311. }
  2312. .m-plus-btn-297 span{
  2313. /*Chrome浏览器不支持按钮本身的纵向,只能加一层*/
  2314. -webkit-writing-mode: vertical-lr;
  2315. }
  2316. .row-mon-plus .plus-box ul
  2317. {
  2318. display: inline-block;
  2319. vertical-align: top;
  2320. }
  2321. /*.edit-box .setting-box .row-mon-level::before{
  2322. content: "▼怪物等级";
  2323. }*/
  2324. .row-mon-level
  2325. {
  2326. margin-left: 10px;
  2327. }
  2328. .row-mon-level :is(
  2329. .level-value,
  2330. button
  2331. )::before
  2332. {
  2333. content: "Lv.";
  2334. }
  2335. .row-mon-level .subrow
  2336. {
  2337. font-family: var(--game-font-family );
  2338. font-size: 22px;
  2339. line-height: 22px;
  2340. }
  2341. .edit-box .setting-box .m-level
  2342. {
  2343. color: inherit;
  2344. font-family: inherit;
  2345. font-size: inherit;
  2346. text-shadow: inherit;
  2347. box-sizing: border-box;
  2348. line-height: inherit;
  2349. width: 100px;
  2350. height: 40px;
  2351. }
  2352. .row-mon-level button
  2353. {
  2354. box-sizing: border-box;
  2355. font-size: 18px;
  2356. padding: 0 3px;
  2357. vertical-align: top;
  2358. }
  2359. .row-mon-level button::before
  2360. {
  2361. font-size: 0.75em;
  2362. }
  2363. .row-mon-level :where(
  2364. .m-level-btn-min,
  2365. .m-level-btn-max,
  2366. )::after
  2367. {
  2368. content: attr(value);
  2369. }
  2370. .row-mon-level .m-level-btn-110::after
  2371. {
  2372. content: "(+" attr(data-limit-break-incr) "%)";
  2373. color: #00A0D8;
  2374. font-size: 0.75em;
  2375. display: block;
  2376. }
  2377. .m-level-btn-110
  2378. {
  2379. color: blue;
  2380. }
  2381. .m-level-btn-120
  2382. {
  2383. color: green;
  2384. }
  2385. /*
  2386. .m-level-exp::before{
  2387. content: "需要经验:";
  2388. }
  2389. .m-level-btn-max::before{
  2390. content: "最高Lv";
  2391. }
  2392. */
  2393. .row-mon-ability,
  2394. .row-mon-plus,
  2395. .row-mon-level
  2396. {
  2397. display: inline-block;
  2398. box-sizing: border-box;
  2399. vertical-align: top;
  2400. }
  2401. .m-level,
  2402. .m-plus-hp,.m-plus-atk,.m-plus-rcv,
  2403. .m-skill-level
  2404. {
  2405. border: 1px solid grey;
  2406. background: none;
  2407. }
  2408. /*.edit-box .setting-box .row-mon-latent::before{
  2409. content: "▼潜在觉醒";
  2410. }
  2411. */
  2412. .row-mon-latent .latent-ul-div{
  2413. text-align: center;
  2414. }
  2415. .row-mon-latent .latent-ul{
  2416. background: rgba(88,75,56,154);
  2417. border: 2px ridge #94733f;
  2418. border-radius: 7px;
  2419. padding: 3px;
  2420. /*潜在觉醒布局,使用 gird*/
  2421. display: inline-grid;
  2422. grid-template-columns: repeat(6, 32px);
  2423. grid-auto-rows: 32px;
  2424. grid-gap: 12px;
  2425. }
  2426. .row-mon-latent .latent-ul.block-8 {
  2427. grid-template-columns: repeat(8, 32px);
  2428. }
  2429. /*没有block-8的,7格开始不显示*/
  2430. .latent-ul:not(.block-8)>.latent-icon:nth-of-type(n+7) {
  2431. display: none;
  2432. }
  2433. .row-mon-latent .latent-icon[data-latent-hole="1"] {
  2434. grid-column: span 1;
  2435. }
  2436. .row-mon-latent .latent-icon[data-latent-hole="2"] {
  2437. grid-column: span 2;
  2438. }
  2439. .row-mon-latent .latent-icon[data-latent-hole="6"] {
  2440. grid-column: span 6;
  2441. }
  2442. .latent-icon[data-latent-hole="2"]+.latent-icon,
  2443. .latent-icon[data-latent-hole="6"]+.latent-icon,
  2444. .latent-icon[data-latent-hole="6"]+.latent-icon+.latent-icon,
  2445. .latent-icon[data-latent-hole="6"]+.latent-icon+.latent-icon+.latent-icon,
  2446. .latent-icon[data-latent-hole="6"]+.latent-icon+.latent-icon+.latent-icon+.latent-icon,
  2447. .latent-icon[data-latent-hole="6"]+.latent-icon+.latent-icon+.latent-icon+.latent-icon+.latent-icon
  2448. {
  2449. display: none;
  2450. }
  2451. .m-latent-allowable-ul{
  2452. margin-bottom: 5px;
  2453. display: grid;
  2454. grid-template-columns: repeat(auto-fill, 32px);
  2455. grid-auto-rows: 32px;
  2456. grid-gap: 4px;
  2457. }
  2458. .m-latent-allowable-ul .latent-icon{
  2459. grid-column: span 1;
  2460. grid-row: span 1;
  2461. }
  2462. .m-latent-allowable-ul .latent-icon:last-of-type{
  2463. margin-right: unset;
  2464. }
  2465. /*没有打觉醒的空格,没有手指*/
  2466. .m-latent-allowable-ul .latent-icon,
  2467. .latent-ul .latent-icon[data-latent-icon]{
  2468. cursor: pointer;
  2469. }
  2470. /*不允许使用的潜觉,不是手指,半透明,灰度*/
  2471. .awoken-icon.unallowable-awoken,
  2472. .latent-icon.unallowable-latent
  2473. {
  2474. cursor: default;
  2475. opacity: var(--search-icon-unchecked);
  2476. filter: grayscale(100%);
  2477. }
  2478. .edit-box .setting-box .row-mon-skill
  2479. {
  2480. margin-bottom:5px;
  2481. }
  2482. /*.edit-box .setting-box .row-mon-skill,
  2483. .edit-box .setting-box .row-mon-leader-skill
  2484. {
  2485. margin-top:5px;
  2486. }*/
  2487. /*.skill-box .skill-cd::before{
  2488. content: "冷却回合:";
  2489. }
  2490. .skill-box .skill-level-label::before{
  2491. content: "Lv";
  2492. }
  2493. .skill-box .m-skill-lv-1::before{
  2494. content: "Lv";
  2495. }
  2496. .skill-box .m-skill-lv-max::before{
  2497. content: "最高Lv";
  2498. }*/
  2499. .skill-box .m-skill-lv-1::after,
  2500. .skill-box .m-skill-lv-max::after
  2501. {
  2502. content: attr(value);
  2503. }
  2504. .skill-box
  2505. {
  2506. font-family: var(--game-font-family);
  2507. font-size: 16px;
  2508. border: #9C743E solid 2px;
  2509. border-radius: 10px;
  2510. background-color: #B1AAA0;
  2511. overflow: hidden;
  2512. box-shadow: inset black 0 0 5px;
  2513. }
  2514. .row-mon-leader-skill .skill-box{
  2515. background-color: #D0CD81;
  2516. }
  2517. .skill-box .m-skill-level {
  2518. height: 30px;
  2519. width: 3.5em;
  2520. line-height: 25px;
  2521. box-sizing: border-box;
  2522. font-size: inherit;
  2523. font-family: inherit;
  2524. color: inherit;
  2525. text-shadow: inherit;
  2526. }
  2527. .skill-box .m-skill-lv-1,
  2528. .skill-box .m-skill-lv-max{
  2529. padding: 0 3px;
  2530. /*height: 30px;*/
  2531. box-sizing: border-box;
  2532. font-size: 18px;
  2533. }
  2534. .skill-box .skill-title{
  2535. background-color: #39180F;
  2536. box-shadow: inset black 0 5px 5px;
  2537. padding: 0 10px 0 2px;
  2538. text-shadow:black 3px 3px 0;
  2539. }
  2540. .skill-box .skill-title .skill-name
  2541. {
  2542. cursor: pointer;
  2543. }
  2544. .skill-box .skill-title .skill-name:hover::after
  2545. {
  2546. content: "🔍";
  2547. }
  2548. /*主动技能、队长技能、进化技能的图形设置*/
  2549. .skill-title .type-title{
  2550. background-color: #774433;
  2551. border: #BBAA55 solid 2px;
  2552. border-radius: 8px;
  2553. margin-right: 5px;
  2554. padding: 0 5px;
  2555. line-height: 24px;
  2556. display: inline-block;
  2557. position: relative;
  2558. }
  2559. .skill-title .type-title::after{
  2560. -webkit-background-clip: text;
  2561. background-clip: text;
  2562. color: transparent;
  2563. text-shadow: none;
  2564. position: absolute;
  2565. left: 5px;
  2566. }
  2567. .skill-title .type-title::before{
  2568. text-shadow: none;
  2569. -webkit-text-stroke: 3px black;
  2570. }
  2571. /* 主动技能 */
  2572. .row-mon-skill .type-title::after
  2573. {
  2574. background-image: linear-gradient(white 25%, #3377AA 80%);
  2575. }
  2576. .row-mon-skill .skill-title .skill-name,
  2577. .evolved-skill-title .skill-name
  2578. {
  2579. color: #84BAFC;
  2580. }
  2581. /* 队长技能 */
  2582. .row-mon-leader-skill .type-title::after
  2583. {
  2584. background-image: linear-gradient(#FFFF99 25%, #EE7744 80%);
  2585. }
  2586. .row-mon-leader-skill .skill-title .skill-name{
  2587. color: #85FD80;
  2588. }
  2589. /* 进化技能 */
  2590. .row-mon-skill .evolved-skill .type-title::after
  2591. {
  2592. background-image: linear-gradient(#228899 25%, #44DDDD 80%);
  2593. }
  2594. .row-mon-skill .evolved-skill-title
  2595. {
  2596. background-color: rgba(0,0,0,0.5);
  2597. font-family: var(--game-font-family);
  2598. font-weight: normal;
  2599. color: white;
  2600. padding: 0 10px 0 2px;
  2601. text-shadow:black 2px 2px 0;
  2602. }
  2603. .evolved-skill-title .skill-level-label,
  2604. .evolved-skill-title .skill-cd,
  2605. .skill-box .skill-cd-control,
  2606. .skill-box .skill-parse-control
  2607. {
  2608. float: right;
  2609. }
  2610. .skill-box .skill-cd{
  2611. margin-left: 10px;
  2612. }
  2613. .skill-box:not(.show-skill-original) .skill-datail-original
  2614. {
  2615. display: none;
  2616. }
  2617. .skill-datail-original,
  2618. .skill-datail-parsed{
  2619. color: black;
  2620. padding: 0 8px 6px 8px;
  2621. line-height: 25px;
  2622. white-space: break-spaces;
  2623. }
  2624. .skill-datail-parsed{
  2625. font-family: var(--font-family);
  2626. font-weight: bold;
  2627. }
  2628. .skill-datail-original
  2629. {
  2630. border-bottom: #9C743E solid 2px;
  2631. }
  2632. .skill-datail-parsed .detail-search::before{
  2633. content: "🔍";
  2634. }
  2635. .random-active-skill,
  2636. .evolved-active-skill
  2637. {
  2638. padding-left: 1em;
  2639. }
  2640. .random-active-skill>li,
  2641. .evolved-active-skill>li
  2642. {
  2643. list-style: decimal;
  2644. border-bottom: 1px solid white;
  2645. }
  2646. .random-active-skill>li:last-of-type,
  2647. .evolved-active-skill>li:last-of-type
  2648. {
  2649. border-bottom: unset;
  2650. }
  2651. .edit-box .button-box{
  2652. border-top: black solid 3px;
  2653. background-color: rgba(0,0,0,0.5);
  2654. padding: 5px;
  2655. height: 50px;
  2656. }
  2657. .edit-box .button-box .button-null,
  2658. .edit-box .button-box .button-delay,
  2659. .edit-box .button-box .button-cancel,
  2660. .edit-box .button-box .button-done{
  2661. height: 50px;
  2662. box-sizing: border-box;
  2663. font-size: 25px;
  2664. font-weight: bold;
  2665. }
  2666. .edit-box .button-box .button-null,
  2667. .edit-box .button-box .button-delay{
  2668. float: left;
  2669. margin-right:5px;
  2670. }
  2671. .edit-box .button-box .button-cancel,
  2672. .edit-box .button-box .button-done{
  2673. float: right;
  2674. margin-left:5px;
  2675. }
  2676. /*.edit-box .button-box .button-null::after{
  2677. content: "留空格子";
  2678. }
  2679. .edit-box .button-box .button-delay::after{
  2680. content: "应对威吓";
  2681. }
  2682. .edit-box .button-box .button-cancel::after{
  2683. content: "取消修改";
  2684. }
  2685. .edit-box .button-box .button-done::after{
  2686. content: "确认修改";
  2687. }
  2688. .edit-box .button-box .button-done.cant-assist::after{
  2689. content: "不能辅助";
  2690. }*/
  2691. .formation-awoken::before,
  2692. .team-awoken::before
  2693. {
  2694. font-size: 20px;
  2695. margin-top:5px;
  2696. /*content: "觉醒总计:";*/
  2697. }
  2698. .detail-box{
  2699. margin-top:5px;
  2700. }
  2701. /*控制框*/
  2702. .control-box{
  2703. margin-bottom: 10px;
  2704. }
  2705. .control-box>div
  2706. {
  2707. margin-bottom: 2px;
  2708. }
  2709. .control-box .languages-label::before{
  2710. content: "🌐Lanuage:";
  2711. }
  2712. .control-box .lbl-henshin-change,
  2713. .help-link
  2714. {
  2715. display: inline-block;
  2716. }
  2717. .control-box .solo-link::before{
  2718. content: "Jump To Solo Version";
  2719. }
  2720. .control-box .multi-link::before{
  2721. content: "Jump To 2-Player Version";
  2722. }
  2723. /*
  2724. .control-box .btn-show-mon-skill-cd::before{
  2725. content: "显示怪物ID";
  2726. }
  2727. .show-mon-skill-cd .control-box .btn-show-mon-skill-cd::before{
  2728. content: "⬜隐藏已满技能CD";
  2729. }
  2730. .control-box .btn-show-mon-skill-cd::before{
  2731. content: "❄️显示已满技能CD";
  2732. }
  2733. .control-box .lbl-henshen-change::before{
  2734. content: "🕴️变身";
  2735. }
  2736. */
  2737. .control-box .lbl-henshin-change button
  2738. {
  2739. font-size: 1.5em;
  2740. }
  2741. .control-box .btn-henshin::before{
  2742. content: "▷";
  2743. }
  2744. .control-box .btn-henshin[data-step^="-"]::before{
  2745. content: "◁";
  2746. }
  2747. #btn-set-dungeon-enchance {
  2748. margin-left: 1em;
  2749. }
  2750. .control-box .btn-remove-assist{
  2751. vertical-align: bottom;
  2752. }
  2753. .control-box .btn-remove-assist::before{
  2754. content: "";
  2755. background-image: url(images/icon-assist-bind.png);
  2756. background-repeat: no-repeat;
  2757. background-size: contain;
  2758. display: block;
  2759. width: 2em;
  2760. height: 2em;
  2761. }
  2762. #interchange-line{
  2763. pointer-events: none;
  2764. position: absolute;
  2765. left: 0;
  2766. top: 0;
  2767. }
  2768. #interchange-line g line {
  2769. fill: none;
  2770. stroke: blue;
  2771. stroke-linecap: round;
  2772. stroke-width: 5;
  2773. stroke-dasharray: 10;
  2774. }
  2775. /*面板相关*/
  2776. .board {
  2777. display: inline-block;
  2778. vertical-align: middle;
  2779. }
  2780. .board-set>span {
  2781. cursor: pointer;
  2782. margin: 0 3px;
  2783. }
  2784. .board-set>span::before {
  2785. content: attr(data-column-count)"×"attr(data-row-count)"🔁";
  2786. }
  2787. .board.display-none+span {
  2788. display: none;
  2789. }
  2790. /*因为比例不一样,为了保证高度一致,应该以高度来算而不是宽度来算*/
  2791. .skill-datail-parsed .board {
  2792. /* 缩小的基础倍率 */
  2793. --base-scale: 0.75;
  2794. /* 画面缩小的倍率 */
  2795. transform: scale(var(--scale));
  2796. /* 缩小后内缩的范围 */
  2797. margin: calc(-36px * var(--row) * (1 - var(--scale)) / 2) calc(-36px * var(--colum) * (1 - var(--scale)) / 2);
  2798. }
  2799. .skill-datail-parsed .board[data-row-count="5"] {
  2800. --scale: calc(var(--base-scale) * 4 / 5);
  2801. --colum: 6;
  2802. --row: 5;
  2803. }
  2804. .skill-datail-parsed .board[data-row-count="6"] {
  2805. --scale: calc(var(--base-scale) * 4 / 6);
  2806. --colum: 7;
  2807. --row: 6;
  2808. }
  2809. .skill-datail-parsed .board[data-row-count="4"] {
  2810. --scale: calc(var(--base-scale) * 4 / 4);
  2811. --colum: 5;
  2812. --row: 4;
  2813. }
  2814. .board .orb
  2815. {
  2816. transform: unset;
  2817. margin: unset;
  2818. }
  2819. .board .orb.enhanced::after,
  2820. .board .orb.locked::after,
  2821. .board .orb.bound::after
  2822. {
  2823. content: "";
  2824. transform: unset;
  2825. }
  2826. .board .block {
  2827. position: relative;
  2828. }
  2829. .block::before,
  2830. .block::after
  2831. {
  2832. transform: scale(0.75);
  2833. margin: -4px;
  2834. display: block;
  2835. position: absolute;
  2836. left: 0;
  2837. top: 0;
  2838. width: 36px;
  2839. height: 36px;
  2840. background-repeat: no-repeat;
  2841. }
  2842. .block::before {
  2843. z-index: 1;
  2844. }
  2845. .board .orb {
  2846. z-index: 5;
  2847. }
  2848. .block::after {
  2849. z-index: 10;
  2850. transition: opacity 0.3s;
  2851. }
  2852. .block:hover::after {
  2853. opacity: 0.3;
  2854. }
  2855. /*轮盘位,在宝珠后面*/
  2856. .block.roulette::before
  2857. {
  2858. content: "";
  2859. background-image: url(images/icon-orbs.png);
  2860. background-position-x:calc(-36px * 1);
  2861. background-position-y:calc(-36px * 7);
  2862. transform: scale(1);
  2863. }
  2864. /*云,在宝珠前面*/
  2865. .block.clouds::after
  2866. {
  2867. content: "";
  2868. background-image: url(images/icon-cloud-1.png);
  2869. background-size: contain;
  2870. transform: scale(1.2);
  2871. }
  2872. /*封条,在宝珠前面*/
  2873. .block.immobility::after
  2874. {
  2875. content: "";
  2876. background-image: url(images/icon-immobility.png);
  2877. background-size: cover;
  2878. }
  2879. /*需要旋转的,比如封条*/
  2880. .block.rotate::after,
  2881. .block.rotate::before
  2882. {
  2883. transform: rotate(90deg);
  2884. }
  2885. .orb-ul
  2886. {
  2887. display: grid;
  2888. grid-template-columns: repeat(auto-fill, 36px);
  2889. grid-auto-rows: 36px;
  2890. grid-gap: 5px;
  2891. }
  2892. .orb-icon
  2893. {
  2894. width: 20px;
  2895. height: 20px;
  2896. border: 1px black solid;
  2897. border-radius: 50%;
  2898. padding: 0;
  2899. text-align: center;
  2900. display: inline-block;
  2901. }
  2902. table .orb-icon
  2903. {
  2904. display: table-cell;
  2905. }
  2906. .orb-icon::before
  2907. {
  2908. font-size: 13px;
  2909. line-height: 13px;
  2910. display: block;
  2911. max-height: 100%;
  2912. max-width: 100%;
  2913. }
  2914. .orb-icon[data-orb-icon="0"]
  2915. { /*火*/
  2916. background-color: #ef3535;
  2917. }
  2918. .orb-icon[data-orb-icon="0"]::before
  2919. {
  2920. content: "🔥";
  2921. }
  2922. .orb-icon[data-orb-icon="1"]
  2923. { /*水*/
  2924. background-color: #258bed;
  2925. }
  2926. .orb-icon[data-orb-icon="1"]::before
  2927. {
  2928. content: "🌊";
  2929. }
  2930. .orb-icon[data-orb-icon="2"]
  2931. { /*木*/
  2932. background-color: #28c031;
  2933. }
  2934. .orb-icon[data-orb-icon="2"]::before
  2935. {
  2936. content: "🍃";
  2937. }
  2938. .orb-icon[data-orb-icon="3"]
  2939. { /*光*/
  2940. background-color: #eded29;
  2941. }
  2942. .orb-icon[data-orb-icon="3"]::before
  2943. {
  2944. content: "🌞";
  2945. }
  2946. .orb-icon[data-orb-icon="4"]
  2947. { /*暗*/
  2948. background-color: #972ecb;
  2949. }
  2950. .orb-icon[data-orb-icon="4"]::before
  2951. {
  2952. content: "🦇";
  2953. }
  2954. .orb-icon[data-orb-icon="5"]
  2955. { /*心*/
  2956. background-color: #f8baba;
  2957. border-radius: 3px;
  2958. }
  2959. .orb-icon[data-orb-icon="5"]::before
  2960. {
  2961. content: "💗";
  2962. }
  2963. .orb-icon[data-orb-icon="6"]
  2964. { /*废*/
  2965. background-color: #d3d3d3;
  2966. border-radius: 5px;
  2967. }
  2968. .orb-icon[data-orb-icon="6"]::before
  2969. {
  2970. content: "🕷️";
  2971. }
  2972. .orb-icon[data-orb-icon="7"]
  2973. { /*毒*/
  2974. background-color: #e831f3;
  2975. border-radius: 5px;
  2976. }
  2977. .orb-icon[data-orb-icon="7"]::before
  2978. {
  2979. content: "💀";
  2980. }
  2981. .orb-icon[data-orb-icon="8"]
  2982. { /*剧毒*/
  2983. background-color: #670181;
  2984. border-radius: 5px;
  2985. }
  2986. .orb-icon[data-orb-icon="8"]::before
  2987. {
  2988. content: "☠️";
  2989. }
  2990. .orb-icon[data-orb-icon="9"]
  2991. { /*炸弹*/
  2992. background-color: #7c7c7c;
  2993. }
  2994. .orb-icon[data-orb-icon="9"]::before
  2995. {
  2996. content: "💣";
  2997. }
  2998. .team-flags .team-member-icon {
  2999. display: inline-block;
  3000. border-width: 1px;
  3001. border-style: solid;
  3002. border-color: black;
  3003. border-radius: 3px;
  3004. width: 10px;
  3005. height:10px;
  3006. }
  3007. .team-flags .team-member-icon:first-of-type,
  3008. .team-flags .team-member-icon:last-of-type
  3009. {
  3010. border-top-width: 2px;
  3011. border-color: darkred;
  3012. }
  3013. .team-flags .team-member-icon:first-of-type {
  3014. margin-right: 1px;
  3015. }
  3016. .team-flags .team-member-icon:last-of-type {
  3017. margin-left: 1px;
  3018. }
  3019. .team-flags.leader-self .team-member-icon:first-of-type {
  3020. background-color: pink;
  3021. }
  3022. .team-flags.leader-helper .team-member-icon:last-of-type {
  3023. background-color: pink;
  3024. }
  3025. .team-flags.sub-members .team-member-icon:not(:first-of-type):not(:last-of-type) {
  3026. background-color: lightgreen;
  3027. }
  3028. .team-flags.self .team-member-icon:nth-of-type(4) {
  3029. background-color: lightblue !important;
  3030. }
  3031. /*.open-evolutionary-tree::before
  3032. {
  3033. content: "⛓️进化链";
  3034. }*/
  3035. .search-evolution-by-this icon
  3036. {
  3037. transform: scale(50%);
  3038. margin: -8px;
  3039. }
  3040. .mask
  3041. {
  3042. position: absolute;
  3043. width: 100%;
  3044. left: 0;
  3045. top: 0;
  3046. background-color: rgba(0,0,0,0.8);
  3047. z-index: 20;
  3048. backdrop-filter: blur(5px);
  3049. }
  3050. .mask-content
  3051. {
  3052. text-align: center;
  3053. }
  3054. .mask .control-button-box
  3055. {
  3056. color: white;
  3057. }
  3058. .evo-box
  3059. {
  3060. display: inline-block;
  3061. text-align: left;
  3062. }
  3063. .evo-panel,
  3064. .evo-panel-left,
  3065. .evo-panel-right
  3066. {
  3067. display: inline-block;
  3068. }
  3069. .mask-evolutionary-tree .evo-panel-left>.monster-head
  3070. {
  3071. display: inline-block;
  3072. }
  3073. .evo-materials>li
  3074. {
  3075. display: inline-block;
  3076. }
  3077. .mask-evolutionary-tree .evo-materials .monster
  3078. {
  3079. transform: scale(0.60);
  3080. margin: calc(-100px * (1 - 0.60) / 2);
  3081. }
  3082. .mask-evolutionary-tree .evo-panel-left>.monster-head>.monster .id
  3083. {
  3084. bottom: 5px;
  3085. font-size: 20px;
  3086. }
  3087. .mask-evolutionary-tree .evo-materials .monster .id
  3088. {
  3089. bottom: 5px;
  3090. font-size: 22px;
  3091. }
  3092. .evo-panel
  3093. {
  3094. border:black 2px solid;
  3095. border-radius: 7px;
  3096. background-color: #DEAA76;
  3097. }
  3098. .evo-panel-left,
  3099. .evo-panel-right
  3100. {
  3101. border:#D19635 2px solid;
  3102. border-radius: 4px;
  3103. height: 100px;
  3104. vertical-align: top;
  3105. }
  3106. .evo-panel-left
  3107. {
  3108. border-top-right-radius: unset;
  3109. border-bottom-right-radius: unset;
  3110. border-right: none;
  3111. background-image: linear-gradient(#A16928, #5F3D16);
  3112. padding: 0 2px;
  3113. text-align: center;
  3114. }
  3115. .evo-panel-right
  3116. {
  3117. border-top-left-radius: unset;
  3118. border-bottom-left-radius: unset;
  3119. border-left: none;
  3120. background-image: url(images/slate.svg);
  3121. background-size: 200px;
  3122. }
  3123. .evo-panel-right .monster-name
  3124. {
  3125. font-family: var(--game-font-family);
  3126. font-size: 15px;
  3127. line-height: 15px;
  3128. background: #42341F;
  3129. border: 2px inset #F4F18E;
  3130. border-radius: 5px;
  3131. margin: 4px;
  3132. padding: 5px;
  3133. }
  3134. .evo-materials
  3135. {
  3136. margin: 0 4px;
  3137. }
  3138. .evo-materials .monster.null
  3139. {
  3140. opacity: 0.5;
  3141. }
  3142. .evo-materials>li
  3143. {
  3144. margin: 1px;
  3145. }
  3146. .evo-subevo
  3147. {
  3148. padding-left: 35px;
  3149. padding-top: 5px;
  3150. }
  3151. .evo-subevo>li
  3152. {
  3153. position:relative;
  3154. }
  3155. .evo-subevo>li::before
  3156. {
  3157. content:' ';
  3158. position:absolute;
  3159. top:0;
  3160. left:-20px;
  3161. width:15px;
  3162. height:100%;
  3163. border-left:3px solid #E88230;
  3164. }
  3165. .evo-subevo>li::after
  3166. {
  3167. content:' ';
  3168. position:absolute;
  3169. top:43px;
  3170. left:-10px;
  3171. width:0;
  3172. height:0;
  3173. border-top: 8px solid transparent;
  3174. border-left: 10px solid #FFEE71;
  3175. border-bottom: 8px solid transparent;
  3176. }
  3177. .evo-subevo>li:last-child::before
  3178. {
  3179. border-bottom: 3px solid #F3B750;
  3180. border-bottom-left-radius: 8px;
  3181. height:50px;
  3182. }
  3183. .evo-subevo>li:last-child>.evo-box::before
  3184. {
  3185. display: none;
  3186. }
  3187. .evo-subevo>li>.evo-box::before
  3188. {
  3189. content:' ';
  3190. position:absolute;
  3191. top:50px;
  3192. left:-20px;
  3193. width:18px;
  3194. border:none;
  3195. border-top:3px solid #E88230;
  3196. }
  3197. .evo-panel-left .evo-type,
  3198. .evo-panel-left .evo-type::after
  3199. {
  3200. font-family: var(--game-font-family);
  3201. font-size: 15px;
  3202. line-height: 15px;
  3203. }
  3204. .evo-panel-left .evo-type
  3205. {
  3206. display: inline-block;
  3207. position: relative;
  3208. }
  3209. .evo-panel-left .evo-type::after
  3210. {
  3211. -webkit-background-clip: text; /*垃圾Chrome,不支持无前缀的*/
  3212. background-clip: text;
  3213. color: transparent;
  3214. position: absolute;
  3215. left: 0;
  3216. }
  3217. .evo-panel-left .evo-type::before
  3218. {
  3219. /*text-shadow: black 1px 1px 0,black -1px 1px 0,black 1px -1px 0,black -1px -1px 0;*/
  3220. -webkit-text-stroke: 3px black; /*非W3C标准,但都支持*/
  3221. }
  3222. .control-box,
  3223. .control-box button
  3224. {
  3225. font-family: var(--icon-font-family);
  3226. }
  3227. #default-level {
  3228. width: 50px;
  3229. }
  3230. #qr-code-frame
  3231. {
  3232. color: white;
  3233. }
  3234. #qr-code-frame .brown-button::before
  3235. {
  3236. font-family: var(--icon-font-family);
  3237. font-weight: normal;
  3238. width: unset;
  3239. }
  3240. #qr-code-frame a
  3241. {
  3242. color: white;
  3243. }
  3244. #qr-code-frame .string-input
  3245. {
  3246. width: calc(100% - 170px);
  3247. box-sizing: border-box;
  3248. }
  3249. #qr-code-frame .string-output
  3250. {
  3251. width: calc(100% - 20px);
  3252. }
  3253. #qr-code-frame .qr-box
  3254. {
  3255. margin: 5px;
  3256. }
  3257. .save-qr-box
  3258. {
  3259. padding-bottom: 10px;
  3260. }
  3261. .read-qr-box::before,
  3262. .save-qr-box::before
  3263. {
  3264. display: block;
  3265. text-align: left;
  3266. }
  3267. .qr-data-type-ul .qr-data-type-radio
  3268. {
  3269. display: none;
  3270. }
  3271. .qr-data-type-ul>li label
  3272. {
  3273. font-size: 20px;
  3274. padding: 5px;
  3275. }
  3276. .formation-from-string
  3277. {
  3278. font-size: 1.5em;
  3279. display: block;
  3280. }
  3281. .qr-code-image
  3282. {
  3283. background-color: white;
  3284. }
  3285. .qr-data-type-ul .qr-data-type-radio
  3286. {
  3287. display: none;
  3288. }
  3289. .qr-data-type-ul>li label
  3290. {
  3291. font-size: 20px;
  3292. padding: 5px;
  3293. }
  3294. #player-data-frame .player-box-title
  3295. {
  3296. color: white;
  3297. text-align: center;
  3298. font-size: 2em;
  3299. font-family: var(--icon-font-family);
  3300. }
  3301. #player-data-frame .brown-button::before
  3302. {
  3303. font-family: var(--icon-font-family);
  3304. }
  3305. #player-data-frame .upload-data
  3306. {
  3307. float: right;
  3308. margin-right: 5px;
  3309. }
  3310. #player-data-frame .how-to-use
  3311. {
  3312. color: white;
  3313. font-weight: bold;
  3314. font-size: 1.2em;
  3315. margin-left: 15px;
  3316. }
  3317. .player-datas-list>li
  3318. {
  3319. text-align: center;
  3320. }
  3321. .player-card
  3322. {
  3323. display: inline-block;
  3324. background-color: #C39350;
  3325. background-image: url(images/slate.svg);
  3326. background-size: 300px 300px;
  3327. border: 3px solid black;
  3328. border-radius: 15px;
  3329. margin-top: 10px;
  3330. padding: 5px;
  3331. text-align: left;
  3332. font-family: var(--game-font-family);
  3333. border-spacing: 4px 0;
  3334. }
  3335. .player-card .delete::before
  3336. {
  3337. content: "\f2ed";
  3338. min-width: 40px;
  3339. }
  3340. .player-card .delete
  3341. {
  3342. float: right;
  3343. }
  3344. .player-card .set-default
  3345. {
  3346. vertical-align: bottom;
  3347. }
  3348. .player-card .name
  3349. {
  3350. background-color: #E7D5BA;
  3351. border: 1px solid #815C33;
  3352. border-radius: 5px;
  3353. padding: 0 5px;
  3354. font-family: var(--font-family);
  3355. }
  3356. .player-card .name::before
  3357. {
  3358. content: "";
  3359. display: inline-block;
  3360. width: 36px;
  3361. height: 36px;
  3362. background-image: url(images/icon-orbs.png);
  3363. background-position-y: 36px;
  3364. background-repeat: no-repeat;
  3365. vertical-align: bottom;
  3366. transform: scale(0.5);
  3367. margin: -9px;
  3368. margin-right: -3px;
  3369. }
  3370. .player-card .name[data-camp="1"]::before
  3371. {
  3372. background-position-y: 0;
  3373. }
  3374. .player-card .name[data-camp="2"]::before
  3375. {
  3376. background-position-y: -36px;
  3377. }
  3378. .player-card .name[data-camp="3"]::before
  3379. {
  3380. background-position-y: -72px;
  3381. }
  3382. .player-card .lvexp,
  3383. .player-card .stama,
  3384. .player-card .gold,
  3385. .player-card .coin
  3386. {
  3387. background-color: #363331;
  3388. border: #86663C 3px solid;
  3389. padding: 0 5px 0 5px;
  3390. }
  3391. .player-card .lvexp,
  3392. .player-card .gold
  3393. {
  3394. border-radius: 0 0 10px 10px;
  3395. border-bottom: none;
  3396. box-shadow: inset black -2px 3px 3px;
  3397. }
  3398. .player-card .stama,
  3399. .player-card .coin
  3400. {
  3401. border-radius: 10px 10px 0 0;
  3402. border-top: none;
  3403. box-shadow: inset black -2px -3px 3px;
  3404. }
  3405. .player-card .lvexp::before,
  3406. .player-card .stama::before
  3407. {
  3408. display: inline-block;
  3409. width: 45px;
  3410. }
  3411. .player-card .lvexp .level,
  3412. .player-card .stama .sta_number
  3413. {
  3414. width: 80px;
  3415. margin-left: 5px;
  3416. }
  3417. .player-card .lvexp .level::before
  3418. {
  3419. display: inline-block;
  3420. }
  3421. .player-card .gold,
  3422. .player-card .coin
  3423. {
  3424. width: 190px;
  3425. }
  3426. .player-card tr:not(:first-of-type)
  3427. {
  3428. text-shadow: black 1px 1px 1px;
  3429. }
  3430. .player-card .lvexp::before,
  3431. .player-card .lvexp .level
  3432. {
  3433. color: #F2DA50;
  3434. }
  3435. .player-card .stama::before,
  3436. .player-card .stama .sta_number
  3437. {
  3438. color: #29BCE9;
  3439. }
  3440. .player-card .stama .sta_number .sta_cur.stama-beyond
  3441. {
  3442. color: #F66A01;
  3443. }
  3444. .player-card .gold
  3445. {
  3446. color: #85FF8B;
  3447. }
  3448. .player-card .coin
  3449. {
  3450. color: #E1E64E;
  3451. }
  3452. .player-card .lvexp .level,
  3453. .player-card .stama .sta_number
  3454. {
  3455. display: inline-block;
  3456. }
  3457. .player-card .progress-bar
  3458. {
  3459. display: inline-block;
  3460. height: 8px;
  3461. width: 150px;
  3462. background-color: black;
  3463. border-radius: 10px;
  3464. box-shadow: inset white 0 -3px 2px;
  3465. box-sizing: border-box;
  3466. padding: 2px;
  3467. position: relative;
  3468. }
  3469. .player-card .progress-bar .bar,
  3470. .player-card .progress-bar .bar2
  3471. {
  3472. position: absolute;
  3473. height: 100%;
  3474. border-radius: 10px;
  3475. box-shadow: inset black 0 -3px 2px;
  3476. }
  3477. .player-card .lvexp .bar
  3478. {
  3479. background-color: #F2DA50;
  3480. }
  3481. .player-card .stama .bar
  3482. {
  3483. background-color: #29BCE9;
  3484. }
  3485. .player-card .stama .bar2
  3486. {
  3487. background-color: #F66A01;
  3488. }
  3489. .player-card .gold::before,
  3490. .player-card .coin::before
  3491. {
  3492. content: "";
  3493. display: inline-block;
  3494. width: 36px;
  3495. height: 36px;
  3496. background-image: url(images/icon-skills.png);
  3497. background-position-y: calc(-36px * 30);
  3498. background-repeat: no-repeat;
  3499. vertical-align: top;
  3500. transform: scale(0.75);
  3501. margin: calc(-36px * (1 - 0.75) / 2);
  3502. }
  3503. .player-card .gold::before
  3504. {
  3505. background-position-x: -36px;
  3506. }
  3507. .deck-line,
  3508. .deck,
  3509. .deck-radio-list
  3510. {
  3511. text-align: center;
  3512. }
  3513. .deck>li,
  3514. .deck-radio-list>li
  3515. {
  3516. display: inline-block;
  3517. position: relative
  3518. }
  3519. .deck-radio-list input
  3520. {
  3521. font-size: 2em;
  3522. cursor: pointer;
  3523. }
  3524. .deck
  3525. {
  3526. display: inline-block;
  3527. margin-bottom: 10px;
  3528. }
  3529. .deck .monster
  3530. {
  3531. transform: scale(0.75);
  3532. margin: calc(-100px * (1 - 0.75) / 2 );
  3533. }
  3534. .deck .monster.assist
  3535. {
  3536. left: 1px;
  3537. bottom: -16px;
  3538. position: absolute;
  3539. transform: scale(0.4);
  3540. margin: calc(-100px * (1 - 0.4) / 2 );
  3541. }
  3542. .player-datas-list [name="default-player-data"]:checked+.player-card
  3543. {
  3544. background-color: #D55D34;
  3545. }
  3546. /*.base .evo-type::before,
  3547. .base .evo-type::after
  3548. {
  3549. content: "基礎";
  3550. }
  3551. .evolution .evo-type::before,
  3552. .evolution .evo-type::after
  3553. {
  3554. content: "進化";
  3555. }
  3556. .ult-evo .evo-type::before,
  3557. .ult-evo .evo-type::after
  3558. {
  3559. content: "究極進化";
  3560. }
  3561. .reincarnation .evo-type::before,
  3562. .reincarnation .evo-type::after
  3563. {
  3564. content: "轉生進化";
  3565. }
  3566. .pixel-evo .evo-type::before,
  3567. .pixel-evo .evo-type::after
  3568. {
  3569. content: "像素進化";
  3570. font-family: "zpix";
  3571. font-weight: bold;
  3572. }
  3573. .assist-evo .evo-type::before,
  3574. .assist-evo .evo-type::after
  3575. {
  3576. content: "輔助進化";
  3577. }
  3578. .super-reincarnation .evo-type::before,
  3579. .super-reincarnation .evo-type::after
  3580. {
  3581. content: "超轉生進化";
  3582. }
  3583. .super-ult-evo .evo-type::before,
  3584. .super-ult-evo .evo-type::after
  3585. {
  3586. content: "超究極進化";
  3587. }*/
  3588. .pixel-evo .evo-type::before,
  3589. .pixel-evo .evo-type::after
  3590. {
  3591. font-family: "zpix";
  3592. font-weight: bold;
  3593. }
  3594. .base .evo-type::after
  3595. { /*基礎*/
  3596. background-image: linear-gradient(#FFFFBB, #FFFF88);
  3597. }
  3598. .base
  3599. {
  3600. background-color: #DCB476;
  3601. }
  3602. .base .evo-panel-right
  3603. {
  3604. border-color: #FDC686;
  3605. }
  3606. .evolution .evo-type::after
  3607. { /*進化*/
  3608. background-image: linear-gradient(#CCFF33, #88EE22);
  3609. }
  3610. .evolution
  3611. {
  3612. background-color: #C49669;
  3613. }
  3614. .evolution .evo-panel-right
  3615. {
  3616. border-color: #DEAA76;
  3617. }
  3618. .ult-evo .evo-type::after
  3619. { /*究極進化*/
  3620. background-image: linear-gradient(#FFFFAA 20%,#BB8800, #FFFFAA 80%);
  3621. }
  3622. .ult-evo
  3623. {
  3624. background-color: #DDD844;
  3625. }
  3626. .ult-evo .evo-panel-right
  3627. {
  3628. border-color: #FEF84F;
  3629. }
  3630. .reincarnation .evo-type::after
  3631. { /*轉生進化*/
  3632. background-image: linear-gradient(#00CCCC, #EEFFFF 50%,#AA8800 51%,#FFFFAA);
  3633. }
  3634. .reincarnation
  3635. {
  3636. background-color: #579889;
  3637. }
  3638. .reincarnation .evo-panel-right
  3639. {
  3640. border-color: #78B89A;
  3641. }
  3642. .pixel-evo .evo-type::after
  3643. { /*像素進化*/
  3644. background-image: linear-gradient(#FFDD77 33%, #EEBB33 34%, #EEBB33 66%, #BB7700 67%);
  3645. }
  3646. .pixel-evo
  3647. {
  3648. background-color: #B1AB94;
  3649. }
  3650. .pixel-evo .evo-panel-right
  3651. {
  3652. border-color: #CBC4AA;
  3653. }
  3654. .assist-evo .evo-type::after
  3655. { /*輔助進化*/
  3656. background-image: linear-gradient(#AAFF66, #557700);
  3657. }
  3658. .assist-evo
  3659. {
  3660. background-color: #607F38;
  3661. }
  3662. .assist-evo .evo-panel-right
  3663. {
  3664. border-color: #6F9241;
  3665. }
  3666. .super-reincarnation .evo-type::after
  3667. { /*超轉生進化*/
  3668. background-image: linear-gradient(#EE7700 ,#FFFF88 40%, #1155AA);
  3669. }
  3670. .super-reincarnation
  3671. {
  3672. background-color: #C15644;
  3673. }
  3674. .super-reincarnation .evo-panel-right
  3675. {
  3676. border-color: #DE634F;
  3677. }
  3678. .super-ult-evo .evo-type::after
  3679. { /*超究極進化*/
  3680. background-image: linear-gradient(#553300,#FFCC00 45%, #FFFF99 55%, #771100);
  3681. }
  3682. .super-ult-evo
  3683. {
  3684. background-image: linear-gradient(#C1D515,#DD7003);
  3685. }
  3686. .super-ult-evo .evo-panel-right
  3687. {
  3688. border-color: #DBE721;
  3689. }
  3690. .evo-panel.henshin .evo-type::after,
  3691. .evo-panel.henshin-loop .evo-type::after
  3692. { /*變身*/
  3693. background-image: linear-gradient(#00FFFF 30%, #FF00FF);
  3694. }
  3695. .evo-panel.random-henshin .evo-type::after
  3696. { /*随机變身*/
  3697. background-image: linear-gradient(#00FFFF 30%, #FFF 60%, #FF00FF);
  3698. }
  3699. .evo-panel.henshin,
  3700. .evo-panel.random-henshin,
  3701. .evo-panel.henshin-loop
  3702. {
  3703. background-image: linear-gradient(#BFFFCF,#FFFFBF,#FFBFBF);
  3704. }
  3705. .evo-panel.henshin .evo-panel-right,
  3706. .evo-panel.random-henshin .evo-panel-right,
  3707. .evo-panel.henshin-loop .evo-panel-right
  3708. {
  3709. border-color: #7F00FF;
  3710. }
  3711. .dialog-dungeon-enchance
  3712. {
  3713. margin-top: 100px;
  3714. margin-left: calc(50% - 270px);
  3715. }
  3716. .dialog-dungeon-enchance label {
  3717. cursor: pointer;
  3718. }
  3719. .dialog-dungeon-enchance .dialog-content>ul>li
  3720. {
  3721. display: inline-block;
  3722. }
  3723. .dialog-dungeon-enchance .stats-list input
  3724. {
  3725. width: 50px;
  3726. }
  3727. .dialog-dungeon-enchance .dialog-content>*
  3728. {
  3729. margin-top: 5px;
  3730. }
  3731. .dialog-dungeon-enchance .stats-list>li
  3732. {
  3733. margin-right: 5px;
  3734. }
  3735. .dialog-dungeon-enchance .dialog-control>button
  3736. {
  3737. margin-right: 5px;
  3738. }
  3739. .icon-skill,
  3740. .icon-skill::after,
  3741. .icon-skill::before
  3742. {
  3743. font-weight: normal;
  3744. display: inline-block;
  3745. width: 36px;
  3746. height: 36px;
  3747. background-image: url(images/icon-skills.png);
  3748. background-repeat: no-repeat;
  3749. }
  3750. .icon-skill,
  3751. .attrs-div .attr-list .attr,
  3752. .skill-datail-parsed icon:where(.attr,.orb,.type-icon,.awoken-icon)
  3753. {
  3754. vertical-align: bottom;
  3755. transform: scale(0.75);
  3756. margin: -4px;
  3757. position: relative;
  3758. }
  3759. .skill-datail-parsed a.detail-search
  3760. {
  3761. cursor: pointer;
  3762. color: brown;
  3763. }
  3764. .skill-datail-parsed a.detail-search:hover
  3765. {
  3766. background: rgba(150,110,10,0.5);
  3767. border-radius: 5px;
  3768. }
  3769. .skill-datail-parsed .merge-board
  3770. {
  3771. margin-top: 5px;
  3772. }
  3773. .skill-datail-parsed .board {
  3774. border-collapse: collapse;
  3775. background-color: #532;
  3776. background-image: url(images/slate.svg);
  3777. background-size: 100px 100px;
  3778. background-attachment: scroll;
  3779. background-position: 0 0;
  3780. --board-light-color: unset;
  3781. --board-deep-color: rgba(0,0,0,0.4);
  3782. }
  3783. .skill-datail-parsed .board td {
  3784. padding: 0;
  3785. }
  3786. .skill-datail-parsed .board tr:nth-of-type(2n+1)>td:nth-of-type(2n+1),
  3787. .skill-datail-parsed .board tr:nth-of-type(2n)>td:nth-of-type(2n)
  3788. {
  3789. background-color: var(--board-deep-color);
  3790. }
  3791. .card-skill-list .no-skyfall,
  3792. .card-skill-list .fixed-time,
  3793. .card-skill-list .min-match-len,
  3794. .row-mon-leader-skill .card-skill-list .board-size-change
  3795. {
  3796. color: #ff3600;
  3797. }
  3798. .card-skill-list .skill-proviso
  3799. {
  3800. color: blue;
  3801. }
  3802. .card-skill-list .skill-proviso
  3803. {
  3804. border-bottom: 1px brown dashed;
  3805. }
  3806. .icon-skill.status-incr::after,
  3807. .icon-skill.status-decr::after,
  3808. .icon-skill.status-bind::after,
  3809. .icon-skill.hp-incr::after,
  3810. .icon-skill.hp-decr::after,
  3811. .icon-skill.boost-incr::after,
  3812. .icon-skill.boost-decr::after,
  3813. .icon-skill[data-icon-type="ctw"]::before,
  3814. .icon-skill[data-icon-type="ctw"]::after,
  3815. .icon-skill[data-icon-type="add-combo"]::after,
  3816. .icon-skill[data-icon-type="fixed-time"]::after
  3817. {
  3818. content: "";
  3819. position: absolute;
  3820. }
  3821. .icon-skill.status-incr::after,
  3822. .icon-skill.status-decr::after
  3823. {
  3824. transform: scale(0.75);
  3825. margin: -4px;
  3826. right: -5px;
  3827. }
  3828. .icon-skill.status-incr::after
  3829. {
  3830. top: -3px;
  3831. }
  3832. .icon-skill.status-decr::after
  3833. {
  3834. bottom: -3px;
  3835. }
  3836. .icon-skill.status-bind::after,
  3837. .icon-skill[data-icon-type="unbind-matches"]::after,
  3838. .icon-skill[data-icon-type="attr-absorb"]::after,
  3839. .icon-skill[data-icon-type="combo-absorb"]::after,
  3840. .icon-skill[data-icon-type="damage-absorb"]::after,
  3841. .icon-skill[data-icon-type="damage-void"]::after,
  3842. .icon-skill[data-icon-type="bind-skill"]::after
  3843. {
  3844. content: "";
  3845. background-position-y:calc(-36px * 3);
  3846. animation: hidden-visible-animate 0.8s infinite ease-out alternate;
  3847. }
  3848. .icon-skill.status-incr::after
  3849. {
  3850. background-position-y:calc(-36px * 1);
  3851. }
  3852. .icon-skill.status-decr::after
  3853. {
  3854. background-position-y:calc(-36px * 2);
  3855. }
  3856. .icon-skill.hp-incr::after,
  3857. .icon-skill.hp-decr::after
  3858. {
  3859. background-position-x:calc(-36px * 1);
  3860. }
  3861. .icon-skill.hp-incr::after
  3862. {
  3863. background-position-y:calc(-36px * 1);
  3864. }
  3865. .icon-skill.hp-decr::after
  3866. {
  3867. background-position-y:calc(-36px * 2);
  3868. }
  3869. .icon-skill[data-icon-type="delay"]
  3870. {
  3871. background-position-y:calc(-36px * 4);
  3872. }
  3873. .icon-skill[data-icon-type="mass-attack"]
  3874. {
  3875. background-position-y:calc(-36px * 5);
  3876. }
  3877. .icon-skill[data-icon-type="leader-change"]
  3878. {
  3879. background-position-y:calc(-36px * 6);
  3880. }
  3881. .icon-skill[data-icon-type="no-skyfall"]
  3882. {
  3883. background-position-y:calc(-36px * 7);
  3884. }
  3885. .icon-skill[data-icon-type="heal"]
  3886. {
  3887. background-position-y:calc(-36px * 8);
  3888. }
  3889. .icon-skill[data-icon-type="def-break"]
  3890. {
  3891. background-position-y:calc(-36px * 9);
  3892. }
  3893. .icon-skill[data-icon-type="poison"]
  3894. {
  3895. background-position-y:calc(-36px * 10);
  3896. }
  3897. .icon-skill[data-icon-type="status-time"]
  3898. {
  3899. background-position-y:calc(-36px * 11);
  3900. }
  3901. .icon-skill.time-incr[data-icon-type="status-time"]
  3902. {
  3903. background-position-x:calc(-36px * 1);
  3904. }
  3905. .icon-skill[data-icon-type="auto-heal"]
  3906. {
  3907. background-position-y:calc(-36px * 12);
  3908. }
  3909. .icon-skill[data-icon-type="ctw"],
  3910. .icon-skill[data-icon-type="ctw"]::after,
  3911. .icon-skill[data-icon-type="ctw"]::before
  3912. {
  3913. background-position-y:calc(-36px * 13);
  3914. }
  3915. .icon-skill[data-icon-type="ctw"]::before
  3916. {
  3917. animation: rotate-animate 1s infinite linear;
  3918. background-position-x:calc(-36px * 1);
  3919. }
  3920. .icon-skill[data-icon-type="ctw"]::after
  3921. {
  3922. animation: rotate-animate 6s infinite linear;
  3923. background-position-x:calc(-36px * 2);
  3924. }
  3925. .icon-skill[data-icon-type="gravity"]
  3926. {
  3927. animation: gravity-animate 1s infinite;
  3928. transform-origin: bottom center;
  3929. background-position-y:calc(-36px * 14);
  3930. }
  3931. .icon-skill[data-icon-type="resolve"]
  3932. {
  3933. background-position-y:calc(-36px * 15);
  3934. }
  3935. .icon-skill[data-icon-type="unbind-normal"]
  3936. {
  3937. background-position-y:calc(-36px * 16);
  3938. }
  3939. .icon-skill[data-icon-type="unbind-awakenings"]
  3940. {
  3941. background-position-y:calc(-36px * 17);
  3942. }
  3943. .icon-skill[data-icon-type="unbind-matches"]
  3944. {
  3945. background-position-y:calc(-36px * 18);
  3946. }
  3947. .icon-skill[data-icon-type="skill-boost"],
  3948. .icon-skill.boost-incr::after,
  3949. .icon-skill.boost-decr::after,
  3950. .icon-skill[data-icon-type="bind-skill"]
  3951. {
  3952. background-position-y:calc(-36px * 19);
  3953. }
  3954. .icon-skill.boost-incr::after
  3955. {
  3956. background-position-x:calc(-36px * 1);
  3957. }
  3958. .icon-skill.boost-decr::after
  3959. {
  3960. background-position-x:calc(-36px * 2);
  3961. }
  3962. .icon-skill[data-icon-type="add-combo"]
  3963. {
  3964. background-position-y:calc(-36px * 20);
  3965. }
  3966. .icon-skill[data-icon-type="add-combo"]::after
  3967. {
  3968. color: white;
  3969. text-shadow: black 1px 1px 0,black -1px 0px 0,black 0 0 1px;
  3970. font-family: var(--game-font-family);
  3971. font-size: 15px;
  3972. top: 0;
  3973. left: 20px;
  3974. content: attr(data-add-combo);
  3975. }
  3976. .icon-skill[data-icon-type="fixed-time"]
  3977. {
  3978. background-position-y:calc(-36px * 11);
  3979. background-position-x:calc(-36px * 1);
  3980. }
  3981. .icon-skill[data-icon-type="fixed-time"]::after
  3982. {
  3983. background-position-y:calc(-36px * 11);
  3984. background-position-x:calc(-36px * 2);
  3985. transform: scale(0.75);
  3986. left: 10px;
  3987. top: 5px;
  3988. }
  3989. .icon-skill[data-icon-type="board-size-change"]
  3990. {
  3991. background-position-y:calc(-36px * 21);
  3992. }
  3993. .icon-skill[data-icon-type="counter-attack"]
  3994. {
  3995. background-position-y:calc(-36px * 22);
  3996. }
  3997. .icon-skill[data-icon-type="orb-drop-incr"]
  3998. {
  3999. background-position-y:calc(-36px * 23);
  4000. }
  4001. .icon-skill[data-icon-type="attr-absorb"]
  4002. {
  4003. background-position-y:calc(-36px * 24);
  4004. }
  4005. .icon-skill[data-icon-type="combo-absorb"]
  4006. {
  4007. background-position-y:calc(-36px * 25);
  4008. }
  4009. .icon-skill[data-icon-type="damage-absorb"]
  4010. {
  4011. background-position-y:calc(-36px * 26);
  4012. }
  4013. .icon-skill[data-icon-type="damage-void"]
  4014. {
  4015. background-position-y:calc(-36px * 27);
  4016. }
  4017. .icon-skill[data-icon-type="orb-unlocked"]
  4018. {
  4019. background-position-y:calc(-36px * 28);
  4020. }
  4021. .icon-skill[data-icon-type="rate-mul-drop"]
  4022. {
  4023. background-position-y:calc(-36px * 29);
  4024. }
  4025. .icon-skill[data-icon-type="rate-mul-coin"]
  4026. {
  4027. background-position-y:calc(-36px * 30);
  4028. }
  4029. .icon-skill[data-icon-type="rate-mul-exp"]
  4030. {
  4031. background-position-y:calc(-36px * 31);
  4032. }
  4033. .icon-skill[data-icon-type="reduce-damage"]
  4034. {
  4035. background-position-y:calc(-36px * 32);
  4036. }
  4037. .icon-skill[data-icon-type="orb-locked"]
  4038. {
  4039. background-position-y:calc(-36px * 11);
  4040. background-position-x:calc(-36px * 2);
  4041. }
  4042. .icon-skill[data-icon-type="orb-enhanced"]
  4043. {
  4044. background-position-y:calc(-36px * 33);
  4045. }
  4046. .icon-skill[data-icon-type="board-roulette"]
  4047. {
  4048. background-position-y:calc(-36px * 34);
  4049. }
  4050. .icon-skill[data-icon-type="board-clouds"]
  4051. {
  4052. background-position: center;
  4053. background-size: contain;
  4054. background-image: url(images/icon-cloud-1.png);
  4055. }
  4056. .icon-skill[data-icon-type="board-immobility"]
  4057. {
  4058. background-position: center;
  4059. background-size: cover;
  4060. background-image: url(images/icon-immobility.png);
  4061. }
  4062. .icon-skill[data-icon-type="orb-nail"]
  4063. {
  4064. background-position-y:calc(-36px * 35);
  4065. }
  4066. .icon-skill[data-icon-type="evolved-skill-loop"]
  4067. {
  4068. background-image: url(images/icon-evolved-skill-loop.png);
  4069. background-size: contain;
  4070. }
  4071. .icon-skill[data-icon-type="increase-damage-cap"]
  4072. {
  4073. background-position-y:calc(-36px * 36);
  4074. }
  4075. .icon-skill[data-icon-type="increase-damage-cap"]
  4076. {
  4077. background-position-y:calc(-36px * 36);
  4078. }
  4079. :where(:lang(en), :lang(ko)) .icon-skill:where(
  4080. [data-icon-type="mass-attack"],
  4081. [data-icon-type="unbind-awakenings"],
  4082. [data-icon-type="reduce-damage"],
  4083. [data-icon-type="damage-absorb"],
  4084. [data-icon-type="damage-void"],
  4085. ){
  4086. background-position-x: -36px;
  4087. }
  4088. :lang(en) .icon-skill[data-icon-type="resolve"] {
  4089. background-position-x: calc(-36px * 1);
  4090. }
  4091. :lang(ko) .icon-skill[data-icon-type="resolve"] {
  4092. background-position-x: calc(-36px * 2);
  4093. }

智龙迷城队伍图制作工具