2022-04-09 21:33:21 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: "HWZS";
|
|
|
|
src: url("../common/font/华文中宋.TTF");
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "Number";
|
|
|
|
src: url("../common/font/tttgbnumber.ttf");
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
@font-face {
|
|
|
|
font-family: "NZBZ";
|
|
|
|
src: url("../common/font/NZBZ.ttf");
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
2022-04-14 20:53:22 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: "YS";
|
2022-04-23 21:16:37 +00:00
|
|
|
src: url("../common/font/HYWH-85W.ttf");
|
2022-04-14 20:53:22 +00:00
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
2022-05-16 21:32:31 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: "YS2";
|
|
|
|
src: url("../common/font/HYWH-65W.ttf");
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
2022-04-09 21:33:21 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
2022-08-05 22:12:57 +00:00
|
|
|
-webkit-user-select: none;
|
2022-04-09 21:33:21 +00:00
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
font-size: 18px;
|
|
|
|
color: #1e1f20;
|
2022-05-22 13:10:10 +00:00
|
|
|
font-family: Number, YS2, PingFangSC-Medium, PingFang SC, sans-serif;
|
2022-04-09 21:33:21 +00:00
|
|
|
transform: scale(1.4);
|
|
|
|
transform-origin: 0 0;
|
|
|
|
width: 600px;
|
|
|
|
}
|
|
|
|
.container {
|
|
|
|
width: 600px;
|
|
|
|
padding: 20px 15px 10px 15px;
|
|
|
|
background-size: contain;
|
|
|
|
}
|
|
|
|
.head-box {
|
|
|
|
border-radius: 15px;
|
|
|
|
padding: 10px 20px;
|
|
|
|
position: relative;
|
|
|
|
color: #fff;
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
.head-box .title {
|
|
|
|
font-size: 36px;
|
|
|
|
font-family: NZBZ, sans-serif;
|
2022-05-10 21:54:01 +00:00
|
|
|
text-shadow: 0 0 1px #000, 1px 1px 3px rgba(0, 0, 0, 0.9);
|
2022-04-09 21:33:21 +00:00
|
|
|
}
|
|
|
|
.head-box .genshin_logo {
|
|
|
|
position: absolute;
|
|
|
|
top: 1px;
|
|
|
|
right: 15px;
|
|
|
|
width: 97px;
|
|
|
|
}
|
|
|
|
.head-box .label {
|
|
|
|
font-size: 16px;
|
2022-05-10 21:54:01 +00:00
|
|
|
text-shadow: 0 0 1px #000, 1px 1px 3px rgba(0, 0, 0, 0.9);
|
2022-04-09 21:33:21 +00:00
|
|
|
}
|
2022-08-05 22:12:57 +00:00
|
|
|
.head-box .label span {
|
|
|
|
color: #d3bc8e;
|
|
|
|
padding: 0 2px;
|
|
|
|
}
|
2022-04-09 21:33:21 +00:00
|
|
|
.notice {
|
|
|
|
color: #888;
|
|
|
|
font-size: 12px;
|
|
|
|
text-align: right;
|
|
|
|
padding: 12px 5px 5px;
|
|
|
|
}
|
|
|
|
.notice-center {
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
text-shadow: 1px 1px 1px #333;
|
|
|
|
}
|
|
|
|
.copyright {
|
|
|
|
font-size: 16px;
|
|
|
|
text-align: center;
|
|
|
|
color: #fff;
|
|
|
|
position: relative;
|
|
|
|
padding-left: 10px;
|
|
|
|
text-shadow: 1px 1px 1px #000;
|
2022-05-22 13:10:10 +00:00
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
.copyright .version {
|
|
|
|
font-size: 13px;
|
|
|
|
color: #d3bc8e;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0 3px;
|
2022-04-09 21:33:21 +00:00
|
|
|
}
|
2022-05-13 19:31:49 +00:00
|
|
|
/* */
|
|
|
|
.cons {
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
padding: 0 5px;
|
2022-05-16 21:32:31 +00:00
|
|
|
border-radius: 4px;
|
2022-05-13 19:31:49 +00:00
|
|
|
}
|
2022-04-18 21:32:21 +00:00
|
|
|
.cons-0 {
|
|
|
|
background: #666;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2022-05-16 21:32:31 +00:00
|
|
|
.cons-n0 {
|
|
|
|
background: #404949;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2022-04-18 21:32:21 +00:00
|
|
|
.cons-1 {
|
2022-05-16 21:32:31 +00:00
|
|
|
background: #5cbac2;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.cons-2 {
|
|
|
|
background: #339d61;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.cons-3 {
|
|
|
|
background: #3e95b9;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.cons-4 {
|
|
|
|
background: #3955b7;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.cons-5 {
|
|
|
|
background: #531ba9cf;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.cons-6 {
|
|
|
|
background: #ff5722;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.cons2-0 {
|
|
|
|
border-radius: 4px;
|
|
|
|
background: #666;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.cons2-1 {
|
2022-05-10 21:54:01 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
background: #71b1b7;
|
2022-04-18 21:32:21 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-05-16 21:32:31 +00:00
|
|
|
.cons2-2 {
|
2022-05-10 21:54:01 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
background: #369961;
|
2022-04-18 21:32:21 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-05-16 21:32:31 +00:00
|
|
|
.cons2-3 {
|
2022-05-10 21:54:01 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
background: #4596b9;
|
2022-04-18 21:32:21 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-05-16 21:32:31 +00:00
|
|
|
.cons2-4 {
|
2022-05-10 21:54:01 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
background: #4560b9;
|
2022-04-18 21:32:21 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-05-16 21:32:31 +00:00
|
|
|
.cons2-5 {
|
2022-05-10 21:54:01 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
background: #531ba9cf;
|
2022-04-18 21:32:21 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
2022-05-16 21:32:31 +00:00
|
|
|
.cons2-6 {
|
2022-05-10 21:54:01 +00:00
|
|
|
border-radius: 4px;
|
|
|
|
background: #ff5722;
|
2022-04-18 21:32:21 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
/******** ELEM ********/
|
2022-08-01 21:15:37 +00:00
|
|
|
.elem-hydro .talent-icon {
|
|
|
|
background-image: url("./bg/talent-hydro.png");
|
|
|
|
}
|
|
|
|
.elem-hydro .elem-bg,
|
|
|
|
.hydro-bg {
|
|
|
|
background-image: url("./bg/bg-hydro.jpg");
|
|
|
|
}
|
2022-04-18 21:32:21 +00:00
|
|
|
.elem-anemo .talent-icon {
|
2022-05-10 21:54:01 +00:00
|
|
|
background-image: url("./bg/talent-anemo.png");
|
2022-04-18 21:32:21 +00:00
|
|
|
}
|
2022-05-10 21:54:01 +00:00
|
|
|
.elem-anemo .elem-bg,
|
|
|
|
.anemo-bg {
|
|
|
|
background-image: url("./bg/bg-anemo.jpg");
|
2022-04-18 21:32:21 +00:00
|
|
|
}
|
|
|
|
.elem-cryo .talent-icon {
|
2022-05-10 21:54:01 +00:00
|
|
|
background-image: url("./bg/talent-cryo.png");
|
2022-04-18 21:32:21 +00:00
|
|
|
}
|
2022-05-10 21:54:01 +00:00
|
|
|
.elem-cryo .elem-bg,
|
|
|
|
.cryo-bg {
|
|
|
|
background-image: url("./bg/bg-cryo.jpg");
|
2022-04-18 21:32:21 +00:00
|
|
|
}
|
|
|
|
.elem-electro .talent-icon {
|
2022-05-10 21:54:01 +00:00
|
|
|
background-image: url("./bg/talent-electro.png");
|
2022-04-18 21:32:21 +00:00
|
|
|
}
|
2022-05-10 21:54:01 +00:00
|
|
|
.elem-electro .elem-bg,
|
|
|
|
.electro-bg {
|
|
|
|
background-image: url("./bg/bg-electro.jpg");
|
2022-04-18 21:32:21 +00:00
|
|
|
}
|
|
|
|
.elem-geo .talent-icon {
|
2022-05-10 21:54:01 +00:00
|
|
|
background-image: url("./bg/talent-geo.png");
|
2022-04-18 21:32:21 +00:00
|
|
|
}
|
2022-05-10 21:54:01 +00:00
|
|
|
.elem-geo .elem-bg,
|
|
|
|
.geo-bg {
|
|
|
|
background-image: url("./bg/bg-geo.jpg");
|
2022-04-18 21:32:21 +00:00
|
|
|
}
|
|
|
|
.elem-pyro .talent-icon {
|
2022-05-10 21:54:01 +00:00
|
|
|
background-image: url("./bg/talent-pyro.png");
|
2022-04-18 21:32:21 +00:00
|
|
|
}
|
2022-05-10 21:54:01 +00:00
|
|
|
.elem-pyro .elem-bg,
|
|
|
|
.pyro-bg {
|
|
|
|
background-image: url("./bg/bg-pyro.jpg");
|
2022-05-04 20:53:20 +00:00
|
|
|
}
|
2022-06-27 20:46:49 +00:00
|
|
|
.elem-dendro .talent-icon {
|
|
|
|
background-image: url("./bg/talent-dendro.png");
|
|
|
|
}
|
|
|
|
.elem-dendro .elem-bg,
|
|
|
|
.dendro-bg {
|
|
|
|
background-image: url("./bg/bg-dendro.jpg");
|
|
|
|
}
|
2022-05-04 20:53:20 +00:00
|
|
|
/* cont */
|
|
|
|
.cont {
|
|
|
|
border-radius: 10px;
|
|
|
|
background: url("../common/cont/card-bg.png") top left repeat-x;
|
|
|
|
background-size: auto 100%;
|
|
|
|
margin: 5px 15px 5px 10px;
|
|
|
|
position: relative;
|
2022-05-10 21:54:01 +00:00
|
|
|
box-shadow: 0 0 1px 0 #ccc, 2px 2px 4px 0 rgba(50, 50, 50, 0.8);
|
2022-05-04 20:53:20 +00:00
|
|
|
overflow: hidden;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
.cont-title {
|
2022-05-10 21:54:01 +00:00
|
|
|
background: rgba(0, 0, 0, 0.4);
|
2022-05-04 20:53:20 +00:00
|
|
|
box-shadow: 0 0 1px 0 #fff;
|
|
|
|
color: #d3bc8e;
|
|
|
|
padding: 10px 20px;
|
|
|
|
text-align: left;
|
|
|
|
border-radius: 10px 10px 0 0;
|
|
|
|
}
|
|
|
|
.cont-title span {
|
|
|
|
font-size: 12px;
|
|
|
|
color: #aaa;
|
|
|
|
margin-left: 10px;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
.cont-body {
|
|
|
|
padding: 10px 15px;
|
|
|
|
font-size: 12px;
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
box-shadow: 0 0 1px 0 #fff;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
2022-06-25 23:45:43 +00:00
|
|
|
.cont-footer {
|
|
|
|
padding: 10px 15px;
|
|
|
|
font-size: 12px;
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
.cont > ul.cont-msg {
|
|
|
|
display: block;
|
|
|
|
padding: 5px 10px;
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
ul.cont-msg,
|
|
|
|
.cont-footer ul {
|
2022-05-04 20:53:20 +00:00
|
|
|
padding-left: 15px;
|
|
|
|
}
|
2022-06-25 23:45:43 +00:00
|
|
|
ul.cont-msg li,
|
|
|
|
.cont-footer ul li {
|
2022-05-04 20:53:20 +00:00
|
|
|
margin: 5px 0;
|
2022-06-25 23:45:43 +00:00
|
|
|
margin-left: 15px;
|
2022-05-04 20:53:20 +00:00
|
|
|
}
|
2022-06-25 23:45:43 +00:00
|
|
|
ul.cont-msg li strong,
|
|
|
|
.cont-footer ul li strong {
|
2022-05-04 20:53:20 +00:00
|
|
|
font-weight: normal;
|
|
|
|
margin: 0 2px;
|
|
|
|
color: #d3bc8e;
|
|
|
|
}
|
|
|
|
.cont-table {
|
|
|
|
display: table;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.cont-table .tr {
|
|
|
|
display: table-row;
|
|
|
|
}
|
|
|
|
.cont-table .tr:nth-child(even) {
|
2022-05-10 21:54:01 +00:00
|
|
|
background: rgba(0, 0, 0, 0.4);
|
2022-05-04 20:53:20 +00:00
|
|
|
}
|
|
|
|
.cont-table .tr:nth-child(odd) {
|
2022-05-10 21:54:01 +00:00
|
|
|
background: rgba(50, 50, 50, 0.4);
|
2022-05-04 20:53:20 +00:00
|
|
|
}
|
2022-05-06 21:20:14 +00:00
|
|
|
.cont-table .tr > div,
|
2022-05-10 21:54:01 +00:00
|
|
|
.cont-table .tr > td {
|
2022-05-04 20:53:20 +00:00
|
|
|
display: table-cell;
|
|
|
|
box-shadow: 0 0 1px 0 #fff;
|
|
|
|
}
|
|
|
|
.cont-table .tr > div.value-full {
|
|
|
|
display: table;
|
|
|
|
width: 200%;
|
|
|
|
}
|
|
|
|
.cont-table .tr > div.value-none {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
.cont-table .thead {
|
|
|
|
text-align: center;
|
|
|
|
}
|
2022-05-06 21:20:14 +00:00
|
|
|
.cont-table .thead > div,
|
2022-05-10 21:54:01 +00:00
|
|
|
.cont-table .thead > td {
|
2022-05-04 20:53:20 +00:00
|
|
|
color: #d3bc8e;
|
2022-05-10 21:54:01 +00:00
|
|
|
background: rgba(0, 0, 0, 0.4);
|
2022-05-04 20:53:20 +00:00
|
|
|
line-height: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
.cont-table .title,
|
|
|
|
.cont-table .th {
|
|
|
|
color: #d3bc8e;
|
|
|
|
padding-right: 15px;
|
|
|
|
text-align: right;
|
2022-05-10 21:54:01 +00:00
|
|
|
background: rgba(0, 0, 0, 0.4);
|
2022-05-04 20:53:20 +00:00
|
|
|
min-width: 100px;
|
|
|
|
vertical-align: middle;
|
2022-05-10 21:54:01 +00:00
|
|
|
}
|
2022-05-22 13:10:10 +00:00
|
|
|
.logo {
|
|
|
|
font-size: 18px;
|
|
|
|
text-align: center;
|
|
|
|
color: #fff;
|
|
|
|
margin: 20px 0 10px 0;
|
|
|
|
}
|
2022-08-05 22:12:57 +00:00
|
|
|
/* item-icon */
|
|
|
|
.item-icon {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 4px;
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.item-icon .img {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: block;
|
|
|
|
background-size: contain;
|
|
|
|
background-position: center;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
}
|
|
|
|
.item-icon.star1 {
|
|
|
|
background-image: url("../common/item/bg1.png");
|
|
|
|
}
|
|
|
|
.item-icon.star2 {
|
|
|
|
background-image: url("../common/item/bg2.png");
|
|
|
|
}
|
|
|
|
.item-icon.star3 {
|
|
|
|
background-image: url("../common/item/bg3.png");
|
|
|
|
}
|
|
|
|
.item-icon.star4 {
|
|
|
|
background-image: url("../common/item/bg4.png");
|
|
|
|
}
|
|
|
|
.item-icon.star5 {
|
|
|
|
background-image: url("../common/item/bg5.png");
|
|
|
|
}
|
2022-05-10 21:54:01 +00:00
|
|
|
/*# sourceMappingURL=common.css.map */
|