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

智龙迷城队伍图制作工具