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

智龙迷城队伍图制作工具