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

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

智龙迷城队伍图制作工具