2022-08-05 22:12:57 +00:00
|
|
|
body,
|
|
|
|
.container {
|
|
|
|
width: 650px;
|
|
|
|
}
|
|
|
|
.container > .cont {
|
|
|
|
margin-left: 15px;
|
|
|
|
}
|
|
|
|
.head-box {
|
|
|
|
margin-top: 10px;
|
|
|
|
}
|
|
|
|
.head-box .label {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.char-list {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
.char-item {
|
2022-10-22 19:45:28 +00:00
|
|
|
margin: 5px 0;
|
2022-11-07 20:08:24 +00:00
|
|
|
position: relative;
|
2022-08-05 22:12:57 +00:00
|
|
|
}
|
|
|
|
.char-item .name {
|
|
|
|
margin-top: 5px;
|
|
|
|
display: block;
|
|
|
|
font-size: 14px;
|
|
|
|
color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
text-shadow: 0 0 1px #000;
|
|
|
|
}
|
2022-10-20 18:42:30 +00:00
|
|
|
.char-item .name .cons {
|
|
|
|
padding: 1px 4px;
|
|
|
|
font-size: 12px;
|
|
|
|
transform: scale(0.8);
|
|
|
|
margin: -2px 0 0 1px;
|
|
|
|
vertical-align: middle;
|
|
|
|
opacity: 0.9;
|
|
|
|
}
|
2022-08-05 22:12:57 +00:00
|
|
|
.char-item.new-char .name:before {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
background: #90e800;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
2022-11-07 20:08:24 +00:00
|
|
|
.char-item .group-rank {
|
|
|
|
position: absolute;
|
2022-11-08 22:04:08 +00:00
|
|
|
background: url('./imgs/dmg-rank-bg.png') left top no-repeat;
|
2022-11-07 20:08:24 +00:00
|
|
|
background-size: auto 100%;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
margin-top: -5px;
|
|
|
|
width: 74px;
|
|
|
|
height: 74px;
|
|
|
|
}
|
2022-11-08 22:04:08 +00:00
|
|
|
.char-item .group-rank.rank-type-mark {
|
|
|
|
background-image: url('./imgs/mark-rank-bg.png');
|
|
|
|
}
|
2022-11-07 20:08:24 +00:00
|
|
|
.char-item .group-rank span {
|
|
|
|
position: absolute;
|
|
|
|
font-size: 12px;
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
bottom: 0;
|
|
|
|
left: 50%;
|
|
|
|
margin-left: -7px;
|
|
|
|
text-align: center;
|
|
|
|
transform: scale(0.8);
|
|
|
|
display: none;
|
|
|
|
text-shadow: 0 0 2px #b26f08;
|
|
|
|
}
|
|
|
|
.char-item .group-rank.rank-1 {
|
|
|
|
background-position: 25% 0;
|
|
|
|
}
|
|
|
|
.char-item .group-rank.rank-2 {
|
|
|
|
background-position: 50% 0;
|
|
|
|
}
|
|
|
|
.char-item .group-rank.rank-3 {
|
|
|
|
background-position: 75% 0;
|
|
|
|
}
|
|
|
|
.char-item .group-rank.rank-4 {
|
|
|
|
background-position: 100% 0;
|
|
|
|
}
|
|
|
|
.char-item .group-rank.rank-4 span {
|
|
|
|
display: block;
|
|
|
|
}
|
2022-08-05 22:12:57 +00:00
|
|
|
.char-icon {
|
|
|
|
width: 64px;
|
|
|
|
height: 64px;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 2px solid #fff;
|
|
|
|
box-shadow: 1px 1px 3px 0 #000;
|
|
|
|
overflow: visible;
|
2022-10-22 19:45:28 +00:00
|
|
|
margin: 0 5px 0 6px;
|
2022-08-05 22:12:57 +00:00
|
|
|
}
|
|
|
|
.char-icon .img {
|
|
|
|
background-size: auto 100%;
|
|
|
|
background-position: top center;
|
|
|
|
overflow: hidden;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
2022-08-08 21:16:37 +00:00
|
|
|
.cont-footer {
|
|
|
|
display: flex;
|
|
|
|
background: rgba(0, 0, 0, 0.4);
|
2023-02-18 23:55:43 +00:00
|
|
|
width: 100%;
|
2022-08-08 21:16:37 +00:00
|
|
|
}
|
|
|
|
.cont-footer span {
|
2023-02-18 23:55:43 +00:00
|
|
|
width: 35%;
|
2022-08-08 21:16:37 +00:00
|
|
|
}
|
|
|
|
.cont-footer .serv {
|
2023-02-18 23:55:43 +00:00
|
|
|
width: 65%;
|
2022-08-08 21:16:37 +00:00
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
.cont-footer .new-tip:before {
|
|
|
|
content: "";
|
|
|
|
display: inline-block;
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
background: #90e800;
|
|
|
|
border-radius: 50%;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
2022-11-08 22:04:08 +00:00
|
|
|
.group-rank-icon {
|
|
|
|
width: 16px;
|
|
|
|
height: 16px;
|
|
|
|
background: url("./imgs/mark-icon.png");
|
|
|
|
background-size: auto 100%;
|
|
|
|
display: inline-block;
|
2022-11-09 19:48:13 +00:00
|
|
|
vertical-align: bottom;
|
|
|
|
margin: -1px 3px -1px 0;
|
2022-11-08 22:04:08 +00:00
|
|
|
}
|
|
|
|
.group-rank-icon.mark-icon {
|
|
|
|
background-position: 100% 0;
|
|
|
|
}
|
2022-11-09 19:48:13 +00:00
|
|
|
.cont-title {
|
2022-11-09 21:25:19 +00:00
|
|
|
padding: 8px 5px 10px;
|
2022-11-09 19:48:13 +00:00
|
|
|
background: rgba(0, 0, 0, 0.4);
|
|
|
|
}
|
|
|
|
.cont-title span {
|
|
|
|
color: #fff;
|
|
|
|
width: 50%;
|
|
|
|
}
|
|
|
|
.cont-title .rank-time {
|
|
|
|
font-size: 12px;
|
|
|
|
color: #aaa;
|
|
|
|
display: inline-block;
|
|
|
|
transform: scale(0.85);
|
|
|
|
transform-origin: 0 50%;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2022-11-08 22:04:08 +00:00
|
|
|
.no-rank .group-rank,
|
2022-11-09 21:25:19 +00:00
|
|
|
.no-rank.group-rank-tip {
|
2022-11-07 20:08:24 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2022-08-05 22:12:57 +00:00
|
|
|
/*# sourceMappingURL=profile-list.css.map */
|