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

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

智龙迷城队伍图制作工具