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

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

智龙迷城队伍图制作工具