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

智龙迷城队伍图制作工具