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 35 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
6 years ago
6 years ago
7 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
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644
  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. --head-block-width: 108px;
  22. --head-block-height: 108px;
  23. --search-icon-unchecked: 0.4;
  24. --team-1-bgcolor : pink;
  25. --team-2-bgcolor : lightblue;
  26. --team-3-bgcolor : lightgreen;
  27. --team-1-color : red;
  28. --team-2-color : blue;
  29. --team-3-color : green;
  30. --font-family : "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  31. --game-font-family : 'FOT-KurokaneStd-EB',"Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  32. --border-width: 2px;
  33. font-family: var(--font-family);
  34. }
  35. .display-none{
  36. display:none !important;
  37. }
  38. .disabled{
  39. cursor: not-allowed;
  40. pointer-events: none;
  41. opacity: 0.5;
  42. }
  43. .help-link::before{
  44. content: "Help & Tips";
  45. }
  46. .title,
  47. .title-display
  48. {
  49. font-size: 2em;
  50. font-weight: bold;
  51. }
  52. .detail,
  53. .detail-display
  54. {
  55. min-height: 1.5em;
  56. font-size: 1.5em;
  57. }
  58. .title,
  59. .detail,
  60. .title-display,
  61. .detail-display
  62. {
  63. font-family: var(--font-family);
  64. width:100%;
  65. border: none;
  66. background: none;
  67. box-sizing: border-box;
  68. padding: 1px;
  69. margin: 0;
  70. }
  71. .formation-box .title:focus,
  72. .formation-box .detail:focus
  73. {
  74. border: black solid 1px;;
  75. background-color: #eee;
  76. padding: 0;
  77. }
  78. .formation-box .title,
  79. .formation-box .detail
  80. {
  81. display: none;
  82. }
  83. .formation-box .edit .title,
  84. .formation-box .edit .detail
  85. {
  86. display: block;
  87. }
  88. .formation-box .edit .title-display,
  89. .formation-box .edit .detail-display
  90. {
  91. display: none;
  92. }
  93. .config-checkbox-ipt{
  94. display:none;
  95. }
  96. .config-checkbox-lbl .config-checkbox-lbl-cicle{
  97. width: 28px;
  98. height: 12px;
  99. display: inline-block;
  100. position: relative;
  101. background-color: #8884;
  102. border-radius: 16px;
  103. margin-right: 5px;
  104. }
  105. .config-checkbox-lbl .config-checkbox-lbl-cicle::before{
  106. content:"";
  107. width: 20px;
  108. height: 20px;
  109. position: absolute;
  110. transition: .3s ease-out;
  111. background-color: #c6c6c6;
  112. box-shadow: 0 2px 4px 0 #0003;
  113. border-radius: 50%;
  114. left: -4px;
  115. top: -4px;
  116. }
  117. .config-checkbox-ipt:checked+.config-checkbox-lbl .config-checkbox-lbl-cicle {
  118. background: rgba(0,160,216,0.8);
  119. }
  120. .config-checkbox-ipt:checked+.config-checkbox-lbl .config-checkbox-lbl-cicle::before {
  121. background: #00A0D8;
  122. box-shadow: 0 2px 4px 0 rgba(0,160,216,0.4);
  123. left: calc(100% - 16px);
  124. }
  125. .config-checkbox-lbl{
  126. cursor: pointer;
  127. line-height: 25px;
  128. margin-right: 20px;
  129. display: inline-block;
  130. }
  131. .config-checkbox-lbl[for$=and-or]::after{
  132. content: "OR";
  133. }
  134. input:checked+ .config-checkbox-lbl[for$=and-or]::after{
  135. content: "AND";
  136. }
  137. .status{
  138. line-height: 16px;
  139. }
  140. /*.status.loading-mon-info .text::before{
  141. content: "正在加载怪物数据";
  142. }*/
  143. .status.loading-check-version .icon,
  144. .status.loading-mon-info .icon,
  145. .status.loading-skill-info .icon,
  146. .status.prepare-cauture .icon
  147. {
  148. display: inline-block;
  149. width: 16px;
  150. height: 16px;
  151. border: 4px SteelBlue dotted;
  152. border-radius: 50%;
  153. animation: loading-animate 50s infinite linear;
  154. vertical-align: middle;
  155. }
  156. ul{
  157. margin: 0;
  158. padding: 0;
  159. list-style: none;
  160. }
  161. /*队伍的整个盒子*/
  162. .formation-box{
  163. width: 648px;
  164. min-width: 648px;
  165. }
  166. /*单个怪物*/
  167. .monster{
  168. font-family: var(--game-font-family);
  169. width: 100px;
  170. height: 100px;
  171. margin: 0;
  172. display: block;
  173. background-repeat: no-repeat;
  174. position: relative;
  175. cursor: pointer;
  176. border-radius: 5px;
  177. }
  178. .null .monster,.delay .monster,
  179. .null .property,.delay .property,
  180. .null .subproperty,.delay .subproperty
  181. {
  182. box-sizing: border-box;
  183. background-image: none !important;
  184. }
  185. .null .monster{
  186. background-color: rgba(230,230,230,0.5);
  187. border: 3px grey dashed;
  188. }
  189. .edit-box .null .monster{
  190. background-color: #653;
  191. border: none;
  192. box-shadow: inset black 0 0 7px;
  193. }
  194. .member{
  195. vertical-align: top;
  196. }
  197. .delay .monster{
  198. background-color: yellow;
  199. box-shadow: inset orange 0 0 7px;
  200. border: 3px black solid;
  201. }
  202. .delay .monster::before{
  203. width: 94px;
  204. height: 94px;
  205. color: black;
  206. font-size: 30px;
  207. line-height: 47px;
  208. text-align: center;
  209. font-weight: bold;
  210. /*content: "应 对\A威 吓";*/
  211. font-family: var(--font-family);
  212. white-space: pre-wrap;
  213. display: inline-block;
  214. }
  215. /*怪物属性*/
  216. .property,.subproperty{
  217. position:absolute;
  218. left:0;top:0;
  219. width: 100px;
  220. height: 100px;
  221. background-repeat: no-repeat;
  222. background-image: url(images/CARDFRAME2.PNG);
  223. background-position: 100px 100px; /*默认都不显示*/
  224. }
  225. /*怪物-加值*/
  226. .monster .plus{
  227. color: yellow;
  228. font-size: 17px;
  229. line-height: 17px;
  230. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  231. position: absolute;
  232. left:10px;
  233. }
  234. .null .monster>div,.delay .monster>div{
  235. display:none !important;
  236. }
  237. .monster .plus .hp::before,
  238. .monster .plus .atk::before,
  239. .monster .plus .rcv::before,
  240. .monster .plus.has297::before
  241. {
  242. content: "+";
  243. }
  244. .monster .plus.has297::after{
  245. content: "297";
  246. }
  247. .monster .plus.has297 .hp,
  248. .monster .plus.has297 .atk,
  249. .monster .plus.has297 .rcv
  250. { /*当是297时隐藏3维*/
  251. display:none;
  252. }
  253. /*怪物-觉醒*/
  254. .monster .awoken-count,
  255. .row-mon-awoken .awoken-count
  256. {
  257. color: yellow;
  258. text-shadow: black 0 0 4px;
  259. text-align: center;
  260. background-image: url(images/awoken-count-bg.png);
  261. background-repeat: no-repeat;
  262. width: 34px;
  263. height: 38px;
  264. }
  265. .monster .awoken-count{
  266. position: absolute;
  267. top: -4px;
  268. right: 0;
  269. transform: scale(0.75) translateX(4px);
  270. }
  271. .monster .awoken-count,
  272. .monster .awoken-count.full-awoken::before,
  273. .row-mon-awoken .awoken-count,
  274. .row-mon-awoken .awoken-count.full-awoken::before
  275. {
  276. font-size: 20px;
  277. line-height: 28px;
  278. }
  279. .awoken-count.full-awoken{
  280. font-size: 0;
  281. }
  282. .awoken-count.full-awoken::before{
  283. content: "★";
  284. }
  285. .allowable-assist .awoken-count.full-awoken{
  286. font-size: 0;
  287. text-shadow: none;
  288. background-position-y: -38px;
  289. }
  290. .allowable-assist .awoken-count.full-awoken::before{
  291. content: none;
  292. }
  293. /*武器*/
  294. .monster.wepon .awoken-count.full-awoken{
  295. transform: scale(0.79) translateY(4px);
  296. width:32px;height:32px;
  297. background-image: url(images/awoken.png);
  298. background-position-x: 0;
  299. background-position-y: -1568px;
  300. }
  301. /*怪物-超觉醒*/
  302. .monster .super-awoken{
  303. position: absolute;
  304. right:0;
  305. top: 25px;
  306. transform: scale(0.75) translateX(4px);
  307. }
  308. /*怪物-等级*/
  309. .monster .level{
  310. color: white;
  311. height: 17px;
  312. text-shadow: black 0 0 2px, black 2px 2px 0;
  313. position: absolute;
  314. left: 5px;
  315. bottom: 0;
  316. vertical-align: top;
  317. }
  318. .monster .level,.monster .level.max::before{
  319. font-size: 15px;
  320. line-height: 17px;
  321. }
  322. .monster .level.max{
  323. font-size: 0;
  324. }
  325. .monster .level._110{
  326. color: lightskyblue;
  327. }
  328. /*.monster .level::before{
  329. content: "Lv.";
  330. }.monster .level.max::before{
  331. content: "Lv.最大";
  332. }*/
  333. .monster .id{
  334. display: block;
  335. color: white;
  336. font-family: var(--font-family);
  337. font-size: 15px;
  338. font-weight: 500;
  339. line-height: 17px;
  340. height: 17px;
  341. text-shadow: black 0px 0px 2px,black -1px -1px 1px,black 1px 1px 1px;
  342. position: absolute;
  343. left: 5px;
  344. bottom: 15px;
  345. }
  346. .not-show-mon-id .monster .id{
  347. display: none;
  348. }
  349. .monster .id::before{
  350. font-size: 12px;
  351. }
  352. /*.monster .id::before{
  353. content: "No.";
  354. }*/
  355. .monster .skill::before{
  356. content:"CD";
  357. font-size: 10px;
  358. }
  359. .monster .skill{
  360. font-size: 13px;
  361. line-height: 13px;
  362. color:white;
  363. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  364. position: absolute;
  365. right:0;
  366. bottom:0;
  367. }
  368. .monster .skill.max-skill{
  369. display: none;
  370. }
  371. .show-mon-skill-cd .monster .skill.max-skill{
  372. display: block;
  373. }
  374. .not-show-awoken-count .formation-box .team-total-info, /*单个队伍血量统计*/
  375. .not-show-awoken-count .formation-box .team-ability, /*单个队伍三维*/
  376. .not-show-awoken-count .formation-box .team-awoken, /*单个队伍觉醒统计*/
  377. .not-show-awoken-count .formation-box .team-total-info /*单个队伍血量统计*/
  378. {
  379. display: none !important;
  380. }
  381. .not-show-awoken-count .formation-box .team-bigbox
  382. {
  383. margin-bottom: 5px;
  384. }
  385. .not-show-awoken-count .formation-box .team-badge
  386. {
  387. position: absolute;
  388. z-index: 10;
  389. }
  390. /*辅助和队伍的每一只框架*/
  391. .member, .acquisitus-awoken-icon{
  392. display: inline-block;
  393. position: relative;
  394. width: var(--head-block-width);
  395. }
  396. .formation-box .monster{
  397. margin: 4px; /*留给队长边框的*/
  398. }
  399. .team-assist, .team-members,.team-badge{
  400. display: inline-block;
  401. }
  402. /* 徽章,平时都隐藏 */
  403. .team-badge li{
  404. display: inline-block;
  405. }
  406. .badge-radio{
  407. display: none;
  408. }
  409. .badge{
  410. display: none;
  411. cursor: pointer;
  412. }
  413. /* 显示所有徽章时则打开 */
  414. .show-all-badges .badge{
  415. display: inline-block;
  416. }
  417. /* 选中的徽章平时也打开 */
  418. .team-badge .badge-radio:checked+.badge{
  419. display: inline-block;
  420. }
  421. /*队伍的背景色*/
  422. .team-1 .team-members,
  423. .team-1 .team-latents,
  424. .team-1 .team-box-name::before,
  425. .team-1 .team-box-name::after
  426. {
  427. background-color: var(--team-1-bgcolor);
  428. }
  429. .team-2 .team-members,
  430. .team-2 .team-latents,
  431. .team-2 .team-box-name::before,
  432. .team-2 .team-box-name::after
  433. {
  434. background-color: var(--team-2-bgcolor);
  435. }
  436. .team-3 .team-members,
  437. .team-3 .team-latents,
  438. .team-3 .team-box-name::before,
  439. .team-3 .team-box-name::after
  440. {
  441. background-color: var(--team-3-bgcolor);
  442. }
  443. .team-bigbox{
  444. position: relative;
  445. font-size:0;
  446. margin-bottom:10px;
  447. }
  448. .team-bigbox:last-of-type{
  449. margin-bottom:0;
  450. }
  451. /*队伍A、B的文字*/
  452. .team-box-name::after,
  453. .team-box-name::before
  454. {
  455. font-size: 30px;
  456. font-weight: bold;
  457. text-align: center;
  458. line-height: 54px;
  459. white-space: pre-wrap;
  460. display: none;
  461. width: var(--head-block-width);
  462. height: var(--head-block-height);
  463. }
  464. .show-team-name-left .team-box-name::before{
  465. display: inline-block;
  466. }
  467. .show-team-name-right .team-box-name::after{
  468. display: inline-block;
  469. }
  470. .reverse-member-assist .team-box-name::after,
  471. .reverse-member-assist .team-box-name::before
  472. {
  473. vertical-align:top;
  474. }
  475. .team-1 .team-box-name::after,
  476. .team-1 .team-box-name::before,
  477. .team-1 .team-assist .member::after,
  478. .team-1 .team-assist .member::before
  479. {
  480. color: var(--team-1-color);
  481. }
  482. .team-2 .team-box-name::after,
  483. .team-2 .team-box-name::before,
  484. .team-2 .team-assist .member::after,
  485. .team-2 .team-assist .member::before
  486. {
  487. color: var(--team-2-color);
  488. /*vertical-align:top;*/
  489. }
  490. .team-3 .team-box-name::after,
  491. .team-3 .team-box-name::before,
  492. .team-3 .team-assist .member::after,
  493. .team-3 .team-assist .member::before
  494. {
  495. color: var(--team-3-color);
  496. }
  497. .team-box{
  498. display: inline-block;
  499. vertical-align:bottom;
  500. }
  501. .team-box .team-assist .member::after,
  502. .team-box .team-assist .member::before
  503. {
  504. width: var(--head-block-width);
  505. text-align: center;
  506. font-size: 18px;
  507. font-weight: bold;
  508. position: relative;
  509. }
  510. /*平时的显示*/
  511. .team-box .team-assist .member::after
  512. {
  513. display: inline-block;
  514. }
  515. .team-box .team-assist .member::before
  516. {
  517. display: none;
  518. }
  519. /*反向时的显示*/
  520. .reverse-member-assist .team-assist .member::after
  521. {
  522. display: none;
  523. }
  524. .reverse-member-assist .team-assist .member::before
  525. {
  526. display: inline-block;
  527. }
  528. .formation-box .formation-total-info,
  529. .formation-box .team-total-info
  530. {
  531. font-size: 15px;
  532. vertical-align: bottom;
  533. }
  534. .formation-box .team-badge .team-total-info
  535. {
  536. display: inline-block;
  537. }
  538. /*
  539. .team-info .tIf-total-hp,.team-info .tIf-total-rcv{
  540. display:inline-block;
  541. }
  542. */
  543. /*队伍的潜觉*/
  544. .team-latents .latents{
  545. width: var(--head-block-width);
  546. display: inline-block;
  547. vertical-align: top;
  548. }
  549. .team-latents .latent-ul{
  550. font-size: 0;
  551. width: 152px;
  552. transform: scale(0.65);
  553. transform-origin: left top;
  554. margin-left: 5px;
  555. margin-bottom: calc(-64px * (1 - 0.65) + 1px);
  556. /*margin: calc(-64px * (1 - 0.63) / 2 + 3px) calc((108px - 152px) / 2);*/
  557. /*-152 * (1 - 0.63) + 108 - 152 * 0.63,化简为108 - 152*/
  558. min-height: 47px; /* 为了防止只有一层6格大潜觉的时候,被缩减太多的问题*/
  559. }
  560. .team-latents .latent-icon
  561. {
  562. margin-top: 3px;
  563. margin-left: 3px;
  564. margin-right: 3px;
  565. }
  566. .team-latents .latent-icon[data-latent-icon='12'],
  567. .team-latents .latent-icon[data-latent-icon='13'],
  568. .team-latents .latent-icon[data-latent-icon='14'],
  569. .team-latents .latent-icon[data-latent-icon='15'],
  570. .team-latents .latent-icon[data-latent-icon='16'],
  571. .team-latents .latent-icon[data-latent-icon='17'],
  572. .team-latents .latent-icon[data-latent-icon='18'],
  573. .team-latents .latent-icon[data-latent-icon='19'],
  574. .team-latents .latent-icon[data-latent-icon='20'],
  575. .team-latents .latent-icon[data-latent-icon='21'],
  576. .team-latents .latent-icon[data-latent-icon='22'],
  577. .team-latents .latent-icon[data-latent-icon='23'],
  578. .team-latents .latent-icon[data-latent-icon='24'],
  579. .team-latents .latent-icon[data-latent-icon='25'],
  580. .team-latents .latent-icon[data-latent-icon='26'],
  581. .team-latents .latent-icon[data-latent-icon='27'],
  582. .team-latents .latent-icon[data-latent-icon='28'],
  583. .team-latents .latent-icon[data-latent-icon='29'],
  584. .team-latents .latent-icon[data-latent-icon='30'],
  585. .team-latents .latent-icon[data-latent-icon='31'],
  586. .team-latents .latent-icon[data-latent-icon='32'],
  587. .team-latents .latent-icon[data-latent-icon='33'],
  588. .team-latents .latent-icon[data-latent-icon='34'],
  589. .team-latents .latent-icon[data-latent-icon='35'],
  590. .team-latents .latent-icon[data-latent-icon='36'],
  591. .team-latents .latent-icon[data-latent-icon='37'],
  592. .team-latents .latent-icon[data-latent-icon='38'],
  593. .team-latents .latent-icon[data-latent-icon='39']
  594. {
  595. margin-left: 0;
  596. margin-right: 0;
  597. }
  598. .team-latents .latent-ul .latent-icon[data-latent-icon='13']::before,
  599. .team-latents .latent-ul .latent-icon[data-latent-icon='14']::before,
  600. .team-latents .latent-ul .latent-icon[data-latent-icon='15']::before,
  601. .team-latents .latent-ul .latent-icon[data-latent-icon='37']::before,
  602. .team-latents .latent-ul .latent-icon[data-latent-icon='38']::before
  603. { /*6格的潜觉*/
  604. width: 152px;
  605. margin-left: -50px;
  606. margin-right: 47px;
  607. }
  608. /*队长的边框*/
  609. .team-box .team-members .team-leader .monster{
  610. border-radius: 10px;
  611. border-width:4px;
  612. border-style:solid;
  613. box-sizing: initial;
  614. margin: 0;
  615. }
  616. .team-1 .team-members .team-leader .monster{
  617. border-color: var(--team-1-color);
  618. }
  619. .team-2 .team-members .team-leader .monster{
  620. border-color: var(--team-2-color);
  621. }
  622. .team-3 .team-members .team-leader .monster{
  623. border-color: var(--team-3-color);
  624. }
  625. /*三维计算值*/
  626. .team-ability::after,
  627. .team-ability::before,
  628. .team-ability .abilitys
  629. {
  630. padding-left: 5px;
  631. box-sizing: border-box;
  632. font-size: 15px;
  633. width: var(--head-block-width);
  634. }
  635. .team-ability .abilitys
  636. {
  637. display: inline-block;
  638. }
  639. .team-ability::after,
  640. .team-ability::before
  641. {
  642. display: none;
  643. content: "";
  644. }
  645. .show-team-name-left .team-ability::before{
  646. display: inline-block;
  647. }
  648. .show-team-name-right .team-ability::after{
  649. display: inline-block;
  650. }
  651. .abilitys .hp::before,
  652. .abilitys .atk::before,
  653. .abilitys .rcv::before
  654. {
  655. width: 45px;
  656. display: inline-block;
  657. }
  658. /*.abilitys .hp::before{
  659. content: "HP:";
  660. }
  661. .abilitys .atk::before{
  662. content: "攻击:";
  663. }
  664. .abilitys .rcv::before{
  665. content: "回复:";
  666. }*/
  667. /*编辑窗口*/
  668. .blur-bg{
  669. filter:blur(5px);
  670. pointer-events: none;
  671. }
  672. .guide-mod .blur-bg{
  673. filter: unset;
  674. }
  675. .edit-box{
  676. background-color: rgba(82, 53, 30, 0.8);
  677. color: white;
  678. position: absolute;
  679. left:0;
  680. top:0;
  681. width:100%;
  682. box-sizing: border-box;
  683. min-width:664px;
  684. }
  685. .guide-mod .edit-box{
  686. background-color: rgb(102, 73, 50);
  687. }
  688. .edit-box-title{
  689. text-align: center;
  690. font-size: 2em;
  691. font-weight: bold;
  692. }
  693. /*.edit-box .edit-box-title::before{
  694. content: "修改队员";
  695. }
  696. .edit-box .edit-box-title.edit-box-title-assist::before{
  697. content: "修改辅助";
  698. }*/
  699. .edit-box .monsterinfo-box{
  700. font-family: var(--game-font-family);
  701. color: white;
  702. text-shadow: black 2px 2px 0;
  703. min-height: 100px;
  704. margin: 5px 0;
  705. background-image: linear-gradient(#798421,#394914);
  706. border-top: #B1BB39 solid 4px;
  707. border-bottom: #72941D ridge 7px;
  708. box-shadow: black 0 3px 3px;
  709. padding: 5px 10px;
  710. }
  711. .edit-box .search-box,
  712. .edit-box .setting-box{
  713. padding: 0 10px;
  714. }
  715. /*.edit-box .setting-box .row-mon-id::before{
  716. content: "▼怪物ID";
  717. }*/
  718. .edit-box .setting-box .row-mon-id .m-id{
  719. box-sizing: border-box;
  720. font-size: 25px;
  721. height: 40px;
  722. width: 100%;
  723. }
  724. .edit-box .setting-box .row-mon-id .unable-monster{
  725. pointer-events: none;
  726. opacity: 0.5;
  727. }
  728. .edit-box .setting-box .row-mon-id .unable-monster .monster{
  729. box-sizing: border-box;
  730. border: 5px solid red;
  731. border-radius: 10px;
  732. overflow: hidden;
  733. }
  734. .edit-box .setting-box .row-mon-id .unable-monster .id{
  735. display: none;
  736. }
  737. .edit-box .setting-box .row-mon-id .search-button{
  738. width: 100%;
  739. height: 40px;
  740. font-size: 25px;
  741. }
  742. .edit-box .setting-box .row-mon-id .evo-card-list li,
  743. .edit-box .search-box .search-mon-list li
  744. {
  745. display: inline-block;
  746. vertical-align: top;
  747. margin: 2px;
  748. }
  749. .detail-mon{
  750. display: inline-block;
  751. vertical-align: bottom;
  752. }
  753. .edit-box .setting-box .row-mon-id .evo-card-list .monster,
  754. .edit-box .search-box .search-mon-list .monster,
  755. .detail-mon .monster
  756. {
  757. float: none;
  758. transform: scale(0.75);
  759. margin: calc(-100px * (1 - 0.75) / 2);
  760. }
  761. .edit-box .setting-box .row-mon-id .evo-card-list .monster .id,
  762. .edit-box .search-box .search-mon-list .monster .id,
  763. .detail-mon .monster .id{
  764. bottom: 5px;
  765. font-size: 20px;
  766. }
  767. .detail-box .detail-mon{
  768. width: 50px;
  769. height: 50px;
  770. }
  771. .detail-box .detail-mon .monster{
  772. transform: scale(0.5);
  773. margin: calc(-100px * (1 - 0.5) / 2);
  774. }
  775. .detail-box .detail-mon .monster .id{
  776. font-weight: bold;
  777. font-size: 23px;
  778. }
  779. .detail-box .detail-mon .monster .id::before {
  780. font-size: 15px;
  781. }
  782. /*.setting-box .row-mon-id .open-search::before{
  783. content: "搜索怪物";
  784. }
  785. .search-box::before{
  786. content: "▼简易搜索";
  787. }
  788. .attrs .attr-all::before{
  789. content: "不限";
  790. }
  791. .attrs .attr-none::before{
  792. content: "无";
  793. }*/
  794. .search-box::before{
  795. font-weight: bold;
  796. font-size: 1.2em;
  797. }
  798. .search-box>div{
  799. margin-bottom: 5px;
  800. }
  801. .search-box>div ul{
  802. display: inline-block;
  803. }
  804. .search-box .attrs ul{
  805. display: block;
  806. }
  807. .search-box>div ul>li{
  808. display: inline-block;
  809. vertical-align: top;
  810. font-size:16px;
  811. overflow: hidden;
  812. }
  813. .search-box>div ul>li>label{
  814. cursor: pointer;
  815. display: block;
  816. text-align: center;
  817. }
  818. .attrs .attr-list-1::before,
  819. .attrs .attr-list-2::before,
  820. .types-div::before,
  821. .awoken-div::before,
  822. .sawoken-div::before{
  823. /*float: left;*/
  824. font-size: 16px;
  825. /*width: 55px;*/
  826. margin-right: 3px;
  827. display: inline-block;
  828. }
  829. /*.search-box .attrs .attr-list-1::before{
  830. content: "属性1";
  831. }
  832. .search-box .attrs .attr-list-2::before{
  833. content: "属性2";
  834. }
  835. .search-box .attrs .fix-main-color-label::after{
  836. content: "限制属性1为主属性,属性2为副属性";
  837. }*/
  838. .attr-radio,.type-check,.sawoken-check{
  839. display: none;
  840. }
  841. .attrs .attr-list{
  842. font-size:0;
  843. }
  844. .attrs .attr-list li{
  845. border: 1px solid white;
  846. border-left: none;
  847. background: #947244;
  848. }
  849. .attrs .attr-list li:hover{
  850. background: #E9CB9E;
  851. }
  852. .attrs .attr-list li:first-of-type{
  853. border-radius: 8px 0 0 8px;
  854. border-left: 1px solid white;
  855. }
  856. .attrs .attr-list li:last-of-type{
  857. border-radius: 0 8px 8px 0;
  858. }
  859. .attrs .attr-list li label{
  860. line-height: 30px;
  861. width: 55px;
  862. height: 30px;
  863. }
  864. .attrs .attr-list input:checked+label{
  865. background-color:#8C4242;
  866. box-shadow: inset black 0 0 5px;
  867. cursor: auto;
  868. }
  869. .attr-list-1{
  870. margin-bottom: 5px;
  871. }
  872. /*.search-box .types-div::before{
  873. content: "类型";
  874. }*/
  875. .types-div .type-list li label{
  876. opacity: var(--search-icon-unchecked);
  877. }
  878. .types-div .type-list input:checked~label{
  879. opacity: 1;
  880. }
  881. .types-div .type-and-or-label{
  882. margin-left: 10px;
  883. margin-right: 0;
  884. }
  885. /*.search-box .awoken-div::before{
  886. content: "觉醒";
  887. }*/
  888. .search-box .awoken-div .awoken-clear::before,
  889. .search-box .sawoken-div .sawoken-clear::before
  890. {
  891. content: "❌";
  892. }
  893. .search-box .awoken-div .awoken-clear,
  894. .search-box .sawoken-div .sawoken-clear
  895. {
  896. padding: 0;
  897. float: right;
  898. }
  899. .awoken-ul .awoken-count
  900. {
  901. font-size: 16px;
  902. line-height: 32px;
  903. font-family: var(--game-font-family);
  904. display: inline-block;
  905. margin-right: 3px;
  906. }
  907. .awoken-ul .count
  908. {
  909. height: 32px;
  910. width: 37px;
  911. display: inline-block;
  912. vertical-align: middle;
  913. }
  914. .awoken-ul .count::before,
  915. .search-box .awoken-div .count-symbol::before
  916. {
  917. content: "×";
  918. }
  919. .search-box .awoken-ul button,
  920. .search-box .awoken-ul input[type='button']
  921. {
  922. border: none;
  923. background-color: unset;
  924. font-family: var(--game-font-family);
  925. color: white;
  926. line-height: 32px;
  927. font-size: 16px;
  928. padding: 0;
  929. text-align: left;
  930. }
  931. .search-box .awoken-ul .awoken-count.zero{
  932. opacity: var(--search-icon-unchecked);
  933. }
  934. .search-box .awoken-ul .count{
  935. width: 1em;
  936. height: auto;
  937. }
  938. .search-box .awoken-ul .awoken-count .awoken-icon,
  939. .search-box .awoken-ul .awoken-count .count-symbol,
  940. .search-box .awoken-ul .awoken-count .count-symbol .count
  941. {
  942. cursor: pointer;
  943. display: inline-block;
  944. vertical-align: bottom;
  945. }
  946. .search-box .awoken-ul .awoken-count.zero .count-symbol,
  947. .search-box .awoken-ul .awoken-count.zero .count-symbol .count
  948. {
  949. cursor: auto;
  950. }
  951. /*.search-box .sawoken-div::before{
  952. content: "超觉醒";
  953. }*/
  954. .sawoken-div .sawoken-ul li label{
  955. opacity: var(--search-icon-unchecked);
  956. }
  957. .sawoken-div .sawoken-ul input:checked+label{
  958. opacity: 1;
  959. }
  960. .control-div button{
  961. font-size: 20px;
  962. }
  963. .control-div .search-start{
  964. float: right;
  965. margin-left: 5px;
  966. }
  967. /*.control-div .search-start::before{
  968. content: "开始搜索";
  969. }
  970. .control-div .search-clear::before{
  971. content: "清空搜索条件";
  972. }
  973. .control-div .search-close::before{
  974. content: "关闭搜索";
  975. }*/
  976. .search-box .search-mon-list{
  977. border: 1px solid white;
  978. border-radius: 5px;
  979. background: grey;
  980. }
  981. .guide-mod .search-box .search-mon-list{
  982. max-height: 790px;
  983. overflow: auto;
  984. }
  985. .search-mon-list.only-display-can-assist .monster{
  986. opacity: 0.25;
  987. }
  988. .search-mon-list.only-display-can-assist .monster.allowable-assist{
  989. opacity: 1;
  990. }
  991. .setting-box .row-mon-id .open-search{
  992. float: right;
  993. }
  994. .can-assist-label,
  995. .sort-reverse-label
  996. {
  997. margin-left: 5px;
  998. }
  999. .edit-box .setting-row{
  1000. width: 100%;
  1001. }
  1002. .monsterinfo-box .monster-head{
  1003. float: left;
  1004. margin-right:5px;
  1005. }
  1006. .monsterinfo-box .monsterinfo-line>div
  1007. {
  1008. display:inline-block;
  1009. vertical-align: top;
  1010. font-size: 22px;
  1011. line-height: 22px;
  1012. }
  1013. .monsterinfo-box .monster-id{
  1014. width:120px;
  1015. }
  1016. .monsterinfo-box .monster-seriesId,
  1017. .monsterinfo-box .monster-collabId,
  1018. .monsterinfo-box .monster-altName
  1019. {
  1020. cursor: pointer;
  1021. font-size: 14px;
  1022. line-height: 16px;
  1023. vertical-align: bottom;
  1024. max-width: 270px;
  1025. white-space:nowrap;
  1026. text-overflow:ellipsis;
  1027. overflow:hidden;
  1028. }
  1029. .monsterinfo-box .monster-seriesId:hover::after,
  1030. .monsterinfo-box .monster-collabId:hover::after,
  1031. .monsterinfo-box .monster-altName:hover::after
  1032. {
  1033. content: "🔍";
  1034. }
  1035. /*.monsterinfo-box .monster-id::before{
  1036. content: "No.";
  1037. }*/
  1038. .monsterinfo-box .monster-rare{
  1039. width: 260px;
  1040. }
  1041. .monsterinfo-box .monster-rare::before,
  1042. .monsterinfo-box .monster-rare::after
  1043. {
  1044. color:gold;
  1045. text-shadow: black 0 0 3px,black 0 2px 3px;
  1046. }
  1047. .monsterinfo-box .monster-rare::before
  1048. {
  1049. display: inline-block;
  1050. width: 30px;
  1051. text-align: right;
  1052. }
  1053. .monster-rare[data-rarity='1']::after{content: "★";}
  1054. .monster-rare[data-rarity='2']::after{content: "★★";}
  1055. .monster-rare[data-rarity='3']::after{content: "★★★";}
  1056. .monster-rare[data-rarity='4']::after{content: "★★★★";}
  1057. .monster-rare[data-rarity='5']::after{content: "★★★★★";}
  1058. .monster-rare[data-rarity='6']::after{content: "★★★★★★";}
  1059. .monster-rare[data-rarity='7']::after{content: "★★★★★★★";}
  1060. .monster-rare[data-rarity='8']::after{content: "★★★★★★★★";}
  1061. .monster-rare[data-rarity='9']::after{content: "★★★★★★★★★";}
  1062. .monster-rare[data-rarity='10']::after{content: "★★★★★★★★★★";}
  1063. .monster-rare[data-rarity='1']::before{content: "1";}
  1064. .monster-rare[data-rarity='2']::before{content: "2";}
  1065. .monster-rare[data-rarity='3']::before{content: "3";}
  1066. .monster-rare[data-rarity='4']::before{content: "4";}
  1067. .monster-rare[data-rarity='5']::before{content: "5";}
  1068. .monster-rare[data-rarity='6']::before{content: "6";}
  1069. .monster-rare[data-rarity='7']::before{content: "7";}
  1070. .monster-rare[data-rarity='8']::before{content: "8";}
  1071. .monster-rare[data-rarity='9']::before{content: "9";}
  1072. .monster-rare[data-rarity='10']::before{content: "10";}
  1073. .monsterinfo-box .monster-type {
  1074. display: inline;
  1075. }
  1076. .monsterinfo-box .monster-type .type-name{
  1077. display:inline-block;
  1078. margin-right: 10px;
  1079. }
  1080. .monsterinfo-box .monster-type .type-icon{
  1081. margin-right:3px;
  1082. }
  1083. .monsterinfo-box .monster-type .type-name::after{
  1084. vertical-align: middle;
  1085. font-size: 22px;
  1086. line-height: 22px;
  1087. }
  1088. /*
  1089. .edit-box .setting-box .row-mon-awoken::before{
  1090. content: "▼怪物觉醒";
  1091. }
  1092. */
  1093. .row-mon-awoken{
  1094. margin-right: 20px;
  1095. }
  1096. .row-mon-awoken .awoken-ul, .row-mon-super-awoken .awoken-ul{
  1097. font-size: 0;
  1098. height: 32px;
  1099. }
  1100. .edit-box .awoken-ul .awoken-icon,
  1101. .edit-box .awoken-count
  1102. {
  1103. cursor: pointer;
  1104. }
  1105. .row-mon-awoken .awoken-count.full-awoken{
  1106. font-size: 0;
  1107. }
  1108. .row-mon-awoken .awoken-count,
  1109. .row-mon-awoken .awoken-count.full-awoken::before
  1110. {
  1111. font-size: 22px;
  1112. line-height: 28px;
  1113. }
  1114. .row-mon-awoken .awoken-count{
  1115. transform: scale(0.84) translateY(-2px);
  1116. }
  1117. .row-mon-awoken .awoken-count,
  1118. .row-mon-awoken .awoken-icon
  1119. {
  1120. vertical-align: top;
  1121. }
  1122. /*选中的觉醒后面部分半透明,前面的不透明*/
  1123. .row-mon-awoken .awoken-number{display:none;}
  1124. .row-mon-awoken .awoken-number:checked~label
  1125. {
  1126. opacity: var(--search-icon-unchecked);
  1127. }
  1128. /*.edit-box .setting-box .row-mon-super-awoken::before{
  1129. content: "▼超觉醒";
  1130. }*/
  1131. .row-mon-awoken,
  1132. .row-mon-super-awoken
  1133. {
  1134. display: inline-block;
  1135. box-sizing: border-box;
  1136. vertical-align: top;
  1137. }
  1138. .row-mon-awoken .awoken-icon,
  1139. .row-mon-super-awoken .awoken-icon
  1140. {
  1141. margin-right: 5px;
  1142. }
  1143. .row-mon-awoken .awoken-icon:last-of-type,
  1144. .row-mon-super-awoken .awoken-icon:last-of-type
  1145. {
  1146. margin-left: unset;
  1147. }
  1148. /*未选中的超觉醒半透明,选中的不透明*/
  1149. .row-mon-super-awoken .sawoken-choice{display:none;}
  1150. .row-mon-super-awoken .sawoken-choice+label
  1151. {
  1152. opacity: var(--search-icon-unchecked);
  1153. }
  1154. .row-mon-super-awoken .sawoken-choice:checked+label
  1155. {
  1156. opacity: unset;
  1157. }
  1158. /*怪物能力横条*/
  1159. /*.row-ability{
  1160. border-color: #D5AF5B;
  1161. border-style: solid;
  1162. border-width: var(--border-width);
  1163. border-radius: 8px;
  1164. background-color: #B68E4A;
  1165. background-image: radial-gradient(ellipse at top,#B68E4A, #60492C);
  1166. }*/
  1167. /*.edit-box .setting-box .row-mon-ability::before{
  1168. content: "▼怪物能力";
  1169. }*/
  1170. .row-mon-ability ul{
  1171. margin-top: var(--border-width);
  1172. }
  1173. .row-mon-ability ul li::before{
  1174. width: 55px;
  1175. display: inline-block;
  1176. }
  1177. .row-mon-ability .ability-value{
  1178. width: 85px;
  1179. display: inline-block;
  1180. text-align: right;
  1181. }
  1182. .edit-box .setting-box .row-mon-plus::before{
  1183. /*content: "▼怪物加值";*/
  1184. display:block;
  1185. }
  1186. .row-mon-ability ul,
  1187. .row-mon-plus ul,
  1188. .row-mon-level .level-value
  1189. {
  1190. font-family: var(--game-font-family );
  1191. font-size: 22px;
  1192. line-height: 35px;
  1193. text-shadow: black 2px 2px 0;
  1194. }
  1195. .row-mon-plus .plus-box{
  1196. border-color: #A07740;
  1197. border-style: solid;
  1198. border-width: var(--border-width);
  1199. border-radius: 8px;
  1200. background-color: #44392C;
  1201. box-shadow: inset black 0 3px 5px;
  1202. white-space: nowrap; /*避免纵向297跑到下一行*/
  1203. }
  1204. .row-mon-plus li{
  1205. height: 35px;
  1206. padding: 0 5px;
  1207. }
  1208. /*.m-plus-hp-li::before{content: "HP";}
  1209. .m-plus-atk-li::before{content: "攻击";}
  1210. .m-plus-rcv-li::before{content: "回复";}*/
  1211. .row-mon-plus .plus-value{
  1212. color: yellow;
  1213. }
  1214. .row-mon-plus .plus-value::before{content: "(+";}
  1215. .row-mon-plus .plus-value::after{content: ")";}
  1216. .row-mon-plus .plus-value input
  1217. {
  1218. color: inherit;
  1219. font-family: inherit;
  1220. font-size: inherit;
  1221. text-shadow: inherit;
  1222. box-sizing: border-box;
  1223. width: 2em;
  1224. line-height: 30px;
  1225. height: 30px;
  1226. padding: 0;
  1227. -moz-appearance: textfield; /*火狐去掉数字加减*/
  1228. }
  1229. /*webkit去掉数字加减*/
  1230. .row-mon-plus .plus-value input::-webkit-outer-spin-button,
  1231. .row-mon-plus .plus-value input::-webkit-inner-spin-button{
  1232. -webkit-appearance: none !important;
  1233. margin: 0;
  1234. }
  1235. .row-mon-plus .m-plus-btn::before,
  1236. .row-mon-plus .m-plus-btn-297 span::before
  1237. {
  1238. content: "+";
  1239. }
  1240. .row-mon-plus .m-plus-btn
  1241. {
  1242. padding: 0 3px;
  1243. box-sizing: border-box;
  1244. font-size: inherit;
  1245. line-height: 20px;;
  1246. height: 30px;
  1247. }
  1248. .m-plus-btn-297{
  1249. padding: 0;
  1250. box-sizing: border-box;
  1251. height: 105px;
  1252. font-size: 22px;
  1253. writing-mode: vertical-lr;
  1254. min-width: 32px; /*先给297一个默认宽度*/
  1255. }
  1256. .m-plus-btn-297 span{
  1257. /*Chrome浏览器不支持按钮本身的纵向,只能加一层*/
  1258. -webkit-writing-mode: vertical-lr;
  1259. }
  1260. .row-mon-plus .plus-box ul,
  1261. .m-plus-btn-297
  1262. {
  1263. display: inline-block;
  1264. vertical-align: top;
  1265. }
  1266. /*.edit-box .setting-box .row-mon-level::before{
  1267. content: "▼怪物等级";
  1268. }*/
  1269. .row-mon-level
  1270. {
  1271. margin-left: 10px;
  1272. }
  1273. .row-mon-level .subrow
  1274. {
  1275. font-family: var(--game-font-family );
  1276. font-size: 22px;
  1277. line-height: 35px;
  1278. }
  1279. /*.row-mon-level .level-value::before{
  1280. content: "Lv.";
  1281. }*/
  1282. .edit-box .setting-box .m-level
  1283. {
  1284. color: inherit;
  1285. font-family: inherit;
  1286. font-size: inherit;
  1287. text-shadow: inherit;
  1288. box-sizing: border-box;
  1289. line-height: inherit;
  1290. width: 100px;
  1291. height: 40px;
  1292. }
  1293. .m-level-btn-min,
  1294. .m-level-btn-max,
  1295. .m-level-btn-110
  1296. {
  1297. box-sizing: border-box;
  1298. font-size: 18px;
  1299. padding: 0 3px;
  1300. }
  1301. .m-level-btn-110
  1302. {
  1303. color: blue;
  1304. }
  1305. /*
  1306. .m-level-exp::before{
  1307. content: "需要经验:";
  1308. }
  1309. .m-level-btn-max::before{
  1310. content: "最高Lv";
  1311. }
  1312. */
  1313. .row-mon-ability,
  1314. .row-mon-plus,
  1315. .row-mon-level
  1316. {
  1317. display: inline-block;
  1318. box-sizing: border-box;
  1319. vertical-align: top;
  1320. }
  1321. .m-level,
  1322. .m-plus-hp,.m-plus-atk,.m-plus-rcv,
  1323. .m-skill-level
  1324. {
  1325. border: 1px solid grey;
  1326. background: none;
  1327. }
  1328. /*.edit-box .setting-box .row-mon-latent::before{
  1329. content: "▼潜在觉醒";
  1330. }*/
  1331. .m-latent-ul-div{
  1332. text-align: center;
  1333. }
  1334. .m-latent-ul{
  1335. font-size: 0;
  1336. display: inline-block;
  1337. background: rgba(88,75,56,154);
  1338. border: 2px ridge #94733f;
  1339. border-radius: 7px;
  1340. padding: 2px;
  1341. }
  1342. .m-latent-ul .latent-icon{
  1343. margin-left: 12px;
  1344. }
  1345. .m-latent-ul .latent-icon:first-of-type{
  1346. margin-left: 0;
  1347. }
  1348. .m-latent-allowable-ul{
  1349. margin-top: 5px;
  1350. font-size: 0;
  1351. }
  1352. .m-latent-allowable-ul .latent-icon{
  1353. margin-right: 4px;
  1354. margin-bottom: 4px;
  1355. }
  1356. .m-latent-allowable-ul .latent-icon:last-of-type{
  1357. margin-right: unset;
  1358. }
  1359. .m-latent-allowable-ul.hide-less-use-latent .latent-icon{
  1360. display: none;
  1361. }
  1362. .m-latent-allowable-ul.hide-less-use-latent .latent-icon.frequent{
  1363. display: inline-block;
  1364. }
  1365. .hide-less-use-latent-label{
  1366. margin-left: 5px;
  1367. }
  1368. /*没有打觉醒的空格,没有手指*/
  1369. .m-latent-ul .latent-icon{
  1370. cursor: default;
  1371. }
  1372. .m-latent-allowable-ul .latent-icon,
  1373. .m-latent-ul .latent-icon[data-latent-icon]{
  1374. cursor: pointer;
  1375. }
  1376. /*不允许使用的潜觉,不是手指,半透明,灰度*/
  1377. .m-latent-allowable-ul .latent-icon.unallowable-latent{
  1378. cursor: default;
  1379. opacity: var(--search-icon-unchecked);
  1380. filter: grayscale(100%);
  1381. }
  1382. .edit-box .setting-box .row-mon-skill
  1383. {
  1384. margin-bottom:5px;
  1385. }
  1386. /*.edit-box .setting-box .row-mon-skill,
  1387. .edit-box .setting-box .row-mon-leader-skill
  1388. {
  1389. margin-top:5px;
  1390. }*/
  1391. /*.skill-box .skill-cd::before{
  1392. content: "冷却回合:";
  1393. }
  1394. .skill-box .skill-level-label::before{
  1395. content: "Lv";
  1396. }
  1397. .skill-box .m-skill-lv-1::before{
  1398. content: "Lv";
  1399. }
  1400. .skill-box .m-skill-lv-max::before{
  1401. content: "最高Lv";
  1402. }*/
  1403. .skill-box{
  1404. font-family: var(--game-font-family);
  1405. font-size: 16px;
  1406. border: #9C743E solid 2px;
  1407. border-radius: 10px;
  1408. background-color: #B1AAA0;
  1409. overflow: hidden;
  1410. box-shadow: inset black 0 0 5px;
  1411. }
  1412. .row-mon-leader-skill .skill-box{
  1413. background-color: #D0CD81;
  1414. }
  1415. .skill-box .m-skill-level {
  1416. height: 30px;
  1417. width: 3em;
  1418. line-height: 25px;
  1419. box-sizing: border-box;
  1420. font-size: inherit;
  1421. font-family: inherit;
  1422. color: inherit;
  1423. text-shadow: inherit;
  1424. }
  1425. .skill-box .m-skill-lv-1,
  1426. .skill-box .m-skill-lv-max{
  1427. padding: 0 3px;
  1428. /*height: 30px;*/
  1429. box-sizing: border-box;
  1430. font-size: 18px;
  1431. }
  1432. .skill-box .skill-title{
  1433. background-color: #39180F;
  1434. box-shadow: inset black 0 5px 5px;
  1435. padding: 0 10px 0 2px;
  1436. text-shadow:black 3px 3px 0;
  1437. }
  1438. .skill-title .type-title{
  1439. background-color: #774433;
  1440. border: #BBAA55 solid 2px;
  1441. border-radius: 8px;
  1442. margin-right: 5px;
  1443. padding: 0 5px;
  1444. line-height: 24px;
  1445. display: inline-block;
  1446. position: relative;
  1447. }
  1448. .skill-title .type-title::after{
  1449. -webkit-background-clip: text;
  1450. background-clip: text;
  1451. color: transparent;
  1452. text-shadow: none;
  1453. position: absolute;
  1454. left: 5px;
  1455. }
  1456. .skill-title .type-title::before{
  1457. text-shadow: none;
  1458. -webkit-text-stroke: 3px black;
  1459. text-stroke: 3px black;
  1460. }
  1461. /*.row-mon-skill .type-title::before,
  1462. .row-mon-skill .type-title::after
  1463. {
  1464. content: "主動技能";
  1465. }*/
  1466. .row-mon-skill .type-title::after
  1467. {
  1468. background-image: linear-gradient(white 25%, #3377AA 80%);
  1469. }
  1470. /*.row-mon-leader-skill .type-title::before,
  1471. .row-mon-leader-skill .type-title::after
  1472. {
  1473. content: "隊長技能";
  1474. }*/
  1475. .row-mon-leader-skill .type-title::after
  1476. {
  1477. background-image: linear-gradient(#FFFF99 25%, #EE7744 80%);
  1478. }
  1479. .row-mon-skill .skill-title .skill-name{
  1480. color: #84BAFC;
  1481. cursor: pointer;
  1482. }
  1483. .row-mon-skill .skill-title .skill-name:hover::after{
  1484. content: "🔍";
  1485. }
  1486. .row-mon-leader-skill .skill-title .skill-name{
  1487. color: #85FD80;
  1488. }
  1489. .skill-box .skill-cd-control{
  1490. float: right;
  1491. }
  1492. .skill-box .skill-cd{
  1493. margin-left: 10px;
  1494. }
  1495. .skill-datail{
  1496. color: black;
  1497. padding: 0 8px 6px 8px;
  1498. line-height: 25px;
  1499. }
  1500. .skill-datail .spColor{
  1501. color: #ff3600;
  1502. }
  1503. .skill-datail .detail-search{
  1504. cursor: pointer;
  1505. color: blue;
  1506. }
  1507. .skill-datail .detail-search::before{
  1508. content: "🔍";
  1509. }
  1510. .skill-datail .random-active-skill{
  1511. padding-left: 1em;
  1512. }
  1513. .skill-datail .random-active-skill>.active-skill-li{
  1514. list-style: decimal;
  1515. }
  1516. .edit-box .button-box{
  1517. border-top: black solid 3px;
  1518. background-color: rgba(0,0,0,0.5);
  1519. margin-top: 10px;
  1520. padding: 5px;
  1521. height: 50px;
  1522. }
  1523. .edit-box .button-box .button-null,
  1524. .edit-box .button-box .button-delay,
  1525. .edit-box .button-box .button-cancel,
  1526. .edit-box .button-box .button-done{
  1527. height: 50px;
  1528. box-sizing: border-box;
  1529. font-size: 25px;
  1530. font-weight: bold;
  1531. }
  1532. .edit-box .button-box .button-null,
  1533. .edit-box .button-box .button-delay{
  1534. float: left;
  1535. margin-right:5px;
  1536. }
  1537. .edit-box .button-box .button-cancel,
  1538. .edit-box .button-box .button-done{
  1539. float: right;
  1540. margin-left:5px;
  1541. }
  1542. /*.edit-box .button-box .button-null::after{
  1543. content: "留空格子";
  1544. }
  1545. .edit-box .button-box .button-delay::after{
  1546. content: "应对威吓";
  1547. }
  1548. .edit-box .button-box .button-cancel::after{
  1549. content: "取消修改";
  1550. }
  1551. .edit-box .button-box .button-done::after{
  1552. content: "确认修改";
  1553. }
  1554. .edit-box .button-box .button-done.cant-assist::after{
  1555. content: "不能辅助";
  1556. }*/
  1557. .formation-awoken::before,
  1558. .team-awoken::before
  1559. {
  1560. font-size: 20px;
  1561. margin-top:5px;
  1562. /*content: "觉醒总计:";*/
  1563. }
  1564. .detail-box{
  1565. margin-top:5px;
  1566. }
  1567. /*控制框*/
  1568. .control-box{
  1569. margin-bottom: 10px;
  1570. }
  1571. .control-box .languages-label::before{
  1572. content: "Lanuage:";
  1573. }
  1574. .control-box .solo-link::before{
  1575. content: "Jump To Solo Version";
  1576. }
  1577. .control-box .multi-link::before{
  1578. content: "Jump To 2-Player Version";
  1579. }
  1580. /*.control-box .btn-show-mon-id::before{
  1581. content: "隐藏怪物ID";
  1582. }
  1583. .not-show-mon-id .control-box .btn-show-mon-skill-cd::before{
  1584. content: "显示怪物ID";
  1585. }
  1586. .show-mon-skill-cd .control-box .btn-show-mon-skill-cd::before{
  1587. content: "⬜隐藏已满技能CD";
  1588. }
  1589. .control-box .btn-show-mon-skill-cd::before{
  1590. content: "❄️显示已满技能CD";
  1591. }
  1592. */
  1593. #interchange-line{
  1594. pointer-events: none;
  1595. position: absolute;
  1596. left: 0;
  1597. top: 0;
  1598. }
  1599. #interchange-line g line {
  1600. fill: none;
  1601. stroke: blue;
  1602. stroke-linecap: round;
  1603. stroke-width: 5;
  1604. stroke-dasharray: 10;
  1605. }

智龙迷城队伍图制作工具