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

7 years ago
6 years ago
7 years ago
7 years ago
5 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
5 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
5 years ago
5 years ago
5 years ago
5 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574
  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. @font-face {
  13. font-family: 'zpix';
  14. src:
  15. url("fonts/zpix.woff2") format('woff2'),
  16. url("fonts/zpix.woff") format('woff'),
  17. url("fonts/zpix.ttf") format('truetype'),
  18. url("fonts/zpix.eot?#font-spider") format('embedded-opentype'),
  19. url("fonts/zpix.svg") format('svg');
  20. font-weight: normal;
  21. font-style: normal;
  22. }
  23. @keyframes loading-animate{
  24. from {
  25. transform: rotate(0deg);
  26. }
  27. to {
  28. transform: rotate(3600deg);
  29. }
  30. }
  31. body{
  32. --head-block-width: 108px;
  33. --head-block-height: 108px;
  34. --search-icon-unchecked: 0.4;
  35. --team-1-bgcolor : pink;
  36. --team-2-bgcolor : lightblue;
  37. --team-3-bgcolor : lightgreen;
  38. --team-1-color : red;
  39. --team-2-color : blue;
  40. --team-3-color : green;
  41. --font-family : "Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  42. --game-font-family : 'FOT-KurokaneStd-EB',"Microsoft Yahei","Source Han Sans",Arial, Helvetica, sans-serif, "Malgun Gothic", "맑은 고딕", "Gulim", AppleGothic;
  43. --border-width: 2px;
  44. font-family: var(--font-family);
  45. }
  46. .display-none{
  47. display:none !important;
  48. }
  49. .disabled{
  50. cursor: not-allowed;
  51. pointer-events: none;
  52. opacity: 0.5;
  53. }
  54. .help-link::before{
  55. content: "ℹ️Help & Tips";
  56. }
  57. .title,
  58. .title-display
  59. {
  60. font-size: 2em;
  61. font-weight: bold;
  62. }
  63. .detail,
  64. .detail-display
  65. {
  66. min-height: 1.5em;
  67. font-size: 1.5em;
  68. }
  69. .title,
  70. .detail,
  71. .title-display,
  72. .detail-display
  73. {
  74. font-family: var(--font-family);
  75. width:100%;
  76. border: none;
  77. background: none;
  78. box-sizing: border-box;
  79. padding: 1px;
  80. margin: 0;
  81. white-space: pre-wrap;
  82. }
  83. .guide-mod .control-box>div.status
  84. {
  85. display: block;
  86. }
  87. .formation-box .title:focus,
  88. .formation-box .detail:focus
  89. {
  90. border: black solid 1px;;
  91. background-color: #eee;
  92. padding: 0;
  93. }
  94. .formation-box .title,
  95. .formation-box .detail
  96. {
  97. display: none;
  98. }
  99. .formation-box .edit .title,
  100. .formation-box .edit .detail
  101. {
  102. display: block;
  103. }
  104. .formation-box .edit .title-display,
  105. .formation-box .edit .detail-display
  106. {
  107. display: none;
  108. }
  109. .config-checkbox-ipt{
  110. display:none;
  111. }
  112. .config-checkbox-lbl .config-checkbox-lbl-cicle{
  113. width: 28px;
  114. height: 12px;
  115. display: inline-block;
  116. position: relative;
  117. background-color: #8884;
  118. border-radius: 16px;
  119. margin-right: 5px;
  120. }
  121. .config-checkbox-lbl .config-checkbox-lbl-cicle::before{
  122. content:"";
  123. width: 20px;
  124. height: 20px;
  125. position: absolute;
  126. transition: .3s ease-out;
  127. background-color: #c6c6c6;
  128. box-shadow: 0 2px 4px 0 #0003;
  129. border-radius: 50%;
  130. left: -4px;
  131. top: -4px;
  132. }
  133. .config-checkbox-ipt:checked+.config-checkbox-lbl .config-checkbox-lbl-cicle {
  134. background: rgba(0,160,216,0.8);
  135. }
  136. .config-checkbox-ipt:checked+.config-checkbox-lbl .config-checkbox-lbl-cicle::before {
  137. background: #00A0D8;
  138. box-shadow: 0 2px 4px 0 rgba(0,160,216,0.4);
  139. left: calc(100% - 16px);
  140. }
  141. .config-checkbox-lbl{
  142. cursor: pointer;
  143. line-height: 25px;
  144. margin-right: 20px;
  145. display: inline-block;
  146. }
  147. .config-checkbox-lbl[for$=and-or]::after{
  148. content: "OR";
  149. }
  150. input:checked+ .config-checkbox-lbl[for$=and-or]::after{
  151. content: "AND";
  152. }
  153. .status{
  154. line-height: 16px;
  155. }
  156. /*.status.loading-mon-info .text::before{
  157. content: "正在加载怪物数据";
  158. }*/
  159. .status.loading-check-version .icon,
  160. .status.loading-mon-info .icon,
  161. .status.loading-skill-info .icon,
  162. .status.prepare-cauture .icon
  163. {
  164. display: inline-block;
  165. width: 16px;
  166. height: 16px;
  167. border: 4px SteelBlue dotted;
  168. border-radius: 50%;
  169. animation: loading-animate 50s infinite linear;
  170. vertical-align: middle;
  171. }
  172. ul{
  173. margin: 0;
  174. padding: 0;
  175. list-style: none;
  176. }
  177. /*队伍的整个盒子*/
  178. .formation-box{
  179. width: 648px;
  180. min-width: 648px;
  181. }
  182. /*单个怪物*/
  183. .monster{
  184. font-family: var(--game-font-family);
  185. width: 100px;
  186. height: 100px;
  187. margin: 0;
  188. display: block;
  189. background-repeat: no-repeat;
  190. position: relative;
  191. cursor: pointer;
  192. border-radius: 5px;
  193. }
  194. .null .monster,.delay .monster,
  195. .null .property,.delay .property,
  196. .null .subproperty,.delay .subproperty
  197. {
  198. box-sizing: border-box;
  199. background-image: none !important;
  200. }
  201. .null .monster{
  202. background-color: rgba(230,230,230,0.5);
  203. border: 3px grey dashed;
  204. }
  205. .edit-box .null .monster{
  206. background-color: #653;
  207. border: none;
  208. box-shadow: inset black 0 0 7px;
  209. }
  210. .member{
  211. vertical-align: top;
  212. }
  213. .delay .monster{
  214. background-color: yellow;
  215. box-shadow: inset orange 0 0 7px;
  216. border: 3px black solid;
  217. }
  218. .delay .monster::before{
  219. width: 94px;
  220. height: 94px;
  221. color: black;
  222. font-size: 30px;
  223. line-height: 47px;
  224. text-align: center;
  225. font-weight: bold;
  226. /*content: "应 对\A威 吓";*/
  227. font-family: var(--font-family);
  228. white-space: pre-wrap;
  229. display: inline-block;
  230. }
  231. /*怪物属性*/
  232. .property,.subproperty{
  233. position:absolute;
  234. left:0;top:0;
  235. width: 100px;
  236. height: 100px;
  237. background-repeat: no-repeat;
  238. background-image: url(images/CARDFRAME2.PNG);
  239. background-position: 100px 100px; /*默认都不显示*/
  240. }
  241. .property[data-property='6']{
  242. background-image: url(images/CARDFRAMEW.PNG);
  243. background-position: 0 0;
  244. }
  245. /*怪物-加值*/
  246. .monster .plus{
  247. color: yellow;
  248. font-size: 17px;
  249. line-height: 17px;
  250. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  251. position: absolute;
  252. left:10px;
  253. }
  254. .null .monster>div,.delay .monster>div{
  255. display:none !important;
  256. }
  257. .monster .plus .hp::before,
  258. .monster .plus .atk::before,
  259. .monster .plus .rcv::before,
  260. .monster .plus.has297::before
  261. {
  262. content: "+";
  263. }
  264. .monster .plus.has297::after{
  265. content: "297";
  266. }
  267. .monster .plus.has297 .hp,
  268. .monster .plus.has297 .atk,
  269. .monster .plus.has297 .rcv
  270. { /*当是297时隐藏3维*/
  271. display:none;
  272. }
  273. /*怪物-觉醒*/
  274. .monster .awoken-count,
  275. .row-mon-awoken .awoken-count
  276. {
  277. color: yellow;
  278. text-shadow: black 0 0 4px;
  279. text-align: center;
  280. background-image: url(images/awoken-count-bg.png);
  281. background-repeat: no-repeat;
  282. width: 34px;
  283. height: 38px;
  284. }
  285. .monster .awoken-count{
  286. position: absolute;
  287. top: -4px;
  288. right: 0;
  289. transform: scale(0.75) translateX(4px);
  290. }
  291. .monster .awoken-count,
  292. .monster .awoken-count.full-awoken::before,
  293. .row-mon-awoken .awoken-count,
  294. .row-mon-awoken .awoken-count.full-awoken::before
  295. {
  296. font-size: 20px;
  297. line-height: 28px;
  298. }
  299. .awoken-count.full-awoken{
  300. font-size: 0;
  301. }
  302. .awoken-count.full-awoken::before{
  303. content: "★";
  304. }
  305. .allowable-assist .awoken-count.full-awoken{
  306. font-size: 0;
  307. text-shadow: none;
  308. background-position-y: -38px;
  309. }
  310. .allowable-assist .awoken-count.full-awoken::before{
  311. content: none;
  312. }
  313. /*武器*/
  314. .monster.wepon .awoken-count.full-awoken{
  315. transform: scale(0.79) translateY(4px);
  316. width:32px;height:32px;
  317. background-image: url(images/awoken.png);
  318. background-position-x: 0;
  319. background-position-y: -1568px;
  320. }
  321. /*怪物-超觉醒*/
  322. .monster .super-awoken{
  323. position: absolute;
  324. right:0;
  325. top: 25px;
  326. transform: scale(0.75) translateX(4px);
  327. }
  328. /*怪物-等级*/
  329. .monster .level{
  330. color: white;
  331. height: 17px;
  332. text-shadow: black 0 0 2px, black 2px 2px 0;
  333. position: absolute;
  334. left: 5px;
  335. bottom: 0;
  336. vertical-align: top;
  337. }
  338. .monster .level,.monster .level.max::before{
  339. font-size: 15px;
  340. line-height: 17px;
  341. }
  342. .monster .level.max{
  343. font-size: 0;
  344. }
  345. .monster .level._110{
  346. color: lightskyblue;
  347. }
  348. /*.monster .level::before{
  349. content: "Lv.";
  350. }.monster .level.max::before{
  351. content: "Lv.最大";
  352. }*/
  353. .monster .id{
  354. display: block;
  355. color: white;
  356. font-family: var(--font-family);
  357. font-size: 15px;
  358. font-weight: 500;
  359. line-height: 17px;
  360. height: 17px;
  361. text-shadow: black 0px 0px 2px,black -1px -1px 1px,black 1px 1px 1px;
  362. position: absolute;
  363. left: 5px;
  364. bottom: 15px;
  365. }
  366. .not-show-mon-id .monster .id{
  367. display: none;
  368. }
  369. .monster .id::before{
  370. font-size: 12px;
  371. }
  372. /*.monster .id::before{
  373. content: "No.";
  374. }*/
  375. .monster .skill::before{
  376. content:"CD";
  377. font-size: 10px;
  378. }
  379. .monster .skill{
  380. font-size: 13px;
  381. line-height: 13px;
  382. color:white;
  383. text-shadow: black 0 0 1px,black 0 0 2px, black 2px 2px 0;
  384. position: absolute;
  385. right:0;
  386. bottom:0;
  387. }
  388. .monster .skill.max-skill{
  389. display: none;
  390. }
  391. .show-mon-skill-cd .monster .skill.max-skill{
  392. display: block;
  393. }
  394. .not-show-awoken-count .formation-box .team-total-info, /*单个队伍血量统计*/
  395. .not-show-awoken-count .formation-box .team-ability, /*单个队伍三维*/
  396. .not-show-awoken-count .formation-box .team-awoken, /*单个队伍觉醒统计*/
  397. .not-show-awoken-count .formation-box .team-total-info /*单个队伍血量统计*/
  398. {
  399. display: none !important;
  400. }
  401. .not-show-awoken-count .formation-box .team-bigbox
  402. {
  403. margin-bottom: 5px;
  404. }
  405. .not-show-awoken-count .formation-box .team-badge
  406. {
  407. position: absolute;
  408. z-index: 10;
  409. }
  410. /*辅助和队伍的每一只框架*/
  411. .member, .acquisitus-awoken-icon{
  412. display: inline-block;
  413. position: relative;
  414. width: var(--head-block-width);
  415. }
  416. .formation-box .monster{
  417. margin: 4px; /*留给队长边框的*/
  418. }
  419. .team-assist, .team-members,.team-badge{
  420. display: inline-block;
  421. }
  422. /* 徽章,平时都隐藏 */
  423. .team-badge li{
  424. display: inline-block;
  425. }
  426. .badge-radio{
  427. display: none;
  428. }
  429. .badge{
  430. display: none;
  431. cursor: pointer;
  432. }
  433. /* 显示所有徽章时则打开 */
  434. .show-all-badges .badge{
  435. display: inline-block;
  436. }
  437. /* 选中的徽章平时也打开 */
  438. .team-badge .badge-radio:checked+.badge{
  439. display: inline-block;
  440. }
  441. /*队伍的背景色*/
  442. .team-1 .team-members,
  443. .team-1 .team-latents,
  444. .team-1 .team-box-name::before,
  445. .team-1 .team-box-name::after
  446. {
  447. background-color: var(--team-1-bgcolor);
  448. }
  449. .team-2 .team-members,
  450. .team-2 .team-latents,
  451. .team-2 .team-box-name::before,
  452. .team-2 .team-box-name::after
  453. {
  454. background-color: var(--team-2-bgcolor);
  455. }
  456. .team-3 .team-members,
  457. .team-3 .team-latents,
  458. .team-3 .team-box-name::before,
  459. .team-3 .team-box-name::after
  460. {
  461. background-color: var(--team-3-bgcolor);
  462. }
  463. .team-bigbox{
  464. position: relative;
  465. font-size:0;
  466. margin-bottom:10px;
  467. }
  468. .team-bigbox:last-of-type{
  469. margin-bottom:0;
  470. }
  471. /*队伍A、B的文字*/
  472. .team-box-name::after,
  473. .team-box-name::before
  474. {
  475. font-size: 30px;
  476. font-weight: bold;
  477. text-align: center;
  478. line-height: 54px;
  479. white-space: pre-wrap;
  480. display: none;
  481. width: var(--head-block-width);
  482. height: var(--head-block-height);
  483. }
  484. .show-team-name-left .team-box-name::before{
  485. display: inline-block;
  486. }
  487. .show-team-name-right .team-box-name::after{
  488. display: inline-block;
  489. }
  490. .reverse-member-assist .team-box-name::after,
  491. .reverse-member-assist .team-box-name::before
  492. {
  493. vertical-align:top;
  494. }
  495. .team-1 .team-box-name::after,
  496. .team-1 .team-box-name::before,
  497. .team-1 .team-assist .member::after,
  498. .team-1 .team-assist .member::before
  499. {
  500. color: var(--team-1-color);
  501. }
  502. .team-2 .team-box-name::after,
  503. .team-2 .team-box-name::before,
  504. .team-2 .team-assist .member::after,
  505. .team-2 .team-assist .member::before
  506. {
  507. color: var(--team-2-color);
  508. /*vertical-align:top;*/
  509. }
  510. .team-3 .team-box-name::after,
  511. .team-3 .team-box-name::before,
  512. .team-3 .team-assist .member::after,
  513. .team-3 .team-assist .member::before
  514. {
  515. color: var(--team-3-color);
  516. }
  517. .team-box{
  518. display: inline-block;
  519. vertical-align:bottom;
  520. }
  521. .team-box .team-assist .member::after,
  522. .team-box .team-assist .member::before
  523. {
  524. width: var(--head-block-width);
  525. text-align: center;
  526. font-size: 18px;
  527. font-weight: bold;
  528. position: relative;
  529. }
  530. /*平时的显示*/
  531. .team-box .team-assist .member::after
  532. {
  533. display: inline-block;
  534. }
  535. .team-box .team-assist .member::before
  536. {
  537. display: none;
  538. }
  539. /*反向时的显示*/
  540. .reverse-member-assist .team-assist .member::after
  541. {
  542. display: none;
  543. }
  544. .reverse-member-assist .team-assist .member::before
  545. {
  546. display: inline-block;
  547. }
  548. .formation-box .formation-total-info,
  549. .formation-box .team-total-info
  550. {
  551. font-size: 15px;
  552. vertical-align: bottom;
  553. }
  554. .formation-box .team-badge .team-total-info
  555. {
  556. display: inline-block;
  557. }
  558. /*
  559. .team-info .tIf-total-hp,.team-info .tIf-total-rcv{
  560. display:inline-block;
  561. }
  562. */
  563. /*队伍的潜觉*/
  564. .team-latents .latents{
  565. width: var(--head-block-width);
  566. display: inline-block;
  567. vertical-align: top;
  568. }
  569. .team-latents .latent-ul{
  570. font-size: 0;
  571. width: 152px;
  572. transform: scale(0.65);
  573. transform-origin: left top;
  574. margin-left: 5px;
  575. margin-bottom: calc(-64px * (1 - 0.65) + 1px);
  576. /*margin: calc(-64px * (1 - 0.63) / 2 + 3px) calc((108px - 152px) / 2);*/
  577. /*-152 * (1 - 0.63) + 108 - 152 * 0.63,化简为108 - 152*/
  578. min-height: 47px; /* 为了防止只有一层6格大潜觉的时候,被缩减太多的问题*/
  579. }
  580. .team-latents .latent-icon
  581. {
  582. margin-top: 3px;
  583. margin-left: 3px;
  584. margin-right: 3px;
  585. }
  586. .team-latents .latent-icon[data-latent-icon='12'],
  587. .team-latents .latent-icon[data-latent-icon='13'],
  588. .team-latents .latent-icon[data-latent-icon='14'],
  589. .team-latents .latent-icon[data-latent-icon='15'],
  590. .team-latents .latent-icon[data-latent-icon='16'],
  591. .team-latents .latent-icon[data-latent-icon='17'],
  592. .team-latents .latent-icon[data-latent-icon='18'],
  593. .team-latents .latent-icon[data-latent-icon='19'],
  594. .team-latents .latent-icon[data-latent-icon='20'],
  595. .team-latents .latent-icon[data-latent-icon='21'],
  596. .team-latents .latent-icon[data-latent-icon='22'],
  597. .team-latents .latent-icon[data-latent-icon='23'],
  598. .team-latents .latent-icon[data-latent-icon='24'],
  599. .team-latents .latent-icon[data-latent-icon='25'],
  600. .team-latents .latent-icon[data-latent-icon='26'],
  601. .team-latents .latent-icon[data-latent-icon='27'],
  602. .team-latents .latent-icon[data-latent-icon='28'],
  603. .team-latents .latent-icon[data-latent-icon='29'],
  604. .team-latents .latent-icon[data-latent-icon='30'],
  605. .team-latents .latent-icon[data-latent-icon='31'],
  606. .team-latents .latent-icon[data-latent-icon='32'],
  607. .team-latents .latent-icon[data-latent-icon='33'],
  608. .team-latents .latent-icon[data-latent-icon='34'],
  609. .team-latents .latent-icon[data-latent-icon='35'],
  610. .team-latents .latent-icon[data-latent-icon='36'],
  611. .team-latents .latent-icon[data-latent-icon='37'],
  612. .team-latents .latent-icon[data-latent-icon='38'],
  613. .team-latents .latent-icon[data-latent-icon='39']
  614. {
  615. margin-left: 0;
  616. margin-right: 0;
  617. }
  618. .team-latents .latent-ul .latent-icon[data-latent-icon='13']::before,
  619. .team-latents .latent-ul .latent-icon[data-latent-icon='14']::before,
  620. .team-latents .latent-ul .latent-icon[data-latent-icon='15']::before,
  621. .team-latents .latent-ul .latent-icon[data-latent-icon='37']::before,
  622. .team-latents .latent-ul .latent-icon[data-latent-icon='38']::before
  623. { /*6格的潜觉*/
  624. width: 152px;
  625. margin-left: -50px;
  626. margin-right: 47px;
  627. }
  628. .team-latents .latent-ul .latent-icon[data-latent-icon='13'],
  629. .team-latents .latent-ul .latent-icon[data-latent-icon='14'],
  630. .team-latents .latent-ul .latent-icon[data-latent-icon='15'],
  631. .team-latents .latent-ul .latent-icon[data-latent-icon='37'],
  632. .team-latents .latent-ul .latent-icon[data-latent-icon='38']
  633. {
  634. border-radius: 5px 5px 5px 0;
  635. box-shadow: black 1px 1px 1px;
  636. }
  637. .team-latents .latent-icon[data-latent-icon='13']+.latent-icon,
  638. .team-latents .latent-icon[data-latent-icon='14']+.latent-icon,
  639. .team-latents .latent-icon[data-latent-icon='15']+.latent-icon,
  640. .team-latents .latent-icon[data-latent-icon='37']+.latent-icon,
  641. .team-latents .latent-icon[data-latent-icon='38']+.latent-icon
  642. {
  643. width: 76px;
  644. margin-left: 0;
  645. margin-right: 0;
  646. display: inline-block !important;
  647. background: linear-gradient(#2277EE , #1155AA 80%);
  648. border-color: #CCEEFF;
  649. box-shadow: black 1px 1px 1px;
  650. border-radius: 0 0 5px 5px;
  651. border-top: none;
  652. margin-top: 4px;;
  653. transform: translatey(-4px) scaley(1.2);
  654. }
  655. .team-latents .latent-icon[data-latent-icon='13']+.latent-icon::before,
  656. .team-latents .latent-icon[data-latent-icon='14']+.latent-icon::before,
  657. .team-latents .latent-icon[data-latent-icon='15']+.latent-icon::before,
  658. .team-latents .latent-icon[data-latent-icon='37']+.latent-icon::before,
  659. .team-latents .latent-icon[data-latent-icon='38']+.latent-icon::before
  660. {
  661. background: none;
  662. }
  663. /*队长的边框*/
  664. .team-box .team-members .team-leader .monster{
  665. border-radius: 10px;
  666. border-width:4px;
  667. border-style:solid;
  668. box-sizing: initial;
  669. margin: 0;
  670. }
  671. .team-1 .team-members .team-leader .monster{
  672. border-color: var(--team-1-color);
  673. }
  674. .team-2 .team-members .team-leader .monster{
  675. border-color: var(--team-2-color);
  676. }
  677. .team-3 .team-members .team-leader .monster{
  678. border-color: var(--team-3-color);
  679. }
  680. /*三维计算值*/
  681. .team-ability::after,
  682. .team-ability::before,
  683. .team-ability .abilitys
  684. {
  685. padding-left: 5px;
  686. box-sizing: border-box;
  687. font-size: 15px;
  688. width: var(--head-block-width);
  689. }
  690. .team-ability .abilitys
  691. {
  692. display: inline-block;
  693. }
  694. .team-ability::after,
  695. .team-ability::before
  696. {
  697. display: none;
  698. content: "";
  699. }
  700. .show-team-name-left .team-ability::before{
  701. display: inline-block;
  702. }
  703. .show-team-name-right .team-ability::after{
  704. display: inline-block;
  705. }
  706. .abilitys .hp::before,
  707. .abilitys .atk::before,
  708. .abilitys .rcv::before
  709. {
  710. width: 45px;
  711. display: inline-block;
  712. }
  713. /*.abilitys .hp::before{
  714. content: "HP:";
  715. }
  716. .abilitys .atk::before{
  717. content: "攻击:";
  718. }
  719. .abilitys .rcv::before{
  720. content: "回复:";
  721. }*/
  722. /*编辑窗口*/
  723. .blur-bg{
  724. filter:blur(5px);
  725. pointer-events: none;
  726. }
  727. .guide-mod .blur-bg{
  728. filter: unset;
  729. }
  730. .edit-box{
  731. background-color: rgba(82, 53, 30, 0.8);
  732. color: white;
  733. position: absolute;
  734. left:0;
  735. top:0;
  736. width:100%;
  737. box-sizing: border-box;
  738. min-width:664px;
  739. }
  740. .guide-mod .edit-box{
  741. background-color: rgb(102, 73, 50);
  742. }
  743. .edit-box-title{
  744. text-align: center;
  745. font-size: 2em;
  746. font-weight: bold;
  747. }
  748. .guide-mod .edit-box-title,
  749. .guide-mod .button-box .button-null,
  750. .guide-mod .button-box .button-delay,
  751. .guide-mod .button-box .button-done
  752. {
  753. display: none;
  754. }
  755. /*.edit-box .edit-box-title::before{
  756. content: "修改队员";
  757. }
  758. .edit-box .edit-box-title.edit-box-title-assist::before{
  759. content: "修改辅助";
  760. }*/
  761. .edit-box .monsterinfo-box{
  762. font-family: var(--game-font-family);
  763. color: white;
  764. text-shadow: black 2px 2px 0;
  765. min-height: 100px;
  766. background-image: linear-gradient(#798421,#394914);
  767. border-top: #B1BB39 solid 4px;
  768. border-bottom: #72941D ridge 7px;
  769. box-shadow: black 0 3px 3px;
  770. padding: 5px 10px;
  771. }
  772. .edit-box .search-box,
  773. .edit-box .setting-box{
  774. padding: 10px;
  775. position: relative;
  776. }
  777. /*.edit-box .setting-box .row-mon-id::before{
  778. content: "▼怪物ID";
  779. }*/
  780. .edit-box .setting-box .row-mon-id .m-id{
  781. box-sizing: border-box;
  782. font-size: 25px;
  783. height: 40px;
  784. width: calc(100% - 50px);
  785. }
  786. .edit-box .setting-box .row-mon-id .search-by-string{
  787. box-sizing: border-box;
  788. font-size: 25px;
  789. height: 40px;
  790. width: 45px;
  791. margin-left: 5px;
  792. padding: 0;
  793. }
  794. .edit-box .setting-box .row-mon-id .search-by-string::before{
  795. content: "🔍";
  796. }
  797. .edit-box .setting-box .row-mon-id .unable-monster{
  798. pointer-events: none;
  799. opacity: 0.5;
  800. }
  801. .edit-box .setting-box .row-mon-id .unable-monster .monster{
  802. box-sizing: border-box;
  803. border: 5px solid red;
  804. border-radius: 10px;
  805. overflow: hidden;
  806. }
  807. .edit-box .setting-box .row-mon-id .unable-monster .id{
  808. display: none;
  809. }
  810. .edit-box .setting-box .row-mon-id .search-button{
  811. width: 100%;
  812. height: 40px;
  813. font-size: 25px;
  814. }
  815. .edit-box .setting-box .row-mon-id .evo-card-list>li,
  816. .edit-box .search-box .search-mon-list>li
  817. {
  818. display: inline-block;
  819. vertical-align: top;
  820. margin: 2px;
  821. }
  822. .detail-mon{
  823. display: inline-block;
  824. vertical-align: bottom;
  825. }
  826. .edit-box .setting-box .row-mon-id .evo-card-list .monster,
  827. .edit-box .search-box .search-mon-list .monster,
  828. .detail-mon .monster,
  829. .mask-evolutionary-tree .evo-panel-left>.monster-head>.monster
  830. {
  831. float: none;
  832. transform: scale(0.75);
  833. margin: calc(-100px * (1 - 0.75) / 2);
  834. }
  835. .edit-box .setting-box .row-mon-id .evo-card-list .monster .id,
  836. .edit-box .search-box .search-mon-list .monster .id,
  837. .detail-mon .monster .id{
  838. bottom: 5px;
  839. font-size: 20px;
  840. }
  841. .detail-box .detail-mon{
  842. width: 50px;
  843. height: 50px;
  844. }
  845. .detail-box .detail-mon .monster{
  846. transform: scale(0.5);
  847. margin: calc(-100px * (1 - 0.5) / 2);
  848. }
  849. .detail-box .detail-mon .monster .id{
  850. font-weight: bold;
  851. font-size: 23px;
  852. }
  853. .detail-box .detail-mon .monster .id::before {
  854. font-size: 15px;
  855. }
  856. /*搜索结果显示觉醒列表的相关css*/
  857. .awoken-preview .awoken-ul{
  858. width: 75px;
  859. }
  860. .awoken-preview .awoken-ul>li{
  861. display: inline-block;
  862. }
  863. .awoken-preview .awoken-preview-superAwakenings{
  864. margin-top:3px;
  865. background-color: #432;
  866. }
  867. .awoken-preview .awoken-preview-superAwakenings .awoken-icon{
  868. opacity: 0.6;
  869. }
  870. .awoken-preview .awoken-ul li{
  871. margin: 0.5px !important;
  872. }
  873. .awoken-preview .awoken-icon{
  874. filter: unset;
  875. transform: scale(0.75);
  876. margin: calc(-32px * (1 - 0.75) / 2);
  877. }
  878. .cd-preview .cd-max,
  879. .cd-preview .cd-min
  880. {
  881. font-size: 14px;
  882. }
  883. .cd-preview .cd-min::after
  884. {
  885. content: "-";
  886. }
  887. .cd-preview,
  888. .add-show-CD-label
  889. {
  890. color: lightblue;
  891. }
  892. .abilities-preview>li
  893. {
  894. font-size: 14px;
  895. }
  896. .cd-preview::before,
  897. .abilities-preview>li::before
  898. {
  899. font-size: 10px;
  900. display: inline-block;
  901. width: 25px;
  902. }
  903. .add-show-abilities-with-awoken-label,
  904. .abilities-with-awoken-preview>li
  905. {
  906. color: #dfd;
  907. }
  908. /*.setting-box .row-mon-id .open-search::before{
  909. content: "搜索怪物";
  910. }
  911. .search-box::before{
  912. content: "▼简易搜索";
  913. }
  914. */
  915. .search-box::before{
  916. font-weight: bold;
  917. font-size: 1.2em;
  918. }
  919. .search-box>div{
  920. margin-bottom: 5px;
  921. }
  922. .search-box .attrs-div-div>ul{
  923. display: block;
  924. }
  925. .search-box>div>ul>li{
  926. display: inline-block;
  927. vertical-align: top;
  928. font-size:16px;
  929. overflow: hidden;
  930. }
  931. .search-box>div>ul>li>label{
  932. cursor: pointer;
  933. display: block;
  934. text-align: center;
  935. }
  936. .attrs-div .attr-list-1::before,
  937. .attrs-div .attr-list-2::before,
  938. .types-div::before,
  939. .awoken-div::before,
  940. .sawoken-div::before{
  941. /*float: left;*/
  942. font-size: 16px;
  943. /*width: 55px;*/
  944. margin-right: 3px;
  945. display: inline-block;
  946. }
  947. /*.search-box .attrs-div-div .attr-list-1::before{
  948. content: "属性1";
  949. }
  950. .search-box .attrs-div-div .attr-list-2::before{
  951. content: "属性2";
  952. }
  953. .search-box .attrs-div-div .fix-main-color-label::after{
  954. content: "限制属性1为主属性,属性2为副属性";
  955. }*/
  956. .attr-radio,
  957. .type-check,
  958. .rare-check,
  959. .sawoken-check
  960. {
  961. display: none;
  962. }
  963. .attrs-div .attr-list{
  964. font-size:0;
  965. }
  966. .attrs-div .attr-list>li{
  967. border: 1px solid white;
  968. border-left: none;
  969. background: #947244;
  970. }
  971. .attrs-div .attr-list>li:hover{
  972. background: #E9CB9E;
  973. }
  974. .attrs-div .attr-list>li:first-of-type{
  975. border-radius: 8px 0 0 8px;
  976. border-left: 1px solid white;
  977. }
  978. .attrs-div .attr-list>li:last-of-type{
  979. border-radius: 0 8px 8px 0;
  980. }
  981. .attrs-div .attr-list>li>label
  982. {
  983. width: 55px;
  984. height: 32px;
  985. line-height:32px;
  986. text-align: center;
  987. vertical-align: middle;
  988. }
  989. .attrs-div .attr-list input:checked+label{
  990. background-color:#8C4242;
  991. box-shadow: inset black 0 0 5px;
  992. cursor: auto;
  993. }
  994. .attr-list-1{
  995. margin-bottom: 5px;
  996. }
  997. /*.search-box .types-div::before{
  998. content: "类型";
  999. }*/
  1000. .types-div .type-list,
  1001. .types-div .latent-list,
  1002. .rare-div .rare-list
  1003. {
  1004. display: inline-block;
  1005. }
  1006. .types-div .type-list input+label
  1007. {
  1008. opacity: var(--search-icon-unchecked);
  1009. }
  1010. .types-div .type-list input:checked+label
  1011. {
  1012. opacity: 1;
  1013. }
  1014. .types-div .type-and-or-label{
  1015. margin-left: 10px;
  1016. margin-right: 0;
  1017. }
  1018. .types-div .type-list>li
  1019. {
  1020. position: relative;
  1021. }
  1022. .types-div .type-list>li:after
  1023. {
  1024. content: "⚔️";
  1025. font-size: 10px;
  1026. position: absolute;
  1027. right: 0;
  1028. bottom: 0;
  1029. display: none;
  1030. pointer-events:none;
  1031. }
  1032. /*不同type允许的杀*/
  1033. .types-div .type-list.type-killer-5 li[data-type-icon="7"]:after,
  1034. .types-div .type-list.type-killer-4 li[data-type-icon="8"]:after,
  1035. .types-div .type-list.type-killer-4 li[data-type-icon="3"]:after,
  1036. .types-div .type-list.type-killer-7 li[data-type-icon="5"]:after,
  1037. .types-div .type-list.type-killer-8 li[data-type-icon="5"]:after,
  1038. .types-div .type-list.type-killer-8 li[data-type-icon="1"]:after,
  1039. .types-div .type-list.type-killer-1 li[data-type-icon="5"]:after,
  1040. .types-div .type-list.type-killer-1 li[data-type-icon="4"]:after,
  1041. .types-div .type-list.type-killer-1 li[data-type-icon="7"]:after,
  1042. .types-div .type-list.type-killer-1 li[data-type-icon="8"]:after,
  1043. .types-div .type-list.type-killer-1 li[data-type-icon="1"]:after,
  1044. .types-div .type-list.type-killer-1 li[data-type-icon="6"]:after,
  1045. .types-div .type-list.type-killer-1 li[data-type-icon="2"]:after,
  1046. .types-div .type-list.type-killer-1 li[data-type-icon="3"]:after,
  1047. .types-div .type-list.type-killer-6 li[data-type-icon="7"]:after,
  1048. .types-div .type-list.type-killer-6 li[data-type-icon="2"]:after,
  1049. .types-div .type-list.type-killer-2 li[data-type-icon="8"]:after,
  1050. .types-div .type-list.type-killer-2 li[data-type-icon="3"]:after,
  1051. .types-div .type-list.type-killer-3 li[data-type-icon="4"]:after,
  1052. .types-div .type-list.type-killer-3 li[data-type-icon="6"]:after
  1053. {
  1054. display: block;
  1055. }
  1056. .types-div .latent-list .latent-icon
  1057. {
  1058. cursor: pointer;
  1059. box-shadow: none;
  1060. }
  1061. .types-div .latent-list .latent-icon:before
  1062. {
  1063. margin-left: -23px;
  1064. margin-right: -25px;
  1065. margin-top: -3px;
  1066. margin-bottom: -5px;
  1067. }
  1068. .rare-div .rare-icon
  1069. {
  1070. font-family: var(--game-font-family);
  1071. color: white;
  1072. width: 26px;
  1073. height: 26px;
  1074. box-sizing: border-box;
  1075. line-height: 26px;
  1076. position: relative;
  1077. text-align: center;
  1078. display: inline-block;
  1079. cursor: pointer;
  1080. }
  1081. .rare-radio
  1082. {
  1083. display: none;
  1084. }
  1085. .rare-radio[name="rare-low"]~.rare-icon
  1086. {
  1087. opacity: var(--search-icon-unchecked);
  1088. }
  1089. .rare-radio[name="rare-low"]:checked~.rare-icon
  1090. {
  1091. opacity: 1;
  1092. }
  1093. .rare-radio[name="rare-high"]:checked~.rare-icon
  1094. {
  1095. opacity: var(--search-icon-unchecked);
  1096. }
  1097. .rare-div .rare-icon::before
  1098. {
  1099. content: "★";
  1100. color: gold;
  1101. text-shadow: goldenrod 0 0 2px;
  1102. position: absolute;
  1103. font-size: 26px;
  1104. left: 0;
  1105. top: 0;
  1106. }
  1107. .rare-div .rare-icon::after
  1108. {
  1109. color: white;
  1110. text-shadow: black 0 0 4px;
  1111. font-size: 18px;
  1112. position: relative;
  1113. left: 0;
  1114. top: 0;
  1115. }
  1116. .rare-icon[data-rare-icon="1"]::after
  1117. {
  1118. content: "1";
  1119. }
  1120. .rare-icon[data-rare-icon="2"]::after
  1121. {
  1122. content: "2";
  1123. }
  1124. .rare-icon[data-rare-icon="3"]::after
  1125. {
  1126. content: "3";
  1127. }
  1128. .rare-icon[data-rare-icon="4"]::after
  1129. {
  1130. content: "4";
  1131. }
  1132. .rare-icon[data-rare-icon="5"]::after
  1133. {
  1134. content: "5";
  1135. }
  1136. .rare-icon[data-rare-icon="6"]::after
  1137. {
  1138. content: "6";
  1139. }
  1140. .rare-icon[data-rare-icon="7"]::after
  1141. {
  1142. content: "7";
  1143. }
  1144. .rare-icon[data-rare-icon="8"]::after
  1145. {
  1146. content: "8";
  1147. }
  1148. .rare-icon[data-rare-icon="9"]::after
  1149. {
  1150. content: "9";
  1151. }
  1152. .rare-icon[data-rare-icon="10"]::after
  1153. {
  1154. content: "10";
  1155. }
  1156. /*.search-box .awoken-div::before{
  1157. content: "觉醒";
  1158. }*/
  1159. .search-box .awoken-div .awoken-option
  1160. {
  1161. display: inline;
  1162. }
  1163. .search-box .awoken-div .awoken-clear::before,
  1164. .search-box .sawoken-div .sawoken-clear::before
  1165. {
  1166. content: "❌";
  1167. }
  1168. .search-box .awoken-div .awoken-clear,
  1169. .search-box .sawoken-div .sawoken-clear
  1170. {
  1171. padding: 0;
  1172. float: right;
  1173. }
  1174. .awoken-div .awoken-ul.official-awoken-sorting
  1175. {
  1176. width: 620px;
  1177. }
  1178. .awoken-ul .awoken-count
  1179. {
  1180. font-size: 16px;
  1181. line-height: 32px;
  1182. font-family: var(--game-font-family);
  1183. display: inline-block;
  1184. margin-right: 3px;
  1185. }
  1186. .awoken-ul .count
  1187. {
  1188. height: 32px;
  1189. width: 37px;
  1190. display: inline-block;
  1191. vertical-align: middle;
  1192. }
  1193. .awoken-ul .count::before,
  1194. .search-box .awoken-div .count-symbol::before
  1195. {
  1196. content: "×";
  1197. }
  1198. .search-box .awoken-ul button,
  1199. .search-box .awoken-ul input[type='button']
  1200. {
  1201. border: none;
  1202. background-color: unset;
  1203. font-family: var(--game-font-family);
  1204. color: white;
  1205. line-height: 32px;
  1206. font-size: 16px;
  1207. padding: 0;
  1208. text-align: left;
  1209. }
  1210. .search-box .awoken-ul .awoken-count.zero{
  1211. opacity: var(--search-icon-unchecked);
  1212. }
  1213. .search-box .awoken-ul .count{
  1214. width: 1em;
  1215. height: auto;
  1216. }
  1217. .search-box .awoken-ul .awoken-count .awoken-icon,
  1218. .search-box .awoken-ul .awoken-count .count-symbol,
  1219. .search-box .awoken-ul .awoken-count .count-symbol .count
  1220. {
  1221. cursor: pointer;
  1222. display: inline-block;
  1223. vertical-align: bottom;
  1224. }
  1225. .search-box .awoken-ul .awoken-count.zero .count-symbol,
  1226. .search-box .awoken-ul .awoken-count.zero .count-symbol .count
  1227. {
  1228. cursor: auto;
  1229. }
  1230. /*.search-box .sawoken-div::before{
  1231. content: "超觉醒";
  1232. }*/
  1233. .sawoken-div .sawoken-ul.official-awoken-sorting
  1234. {
  1235. width: 350px;
  1236. }
  1237. .sawoken-div .sawoken-ul li label{
  1238. opacity: var(--search-icon-unchecked);
  1239. }
  1240. .sawoken-div .sawoken-ul input:checked+label{
  1241. opacity: 1;
  1242. }
  1243. .sawoken-div .sawoken-ul .awoken-count
  1244. {
  1245. margin-right: 5px;
  1246. }
  1247. .control-div button{
  1248. font-size: 20px;
  1249. }
  1250. .control-div .search-start{
  1251. float: right;
  1252. margin-left: 5px;
  1253. }
  1254. /*.control-div .search-start::before{
  1255. content: "开始搜索";
  1256. }
  1257. .control-div .search-clear::before{
  1258. content: "清空搜索条件";
  1259. }
  1260. .control-div .search-close::before{
  1261. content: "关闭搜索";
  1262. }*/
  1263. .search-box .search-mon-list{
  1264. border: 1px solid white;
  1265. border-radius: 5px;
  1266. background: grey;
  1267. }
  1268. .search-mon-list .search-list-length::before
  1269. {
  1270. margin-left:4px;
  1271. }
  1272. .guide-mod .search-box .search-mon-list{
  1273. max-height: 790px;
  1274. overflow: auto;
  1275. }
  1276. .search-mon-list.only-display-can-assist>li
  1277. {
  1278. opacity: 0.25;
  1279. }
  1280. .search-mon-list.only-display-can-assist>li.allowable-assist
  1281. {
  1282. opacity: 1;
  1283. }
  1284. .setting-box .row-mon-id .open-search{
  1285. float: right;
  1286. }
  1287. .can-assist-label,
  1288. .sort-reverse-label
  1289. {
  1290. margin-left: 5px;
  1291. }
  1292. .edit-box .setting-row{
  1293. width: 100%;
  1294. }
  1295. .monsterinfo-box .monster-head{
  1296. float: left;
  1297. margin-right:5px;
  1298. }
  1299. .monsterinfo-box .monsterinfo-line>div
  1300. {
  1301. display:inline-block;
  1302. vertical-align: top;
  1303. font-size: 22px;
  1304. line-height: 22px;
  1305. }
  1306. .monsterinfo-box .monster-id{
  1307. width:120px;
  1308. }
  1309. .monsterinfo-box .monster-seriesId,
  1310. .monsterinfo-box .monster-collabId,
  1311. .monsterinfo-box .monster-altName
  1312. {
  1313. cursor: pointer;
  1314. font-size: 14px;
  1315. line-height: 16px;
  1316. vertical-align: bottom;
  1317. max-width: 270px;
  1318. white-space:nowrap;
  1319. text-overflow:ellipsis;
  1320. overflow:hidden;
  1321. }
  1322. .monsterinfo-box .monster-seriesId:hover::after,
  1323. .monsterinfo-box .monster-collabId:hover::after,
  1324. .monsterinfo-box .monster-altName:hover::after
  1325. {
  1326. content: "🔍";
  1327. }
  1328. /*.monsterinfo-box .monster-id::before{
  1329. content: "No.";
  1330. }*/
  1331. .monsterinfo-box .monster-rare{
  1332. width: 260px;
  1333. }
  1334. .monsterinfo-box .monster-rare::before,
  1335. .monsterinfo-box .monster-rare::after
  1336. {
  1337. color:gold;
  1338. text-shadow: black 0 0 3px,black 0 2px 3px;
  1339. }
  1340. .monsterinfo-box .monster-rare::before
  1341. {
  1342. display: inline-block;
  1343. width: 30px;
  1344. text-align: right;
  1345. }
  1346. .monster-rare[data-rarity='1']::after{content: "★";}
  1347. .monster-rare[data-rarity='2']::after{content: "★★";}
  1348. .monster-rare[data-rarity='3']::after{content: "★★★";}
  1349. .monster-rare[data-rarity='4']::after{content: "★★★★";}
  1350. .monster-rare[data-rarity='5']::after{content: "★★★★★";}
  1351. .monster-rare[data-rarity='6']::after{content: "★★★★★★";}
  1352. .monster-rare[data-rarity='7']::after{content: "★★★★★★★";}
  1353. .monster-rare[data-rarity='8']::after{content: "★★★★★★★★";}
  1354. .monster-rare[data-rarity='9']::after{content: "★★★★★★★★★";}
  1355. .monster-rare[data-rarity='10']::after{content: "★★★★★★★★★★";}
  1356. .monster-rare[data-rarity='1']::before{content: "1";}
  1357. .monster-rare[data-rarity='2']::before{content: "2";}
  1358. .monster-rare[data-rarity='3']::before{content: "3";}
  1359. .monster-rare[data-rarity='4']::before{content: "4";}
  1360. .monster-rare[data-rarity='5']::before{content: "5";}
  1361. .monster-rare[data-rarity='6']::before{content: "6";}
  1362. .monster-rare[data-rarity='7']::before{content: "7";}
  1363. .monster-rare[data-rarity='8']::before{content: "8";}
  1364. .monster-rare[data-rarity='9']::before{content: "9";}
  1365. .monster-rare[data-rarity='10']::before{content: "10";}
  1366. .monsterinfo-box .monster-mp::before
  1367. {
  1368. content: " ";
  1369. background-image: url(images/icon-MP.png);
  1370. background-size: cover;
  1371. display: inline-block;
  1372. width: 24px;
  1373. height: 24px;
  1374. vertical-align: top;
  1375. }
  1376. .monsterinfo-box .monster-type {
  1377. display: inline;
  1378. }
  1379. .monsterinfo-box .monster-type .type-name{
  1380. display:inline-block;
  1381. margin-right: 10px;
  1382. }
  1383. .monsterinfo-box .monster-type .type-icon{
  1384. margin-right:3px;
  1385. }
  1386. .monsterinfo-box .monster-type .type-name::after{
  1387. vertical-align: middle;
  1388. font-size: 22px;
  1389. line-height: 22px;
  1390. }
  1391. /*
  1392. .edit-box .setting-box .row-mon-awoken::before{
  1393. content: "▼怪物觉醒";
  1394. }
  1395. */
  1396. .row-mon-awoken{
  1397. margin-right: 20px;
  1398. }
  1399. .row-mon-awoken .awoken-ul, .row-mon-super-awoken .awoken-ul{
  1400. font-size: 0;
  1401. height: 32px;
  1402. }
  1403. .edit-box .awoken-ul .awoken-icon,
  1404. .edit-box .awoken-count
  1405. {
  1406. cursor: pointer;
  1407. }
  1408. .row-mon-awoken .awoken-count.full-awoken{
  1409. font-size: 0;
  1410. }
  1411. .row-mon-awoken .awoken-count,
  1412. .row-mon-awoken .awoken-count.full-awoken::before
  1413. {
  1414. font-size: 22px;
  1415. line-height: 28px;
  1416. }
  1417. .row-mon-awoken .awoken-count{
  1418. transform: scale(0.84) translateY(-2px);
  1419. }
  1420. .row-mon-awoken .awoken-count,
  1421. .row-mon-awoken .awoken-icon
  1422. {
  1423. vertical-align: top;
  1424. }
  1425. /*选中的觉醒后面部分半透明,前面的不透明*/
  1426. .row-mon-awoken .awoken-number{display:none;}
  1427. .row-mon-awoken .awoken-number:checked~label
  1428. {
  1429. opacity: var(--search-icon-unchecked);
  1430. }
  1431. /*.edit-box .setting-box .row-mon-super-awoken::before{
  1432. content: "▼超觉醒";
  1433. }*/
  1434. .row-mon-awoken,
  1435. .row-mon-super-awoken
  1436. {
  1437. display: inline-block;
  1438. box-sizing: border-box;
  1439. vertical-align: top;
  1440. }
  1441. .row-mon-awoken .awoken-icon,
  1442. .row-mon-super-awoken .awoken-icon
  1443. {
  1444. margin-right: 5px;
  1445. }
  1446. .row-mon-awoken .awoken-icon:last-of-type,
  1447. .row-mon-super-awoken .awoken-icon:last-of-type
  1448. {
  1449. margin-left: unset;
  1450. }
  1451. /*未选中的超觉醒半透明,选中的不透明*/
  1452. .row-mon-super-awoken .sawoken-choice{display:none;}
  1453. .row-mon-super-awoken .sawoken-choice+label
  1454. {
  1455. opacity: var(--search-icon-unchecked);
  1456. }
  1457. .row-mon-super-awoken .sawoken-choice:checked+label
  1458. {
  1459. opacity: unset;
  1460. }
  1461. /*怪物能力横条*/
  1462. /*.row-ability{
  1463. border-color: #D5AF5B;
  1464. border-style: solid;
  1465. border-width: var(--border-width);
  1466. border-radius: 8px;
  1467. background-color: #B68E4A;
  1468. background-image: radial-gradient(ellipse at top,#B68E4A, #60492C);
  1469. }*/
  1470. /*.edit-box .setting-box .row-mon-ability::before{
  1471. content: "▼怪物能力";
  1472. }*/
  1473. .row-mon-ability ul{
  1474. margin-top: var(--border-width);
  1475. }
  1476. .row-mon-ability ul li::before{
  1477. width: 55px;
  1478. display: inline-block;
  1479. }
  1480. .row-mon-ability .ability-value{
  1481. width: 85px;
  1482. display: inline-block;
  1483. text-align: right;
  1484. }
  1485. .edit-box .setting-box .row-mon-plus::before{
  1486. /*content: "▼怪物加值";*/
  1487. display:block;
  1488. }
  1489. .row-mon-ability ul,
  1490. .row-mon-plus ul,
  1491. .row-mon-level .level-value,
  1492. .row-mon-level .monster-cost
  1493. {
  1494. font-family: var(--game-font-family );
  1495. font-size: 22px;
  1496. line-height: 35px;
  1497. text-shadow: black 2px 2px 0;
  1498. }
  1499. .row-mon-level .monster-cost
  1500. {
  1501. background-color: #2F2B28;
  1502. border: solid 3px #563E22;
  1503. border-radius: 12px;
  1504. padding: 0 5px;
  1505. font-size: 0.8em;
  1506. box-shadow: inset 0 3px 3px black;
  1507. }
  1508. .row-mon-plus .plus-box{
  1509. border-color: #A07740;
  1510. border-style: solid;
  1511. border-width: var(--border-width);
  1512. border-radius: 8px;
  1513. background-color: #44392C;
  1514. box-shadow: inset black 0 3px 5px;
  1515. white-space: nowrap; /*避免纵向297跑到下一行*/
  1516. }
  1517. .row-mon-plus li{
  1518. height: 35px;
  1519. padding: 0 5px;
  1520. }
  1521. /*.m-plus-hp-li::before{content: "HP";}
  1522. .m-plus-atk-li::before{content: "攻击";}
  1523. .m-plus-rcv-li::before{content: "回复";}*/
  1524. .row-mon-plus .plus-value{
  1525. color: yellow;
  1526. }
  1527. .row-mon-plus .plus-value::before{content: "(+";}
  1528. .row-mon-plus .plus-value::after{content: ")";}
  1529. .row-mon-plus .plus-value input
  1530. {
  1531. color: inherit;
  1532. font-family: inherit;
  1533. font-size: inherit;
  1534. text-shadow: inherit;
  1535. box-sizing: border-box;
  1536. width: 2em;
  1537. line-height: 30px;
  1538. height: 30px;
  1539. padding: 0;
  1540. -moz-appearance: textfield; /*火狐去掉数字加减*/
  1541. }
  1542. /*webkit去掉数字加减*/
  1543. .row-mon-plus .plus-value input::-webkit-outer-spin-button,
  1544. .row-mon-plus .plus-value input::-webkit-inner-spin-button{
  1545. -webkit-appearance: none !important;
  1546. margin: 0;
  1547. }
  1548. .row-mon-plus .m-plus-btn::before,
  1549. .row-mon-plus .m-plus-btn-297 span::before
  1550. {
  1551. content: "+";
  1552. }
  1553. .row-mon-plus .m-plus-btn
  1554. {
  1555. padding: 0 3px;
  1556. box-sizing: border-box;
  1557. font-size: inherit;
  1558. line-height: 20px;;
  1559. height: 30px;
  1560. }
  1561. .m-plus-btn-297{
  1562. padding: 0;
  1563. box-sizing: border-box;
  1564. height: 105px;
  1565. font-size: 22px;
  1566. writing-mode: vertical-lr;
  1567. min-width: 32px; /*先给297一个默认宽度*/
  1568. }
  1569. .m-plus-btn-297 span{
  1570. /*Chrome浏览器不支持按钮本身的纵向,只能加一层*/
  1571. -webkit-writing-mode: vertical-lr;
  1572. }
  1573. .row-mon-plus .plus-box ul,
  1574. .m-plus-btn-297
  1575. {
  1576. display: inline-block;
  1577. vertical-align: top;
  1578. }
  1579. /*.edit-box .setting-box .row-mon-level::before{
  1580. content: "▼怪物等级";
  1581. }*/
  1582. .row-mon-level
  1583. {
  1584. margin-left: 10px;
  1585. }
  1586. .row-mon-level .subrow
  1587. {
  1588. font-family: var(--game-font-family );
  1589. font-size: 22px;
  1590. line-height: 35px;
  1591. }
  1592. /*.row-mon-level .level-value::before{
  1593. content: "Lv.";
  1594. }*/
  1595. .edit-box .setting-box .m-level
  1596. {
  1597. color: inherit;
  1598. font-family: inherit;
  1599. font-size: inherit;
  1600. text-shadow: inherit;
  1601. box-sizing: border-box;
  1602. line-height: inherit;
  1603. width: 100px;
  1604. height: 40px;
  1605. }
  1606. .m-level-btn-min,
  1607. .m-level-btn-max,
  1608. .m-level-btn-110
  1609. {
  1610. box-sizing: border-box;
  1611. font-size: 18px;
  1612. padding: 0 3px;
  1613. }
  1614. .m-level-btn-110
  1615. {
  1616. color: blue;
  1617. }
  1618. /*
  1619. .m-level-exp::before{
  1620. content: "需要经验:";
  1621. }
  1622. .m-level-btn-max::before{
  1623. content: "最高Lv";
  1624. }
  1625. */
  1626. .row-mon-ability,
  1627. .row-mon-plus,
  1628. .row-mon-level
  1629. {
  1630. display: inline-block;
  1631. box-sizing: border-box;
  1632. vertical-align: top;
  1633. }
  1634. .m-level,
  1635. .m-plus-hp,.m-plus-atk,.m-plus-rcv,
  1636. .m-skill-level
  1637. {
  1638. border: 1px solid grey;
  1639. background: none;
  1640. }
  1641. /*.edit-box .setting-box .row-mon-latent::before{
  1642. content: "▼潜在觉醒";
  1643. }*/
  1644. .m-latent-ul-div{
  1645. text-align: center;
  1646. }
  1647. .m-latent-ul{
  1648. font-size: 0;
  1649. display: inline-block;
  1650. background: rgba(88,75,56,154);
  1651. border: 2px ridge #94733f;
  1652. border-radius: 7px;
  1653. padding: 2px;
  1654. }
  1655. .guide-mod .m-latent-ul-div,
  1656. .guide-mod .m-latent-allowable-ul
  1657. {
  1658. display: inline-block;
  1659. }
  1660. .m-latent-ul .latent-icon{
  1661. margin-left: 12px;
  1662. }
  1663. .m-latent-ul .latent-icon:first-of-type{
  1664. margin-left: 0;
  1665. }
  1666. .m-latent-allowable-ul{
  1667. margin-top: 5px;
  1668. font-size: 0;
  1669. }
  1670. .m-latent-allowable-ul .latent-icon{
  1671. margin-right: 4px;
  1672. margin-bottom: 4px;
  1673. }
  1674. .m-latent-allowable-ul .latent-icon:last-of-type{
  1675. margin-right: unset;
  1676. }
  1677. .m-latent-allowable-ul.hide-less-use-latent .latent-icon{
  1678. display: none;
  1679. }
  1680. .m-latent-allowable-ul.hide-less-use-latent .latent-icon[data-latent-icon="11"],
  1681. .m-latent-allowable-ul.hide-less-use-latent .latent-icon[data-latent-icon="20"],
  1682. .m-latent-allowable-ul.hide-less-use-latent .latent-icon[data-latent-icon="21"],
  1683. .m-latent-allowable-ul.hide-less-use-latent .latent-icon[data-latent-icon="22"],
  1684. .m-latent-allowable-ul.hide-less-use-latent .latent-icon[data-latent-icon="23"],
  1685. .m-latent-allowable-ul.hide-less-use-latent .latent-icon[data-latent-icon="24"],
  1686. .m-latent-allowable-ul.hide-less-use-latent .latent-icon[data-latent-icon="25"],
  1687. .m-latent-allowable-ul.hide-less-use-latent .latent-icon[data-latent-icon="26"],
  1688. .m-latent-allowable-ul.hide-less-use-latent .latent-icon[data-latent-icon="27"]
  1689. {
  1690. display: inline-block;
  1691. }
  1692. .guide-mod .m-latent-allowable-ul.hide-less-use-latent .latent-icon[data-latent-icon="11"]{
  1693. display: none;
  1694. }
  1695. .hide-less-use-latent-label{
  1696. margin-left: 5px;
  1697. }
  1698. /*没有打觉醒的空格,没有手指*/
  1699. .m-latent-ul .latent-icon{
  1700. cursor: default;
  1701. }
  1702. .m-latent-allowable-ul .latent-icon,
  1703. .m-latent-ul .latent-icon[data-latent-icon]{
  1704. cursor: pointer;
  1705. }
  1706. /*不允许使用的潜觉,不是手指,半透明,灰度*/
  1707. .m-latent-allowable-ul .latent-icon.unallowable-latent{
  1708. cursor: default;
  1709. opacity: var(--search-icon-unchecked);
  1710. filter: grayscale(100%);
  1711. }
  1712. .edit-box .setting-box .row-mon-skill
  1713. {
  1714. margin-bottom:5px;
  1715. }
  1716. /*.edit-box .setting-box .row-mon-skill,
  1717. .edit-box .setting-box .row-mon-leader-skill
  1718. {
  1719. margin-top:5px;
  1720. }*/
  1721. /*.skill-box .skill-cd::before{
  1722. content: "冷却回合:";
  1723. }
  1724. .skill-box .skill-level-label::before{
  1725. content: "Lv";
  1726. }
  1727. .skill-box .m-skill-lv-1::before{
  1728. content: "Lv";
  1729. }
  1730. .skill-box .m-skill-lv-max::before{
  1731. content: "最高Lv";
  1732. }*/
  1733. .skill-box{
  1734. font-family: var(--game-font-family);
  1735. font-size: 16px;
  1736. border: #9C743E solid 2px;
  1737. border-radius: 10px;
  1738. background-color: #B1AAA0;
  1739. overflow: hidden;
  1740. box-shadow: inset black 0 0 5px;
  1741. }
  1742. .row-mon-leader-skill .skill-box{
  1743. background-color: #D0CD81;
  1744. }
  1745. .skill-box .m-skill-level {
  1746. height: 30px;
  1747. width: 3em;
  1748. line-height: 25px;
  1749. box-sizing: border-box;
  1750. font-size: inherit;
  1751. font-family: inherit;
  1752. color: inherit;
  1753. text-shadow: inherit;
  1754. }
  1755. .skill-box .m-skill-lv-1,
  1756. .skill-box .m-skill-lv-max{
  1757. padding: 0 3px;
  1758. /*height: 30px;*/
  1759. box-sizing: border-box;
  1760. font-size: 18px;
  1761. }
  1762. .skill-box .skill-title{
  1763. background-color: #39180F;
  1764. box-shadow: inset black 0 5px 5px;
  1765. padding: 0 10px 0 2px;
  1766. text-shadow:black 3px 3px 0;
  1767. }
  1768. .skill-title .type-title{
  1769. background-color: #774433;
  1770. border: #BBAA55 solid 2px;
  1771. border-radius: 8px;
  1772. margin-right: 5px;
  1773. padding: 0 5px;
  1774. line-height: 24px;
  1775. display: inline-block;
  1776. position: relative;
  1777. }
  1778. .skill-title .type-title::after{
  1779. -webkit-background-clip: text;
  1780. background-clip: text;
  1781. color: transparent;
  1782. text-shadow: none;
  1783. position: absolute;
  1784. left: 5px;
  1785. }
  1786. .skill-title .type-title::before{
  1787. text-shadow: none;
  1788. -webkit-text-stroke: 3px black;
  1789. text-stroke: 3px black;
  1790. }
  1791. /*.row-mon-skill .type-title::before,
  1792. .row-mon-skill .type-title::after
  1793. {
  1794. content: "主動技能";
  1795. }*/
  1796. .row-mon-skill .type-title::after
  1797. {
  1798. background-image: linear-gradient(white 25%, #3377AA 80%);
  1799. }
  1800. /*.row-mon-leader-skill .type-title::before,
  1801. .row-mon-leader-skill .type-title::after
  1802. {
  1803. content: "隊長技能";
  1804. }*/
  1805. .row-mon-leader-skill .type-title::after
  1806. {
  1807. background-image: linear-gradient(#FFFF99 25%, #EE7744 80%);
  1808. }
  1809. .row-mon-skill .skill-title .skill-name{
  1810. color: #84BAFC;
  1811. cursor: pointer;
  1812. }
  1813. .row-mon-skill .skill-title .skill-name:hover::after{
  1814. content: "🔍";
  1815. }
  1816. .row-mon-leader-skill .skill-title .skill-name{
  1817. color: #85FD80;
  1818. }
  1819. .skill-box .skill-cd-control{
  1820. float: right;
  1821. }
  1822. .skill-box .skill-cd{
  1823. margin-left: 10px;
  1824. }
  1825. .skill-datail{
  1826. color: black;
  1827. padding: 0 8px 6px 8px;
  1828. line-height: 25px;
  1829. }
  1830. .skill-datail .spColor{
  1831. color: #ff3600;
  1832. }
  1833. .skill-datail .detail-search{
  1834. cursor: pointer;
  1835. color: blue;
  1836. }
  1837. .skill-datail .detail-search::before{
  1838. content: "🔍";
  1839. }
  1840. .skill-datail .random-active-skill{
  1841. padding-left: 1em;
  1842. }
  1843. .skill-datail .random-active-skill>.active-skill-li{
  1844. list-style: decimal;
  1845. }
  1846. .edit-box .button-box{
  1847. border-top: black solid 3px;
  1848. background-color: rgba(0,0,0,0.5);
  1849. padding: 5px;
  1850. height: 50px;
  1851. }
  1852. .edit-box .button-box .button-null,
  1853. .edit-box .button-box .button-delay,
  1854. .edit-box .button-box .button-cancel,
  1855. .edit-box .button-box .button-done{
  1856. height: 50px;
  1857. box-sizing: border-box;
  1858. font-size: 25px;
  1859. font-weight: bold;
  1860. }
  1861. .edit-box .button-box .button-null,
  1862. .edit-box .button-box .button-delay{
  1863. float: left;
  1864. margin-right:5px;
  1865. }
  1866. .edit-box .button-box .button-cancel,
  1867. .edit-box .button-box .button-done{
  1868. float: right;
  1869. margin-left:5px;
  1870. }
  1871. /*.edit-box .button-box .button-null::after{
  1872. content: "留空格子";
  1873. }
  1874. .edit-box .button-box .button-delay::after{
  1875. content: "应对威吓";
  1876. }
  1877. .edit-box .button-box .button-cancel::after{
  1878. content: "取消修改";
  1879. }
  1880. .edit-box .button-box .button-done::after{
  1881. content: "确认修改";
  1882. }
  1883. .edit-box .button-box .button-done.cant-assist::after{
  1884. content: "不能辅助";
  1885. }*/
  1886. .formation-awoken::before,
  1887. .team-awoken::before
  1888. {
  1889. font-size: 20px;
  1890. margin-top:5px;
  1891. /*content: "觉醒总计:";*/
  1892. }
  1893. .detail-box{
  1894. margin-top:5px;
  1895. }
  1896. /*控制框*/
  1897. .control-box{
  1898. margin-bottom: 10px;
  1899. }
  1900. .control-box .languages-label::before{
  1901. content: "🌐Lanuage:";
  1902. }
  1903. .control-box .solo-link::before{
  1904. content: "Jump To Solo Version";
  1905. }
  1906. .control-box .multi-link::before{
  1907. content: "Jump To 2-Player Version";
  1908. }
  1909. /*.control-box .btn-show-mon-id::before{
  1910. content: "隐藏怪物ID";
  1911. }
  1912. .not-show-mon-id .control-box .btn-show-mon-skill-cd::before{
  1913. content: "显示怪物ID";
  1914. }
  1915. .show-mon-skill-cd .control-box .btn-show-mon-skill-cd::before{
  1916. content: "⬜隐藏已满技能CD";
  1917. }
  1918. .control-box .btn-show-mon-skill-cd::before{
  1919. content: "❄️显示已满技能CD";
  1920. }
  1921. .control-box .lbl-henshen-change::before{
  1922. content: "🕴️变身";
  1923. }
  1924. */
  1925. .control-box .btn-henshin-back::before{
  1926. content: "◀️";
  1927. }
  1928. .control-box .btn-henshin-forward::before{
  1929. content: "▶️";
  1930. }
  1931. #interchange-line{
  1932. pointer-events: none;
  1933. position: absolute;
  1934. left: 0;
  1935. top: 0;
  1936. }
  1937. #interchange-line g line {
  1938. fill: none;
  1939. stroke: blue;
  1940. stroke-linecap: round;
  1941. stroke-width: 5;
  1942. stroke-dasharray: 10;
  1943. }
  1944. /*面板相关*/
  1945. .board
  1946. {
  1947. cursor: pointer;
  1948. }
  1949. .board td
  1950. {
  1951. width: 20px;
  1952. height: 20px;
  1953. border: 1px black solid;
  1954. border-radius: 50%;
  1955. padding: 0;
  1956. text-align: center;
  1957. }
  1958. .board td::before
  1959. {
  1960. font-size: 13px;
  1961. line-height: 13px;
  1962. display: block;
  1963. max-height: 100%;
  1964. max-width: 100%;
  1965. }
  1966. .board .orb-0
  1967. { /*火*/
  1968. background-color: #ef3535;
  1969. }
  1970. .board .orb-0::before
  1971. {
  1972. content: "🔥";
  1973. }
  1974. .board .orb-1
  1975. { /*水*/
  1976. background-color: #258bed;
  1977. }
  1978. .board .orb-1::before
  1979. {
  1980. content: "🌊";
  1981. }
  1982. .board .orb-2
  1983. { /*木*/
  1984. background-color: #28c031;
  1985. }
  1986. .board .orb-2::before
  1987. {
  1988. content: "🍃";
  1989. }
  1990. .board .orb-3
  1991. { /*光*/
  1992. background-color: #eded29;
  1993. }
  1994. .board .orb-3::before
  1995. {
  1996. content: "🌞";
  1997. }
  1998. .board .orb-4
  1999. { /*暗*/
  2000. background-color: #972ecb;
  2001. }
  2002. .board .orb-4::before
  2003. {
  2004. content: "🦇";
  2005. }
  2006. .board .orb-5
  2007. { /*心*/
  2008. background-color: #f8baba;
  2009. border-radius: 3px;
  2010. }
  2011. .board .orb-5::before
  2012. {
  2013. content: "💗";
  2014. }
  2015. .board .orb-6
  2016. { /*废*/
  2017. background-color: #d3d3d3;
  2018. border-radius: 5px;
  2019. }
  2020. .board .orb-6::before
  2021. {
  2022. content: "🕷️";
  2023. }
  2024. .board .orb-7
  2025. { /*毒*/
  2026. background-color: #e831f3;
  2027. border-radius: 5px;
  2028. }
  2029. .board .orb-7::before
  2030. {
  2031. content: "💀";
  2032. }
  2033. .board .orb-8
  2034. { /*剧毒*/
  2035. background-color: #670181;
  2036. border-radius: 5px;
  2037. }
  2038. .board .orb-8::before
  2039. {
  2040. content: "☠️";
  2041. }
  2042. .board .orb-9
  2043. { /*炸弹*/
  2044. background-color: #7c7c7c;
  2045. }
  2046. .board .orb-9::before
  2047. {
  2048. content: "💣";
  2049. }
  2050. .board .board-row4,
  2051. .board .board-cell5
  2052. {
  2053. display: none;
  2054. }
  2055. .board-76 .board-row4
  2056. {
  2057. display: table-row;
  2058. }
  2059. .board-76 .board-cell5
  2060. {
  2061. display: table-cell;
  2062. }
  2063. /*弹出窗口相关*/
  2064. .dialog
  2065. {
  2066. position: absolute;
  2067. padding: 5px;
  2068. border: 2px ridge #D1D398;
  2069. top: 0;
  2070. background-image: linear-gradient(to bottom,#788321f0,#3E4D14f0);
  2071. border-radius: 6px;
  2072. box-shadow: black 2px 0px 1px,black 0px 2px 1px,black -2px 0px 1px,black 0px -2px 1px;
  2073. width: 260px;
  2074. margin-left: calc(50% - 130px);
  2075. margin-top: 30px;
  2076. font-family: var(--game-font-family);
  2077. text-shadow: black 2px 2px 0;
  2078. }
  2079. .dialog .dialog-title
  2080. {
  2081. font-size: 20px;
  2082. line-height: 20px;
  2083. text-align: center;
  2084. margin-bottom: 5px;
  2085. }
  2086. .dialog .dialog-content .additional-string
  2087. {
  2088. border-top: 2px solid white;
  2089. margin-top: 5px;
  2090. }
  2091. .dialog .dialog-content .additional-string::before
  2092. {
  2093. content: "其他語言";
  2094. }
  2095. .dialog .dialog-control
  2096. {
  2097. text-align: center;
  2098. margin-top:10px;
  2099. }
  2100. .brown-button
  2101. {
  2102. background-image: linear-gradient(to bottom,#C38E5F,#2F2008);
  2103. border: none;
  2104. border-radius: 5px;
  2105. padding: 2px;
  2106. cursor: pointer;
  2107. transition: transform 0.1s;
  2108. }
  2109. .brown-button:active
  2110. {
  2111. transform: scale(1.1);
  2112. }
  2113. .brown-button::before
  2114. {
  2115. display: inline-block;
  2116. box-sizing: border-box;
  2117. width: 100px;
  2118. padding: 5px;
  2119. background-color: #956A42;
  2120. background-image: url(images/slate.svg);
  2121. background-size: 120px 120px;
  2122. border-radius: 2px;
  2123. font-size: 20px;
  2124. line-height: 20px;
  2125. vertical-align: middle;
  2126. color: white;
  2127. font-family: var(--game-font-family);
  2128. text-shadow: black 2px 2px 0;
  2129. }
  2130. /*
  2131. .dialog-search-string .dialog-title::before
  2132. {
  2133. content: "以字符串搜索";
  2134. }
  2135. .dialog-close::before
  2136. {
  2137. content: "关闭";
  2138. }
  2139. */
  2140. .dialog-search-string .string-copy,
  2141. .dialog-search-string .string-search
  2142. {
  2143. box-sizing: border-box;
  2144. width: 45px;
  2145. margin-left: 5px;
  2146. cursor: pointer;
  2147. background-color: #994433;
  2148. border: 2px solid #FFCC88;
  2149. box-shadow: black 1px 0 1px,black -1px 0 1px,black 0 -1px 1px,black 0 3px 2px;
  2150. border-radius: 5px;
  2151. padding: 0;
  2152. }
  2153. .dialog-search-string .string-copy::before
  2154. {
  2155. content: "📋";
  2156. }
  2157. .dialog-search-string .string-search::before
  2158. {
  2159. content: "🔍";
  2160. }
  2161. .dialog-search-string .string-value
  2162. {
  2163. box-sizing: border-box;
  2164. width: calc(100% - 50px * 2);
  2165. }
  2166. .dialog-search-string .additional-string .string-value
  2167. {
  2168. box-sizing: border-box;
  2169. width: calc(100% - 50px * 1);
  2170. }
  2171. /*.open-evolutionary-tree::before
  2172. {
  2173. content: "⛓️进化链";
  2174. }*/
  2175. .mask-evolutionary-tree
  2176. {
  2177. position: absolute;
  2178. width: 100%;
  2179. left: 0;
  2180. top: 0;
  2181. background-color: rgba(0,0,0,0.8);
  2182. }
  2183. .mask-content
  2184. {
  2185. text-align: center;
  2186. }
  2187. .evo-box
  2188. {
  2189. display: inline-block;
  2190. text-align: left;
  2191. }
  2192. .evo-panel,
  2193. .evo-panel-left,
  2194. .evo-panel-right
  2195. {
  2196. display: inline-block;
  2197. }
  2198. .mask-evolutionary-tree .evo-panel-left>.monster-head
  2199. {
  2200. display: inline-block;
  2201. }
  2202. .evo-materials>li
  2203. {
  2204. display: inline-block;
  2205. }
  2206. .mask-evolutionary-tree .evo-materials .monster
  2207. {
  2208. transform: scale(0.60);
  2209. margin: calc(-100px * (1 - 0.60) / 2);
  2210. }
  2211. .mask-evolutionary-tree .evo-panel-left>.monster-head>.monster .id
  2212. {
  2213. bottom: 5px;
  2214. font-size: 20px;
  2215. }
  2216. .mask-evolutionary-tree .evo-materials .monster .id
  2217. {
  2218. bottom: 5px;
  2219. font-size: 22px;
  2220. }
  2221. .evo-panel
  2222. {
  2223. border:black 2px solid;
  2224. border-radius: 7px;
  2225. }
  2226. .evo-panel-left,
  2227. .evo-panel-right
  2228. {
  2229. border:#D19635 2px solid;
  2230. border-radius: 4px;
  2231. height: 100px;
  2232. vertical-align: top;
  2233. }
  2234. .evo-panel-left
  2235. {
  2236. border-top-right-radius: unset;
  2237. border-bottom-right-radius: unset;
  2238. border-right: none;
  2239. background-image: linear-gradient(#A16928, #5F3D16);
  2240. padding: 0 2px;
  2241. text-align: center;
  2242. }
  2243. .evo-panel-right
  2244. {
  2245. border-top-left-radius: unset;
  2246. border-bottom-left-radius: unset;
  2247. border-left: none;
  2248. background-image: url(images/slate.svg);
  2249. background-size: 200px;
  2250. }
  2251. .evo-panel-right .monster-name
  2252. {
  2253. font-family: var(--game-font-family);
  2254. font-size: 15px;
  2255. line-height: 15px;
  2256. background: #42341F;
  2257. border: 2px inset #F4F18E;
  2258. border-radius: 5px;
  2259. margin: 4px;
  2260. padding: 5px;
  2261. }
  2262. .evo-materials
  2263. {
  2264. margin: 0 4px;
  2265. }
  2266. .evo-materials .null .monster
  2267. {
  2268. opacity: 0.5;
  2269. }
  2270. .evo-materials>li
  2271. {
  2272. margin: 1px;
  2273. }
  2274. .evo-subevo
  2275. {
  2276. padding-left: 35px;
  2277. padding-top: 5px;
  2278. }
  2279. .evo-subevo>li
  2280. {
  2281. position:relative;
  2282. }
  2283. .evo-subevo>li::before
  2284. {
  2285. content:' ';
  2286. position:absolute;
  2287. top:0;
  2288. left:-20px;
  2289. width:15px;
  2290. height:100%;
  2291. border-left:3px solid #E88230;
  2292. }
  2293. .evo-subevo>li::after
  2294. {
  2295. content:' ';
  2296. position:absolute;
  2297. top:43px;
  2298. left:-10px;
  2299. width:0;
  2300. height:0;
  2301. border-top: 8px solid transparent;
  2302. border-left: 10px solid #FFEE71;
  2303. border-bottom: 8px solid transparent;
  2304. }
  2305. .evo-subevo>li:last-child::before
  2306. {
  2307. border-bottom: 3px solid #F3B750;
  2308. border-bottom-left-radius: 8px;
  2309. height:50px;
  2310. }
  2311. .evo-subevo>li:last-child>.evo-box::before
  2312. {
  2313. display: none;
  2314. }
  2315. .evo-subevo>li>.evo-box::before
  2316. {
  2317. content:' ';
  2318. position:absolute;
  2319. top:50px;
  2320. left:-20px;
  2321. width:18px;
  2322. border:none;
  2323. border-top:3px solid #E88230;
  2324. }
  2325. .evo-panel-left .evo-type
  2326. {
  2327. font-family: var(--game-font-family);
  2328. font-size: 15px;
  2329. line-height: 15px;
  2330. display: inline-block;
  2331. position: relative;
  2332. }
  2333. .evo-panel-left .evo-type::before,
  2334. .evo-panel-left .evo-type::after
  2335. {
  2336. }
  2337. .evo-panel-left .evo-type::after
  2338. {
  2339. -webkit-background-clip: text;
  2340. background-clip: text;
  2341. color: transparent;
  2342. font-family: var(--game-font-family);
  2343. font-size: 15px;
  2344. line-height: 15px;
  2345. position: absolute;
  2346. left: 0;
  2347. }
  2348. .evo-panel-left .evo-type::before
  2349. {
  2350. /*text-shadow: black 1px 1px 0,black -1px 1px 0,black 1px -1px 0,black -1px -1px 0;*/
  2351. -webkit-text-stroke: 3px black;
  2352. text-stroke: 3px black;
  2353. }
  2354. /*.base .evo-type::before,
  2355. .base .evo-type::after
  2356. {
  2357. content: "基礎";
  2358. }
  2359. .evolution .evo-type::before,
  2360. .evolution .evo-type::after
  2361. {
  2362. content: "進化";
  2363. }
  2364. .ult-evo .evo-type::before,
  2365. .ult-evo .evo-type::after
  2366. {
  2367. content: "究極進化";
  2368. }
  2369. .reincarnation .evo-type::before,
  2370. .reincarnation .evo-type::after
  2371. {
  2372. content: "轉生進化";
  2373. }
  2374. .pixel-evo .evo-type::before,
  2375. .pixel-evo .evo-type::after
  2376. {
  2377. content: "像素進化";
  2378. font-family: "zpix";
  2379. font-weight: bold;
  2380. }
  2381. .assist-evo .evo-type::before,
  2382. .assist-evo .evo-type::after
  2383. {
  2384. content: "輔助進化";
  2385. }
  2386. .super-reincarnation .evo-type::before,
  2387. .super-reincarnation .evo-type::after
  2388. {
  2389. content: "超轉生進化";
  2390. }
  2391. .super-ult-evo .evo-type::before,
  2392. .super-ult-evo .evo-type::after
  2393. {
  2394. content: "超究極進化";
  2395. }*/
  2396. .pixel-evo .evo-type::before,
  2397. .pixel-evo .evo-type::after
  2398. {
  2399. font-family: "zpix";
  2400. font-weight: bold;
  2401. }
  2402. .base .evo-type::after
  2403. { /*基礎*/
  2404. background-image: linear-gradient(#FFFFBB, #FFFF88);
  2405. }
  2406. .base
  2407. {
  2408. background-color: #DCB476;
  2409. }
  2410. .base .evo-panel-right
  2411. {
  2412. border-color: #FDC686;
  2413. }
  2414. .evolution .evo-type::after
  2415. { /*進化*/
  2416. background-image: linear-gradient(#CCFF33, #88EE22);
  2417. }
  2418. .evolution
  2419. {
  2420. background-color: #C49669;
  2421. }
  2422. .evolution .evo-panel-right
  2423. {
  2424. border-color: #DEAA76;
  2425. }
  2426. .ult-evo .evo-type::after
  2427. { /*究極進化*/
  2428. background-image: linear-gradient(#FFFFAA 20%,#BB8800, #FFFFAA 80%);
  2429. }
  2430. .ult-evo
  2431. {
  2432. background-color: #DDD844;
  2433. }
  2434. .ult-evo .evo-panel-right
  2435. {
  2436. border-color: #FEF84F;
  2437. }
  2438. .reincarnation .evo-type::after
  2439. { /*轉生進化*/
  2440. background-image: linear-gradient(#00CCCC, #EEFFFF 50%,#AA8800 51%,#FFFFAA);
  2441. }
  2442. .reincarnation
  2443. {
  2444. background-color: #579889;
  2445. }
  2446. .reincarnation .evo-panel-right
  2447. {
  2448. border-color: #78B89A;
  2449. }
  2450. .pixel-evo .evo-type::after
  2451. { /*像素進化*/
  2452. background-image: linear-gradient(#FFDD77 33%, #EEBB33 34%, #EEBB33 66%, #BB7700 67%);
  2453. }
  2454. .pixel-evo
  2455. {
  2456. background-color: #B1AB94;
  2457. }
  2458. .pixel-evo .evo-panel-right
  2459. {
  2460. border-color: #CBC4AA;
  2461. }
  2462. .assist-evo .evo-type::after
  2463. { /*輔助進化*/
  2464. background-image: linear-gradient(#AAFF66, #557700);
  2465. }
  2466. .assist-evo
  2467. {
  2468. background-color: #607F38;
  2469. }
  2470. .assist-evo .evo-panel-right
  2471. {
  2472. border-color: #6F9241;
  2473. }
  2474. .super-reincarnation .evo-type::after
  2475. { /*超轉生進化*/
  2476. background-image: linear-gradient(#EE7700 ,#FFFF88 40%, #1155AA);
  2477. }
  2478. .super-reincarnation
  2479. {
  2480. background-color: #C15644;
  2481. }
  2482. .super-reincarnation .evo-panel-right
  2483. {
  2484. border-color: #DE634F;
  2485. }
  2486. .super-ult-evo .evo-type::after
  2487. { /*超究極進化*/
  2488. background-image: linear-gradient(#553300,#FFCC00 45%, #FFFF99 55%, #771100);
  2489. }
  2490. .super-ult-evo
  2491. {
  2492. background-image: linear-gradient(#C1D515,#DD7003);
  2493. }
  2494. .super-ult-evo .evo-panel-right
  2495. {
  2496. border-color: #DBE721;
  2497. }
  2498. .henshin .evo-type::after,
  2499. .henshin-loop .evo-type::after
  2500. { /*變身*/
  2501. background-image: linear-gradient(#00FFFF 30%, #FF00FF);
  2502. }
  2503. .henshin,
  2504. .henshin-loop
  2505. {
  2506. background-image: linear-gradient(#BFFFCF,#FFFFBF,#FFBFBF);
  2507. }
  2508. .henshin .evo-panel-right,
  2509. .henshin-loop .evo-panel-right
  2510. {
  2511. border-color: #7F00FF;
  2512. }

智龙迷城队伍图制作工具