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 80 kB

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

智龙迷城队伍图制作工具