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

智龙迷城队伍图制作工具