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

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700
  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. body{
  13. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  14. }
  15. .display-none{
  16. display:none;
  17. }
  18. .disabled{
  19. cursor: not-allowed;
  20. pointer-events: none;
  21. opacity: 0.5;
  22. }
  23. .title{
  24. font-size: 2em;
  25. font-weight: bold;
  26. }
  27. .detail{
  28. min-height: 100px;
  29. font-size: 1.5em;
  30. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  31. }
  32. .title,.detail{
  33. width:100%;
  34. border: none;
  35. background: none;
  36. box-sizing: border-box;
  37. padding: 1px;
  38. }
  39. .title:focus,.detail:focus{
  40. border: black solid 1px;;
  41. background-color: #eee;
  42. padding: 0;
  43. }
  44. ul{
  45. margin: 0;
  46. padding: 0;
  47. list-style: none;
  48. }
  49. /*队伍的整个盒子*/
  50. .formation-box{
  51. width: 648px;
  52. min-width: 648px;
  53. }
  54. /*单个怪物*/
  55. .monster{
  56. font-family: 'FOT-KurokaneStd-EB',"Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  57. width: 100px;
  58. height: 100px;
  59. margin: 0;
  60. display: block;
  61. float: left;
  62. background-repeat: no-repeat;
  63. position: relative;
  64. cursor: pointer;
  65. border-radius: 5px;
  66. }
  67. .null .monster,.delay .monster,
  68. .null .property,.delay .property,
  69. .null .subproperty,.delay .subproperty
  70. {
  71. box-sizing: border-box;
  72. background-image: none;
  73. }
  74. .null .monster{
  75. background-color: rgba(230,230,230,0.5);
  76. border: 3px grey dashed;
  77. }
  78. .edit-box .null .monster{
  79. background-color: #653;
  80. border: none;
  81. box-shadow: inset black 0 0 7px;
  82. }
  83. .delay .monster{
  84. background-color: yellow;
  85. box-shadow: inset orange 0 0 7px;
  86. border: 3px black solid;
  87. }
  88. .delay .monster::before{
  89. display: block;
  90. width: 94px;
  91. height: 94px;
  92. color: black;
  93. font-size: 30px;
  94. line-height: 47px;
  95. text-align: center;
  96. font-weight: bold;
  97. /*content: "应 对\A威 吓";*/
  98. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  99. white-space: pre-wrap;
  100. display: inline-block;
  101. }
  102. /*怪物属性*/
  103. .property,.subproperty{
  104. position:absolute;
  105. left:0;top:0;
  106. width: 100px;
  107. height: 100px;
  108. background-repeat: no-repeat;
  109. background-image: url(images/CARDFRAME2.PNG);
  110. background-position: 100px 100px; /*默认都不显示*/
  111. }
  112. /*怪物-加值*/
  113. .monster .plus{
  114. color: yellow;
  115. font-size: 17px;
  116. line-height: 17px;
  117. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  118. position: absolute;
  119. left:10px;
  120. }
  121. .null .monster>div,.delay .monster>div{
  122. display:none;
  123. }
  124. .monster .plus .hp::before,
  125. .monster .plus .atk::before,
  126. .monster .plus .rcv::before,
  127. .monster .plus ._297::before{
  128. content: "+";
  129. }
  130. .monster .plus ._297{ /*297默认不显示*/
  131. display:none;
  132. }
  133. .monster .plus.has297 .hp,.monster .plus.zero .hp,
  134. .monster .plus.has297 .atk,.monster .plus.zero .atk,
  135. .monster .plus.has297 .rcv,.monster .plus.zero .rcv{ /*当是297时隐藏3维*/
  136. display:none;
  137. }
  138. .monster .plus.has297 ._297{ /*当是297时显示297*/
  139. display:block;
  140. }
  141. /*怪物-觉醒*/
  142. .monster .awoken-count{
  143. color: yellow;
  144. text-shadow: black 0 0 4px;
  145. text-align: center;
  146. background-image: url(images/awoken-count-bg.png);
  147. background-repeat: no-repeat;
  148. width: 34px;
  149. height: 38px;
  150. position: absolute;
  151. top: -4px;
  152. right: 0;
  153. transform: scale(0.80) translateX(4px);
  154. }
  155. .monster .awoken-count,
  156. .monster .awoken-count.full-awoken::before{
  157. font-size: 20px;
  158. line-height: 28px;
  159. }
  160. .monster .awoken-count.full-awoken{
  161. font-size: 0;
  162. }
  163. .monster .awoken-count.full-awoken::before{
  164. content: "★";
  165. }
  166. .monster .awoken-count.allowable-assist.full-awoken::before{
  167. content: none;
  168. }
  169. .monster .awoken-count.allowable-assist{
  170. font-size: 0;
  171. text-shadow: none;
  172. background-position: 0 -38px;
  173. }
  174. /*怪物-超觉醒*/
  175. .monster .super-awoken{
  176. position: absolute;
  177. right:0;
  178. top: 25px;
  179. transform: scale(0.80) translateX(4px);
  180. }
  181. /*怪物-等级*/
  182. .monster .level{
  183. color: white;
  184. height: 17px;
  185. text-shadow: black 0 0 2px, black 2px 2px 0;
  186. position: absolute;
  187. left: 5px;
  188. bottom: 0px;
  189. vertical-align: top;
  190. }
  191. .monster .level,.monster .level.max::before{
  192. font-size: 15px;
  193. line-height: 17px;
  194. }
  195. .monster .level.max{
  196. font-size: 0;
  197. }
  198. .monster .level._110{
  199. color: lightskyblue;
  200. }
  201. /*.monster .level::before{
  202. content: "Lv.";
  203. }.monster .level.max::before{
  204. content: "Lv.最大";
  205. }*/
  206. .monster .id{
  207. display: block;
  208. color: white;
  209. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif;
  210. font-size: 15px;
  211. line-height: 17px;
  212. height: 17px;
  213. text-shadow: black 1px 1px 0,black 1px -1px 0,black -1px 1px 0,black -1px -1px 0;
  214. position: absolute;
  215. left: 5px;
  216. bottom: 15px;
  217. }
  218. .not-show-mon-id .monster .id{
  219. display: none;
  220. }
  221. /*.monster .id::before{
  222. content: "No.";
  223. }*/
  224. /*辅助和队伍的每一只框架*/
  225. .member, .acquisitus-awoken-icon{
  226. display: block;
  227. float: left;
  228. position: relative;
  229. width: 108px;
  230. }
  231. .formation-box .monster{
  232. margin: 4px; /*留给队长边框的*/
  233. }
  234. .formation-assist, .formation-team,.formation-badge{
  235. display: inline-block;
  236. }
  237. /*队伍的背景色*/
  238. .formation-A-box .formation-team,.formation-A-box .formation-latents{
  239. background-color:pink;
  240. }
  241. .formation-B-box .formation-team,.formation-B-box .formation-latents{
  242. background-color:lightblue;
  243. }
  244. .formation-A-bigbox, .formation-B-bigbox{
  245. position: relative;
  246. font-size:0;
  247. }
  248. .formation-B-bigbox{
  249. margin-top:15px;
  250. }
  251. /*队伍A、B的文字*/
  252. .formation-A-bigbox::after, .formation-B-bigbox::before{
  253. font-size: 30px;
  254. font-weight: bold;
  255. text-align: center;
  256. line-height: 50px;
  257. white-space: pre-wrap;
  258. display: inline-block;
  259. width: 108px;
  260. height: 108px;
  261. }
  262. .formation-A-bigbox::after{
  263. color:red;
  264. background-color:pink;
  265. /*content: "队伍\A A";*/
  266. }
  267. .formation-B-bigbox::before{
  268. color:blue;
  269. background-color:lightblue;
  270. /*content: "队伍\A B";*/
  271. vertical-align:top;
  272. }
  273. .formation-A-box, .formation-B-box{
  274. display: inline-block;
  275. vertical-align:bottom;
  276. }
  277. .formation-A-box .formation-assist .member::after, .formation-B-box .formation-assist .member::before{
  278. width: 108px;
  279. text-align: center;
  280. font-size: 18px;
  281. font-weight: bold;
  282. display: inline-block;
  283. position: relative;
  284. }
  285. .formation-A-box .formation-assist .member::after{
  286. color:red;
  287. /*content: "▼辅助";*/
  288. }
  289. .formation-B-box .formation-assist .member::before{
  290. color:blue;
  291. /*content: "▲辅助";*/
  292. }
  293. .formation-box .team-info{
  294. font-size: 15px;
  295. }
  296. .team-info .tIf-total-hp,.team-info .tIf-total-rcv{
  297. display:inline-block;
  298. }
  299. /*队伍的潜觉*/
  300. .formation-latents .latents{
  301. width: 108px;
  302. /*float:left;*/
  303. margin-bottom: -20px;
  304. display: inline-block;
  305. }
  306. .formation-latents .latent-ul{
  307. font-size: 0;
  308. width: 152px;
  309. transform: translate(-22px,-8px) scale(0.68);
  310. }
  311. /*队长的边框*/
  312. .formation-A-box .formation-team .team-leader .monster, .formation-B-box .formation-team .team-leader .monster{
  313. border-radius: 10px;
  314. border-width:4px;
  315. border-style:solid;
  316. box-sizing: initial;
  317. margin: 0;
  318. }
  319. .formation-A-box .formation-team .team-leader .monster{
  320. border-color: red;
  321. }
  322. .formation-B-box .formation-team .team-leader .monster{
  323. border-color: blue;
  324. }
  325. /*三维计算值*/
  326. .formation-ability .abilitys{
  327. padding-left: 5px;
  328. box-sizing: border-box;
  329. font-size: 15px;
  330. width: 108px;
  331. display: inline-block;
  332. }
  333. .abilitys .hp::before,.abilitys .atk::before,.abilitys .rcv::before{
  334. width: 45px;
  335. display: inline-block;
  336. }
  337. /*.abilitys .hp::before{
  338. content: "HP:";
  339. }
  340. .abilitys .atk::before{
  341. content: "攻击:";
  342. }
  343. .abilitys .rcv::before{
  344. content: "回复:";
  345. }*/
  346. /*编辑窗口*/
  347. .blur-bg{
  348. filter:blur(5px);
  349. pointer-events: none;
  350. }
  351. .edit-box{
  352. background-color: rgba(82, 53, 30, 0.8);
  353. color: white;
  354. position: absolute;
  355. left:0;
  356. top:0;
  357. width:100%;
  358. box-sizing: border-box;
  359. min-width:664px;
  360. }
  361. .edit-box-title{
  362. text-align: center;
  363. font-size: 2em;
  364. font-weight: bold;
  365. }
  366. /*.edit-box .edit-box-title::before{
  367. content: "修改队员";
  368. }
  369. .edit-box .edit-box-title.edit-box-title-assist::before{
  370. content: "修改辅助";
  371. }*/
  372. .edit-box .monsterinfo-box{
  373. font-family: 'FOT-KurokaneStd-EB';
  374. color: white;
  375. text-shadow: black 2px 2px 0;
  376. height: 100px;
  377. margin: 5px 0;
  378. background-image: linear-gradient(#798421,#394914);
  379. border-top: #B1BB39 solid 4px;
  380. border-bottom: #72941D ridge 7px;
  381. box-shadow: black 0 3px 3px;
  382. padding: 5px 10px;
  383. }
  384. /*.edit-box .search-box::before{
  385. content: "▼怪物ID";
  386. }*/
  387. .edit-box .search-box .m-id{
  388. box-sizing: border-box;
  389. font-size: 25px;
  390. height: 40px;
  391. width: 100%;
  392. }
  393. .edit-box .search-box .search-button{
  394. width: 100%;
  395. height: 40px;
  396. font-size: 25px;
  397. }
  398. .edit-box .search-box,.edit-box .setting-box{
  399. padding: 0 10px;
  400. }
  401. .edit-box .setting-row{
  402. width: 100%;
  403. }
  404. .monsterinfo-box .monster{
  405. margin-right:5px;
  406. }
  407. .monsterinfo-box .monster-id{
  408. display:inline-block;
  409. width:150px;
  410. }
  411. /*.monsterinfo-box .monster-id::before{
  412. content: "No.";
  413. }*/
  414. .monsterinfo-box .monster-rare{
  415. display:inline-block;
  416. }
  417. .monsterinfo-box .monster-rare::before{
  418. color:gold;
  419. text-shadow: black 0 0 3px,black 0 2px 3px;
  420. }
  421. .rare-1::before{content: "★";}
  422. .rare-2::before{content: "★★";}
  423. .rare-3::before{content: "★★★";}
  424. .rare-4::before{content: "★★★★";}
  425. .rare-5::before{content: "★★★★★";}
  426. .rare-6::before{content: "★★★★★★";}
  427. .rare-7::before{content: "★★★★★★★";}
  428. .rare-8::before{content: "★★★★★★★★";}
  429. .rare-9::before{content: "★★★★★★★★★";}
  430. .rare-10::before{content: "★★★★★★★★★★";}
  431. .monsterinfo-box .monster-id,.monsterinfo-box .monster-rare,.monsterinfo-box .monster-name{
  432. vertical-align: top;
  433. margin:0;
  434. height: 34px;
  435. font-size: 22px;
  436. line-height: 22px;
  437. }
  438. .monsterinfo-box .monster-type{
  439. font-size: 0;
  440. }
  441. .monsterinfo-box .monster-type .type-name{
  442. display:inline-block;
  443. margin-right: 10px;
  444. }
  445. .monsterinfo-box .monster-type .type-icon{
  446. margin-right:3px;
  447. }
  448. .monsterinfo-box .monster-type .type-name::after{
  449. vertical-align: middle;
  450. font-size: 22px;
  451. line-height: 22px;
  452. }
  453. .edit-box .setting-box .row-mon-level::before{
  454. /*content: "▼怪物等级";*/
  455. display: block;
  456. }
  457. .edit-box .setting-box .m-level{
  458. font-size: 25px;
  459. height: 40px;
  460. width: calc(100% - 150px);
  461. box-sizing: border-box;
  462. }
  463. .m-level-btn-max{
  464. height: 40px;
  465. width: 145px;
  466. box-sizing: border-box;
  467. font-size: 25px;
  468. }
  469. /*.m-level-btn-max::before{
  470. content: "最高Lv";
  471. }
  472. .edit-box .setting-box .row-mon-awoken::before{
  473. content: "▼怪物觉醒";
  474. }*/
  475. .row-mon-awoken .awoken-ul, .row-mon-super-awoken .awoken-ul{
  476. font-size: 0;
  477. height: 32px;
  478. }
  479. .awoken-ul li{
  480. margin-right: 5px;
  481. }
  482. .awoken-ul li:last-of-type{
  483. margin-right: 0;
  484. }
  485. .edit-box .awoken-ul .awoken-icon{
  486. cursor: pointer;
  487. }
  488. .awoken-ul .awoken-icon.unselected-awoken{
  489. opacity: 0.3;
  490. }
  491. .row-mon-awoken .awoken-icon.awoken-count,
  492. .row-mon-awoken .awoken-icon.awoken-count.full-awoken::before
  493. {
  494. color: yellow;
  495. font-size: 22px;
  496. line-height: 28px;
  497. font-weight: bold;
  498. text-shadow: black 0 0 4px;
  499. text-align: center;
  500. }
  501. .row-mon-awoken .awoken-icon.awoken-count.full-awoken{
  502. font-size: 0;
  503. }
  504. .row-mon-awoken .awoken-icon.awoken-count.full-awoken::before{
  505. content: "★";
  506. }
  507. .row-mon-awoken .m-super-awoken-ul{
  508. margin-top: 5px;
  509. }
  510. /*.edit-box .setting-box .row-mon-super-awoken::before{
  511. content: "▼超觉醒";
  512. }*/
  513. .edit-box .setting-box .row-mon-plus::before{
  514. /*content: "▼怪物加值";*/
  515. display: block;
  516. }
  517. .row-mon-plus .ability-value::before{content: "(";}
  518. .row-mon-plus .ability-value::after{content: ")";}
  519. .setting-box .m-plus-hp,.setting-box .m-plus-atk,.setting-box .m-plus-rcv{
  520. font-size: 25px;
  521. height: 40px;
  522. width: calc(100% - 288px);
  523. box-sizing: border-box;
  524. }
  525. .m-plus-hp-li::before,.m-plus-atk-li::before,.m-plus-rcv-li::before,.row-mon-plus .ability-value{
  526. font-size: 25px;
  527. width: 55px;
  528. display: inline-block;
  529. }
  530. .row-mon-plus .ability-value{
  531. width: 90px;
  532. }
  533. /*.m-plus-hp-li::before{content: "HP";}
  534. .m-plus-atk-li::before{content: "攻击";}
  535. .m-plus-rcv-li::before{content: "回复";}*/
  536. .m-plus-btn{
  537. height: 40px;
  538. width: 55px;
  539. box-sizing: border-box;
  540. font-size: 25px;
  541. }
  542. .m-plus-btn::before,.m-plus-btn-297::before{
  543. content: "+";
  544. }
  545. .m-plus-btn-297{
  546. float:right;
  547. width: 85px;
  548. height: 120px;
  549. box-sizing: border-box;
  550. font-size: 25px;
  551. }
  552. /*.edit-box .setting-box .row-mon-latent::before{
  553. content: "▼潜在觉醒";
  554. }*/
  555. .m-latent-ul{
  556. text-align: center;
  557. font-size: 0;
  558. }
  559. .m-latent-ul .latent-icon{
  560. margin-left: 12px;
  561. }
  562. .m-latent-ul .latent-icon:first-of-type{
  563. margin-left: 0;
  564. }
  565. .m-latent-allowable-ul{
  566. margin-top: 5px;
  567. }
  568. .m-latent-allowable-ul .latent-icon,
  569. .m-latent-ul .latent-icon-1,
  570. .m-latent-ul .latent-icon-2,
  571. .m-latent-ul .latent-icon-3,
  572. .m-latent-ul .latent-icon-4,
  573. .m-latent-ul .latent-icon-5,
  574. .m-latent-ul .latent-icon-6,
  575. .m-latent-ul .latent-icon-7,
  576. .m-latent-ul .latent-icon-8,
  577. .m-latent-ul .latent-icon-9,
  578. .m-latent-ul .latent-icon-10,
  579. .m-latent-ul .latent-icon-11,
  580. .m-latent-ul .latent-icon-12,
  581. .m-latent-ul .latent-icon-13,
  582. .m-latent-ul .latent-icon-14,
  583. .m-latent-ul .latent-icon-15,
  584. .m-latent-ul .latent-icon-16,
  585. .m-latent-ul .latent-icon-17,
  586. .m-latent-ul .latent-icon-18,
  587. .m-latent-ul .latent-icon-19,
  588. .m-latent-ul .latent-icon-20,
  589. .m-latent-ul .latent-icon-21,
  590. .m-latent-ul .latent-icon-22,
  591. .m-latent-ul .latent-icon-23,
  592. .m-latent-ul .latent-icon-24{
  593. cursor: pointer;
  594. }
  595. .m-latent-allowable-ul .latent-icon.unselected-latent{
  596. cursor: default;
  597. opacity: 0.3;
  598. }
  599. .edit-box .button-box{
  600. border-top: black solid 3px;
  601. background-color: rgba(0,0,0,0.5);
  602. margin-top: 10px;
  603. padding: 5px;
  604. height: 50px;
  605. }
  606. .edit-box .button-box .button-null,
  607. .edit-box .button-box .button-delay,
  608. .edit-box .button-box .button-cancel,
  609. .edit-box .button-box .button-done{
  610. height: 50px;
  611. box-sizing: border-box;
  612. font-size: 25px;
  613. font-weight: bold;
  614. }
  615. .edit-box .button-box .button-null,
  616. .edit-box .button-box .button-delay{
  617. float: left;
  618. margin-right:5px;
  619. }
  620. .edit-box .button-box .button-cancel,
  621. .edit-box .button-box .button-done{
  622. float: right;
  623. margin-left:5px;
  624. }
  625. /*.edit-box .button-box .button-null::after{
  626. content: "留空格子";
  627. }
  628. .edit-box .button-box .button-delay::after{
  629. content: "应对威吓";
  630. }
  631. .edit-box .button-box .button-cancel::after{
  632. content: "取消修改";
  633. }
  634. .edit-box .button-box .button-done::after{
  635. content: "确认修改";
  636. }
  637. .edit-box .button-box .button-done.cant-assist::after{
  638. content: "不能辅助";
  639. }*/
  640. .awoken-total-box::before{
  641. font-size: 20px;
  642. margin-top:5px;
  643. /*content: "觉醒总计:";*/
  644. }
  645. .detail-box{
  646. margin-top:5px;
  647. }
  648. .awoken-total-box .awoken-ul .awoken-count{
  649. font-size: 16px;
  650. line-height: 32px;
  651. font-family: 'FOT-KurokaneStd-EB';
  652. float: left;
  653. margin-right: 3px;
  654. }
  655. .awoken-total-box .awoken-ul .count{
  656. height: 32px;
  657. width: 37px;
  658. display: inline-block;
  659. vertical-align: middle;
  660. }
  661. .awoken-total-box .awoken-ul .count::before{
  662. content: "×";
  663. }
  664. /*控制框*/
  665. .control-box{
  666. margin-bottom: 10px;
  667. }
  668. .control-box .languages-label::before{
  669. content: "Lanuage:";
  670. }
  671. .control-box .solo-link,.control-box .multi-link{
  672. margin-left: 10px;
  673. }
  674. .control-box .solo-link::before{
  675. content: "Jump To Solo Version";
  676. }
  677. .control-box .multi-link::before{
  678. content: "Jump To 2-Player Version";
  679. }
  680. .control-box .btn-show-mon-id{
  681. margin-left: 5px;
  682. }
  683. /*.control-box .btn-show-mon-id::before{
  684. content: "隐藏怪物ID";
  685. }
  686. .not-show-mon-id .control-box .btn-show-mon-id::before{
  687. content: "显示怪物ID";
  688. }*/

智龙迷城队伍图制作工具