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

7 years ago
6 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
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
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
6 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234
  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. @keyframes loading-animate{
  13. from {
  14. transform: rotate(0deg);
  15. }
  16. to {
  17. transform: rotate(3600deg);
  18. }
  19. }
  20. body{
  21. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  22. --head-block-width: 108px;
  23. --head-block-height: 108px;
  24. --search-icon-unchecked: 0.4;
  25. --team-1-bgcolor : pink;
  26. --team-2-bgcolor : lightblue;
  27. --team-3-bgcolor : lightgreen;
  28. --team-1-color : red;
  29. --team-2-color : blue;
  30. --team-3-color : green;
  31. }
  32. .display-none{
  33. display:none !important;
  34. }
  35. .disabled{
  36. cursor: not-allowed;
  37. pointer-events: none;
  38. opacity: 0.5;
  39. }
  40. .help-link::before{
  41. content: "Help & Tips";
  42. }
  43. .title{
  44. font-size: 2em;
  45. font-weight: bold;
  46. }
  47. .detail{
  48. min-height: 100px;
  49. font-size: 1.5em;
  50. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  51. }
  52. .title,.detail{
  53. width:100%;
  54. border: none;
  55. background: none;
  56. box-sizing: border-box;
  57. padding: 1px;
  58. }
  59. .title:focus,.detail:focus{
  60. border: black solid 1px;;
  61. background-color: #eee;
  62. padding: 0;
  63. }
  64. .status{
  65. line-height: 16px;
  66. }
  67. /*.status.loading-mon-info .text::before{
  68. content: "正在加载怪物数据";
  69. }*/
  70. .status.loading-mon-info .icon,
  71. .status.loading-skill-info .icon{
  72. display: inline-block;
  73. width: 16px;
  74. height: 16px;
  75. border: 4px SteelBlue dotted;
  76. border-radius: 50%;
  77. animation: loading-animate 50s infinite linear;
  78. vertical-align: middle;
  79. }
  80. ul{
  81. margin: 0;
  82. padding: 0;
  83. list-style: none;
  84. }
  85. /*队伍的整个盒子*/
  86. .formation-box{
  87. width: 648px;
  88. min-width: 648px;
  89. }
  90. /*单个怪物*/
  91. .monster{
  92. font-family: 'FOT-KurokaneStd-EB',"Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  93. width: 100px;
  94. height: 100px;
  95. margin: 0;
  96. display: block;
  97. background-repeat: no-repeat;
  98. position: relative;
  99. cursor: pointer;
  100. border-radius: 5px;
  101. }
  102. .null .monster,.delay .monster,
  103. .null .property,.delay .property,
  104. .null .subproperty,.delay .subproperty
  105. {
  106. box-sizing: border-box;
  107. background-image: none !important;
  108. }
  109. .null .monster{
  110. background-color: rgba(230,230,230,0.5);
  111. border: 3px grey dashed;
  112. }
  113. .edit-box .null .monster{
  114. background-color: #653;
  115. border: none;
  116. box-shadow: inset black 0 0 7px;
  117. }
  118. .member{
  119. vertical-align: top;
  120. }
  121. .delay .monster{
  122. background-color: yellow;
  123. box-shadow: inset orange 0 0 7px;
  124. border: 3px black solid;
  125. }
  126. .delay .monster::before{
  127. width: 94px;
  128. height: 94px;
  129. color: black;
  130. font-size: 30px;
  131. line-height: 47px;
  132. text-align: center;
  133. font-weight: bold;
  134. /*content: "应 对\A威 吓";*/
  135. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  136. white-space: pre-wrap;
  137. display: inline-block;
  138. }
  139. /*怪物属性*/
  140. .property,.subproperty{
  141. position:absolute;
  142. left:0;top:0;
  143. width: 100px;
  144. height: 100px;
  145. background-repeat: no-repeat;
  146. background-image: url(images/CARDFRAME2.PNG);
  147. background-position: 100px 100px; /*默认都不显示*/
  148. }
  149. /*怪物-加值*/
  150. .monster .plus{
  151. color: yellow;
  152. font-size: 17px;
  153. line-height: 17px;
  154. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  155. position: absolute;
  156. left:10px;
  157. }
  158. .null .monster>div,.delay .monster>div{
  159. display:none !important;
  160. }
  161. .monster .plus .hp::before,
  162. .monster .plus .atk::before,
  163. .monster .plus .rcv::before,
  164. .monster .plus ._297::before{
  165. content: "+";
  166. }
  167. .monster .plus ._297{ /*297默认不显示*/
  168. display:none;
  169. }
  170. .monster .plus.has297 .hp,.monster .plus.zero .hp,
  171. .monster .plus.has297 .atk,.monster .plus.zero .atk,
  172. .monster .plus.has297 .rcv,.monster .plus.zero .rcv{ /*当是297时隐藏3维*/
  173. display:none;
  174. }
  175. .monster .plus.has297 ._297{ /*当是297时显示297*/
  176. display:block;
  177. }
  178. /*怪物-觉醒*/
  179. .monster .awoken-count{
  180. color: yellow;
  181. text-shadow: black 0 0 4px;
  182. text-align: center;
  183. background-image: url(images/awoken-count-bg.png);
  184. background-repeat: no-repeat;
  185. width: 34px;
  186. height: 38px;
  187. position: absolute;
  188. top: -4px;
  189. right: 0;
  190. transform: scale(0.75) translateX(4px);
  191. }
  192. .monster .awoken-count,
  193. .monster .awoken-count.full-awoken::before{
  194. font-size: 20px;
  195. line-height: 28px;
  196. }
  197. .monster .awoken-count.full-awoken{
  198. font-size: 0;
  199. }
  200. .monster .awoken-count.full-awoken::before{
  201. content: "★";
  202. }
  203. .monster .awoken-count.allowable-assist.full-awoken::before{
  204. content: none;
  205. }
  206. .monster .awoken-count.allowable-assist{
  207. font-size: 0;
  208. text-shadow: none;
  209. background-position: 0 -38px;
  210. }
  211. /*怪物-超觉醒*/
  212. .monster .super-awoken{
  213. position: absolute;
  214. right:0;
  215. top: 25px;
  216. transform: scale(0.75) translateX(4px);
  217. }
  218. /*怪物-等级*/
  219. .monster .level{
  220. color: white;
  221. height: 17px;
  222. text-shadow: black 0 0 2px, black 2px 2px 0;
  223. position: absolute;
  224. left: 5px;
  225. bottom: 0;
  226. vertical-align: top;
  227. }
  228. .monster .level,.monster .level.max::before{
  229. font-size: 15px;
  230. line-height: 17px;
  231. }
  232. .monster .level.max{
  233. font-size: 0;
  234. }
  235. .monster .level._110{
  236. color: lightskyblue;
  237. }
  238. /*.monster .level::before{
  239. content: "Lv.";
  240. }.monster .level.max::before{
  241. content: "Lv.最大";
  242. }*/
  243. .monster .id{
  244. display: block;
  245. color: white;
  246. font-family: "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  247. font-size: 15px;
  248. line-height: 17px;
  249. height: 17px;
  250. text-shadow: black 0px 0px 2px,black -1px -1px 1px,black 1px 1px 1px;
  251. position: absolute;
  252. left: 5px;
  253. bottom: 15px;
  254. }
  255. .not-show-mon-id .monster .id{
  256. display: none;
  257. }
  258. .monster .id::before{
  259. font-size: 12px;
  260. }
  261. /*.monster .id::before{
  262. content: "No.";
  263. }*/
  264. .monster .skill::before{
  265. content:"CD";
  266. font-size: 10px;
  267. }
  268. .monster .skill{
  269. font-size: 13px;
  270. line-height: 13px;
  271. color:white;
  272. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  273. position: absolute;
  274. right:0;
  275. bottom:0;
  276. }
  277. .monster .skill.max-skill{
  278. display: none;
  279. }
  280. .show-mon-skill-cd .monster .skill.max-skill{
  281. display: block;
  282. }
  283. /*辅助和队伍的每一只框架*/
  284. .member, .acquisitus-awoken-icon{
  285. display: inline-block;
  286. position: relative;
  287. width: var(--head-block-width);
  288. }
  289. .formation-box .monster{
  290. margin: 4px; /*留给队长边框的*/
  291. }
  292. .team-assist, .team-members,.team-badge{
  293. display: inline-block;
  294. }
  295. /* 徽章,平时都隐藏 */
  296. .badge-bg{
  297. display: none;
  298. cursor: pointer;
  299. }
  300. .badge-radio{
  301. display: none;
  302. }
  303. /* 显示所有徽章时则打开 */
  304. .show-all-badges .badge-bg{
  305. display: inline-block;
  306. }
  307. /* 选中的徽章平时也打开 */
  308. .team-badge .badge-radio:checked+label{
  309. display: inline-block;
  310. }
  311. /*队伍的背景色*/
  312. .team-1 .team-members,
  313. .team-1 .team-latents,
  314. .team-1 .team-box-name::before,
  315. .team-1 .team-box-name::after
  316. {
  317. background-color: var(--team-1-bgcolor);
  318. }
  319. .team-2 .team-members,
  320. .team-2 .team-latents,
  321. .team-2 .team-box-name::before,
  322. .team-2 .team-box-name::after
  323. {
  324. background-color: var(--team-2-bgcolor);
  325. }
  326. .team-3 .team-members,
  327. .team-3 .team-latents,
  328. .team-3 .team-box-name::before,
  329. .team-3 .team-box-name::after
  330. {
  331. background-color: var(--team-3-bgcolor);
  332. }
  333. .team-bigbox{
  334. position: relative;
  335. font-size:0;
  336. margin-bottom:15px;
  337. }
  338. .team-bigbox:last-of-type{
  339. margin-bottom:0;
  340. }
  341. /*队伍A、B的文字*/
  342. .team-box-name::after,
  343. .team-box-name::before
  344. {
  345. font-size: 30px;
  346. font-weight: bold;
  347. text-align: center;
  348. line-height: 54px;
  349. white-space: pre-wrap;
  350. display: none;
  351. width: var(--head-block-width);
  352. height: var(--head-block-height);
  353. }
  354. .show-team-name-left .team-box-name::before{
  355. display: inline-block;
  356. }
  357. .show-team-name-right .team-box-name::after{
  358. display: inline-block;
  359. }
  360. .reverse-member-assist .team-box-name::after,
  361. .reverse-member-assist .team-box-name::before
  362. {
  363. vertical-align:top;
  364. }
  365. .team-1 .team-box-name::after,
  366. .team-1 .team-box-name::before,
  367. .team-1 .team-assist .member::after,
  368. .team-1 .team-assist .member::before
  369. {
  370. color: var(--team-1-color);
  371. }
  372. .team-2 .team-box-name::after,
  373. .team-2 .team-box-name::before,
  374. .team-2 .team-assist .member::after,
  375. .team-2 .team-assist .member::before
  376. {
  377. color: var(--team-2-color);
  378. /*vertical-align:top;*/
  379. }
  380. .team-3 .team-box-name::after,
  381. .team-3 .team-box-name::before,
  382. .team-3 .team-assist .member::after,
  383. .team-3 .team-assist .member::before
  384. {
  385. color: var(--team-3-color);
  386. }
  387. .team-box{
  388. display: inline-block;
  389. vertical-align:bottom;
  390. }
  391. .team-box .team-assist .member::after,
  392. .team-box .team-assist .member::before
  393. {
  394. width: var(--head-block-width);
  395. text-align: center;
  396. font-size: 18px;
  397. font-weight: bold;
  398. position: relative;
  399. }
  400. /*平时的显示*/
  401. .team-box .team-assist .member::after
  402. {
  403. display: inline-block;
  404. }
  405. .team-box .team-assist .member::before
  406. {
  407. display: none;
  408. }
  409. /*反向时的显示*/
  410. .reverse-member-assist .team-assist .member::after
  411. {
  412. display: none;
  413. }
  414. .reverse-member-assist .team-assist .member::before
  415. {
  416. display: inline-block;
  417. }
  418. .formation-box .formation-total-info,
  419. .formation-box .team-total-info
  420. {
  421. font-size: 15px;
  422. vertical-align: bottom;
  423. }
  424. .formation-box .team-badge .team-total-info
  425. {
  426. display:inline-block;
  427. }
  428. /*
  429. .team-info .tIf-total-hp,.team-info .tIf-total-rcv{
  430. display:inline-block;
  431. }
  432. */
  433. /*队伍的潜觉*/
  434. .team-latents .latents{
  435. width: var(--head-block-width);
  436. /*float:left;*/
  437. margin-bottom: -20px;
  438. display: inline-block;
  439. }
  440. .team-latents .latent-ul{
  441. font-size: 0;
  442. width: 152px;
  443. transform: translate(-22px,-8px) scale(0.63);
  444. }
  445. .team-latents .latent-icon{
  446. margin-left: 3px;
  447. margin-right: 3px;
  448. }
  449. .team-latents .latent-icon-12,
  450. .team-latents .latent-icon-13,
  451. .team-latents .latent-icon-14,
  452. .team-latents .latent-icon-15,
  453. .team-latents .latent-icon-16,
  454. .team-latents .latent-icon-17,
  455. .team-latents .latent-icon-18,
  456. .team-latents .latent-icon-19,
  457. .team-latents .latent-icon-20,
  458. .team-latents .latent-icon-21,
  459. .team-latents .latent-icon-22,
  460. .team-latents .latent-icon-23,
  461. .team-latents .latent-icon-24,
  462. .team-latents .latent-icon-25,
  463. .team-latents .latent-icon-26,
  464. .team-latents .latent-icon-27,
  465. .team-latents .latent-icon-28,
  466. .team-latents .latent-icon-29,
  467. .team-latents .latent-icon-30,
  468. .team-latents .latent-icon-31,
  469. .team-latents .latent-icon-32,
  470. .team-latents .latent-icon-33{
  471. margin: 0;
  472. }
  473. /*队长的边框*/
  474. .team-box .team-members .team-leader .monster{
  475. border-radius: 10px;
  476. border-width:4px;
  477. border-style:solid;
  478. box-sizing: initial;
  479. margin: 0;
  480. }
  481. .team-1 .team-members .team-leader .monster{
  482. border-color: var(--team-1-color);
  483. }
  484. .team-2 .team-members .team-leader .monster{
  485. border-color: var(--team-2-color);
  486. }
  487. .team-3 .team-members .team-leader .monster{
  488. border-color: var(--team-3-color);
  489. }
  490. /*三维计算值*/
  491. .team-ability::after,
  492. .team-ability::before,
  493. .team-ability .abilitys
  494. {
  495. padding-left: 5px;
  496. box-sizing: border-box;
  497. font-size: 15px;
  498. width: var(--head-block-width);
  499. }
  500. .team-ability .abilitys
  501. {
  502. display: inline-block;
  503. }
  504. .team-ability::after,
  505. .team-ability::before
  506. {
  507. display: none;
  508. content: "";
  509. }
  510. .show-team-name-left .team-ability::before{
  511. display: inline-block;
  512. }
  513. .show-team-name-right .team-ability::after{
  514. display: inline-block;
  515. }
  516. .abilitys .hp::before,
  517. .abilitys .atk::before,
  518. .abilitys .rcv::before
  519. {
  520. width: 45px;
  521. display: inline-block;
  522. }
  523. /*.abilitys .hp::before{
  524. content: "HP:";
  525. }
  526. .abilitys .atk::before{
  527. content: "攻击:";
  528. }
  529. .abilitys .rcv::before{
  530. content: "回复:";
  531. }*/
  532. /*编辑窗口*/
  533. .blur-bg{
  534. filter:blur(5px);
  535. pointer-events: none;
  536. }
  537. .edit-box{
  538. background-color: rgba(82, 53, 30, 0.8);
  539. color: white;
  540. position: absolute;
  541. left:0;
  542. top:0;
  543. width:100%;
  544. box-sizing: border-box;
  545. min-width:664px;
  546. }
  547. .edit-box-title{
  548. text-align: center;
  549. font-size: 2em;
  550. font-weight: bold;
  551. }
  552. /*.edit-box .edit-box-title::before{
  553. content: "修改队员";
  554. }
  555. .edit-box .edit-box-title.edit-box-title-assist::before{
  556. content: "修改辅助";
  557. }*/
  558. .edit-box .monsterinfo-box{
  559. font-family: 'FOT-KurokaneStd-EB', "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  560. color: white;
  561. text-shadow: black 2px 2px 0;
  562. height: 100px;
  563. margin: 5px 0;
  564. background-image: linear-gradient(#798421,#394914);
  565. border-top: #B1BB39 solid 4px;
  566. border-bottom: #72941D ridge 7px;
  567. box-shadow: black 0 3px 3px;
  568. padding: 5px 10px;
  569. }
  570. .edit-box .search-box,
  571. .edit-box .setting-box{
  572. padding: 0 10px;
  573. }
  574. /*.edit-box .setting-box .row-mon-id::before{
  575. content: "▼怪物ID";
  576. }*/
  577. .edit-box .setting-box .row-mon-id .m-id{
  578. box-sizing: border-box;
  579. font-size: 25px;
  580. height: 40px;
  581. width: 100%;
  582. }
  583. .edit-box .setting-box .row-mon-id .unable-monster{
  584. pointer-events: none;
  585. opacity: 0.5;
  586. }
  587. .edit-box .setting-box .row-mon-id .unable-monster .monster{
  588. box-sizing: border-box;
  589. border: 5px solid red;
  590. border-radius: 10px;
  591. overflow: hidden;
  592. }
  593. .edit-box .setting-box .row-mon-id .unable-monster .id{
  594. display: none;
  595. }
  596. .edit-box .setting-box .row-mon-id .search-button{
  597. width: 100%;
  598. height: 40px;
  599. font-size: 25px;
  600. }
  601. .edit-box .setting-box .row-mon-id .evo-card-list li,
  602. .edit-box .search-box .search-mon-list li,
  603. .edit-box .setting-box .skill-box .detail-mon{
  604. display: inline-block;
  605. vertical-align: top;
  606. top: 0;
  607. width: 78px;
  608. height: 80px;
  609. }
  610. .edit-box .setting-box .skill-box .detail-mon{
  611. vertical-align: bottom;
  612. }
  613. .edit-box .setting-box .row-mon-id .evo-card-list .monster,
  614. .edit-box .search-box .search-mon-list .monster,
  615. .edit-box .setting-box .skill-box .detail-mon .monster{
  616. float: none;
  617. transform: scale(0.75) translate(-13px,-13px);
  618. }
  619. .edit-box .setting-box .row-mon-id .evo-card-list .monster .id,
  620. .edit-box .search-box .search-mon-list .monster .id,
  621. .edit-box .setting-box .skill-box .detail-mon .monster .id{
  622. bottom: 5px;
  623. font-size: 20px;
  624. }
  625. /*.setting-box .row-mon-id .open-search::before{
  626. content: "搜索怪物";
  627. }
  628. .search-box::before{
  629. content: "▼简易搜索";
  630. }
  631. .attrs .attr-all::before{
  632. content: "不限";
  633. }
  634. .attrs .attr-none::before{
  635. content: "无";
  636. }*/
  637. .search-box>div{
  638. margin-bottom: 5px;
  639. }
  640. .search-box>div ul{
  641. display: inline-block;
  642. }
  643. .search-box .attrs ul{
  644. display: block;
  645. }
  646. .search-box>div ul>li{
  647. display: inline-block;
  648. vertical-align: top;
  649. font-size:16px;
  650. overflow: hidden;
  651. }
  652. .search-box>div ul>li>label{
  653. cursor: pointer;
  654. display: block;
  655. text-align: center;
  656. }
  657. .attrs .attr-list-1::before,
  658. .attrs .attr-list-2::before,
  659. .types-div::before,
  660. .awoken-div::before,
  661. .sawoken-div::before{
  662. /*float: left;*/
  663. font-size: 16px;
  664. /*width: 55px;*/
  665. margin-right: 3px;
  666. display: inline-block;
  667. }
  668. /*.search-box .attrs .attr-list-1::before{
  669. content: "属性1";
  670. }
  671. .search-box .attrs .attr-list-2::before{
  672. content: "属性2";
  673. }
  674. .search-box .attrs .fix-main-color-label::after{
  675. content: "限制属性1为主属性,属性2为副属性";
  676. }*/
  677. .attr-radio,.type-check,.sawoken-check{
  678. display: none;
  679. }
  680. .attrs .attr-list{
  681. font-size:0;
  682. }
  683. .attrs .attr-list li{
  684. border: 1px solid white;
  685. border-left: none;
  686. background: #947244;
  687. }
  688. .attrs .attr-list li:hover{
  689. background: #E9CB9E;
  690. }
  691. .attrs .attr-list li:first-of-type{
  692. border-radius: 8px 0 0 8px;
  693. border-left: 1px solid white;
  694. }
  695. .attrs .attr-list li:last-of-type{
  696. border-radius: 0 8px 8px 0;
  697. }
  698. .attrs .attr-list li label{
  699. line-height: 30px;
  700. width: 55px;
  701. height: 30px;
  702. }
  703. .attrs .attr-list input:checked+label{
  704. background-color:#8C4242;
  705. box-shadow: inset black 0 0 5px;
  706. cursor: auto;
  707. }
  708. .attr-list-1{
  709. margin-bottom: 5px;
  710. }
  711. /*.search-box .types-div::before{
  712. content: "类型";
  713. }*/
  714. .types-div .type-list li label{
  715. opacity: var(--search-icon-unchecked);
  716. }
  717. .types-div .type-list input:checked~label{
  718. opacity: 1;
  719. }
  720. /*.search-box .awoken-div::before{
  721. content: "觉醒";
  722. }*/
  723. .search-box .awoken-div .awoken-clear::before,
  724. .search-box .sawoken-div .sawoken-clear::before
  725. {
  726. content: "❌";
  727. }
  728. .search-box .awoken-div .awoken-clear,
  729. .search-box .sawoken-div .sawoken-clear
  730. {
  731. padding: 0;
  732. float: right;
  733. }
  734. .search-box .awoken-ul button{
  735. border: none;
  736. background-color: unset;
  737. font-family: 'FOT-KurokaneStd-EB', "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  738. color: white;
  739. line-height: 32px;
  740. font-size: 16px;
  741. padding: 0;
  742. }
  743. .search-box .awoken-ul .awoken-count.zero{
  744. opacity: var(--search-icon-unchecked);
  745. }
  746. .search-box .awoken-ul .count{
  747. width: 30px;
  748. }
  749. .search-box .awoken-ul .awoken-count .awoken-icon{
  750. cursor: pointer;
  751. }
  752. .search-box .awoken-ul .awoken-count .count{
  753. cursor: pointer;
  754. }
  755. .search-box .awoken-ul .awoken-count.zero .count{
  756. cursor: auto;
  757. }
  758. /*.search-box .sawoken-div::before{
  759. content: "超觉醒";
  760. }*/
  761. .sawoken-div .sawoken-ul li label{
  762. opacity: var(--search-icon-unchecked);
  763. }
  764. .sawoken-div .sawoken-ul input:checked+label{
  765. opacity: 1;
  766. }
  767. .control-div button{
  768. font-size: 20px;
  769. }
  770. .control-div .search-start{
  771. float: right;
  772. margin-left: 5px;
  773. }
  774. /*.control-div .search-start::before{
  775. content: "开始搜索";
  776. }
  777. .control-div .search-clear::before{
  778. content: "清空搜索条件";
  779. }
  780. .control-div .search-close::before{
  781. content: "关闭搜索";
  782. }*/
  783. .search-box .search-mon-list{
  784. border: 1px solid white;
  785. border-radius: 5px;
  786. background: grey;
  787. }
  788. .setting-box .row-mon-id .open-search{
  789. float: right;
  790. }
  791. .edit-box .setting-row{
  792. width: 100%;
  793. }
  794. .monsterinfo-box .monster-head{
  795. float: left;
  796. margin-right:5px;
  797. }
  798. .monsterinfo-box .monsterinfo-line>div,
  799. .monsterinfo-box .monsterinfo-line>ul
  800. {
  801. display:inline-block;
  802. vertical-align: top;
  803. font-size: 22px;
  804. line-height: 22px;
  805. }
  806. .monsterinfo-box .monster-id{
  807. width:150px;
  808. }
  809. .monsterinfo-box .monster-collabId,
  810. .monsterinfo-box .monster-altName{
  811. cursor: pointer;
  812. font-size: 14px;
  813. line-height: 16px;
  814. vertical-align: bottom;
  815. max-width: 270px;
  816. white-space:nowrap;
  817. text-overflow:ellipsis;
  818. overflow:hidden;
  819. }
  820. /*.monsterinfo-box .monster-id::before{
  821. content: "No.";
  822. }*/
  823. .monsterinfo-box .monster-rare{
  824. width: 230px;
  825. }
  826. .monsterinfo-box .monster-rare::before{
  827. color:gold;
  828. text-shadow: black 0 0 3px,black 0 2px 3px;
  829. }
  830. .rare-1::before{content: "★";}
  831. .rare-2::before{content: "★★";}
  832. .rare-3::before{content: "★★★";}
  833. .rare-4::before{content: "★★★★";}
  834. .rare-5::before{content: "★★★★★";}
  835. .rare-6::before{content: "★★★★★★";}
  836. .rare-7::before{content: "★★★★★★★";}
  837. .rare-8::before{content: "★★★★★★★★";}
  838. .rare-9::before{content: "★★★★★★★★★";}
  839. .rare-10::before{content: "★★★★★★★★★★";}
  840. .monsterinfo-box .monster-type{
  841. font-size: 0;
  842. }
  843. .monsterinfo-box .monster-type .type-name{
  844. display:inline-block;
  845. margin-right: 10px;
  846. }
  847. .monsterinfo-box .monster-type .type-icon{
  848. margin-right:3px;
  849. }
  850. .monsterinfo-box .monster-type .type-name::after{
  851. vertical-align: middle;
  852. font-size: 22px;
  853. line-height: 22px;
  854. }
  855. .edit-box .setting-box .row-mon-level::before{
  856. /*content: "▼怪物等级";*/
  857. display: block;
  858. }
  859. .edit-box .setting-box .m-level{
  860. font-size: 25px;
  861. height: 40px;
  862. width: calc(100% - 220px);
  863. box-sizing: border-box;
  864. }
  865. .m-level-btn-min,.m-level-btn-max{
  866. height: 40px;
  867. box-sizing: border-box;
  868. font-size: 25px;
  869. padding: 0;
  870. }
  871. .m-level-btn-min{
  872. width: 65px;
  873. }
  874. .m-level-btn-max{
  875. width: 145px;
  876. }
  877. /*.m-level-btn-max::before{
  878. content: "最高Lv";
  879. }
  880. .edit-box .setting-box .row-mon-awoken::before{
  881. content: "▼怪物觉醒";
  882. }*/
  883. .row-mon-awoken .awoken-ul, .row-mon-super-awoken .awoken-ul{
  884. font-size: 0;
  885. height: 32px;
  886. }
  887. .awoken-ul li{
  888. margin-right: 5px;
  889. }
  890. .awoken-ul li:last-of-type{
  891. margin-right: 0;
  892. }
  893. .edit-box .awoken-ul .awoken-icon{
  894. cursor: pointer;
  895. }
  896. .awoken-ul .awoken-icon.unselected-awoken{
  897. opacity: var(--search-icon-unchecked);
  898. }
  899. .row-mon-awoken .awoken-icon.awoken-count,
  900. .row-mon-awoken .awoken-icon.awoken-count.full-awoken::before
  901. {
  902. color: yellow;
  903. font-size: 22px;
  904. line-height: 28px;
  905. font-weight: bold;
  906. text-shadow: black 0 0 4px;
  907. text-align: center;
  908. }
  909. .row-mon-awoken .awoken-icon.awoken-count.full-awoken{
  910. font-size: 0;
  911. }
  912. .row-mon-awoken .awoken-icon.awoken-count.full-awoken::before{
  913. content: "★";
  914. }
  915. .row-mon-awoken .m-super-awoken-ul{
  916. margin-top: 5px;
  917. }
  918. /*.edit-box .setting-box .row-mon-super-awoken::before{
  919. content: "▼超觉醒";
  920. }*/
  921. .edit-box .setting-box .row-mon-plus::before{
  922. /*content: "▼怪物加值";*/
  923. display: block;
  924. }
  925. .row-mon-plus .ability-value::before{content: "(";}
  926. .row-mon-plus .ability-value::after{content: ")";}
  927. .setting-box .m-plus-hp,.setting-box .m-plus-atk,.setting-box .m-plus-rcv{
  928. font-size: 25px;
  929. height: 40px;
  930. width: calc(100% - 288px);
  931. box-sizing: border-box;
  932. }
  933. .m-plus-hp-li::before,.m-plus-atk-li::before,.m-plus-rcv-li::before,.row-mon-plus .ability-value{
  934. font-size: 25px;
  935. width: 55px;
  936. display: inline-block;
  937. }
  938. .row-mon-plus .ability-value{
  939. width: 90px;
  940. }
  941. /*.m-plus-hp-li::before{content: "HP";}
  942. .m-plus-atk-li::before{content: "攻击";}
  943. .m-plus-rcv-li::before{content: "回复";}*/
  944. .m-plus-btn{
  945. height: 40px;
  946. width: 55px;
  947. box-sizing: border-box;
  948. font-size: 25px;
  949. }
  950. .m-plus-btn::before,.m-plus-btn-297::before{
  951. content: "+";
  952. }
  953. .m-plus-btn-297{
  954. float:right;
  955. width: 85px;
  956. height: 120px;
  957. box-sizing: border-box;
  958. font-size: 25px;
  959. }
  960. /*.edit-box .setting-box .row-mon-latent::before{
  961. content: "▼潜在觉醒";
  962. }*/
  963. .m-latent-ul{
  964. text-align: center;
  965. font-size: 0;
  966. }
  967. .m-latent-ul .latent-icon{
  968. margin-left: 12px;
  969. }
  970. .m-latent-ul .latent-icon:first-of-type{
  971. margin-left: 0;
  972. }
  973. .m-latent-allowable-ul{
  974. margin-top: 5px;
  975. }
  976. .m-latent-allowable-ul .latent-icon,
  977. .m-latent-ul .latent-icon-1,
  978. .m-latent-ul .latent-icon-2,
  979. .m-latent-ul .latent-icon-3,
  980. .m-latent-ul .latent-icon-4,
  981. .m-latent-ul .latent-icon-5,
  982. .m-latent-ul .latent-icon-6,
  983. .m-latent-ul .latent-icon-7,
  984. .m-latent-ul .latent-icon-8,
  985. .m-latent-ul .latent-icon-9,
  986. .m-latent-ul .latent-icon-10,
  987. .m-latent-ul .latent-icon-11,
  988. .m-latent-ul .latent-icon-12,
  989. .m-latent-ul .latent-icon-13,
  990. .m-latent-ul .latent-icon-14,
  991. .m-latent-ul .latent-icon-15,
  992. .m-latent-ul .latent-icon-16,
  993. .m-latent-ul .latent-icon-17,
  994. .m-latent-ul .latent-icon-18,
  995. .m-latent-ul .latent-icon-19,
  996. .m-latent-ul .latent-icon-20,
  997. .m-latent-ul .latent-icon-21,
  998. .m-latent-ul .latent-icon-22,
  999. .m-latent-ul .latent-icon-23,
  1000. .m-latent-ul .latent-icon-24{
  1001. cursor: pointer;
  1002. }
  1003. .m-latent-allowable-ul .latent-icon.unselected-latent{
  1004. cursor: default;
  1005. opacity: var(--search-icon-unchecked);
  1006. }
  1007. .edit-box .setting-box .row-mon-skill,
  1008. .edit-box .setting-box .row-mon-leader-skill{
  1009. margin-top:5px;
  1010. }
  1011. /*.skill-box .skill-cd::before{
  1012. content: "冷却回合:";
  1013. }
  1014. .skill-box .skill-level-label::before{
  1015. content: "Lv";
  1016. }
  1017. .skill-box .m-skill-lv-1::before{
  1018. content: "Lv";
  1019. }
  1020. .skill-box .m-skill-lv-max::before{
  1021. content: "最高Lv";
  1022. }*/
  1023. .skill-box .m-skill-level {
  1024. height: 30px;
  1025. width: 45px;
  1026. box-sizing: border-box;
  1027. border: none;
  1028. background: none;
  1029. font-size: inherit;
  1030. font-family: inherit;
  1031. color: inherit;
  1032. text-shadow: inherit;
  1033. }
  1034. .skill-box .m-skill-lv-1,
  1035. .skill-box .m-skill-lv-max{
  1036. padding: 0 3px;
  1037. height: 30px;
  1038. box-sizing: border-box;
  1039. font-size: 18px;
  1040. }
  1041. .skill-box{
  1042. font-family: 'FOT-KurokaneStd-EB', "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  1043. font-size: 20px;
  1044. border: #9C743E solid 2px;
  1045. border-radius: 10px;
  1046. background-color: #B1AAA0;
  1047. overflow: hidden;
  1048. box-shadow: inset black 0 0 5px;
  1049. }
  1050. .skill-title{
  1051. background-color: #39180F;
  1052. box-shadow: inset black 0 5px 5px;
  1053. padding: 0 10px 0 5px;
  1054. text-shadow:black 3px 3px 0;
  1055. }
  1056. .skill-title::before{
  1057. background-color: #774433;
  1058. border: #BBAA55 solid 2px;
  1059. border-radius: 10px;
  1060. margin-right: 5px;
  1061. padding: 0 5px;
  1062. text-shadow:black 0 0 3px;
  1063. line-height: 25px;
  1064. display: inline-block;
  1065. }
  1066. .row-mon-skill .skill-title::before{
  1067. /*content: "主動技能";*/
  1068. color: #DDEEEE;
  1069. }
  1070. .row-mon-skill .skill-title .skill-name{
  1071. color: #84BAFC;
  1072. }
  1073. .row-mon-leader-skill .skill-title::before{
  1074. /*content: "隊長技能";*/
  1075. color: #FF9955;
  1076. }
  1077. .row-mon-leader-skill .skill-title .skill-name{
  1078. color: #85FD80;
  1079. }
  1080. .skill-box .skill-cd-control{
  1081. float: right;
  1082. }
  1083. .skill-box .skill-cd{
  1084. margin-left: 10px;
  1085. }
  1086. .skill-datail{
  1087. color: black;
  1088. padding: 0 8px 6px 8px;
  1089. line-height: 25px;
  1090. }
  1091. .skill-datail .spColor{
  1092. color: #ff3600;
  1093. }
  1094. .skill-datail .detail-search{
  1095. cursor: pointer;
  1096. color: blue;
  1097. }
  1098. .skill-datail .detail-search::before{
  1099. content: "🔍";
  1100. }
  1101. .skill-datail .random-active-skill{
  1102. padding-left: 1em;
  1103. }
  1104. .skill-datail .random-active-skill>.active-skill-li{
  1105. list-style: decimal;
  1106. }
  1107. .edit-box .button-box{
  1108. border-top: black solid 3px;
  1109. background-color: rgba(0,0,0,0.5);
  1110. margin-top: 10px;
  1111. padding: 5px;
  1112. height: 50px;
  1113. }
  1114. .edit-box .button-box .button-null,
  1115. .edit-box .button-box .button-delay,
  1116. .edit-box .button-box .button-cancel,
  1117. .edit-box .button-box .button-done{
  1118. height: 50px;
  1119. box-sizing: border-box;
  1120. font-size: 25px;
  1121. font-weight: bold;
  1122. }
  1123. .edit-box .button-box .button-null,
  1124. .edit-box .button-box .button-delay{
  1125. float: left;
  1126. margin-right:5px;
  1127. }
  1128. .edit-box .button-box .button-cancel,
  1129. .edit-box .button-box .button-done{
  1130. float: right;
  1131. margin-left:5px;
  1132. }
  1133. /*.edit-box .button-box .button-null::after{
  1134. content: "留空格子";
  1135. }
  1136. .edit-box .button-box .button-delay::after{
  1137. content: "应对威吓";
  1138. }
  1139. .edit-box .button-box .button-cancel::after{
  1140. content: "取消修改";
  1141. }
  1142. .edit-box .button-box .button-done::after{
  1143. content: "确认修改";
  1144. }
  1145. .edit-box .button-box .button-done.cant-assist::after{
  1146. content: "不能辅助";
  1147. }*/
  1148. .formation-awoken::before,
  1149. .team-awoken::before
  1150. {
  1151. font-size: 20px;
  1152. margin-top:5px;
  1153. /*content: "觉醒总计:";*/
  1154. }
  1155. .detail-box{
  1156. margin-top:5px;
  1157. }
  1158. .awoken-ul .awoken-count
  1159. {
  1160. font-size: 16px;
  1161. line-height: 32px;
  1162. font-family: 'FOT-KurokaneStd-EB',"Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  1163. display: inline-block;
  1164. margin-right: 3px;
  1165. }
  1166. .awoken-ul .count
  1167. {
  1168. height: 32px;
  1169. width: 37px;
  1170. display: inline-block;
  1171. vertical-align: middle;
  1172. }
  1173. .awoken-ul .count::before{
  1174. content: "×";
  1175. }
  1176. /*控制框*/
  1177. .control-box{
  1178. margin-bottom: 10px;
  1179. }
  1180. .control-box .languages-label::before{
  1181. content: "Lanuage:";
  1182. }
  1183. .control-box .solo-link::before{
  1184. content: "Jump To Solo Version";
  1185. }
  1186. .control-box .multi-link::before{
  1187. content: "Jump To 2-Player Version";
  1188. }
  1189. .control-box .btn-show-mon-id{
  1190. margin-left: 5px;
  1191. }
  1192. /*.control-box .btn-show-mon-id::before{
  1193. content: "隐藏怪物ID";
  1194. }
  1195. .not-show-mon-id .control-box .btn-show-mon-skill-cd::before{
  1196. content: "显示怪物ID";
  1197. }
  1198. .show-mon-skill-cd .control-box .btn-show-mon-skill-cd::before{
  1199. content: "⬜隐藏已满技能CD";
  1200. }
  1201. .control-box .btn-show-mon-skill-cd::before{
  1202. content: "❄️显示已满技能CD";
  1203. }
  1204. */
  1205. #interchange-line{
  1206. pointer-events: none;
  1207. position: absolute;
  1208. left: 0;
  1209. top: 0;
  1210. }
  1211. #interchange-line g line {
  1212. fill: none;
  1213. stroke: blue;
  1214. stroke-linecap: round;
  1215. stroke-width: 5;
  1216. stroke-dasharray: 10;
  1217. }

智龙迷城队伍图制作工具