11
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
/* ===== 顶部信息 ===== */
|
||||
.info-bar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background: white;
|
||||
padding: 16px 20px;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.time {
|
||||
font-size: 18px;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.boss-final {
|
||||
font-size: 22px;
|
||||
font-weight: 800;
|
||||
color: #d63031;
|
||||
}
|
||||
|
||||
/* ===== 网格 ===== */
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(10, 1fr);
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.cell {
|
||||
background: white;
|
||||
border-radius: 10px;
|
||||
padding: 12px;
|
||||
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
|
||||
min-height: 110px;
|
||||
|
||||
/* 核心:全部居中 */
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.index {
|
||||
font-weight: bold;
|
||||
font-size: 18px;
|
||||
color: #333;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.boss {
|
||||
color: #d63031;
|
||||
font-weight: 700;
|
||||
font-size: 16px;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.buff {
|
||||
color: #0984e3;
|
||||
font-size: 14px;
|
||||
line-height: 1.5em;
|
||||
word-break: break-word;
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.zone-col,
|
||||
.server-col {
|
||||
width: 90px;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.tong-col {
|
||||
min-width: 150px;
|
||||
max-width: 220px;
|
||||
color: #333;
|
||||
font-weight: 700;
|
||||
word-break: break-word;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.time-col {
|
||||
min-width: 148px;
|
||||
color: #60657a;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.duration-col {
|
||||
width: 120px;
|
||||
color: #d93939;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-weight: 800;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
table {
|
||||
margin-top: 10px;
|
||||
text-align: left; /* 不影响表格内容 */
|
||||
}
|
||||
|
||||
.text-col {
|
||||
max-width: 360px;
|
||||
line-height: 1.5em;
|
||||
word-break: break-word;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
@@ -0,0 +1,738 @@
|
||||
/* ==============================
|
||||
页面标题
|
||||
============================== */
|
||||
|
||||
.page-header {
|
||||
margin-bottom: 24px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.page-title {
|
||||
margin: 0 0 10px;
|
||||
font-size: 40px;
|
||||
line-height: 1.3;
|
||||
font-weight: 800;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.page-subtitle {
|
||||
margin: 0;
|
||||
color: #777;
|
||||
font-size: 19px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
/* ==============================
|
||||
主卡片
|
||||
============================== */
|
||||
|
||||
.main-card {
|
||||
overflow: hidden;
|
||||
margin-bottom: 30px;
|
||||
background: #fff;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.09);
|
||||
}
|
||||
|
||||
.main-card-top {
|
||||
display: grid;
|
||||
grid-template-columns: 210px minmax(0, 1fr);
|
||||
gap: 30px;
|
||||
padding: 32px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.main-icon-wrapper {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.main-icon {
|
||||
display: flex;
|
||||
width: 190px;
|
||||
height: 190px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
background: #f4f1f9;
|
||||
border: 3px solid rgba(138, 79, 211, 0.3);
|
||||
border-radius: 22px;
|
||||
box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.main-icon img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.main-info {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.main-name-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 14px;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.main-name {
|
||||
margin: 0;
|
||||
font-size: 36px;
|
||||
line-height: 1.35;
|
||||
font-weight: 800;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.quality-badge {
|
||||
display: inline-flex;
|
||||
min-height: 38px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 7px 16px;
|
||||
border-radius: 999px;
|
||||
font-size: 17px;
|
||||
font-weight: 700;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.quality-1 {
|
||||
color: #555;
|
||||
background: #efefef;
|
||||
}
|
||||
|
||||
.quality-2 {
|
||||
color: #237a3b;
|
||||
background: #e5f6e9;
|
||||
}
|
||||
|
||||
.quality-3 {
|
||||
color: #1e6bd6;
|
||||
background: #e7f0fd;
|
||||
}
|
||||
|
||||
.quality-4 {
|
||||
color: #7c3fc2;
|
||||
background: #f0e7fb;
|
||||
}
|
||||
|
||||
.quality-5 {
|
||||
color: #c76b00;
|
||||
background: #fff0d9;
|
||||
}
|
||||
|
||||
.tip-list {
|
||||
margin: 0 0 22px;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.tip-list li {
|
||||
position: relative;
|
||||
margin-bottom: 9px;
|
||||
padding-left: 22px;
|
||||
color: #555;
|
||||
font-size: 19px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.tip-list li::before {
|
||||
position: absolute;
|
||||
top: 14px;
|
||||
left: 2px;
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
background: #8a4fd3;
|
||||
border-radius: 50%;
|
||||
content: "";
|
||||
}
|
||||
|
||||
/* ==============================
|
||||
主信息参数
|
||||
============================== */
|
||||
|
||||
.stat-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, minmax(120px, 1fr));
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
padding: 18px 15px;
|
||||
background: #f7f7fa;
|
||||
border: 1px solid #ededf2;
|
||||
border-radius: 13px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stat-label {
|
||||
margin-bottom: 8px;
|
||||
color: #777;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
color: #333;
|
||||
font-size: 22px;
|
||||
line-height: 1.4;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
/* ==============================
|
||||
汇总区域
|
||||
============================== */
|
||||
|
||||
.summary-section {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 1px;
|
||||
background: #e9e9ef;
|
||||
border-top: 1px solid #e9e9ef;
|
||||
}
|
||||
|
||||
.summary-panel {
|
||||
padding: 28px 30px 30px;
|
||||
background: #fff;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.summary-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px;
|
||||
margin-bottom: 20px;
|
||||
font-size: 25px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.summary-title.market {
|
||||
color: #d93939;
|
||||
}
|
||||
|
||||
.summary-title.cost {
|
||||
color: #2e8b57;
|
||||
}
|
||||
|
||||
.summary-count {
|
||||
color: #888;
|
||||
font-size: 16px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.price-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.price-box {
|
||||
padding: 20px 14px;
|
||||
background: #f8f8fa;
|
||||
border-radius: 13px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.price-box-label {
|
||||
margin-bottom: 10px;
|
||||
color: #777;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.price-box-value {
|
||||
color: #333;
|
||||
font-size: 21px;
|
||||
font-weight: 800;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.price-box.lowest .price-box-value {
|
||||
color: #2e8b57;
|
||||
}
|
||||
|
||||
.price-box.average .price-box-value {
|
||||
color: #d98b16;
|
||||
}
|
||||
|
||||
.price-box.highest .price-box-value {
|
||||
color: #d93939;
|
||||
}
|
||||
|
||||
.summary-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
gap: 12px 22px;
|
||||
margin-top: 18px;
|
||||
color: #777;
|
||||
font-size: 16px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.subtotal-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
gap: 16px;
|
||||
margin-top: 17px;
|
||||
padding: 17px 18px;
|
||||
background: #f4f4f8;
|
||||
border-radius: 11px;
|
||||
}
|
||||
|
||||
.subtotal-label {
|
||||
color: #555;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.subtotal-value {
|
||||
color: #2e8b57;
|
||||
font-size: 23px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
/* ==============================
|
||||
游戏币显示
|
||||
============================== */
|
||||
|
||||
.money {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
}
|
||||
|
||||
.money-gold {
|
||||
color: #cc8b00;
|
||||
}
|
||||
|
||||
.money-silver {
|
||||
color: #697581;
|
||||
}
|
||||
|
||||
.money-copper {
|
||||
color: #b5673b;
|
||||
}
|
||||
|
||||
.raw-price {
|
||||
display: block;
|
||||
margin-top: 5px;
|
||||
color: #999;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* ==============================
|
||||
材料区域标题
|
||||
============================== */
|
||||
|
||||
.material-section {
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
justify-content: space-between;
|
||||
gap: 20px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
margin: 0;
|
||||
font-size: 31px;
|
||||
font-weight: 800;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.section-desc {
|
||||
color: #777;
|
||||
font-size: 18px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* ==============================
|
||||
材料卡片
|
||||
============================== */
|
||||
|
||||
.material-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 22px;
|
||||
}
|
||||
|
||||
.material-card {
|
||||
overflow: hidden;
|
||||
background: #fff;
|
||||
border: 1px solid #e5e5eb;
|
||||
border-radius: 17px;
|
||||
box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
|
||||
text-align: left;
|
||||
transition:
|
||||
transform 0.18s ease,
|
||||
box-shadow 0.18s ease;
|
||||
}
|
||||
|
||||
.material-card:hover {
|
||||
transform: translateY(-3px);
|
||||
box-shadow: 0 9px 25px rgba(0, 0, 0, 0.11);
|
||||
}
|
||||
|
||||
.material-card-header {
|
||||
display: grid;
|
||||
grid-template-columns: 98px minmax(0, 1fr) auto;
|
||||
gap: 18px;
|
||||
align-items: center;
|
||||
padding: 22px;
|
||||
border-bottom: 1px solid #eeeeef;
|
||||
}
|
||||
|
||||
.material-icon {
|
||||
display: flex;
|
||||
width: 98px;
|
||||
height: 98px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
overflow: hidden;
|
||||
background: #f4f1f9;
|
||||
border: 2px solid rgba(138, 79, 211, 0.18);
|
||||
border-radius: 14px;
|
||||
}
|
||||
|
||||
.material-icon img {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
.material-info {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.material-name {
|
||||
margin: 0 0 10px;
|
||||
font-size: 26px;
|
||||
line-height: 1.35;
|
||||
font-weight: 800;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.material-meta {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 9px;
|
||||
}
|
||||
|
||||
.material-tag {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
min-height: 31px;
|
||||
padding: 5px 11px;
|
||||
border-radius: 999px;
|
||||
color: #666;
|
||||
background: #f0f0f3;
|
||||
font-size: 15px;
|
||||
line-height: 1.3;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.tag-trading {
|
||||
color: #1e6bd6;
|
||||
background: #e9f1fe;
|
||||
}
|
||||
|
||||
.tag-store {
|
||||
color: #2e8b57;
|
||||
background: #e7f5ed;
|
||||
}
|
||||
|
||||
.tag-quality-1 {
|
||||
color: #555;
|
||||
background: #efefef;
|
||||
}
|
||||
|
||||
.tag-quality-2 {
|
||||
color: #237a3b;
|
||||
background: #e5f6e9;
|
||||
}
|
||||
|
||||
.tag-quality-3 {
|
||||
color: #1e6bd6;
|
||||
background: #e7f0fd;
|
||||
}
|
||||
|
||||
.tag-quality-4 {
|
||||
color: #7c3fc2;
|
||||
background: #f0e7fb;
|
||||
}
|
||||
|
||||
.tag-quality-5 {
|
||||
color: #c76b00;
|
||||
background: #fff0d9;
|
||||
}
|
||||
|
||||
.material-quantity {
|
||||
min-width: 90px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.quantity-label {
|
||||
margin-bottom: 4px;
|
||||
color: #888;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.quantity-value {
|
||||
color: #333;
|
||||
font-size: 29px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.material-card-body {
|
||||
padding: 20px 22px 23px;
|
||||
}
|
||||
|
||||
.material-price-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.material-price-item {
|
||||
padding: 15px 10px;
|
||||
background: #f8f8fa;
|
||||
border-radius: 11px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.material-price-label {
|
||||
margin-bottom: 8px;
|
||||
color: #777;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.material-price-value {
|
||||
color: #333;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.material-total {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
gap: 14px;
|
||||
margin-top: 16px;
|
||||
padding: 16px 17px;
|
||||
background: #f5f5f8;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.material-total-label {
|
||||
color: #555;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.material-total-value {
|
||||
color: #d93939;
|
||||
font-size: 21px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.material-footer {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px 18px;
|
||||
margin-top: 15px;
|
||||
color: #888;
|
||||
font-size: 15px;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
/* ==============================
|
||||
商店材料
|
||||
============================== */
|
||||
|
||||
.store-price-box {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.store-price-item {
|
||||
padding: 20px 14px;
|
||||
background: #f8f8fa;
|
||||
border-radius: 11px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.store-price-label {
|
||||
margin-bottom: 9px;
|
||||
color: #777;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.store-price-value {
|
||||
color: #2e8b57;
|
||||
font-size: 22px;
|
||||
font-weight: 800;
|
||||
line-height: 1.55;
|
||||
}
|
||||
|
||||
.empty-card {
|
||||
grid-column: 1 / -1;
|
||||
min-height: 170px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background: #fff;
|
||||
border: 2px dashed #ccc;
|
||||
border-radius: 16px;
|
||||
color: #888;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
/* ==============================
|
||||
响应式
|
||||
============================== */
|
||||
|
||||
@media (max-width: 1100px) {
|
||||
.main-card-top {
|
||||
grid-template-columns: 180px minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.main-icon {
|
||||
width: 165px;
|
||||
height: 165px;
|
||||
}
|
||||
|
||||
.stat-grid {
|
||||
grid-template-columns: repeat(3, minmax(120px, 1fr));
|
||||
}
|
||||
|
||||
.summary-section {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.material-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 760px) {
|
||||
body {
|
||||
padding: 12px;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.page-title {
|
||||
font-size: 31px;
|
||||
}
|
||||
|
||||
.page-subtitle {
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.main-card-top {
|
||||
grid-template-columns: 1fr;
|
||||
padding: 22px 17px;
|
||||
}
|
||||
|
||||
.main-icon-wrapper {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.main-icon {
|
||||
width: 135px;
|
||||
height: 135px;
|
||||
}
|
||||
|
||||
.main-name {
|
||||
font-size: 29px;
|
||||
}
|
||||
|
||||
.tip-list li {
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.stat-grid {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 19px;
|
||||
}
|
||||
|
||||
.summary-panel {
|
||||
padding: 22px 17px;
|
||||
}
|
||||
|
||||
.summary-title {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.price-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.section-header {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
gap: 7px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 27px;
|
||||
}
|
||||
|
||||
.section-desc {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.material-card-header {
|
||||
grid-template-columns: 78px minmax(0, 1fr);
|
||||
padding: 18px;
|
||||
}
|
||||
|
||||
.material-icon {
|
||||
width: 78px;
|
||||
height: 78px;
|
||||
}
|
||||
|
||||
.material-name {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.material-quantity {
|
||||
grid-column: 1 / -1;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
min-width: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.quantity-value {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.material-price-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.store-price-box {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,305 @@
|
||||
.page-header {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin-bottom: 24px;
|
||||
padding: 28px 32px;
|
||||
border: 1px solid rgba(138, 161, 255, 0.22);
|
||||
border-radius: 18px;
|
||||
background:
|
||||
linear-gradient(
|
||||
135deg,
|
||||
rgba(45, 59, 94, 0.92),
|
||||
rgba(29, 37, 62, 0.92)
|
||||
);
|
||||
box-shadow:
|
||||
0 18px 40px rgba(0, 0, 0, 0.25),
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.05);
|
||||
}
|
||||
|
||||
.page-header::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: -80px;
|
||||
right: -40px;
|
||||
width: 260px;
|
||||
height: 260px;
|
||||
border-radius: 50%;
|
||||
background: rgba(107, 126, 255, 0.12);
|
||||
filter: blur(2px);
|
||||
}
|
||||
|
||||
.page-header::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
right: 36px;
|
||||
bottom: -65px;
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
border: 1px solid rgba(177, 132, 255, 0.14);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.header-content {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.header-label {
|
||||
margin-bottom: 9px;
|
||||
color: #98a7d9;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 3px;
|
||||
}
|
||||
|
||||
.role-name {
|
||||
margin: 0;
|
||||
color: #ffffff;
|
||||
font-size: 34px;
|
||||
font-weight: 800;
|
||||
line-height: 1.3;
|
||||
letter-spacing: 1px;
|
||||
text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
.header-line {
|
||||
width: 58px;
|
||||
height: 4px;
|
||||
margin-top: 17px;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(
|
||||
90deg,
|
||||
#6d8cff,
|
||||
#ae72ff
|
||||
);
|
||||
box-shadow: 0 0 14px rgba(112, 137, 255, 0.5);
|
||||
}
|
||||
|
||||
.achievement-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.achievement-card {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
min-width: 0;
|
||||
padding: 21px 22px;
|
||||
border: 1px solid rgba(130, 149, 207, 0.18);
|
||||
border-radius: 16px;
|
||||
background:
|
||||
linear-gradient(
|
||||
145deg,
|
||||
rgba(32, 40, 65, 0.97),
|
||||
rgba(24, 30, 50, 0.97)
|
||||
);
|
||||
box-shadow:
|
||||
0 12px 28px rgba(0, 0, 0, 0.2),
|
||||
inset 0 1px 0 rgba(255, 255, 255, 0.035);
|
||||
break-inside: avoid;
|
||||
}
|
||||
|
||||
.achievement-card::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 4px;
|
||||
height: 100%;
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
#6c89ff,
|
||||
#a66dff
|
||||
);
|
||||
}
|
||||
|
||||
.achievement-card.finished::before {
|
||||
background: linear-gradient(
|
||||
180deg,
|
||||
#4be0ad,
|
||||
#44a9ff
|
||||
);
|
||||
}
|
||||
|
||||
.card-header {
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.title-area {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.achievement-name {
|
||||
margin: 0 0 8px 0;
|
||||
color: #ffffff;
|
||||
font-size: 20px;
|
||||
font-weight: 750;
|
||||
line-height: 1.45;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.category-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.category-tag {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
min-height: 26px;
|
||||
padding: 4px 10px;
|
||||
border: 1px solid rgba(114, 139, 230, 0.24);
|
||||
border-radius: 999px;
|
||||
color: #b9c6ed;
|
||||
background: rgba(92, 115, 192, 0.11);
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.category-tag.detail {
|
||||
color: #d1bbf4;
|
||||
border-color: rgba(168, 114, 230, 0.24);
|
||||
background: rgba(156, 92, 203, 0.1);
|
||||
}
|
||||
|
||||
.status-area {
|
||||
display: flex;
|
||||
flex-shrink: 0;
|
||||
flex-direction: column;
|
||||
align-items: flex-end;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.status-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-width: 72px;
|
||||
padding: 6px 11px;
|
||||
border-radius: 999px;
|
||||
font-size: 12px;
|
||||
font-weight: 700;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.status-finished {
|
||||
color: #7ff0c9;
|
||||
border: 1px solid rgba(71, 219, 166, 0.28);
|
||||
background: rgba(53, 190, 143, 0.12);
|
||||
}
|
||||
|
||||
.status-unfinished {
|
||||
color: #ffbcbd;
|
||||
border: 1px solid rgba(255, 116, 116, 0.25);
|
||||
background: rgba(218, 75, 75, 0.11);
|
||||
}
|
||||
|
||||
.favorite-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
color: #f4c969;
|
||||
font-size: 12px;
|
||||
font-weight: 650;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.not-favorite {
|
||||
color: #707b9d;
|
||||
}
|
||||
|
||||
.description {
|
||||
min-height: 46px;
|
||||
margin: 0 0 18px 0;
|
||||
color: #aab5d1;
|
||||
font-size: 14px;
|
||||
line-height: 1.75;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.card-footer {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
padding-top: 14px;
|
||||
border-top: 1px solid rgba(130, 149, 207, 0.13);
|
||||
}
|
||||
|
||||
.point-label {
|
||||
color: #76819e;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.point-value {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
gap: 5px;
|
||||
color: #f4ce73;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.point-number {
|
||||
font-size: 22px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.point-unit {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.empty-state {
|
||||
grid-column: 1 / -1;
|
||||
padding: 60px 20px;
|
||||
border: 1px dashed rgba(135, 153, 207, 0.24);
|
||||
border-radius: 16px;
|
||||
color: #8d98b6;
|
||||
background: rgba(27, 34, 55, 0.75);
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
@media (max-width: 850px) {
|
||||
body {
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.achievement-list {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.role-name {
|
||||
font-size: 29px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 520px) {
|
||||
body {
|
||||
padding: 14px;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
padding: 23px 20px;
|
||||
}
|
||||
|
||||
.achievement-card {
|
||||
padding: 18px;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.status-area {
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.item-col {
|
||||
min-width: 120px;
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.server-col {
|
||||
min-width: 90px;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.map-col {
|
||||
max-width: 260px;
|
||||
color: #333;
|
||||
word-break: break-word;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.role-col {
|
||||
max-width: 260px;
|
||||
color: #333;
|
||||
font-weight: 700;
|
||||
word-break: break-word;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.time-col {
|
||||
min-width: 150px;
|
||||
color: #60657a;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
table {
|
||||
margin-top: 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.text-col {
|
||||
max-width: 360px;
|
||||
line-height: 1.5em;
|
||||
word-break: break-word;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* ===== 阵营整行着色 ===== */
|
||||
tr.camp-haoqi {
|
||||
color: #1e6bd6; /* 浩气盟 */
|
||||
}
|
||||
|
||||
tr.camp-eren {
|
||||
color: #d93939; /* 恶人谷 */
|
||||
}
|
||||
@@ -0,0 +1,245 @@
|
||||
.description {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f8c;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.legend {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
gap: 24px;
|
||||
margin-bottom: 20px;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.legend-item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 7px;
|
||||
}
|
||||
|
||||
.legend-color {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.legend-color.finished {
|
||||
background: #c9cdd3;
|
||||
}
|
||||
|
||||
.legend-color.unfinished {
|
||||
background: #2dbd78;
|
||||
}table {
|
||||
table-layout: fixed;
|
||||
margin-top: 10px;
|
||||
text-align: left;
|
||||
}th,
|
||||
td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
th:first-child,
|
||||
td:first-child {
|
||||
width: 250px;
|
||||
}
|
||||
|
||||
.map-info {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.map-name {
|
||||
color: #252a34;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.map-progress {
|
||||
margin-top: 7px;
|
||||
color: #8a909c;
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.boss-list {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.boss-item {
|
||||
position: relative;
|
||||
min-width: 145px;
|
||||
flex: 1 1 145px;
|
||||
max-width: 210px;
|
||||
min-height: 64px;
|
||||
padding: 11px 13px;
|
||||
border-radius: 9px;
|
||||
transition:
|
||||
transform 0.2s ease,
|
||||
box-shadow 0.2s ease;
|
||||
}
|
||||
|
||||
.boss-item:hover {
|
||||
transform: translateY(-2px);
|
||||
}
|
||||
|
||||
/*
|
||||
* finished 为 true:
|
||||
* 奖励已经获取,显示灰色
|
||||
*/
|
||||
.boss-item.finished {
|
||||
color: #747b85;
|
||||
background: #e1e4e8;
|
||||
border: 1px solid #d1d5db;
|
||||
}
|
||||
|
||||
.boss-item.finished:hover {
|
||||
box-shadow: 0 4px 12px rgba(75, 85, 99, 0.15);
|
||||
}
|
||||
|
||||
/*
|
||||
* finished 为 false:
|
||||
* 奖励尚未获取,显示绿色
|
||||
*/
|
||||
.boss-item.unfinished {
|
||||
color: white;
|
||||
background: #2dbd78;
|
||||
border: 1px solid #24a96a;
|
||||
}
|
||||
|
||||
.boss-item.unfinished:hover {
|
||||
box-shadow: 0 4px 12px rgba(45, 189, 120, 0.25);
|
||||
}
|
||||
|
||||
.boss-index {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
right: 8px;
|
||||
font-size: 11px;
|
||||
font-weight: 700;
|
||||
opacity: 0.65;
|
||||
}
|
||||
|
||||
.boss-name {
|
||||
padding-right: 18px;
|
||||
overflow: hidden;
|
||||
font-size: 15px;
|
||||
font-weight: 700;
|
||||
line-height: 1.4;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.boss-status {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 5px;
|
||||
margin-top: 6px;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.status-icon {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
border-radius: 50%;
|
||||
font-size: 11px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.boss-item.finished .status-icon {
|
||||
color: #777e88;
|
||||
background: rgba(255, 255, 255, 0.75);
|
||||
}
|
||||
|
||||
.boss-item.unfinished .status-icon {
|
||||
color: #22a566;
|
||||
background: white;
|
||||
}
|
||||
|
||||
.empty-data {
|
||||
padding: 50px 20px;
|
||||
color: #8a909c;
|
||||
text-align: center;
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
body {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
table,
|
||||
thead,
|
||||
tbody,
|
||||
tr,
|
||||
th,
|
||||
td {
|
||||
display: block;
|
||||
}
|
||||
|
||||
thead {
|
||||
display: none;
|
||||
}
|
||||
|
||||
table {
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
tbody tr {
|
||||
margin-bottom: 14px;
|
||||
overflow: hidden;
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
|
||||
}
|
||||
|
||||
th:first-child,
|
||||
td:first-child {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
td {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.map-info {
|
||||
padding: 17px;
|
||||
background: #fafbfc;
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
.boss-list {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.boss-item {
|
||||
max-width: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 500px) {
|
||||
.legend {
|
||||
gap: 14px;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
.boss-item {
|
||||
flex-basis: 100%;
|
||||
max-width: 100%;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,78 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin: 0 0 12px 0;
|
||||
color: #222;
|
||||
font-size: 22px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.section-title::before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 5px;
|
||||
height: 28px;
|
||||
background: #d93939;
|
||||
border-radius: 3px;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
tbody tr.camp-eren {
|
||||
color: #b91c1c;
|
||||
}
|
||||
|
||||
tbody tr.camp-haoqi {
|
||||
color: #1d4ed8;
|
||||
}
|
||||
|
||||
.camp-col,
|
||||
.status-col {
|
||||
width: 90px;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.castle-col {
|
||||
min-width: 120px;
|
||||
font-weight: 800;
|
||||
color: #333;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
tr.camp-eren .castle-col {
|
||||
color: #b91c1c;
|
||||
}
|
||||
|
||||
tr.camp-haoqi .castle-col {
|
||||
color: #1d4ed8;
|
||||
}
|
||||
|
||||
.time-col,
|
||||
.remain-col {
|
||||
min-width: 150px;
|
||||
color: #60657a;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.remain-col {
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
}
|
||||
@@ -0,0 +1,238 @@
|
||||
.help-page {
|
||||
position: relative;
|
||||
padding: 22px;
|
||||
overflow: hidden;
|
||||
border: 1px solid rgba(224, 200, 141, 0.72);
|
||||
border-radius: 20px;
|
||||
background:
|
||||
linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 24%),
|
||||
rgba(8, 27, 49, 0.92);
|
||||
box-shadow: inset 0 0 32px rgba(126, 161, 216, 0.06);
|
||||
}
|
||||
|
||||
.help-header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 24px;
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
.top-name {
|
||||
color: #fff0c8;
|
||||
font-size: 24px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
.top-summary {
|
||||
margin-top: 5px;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.top-desc {
|
||||
font-size: 14px;
|
||||
line-height: 1.75;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.section-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 16px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.section {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.section.span-2 {
|
||||
grid-column: span 2;
|
||||
}
|
||||
|
||||
.section.span-3 {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
padding: 11px 15px;
|
||||
border-bottom: 1px solid rgba(220, 199, 145, 0.3);
|
||||
background: linear-gradient(90deg, rgba(198, 165, 93, 0.24), rgba(105, 138, 194, 0.08));
|
||||
font-size: 19px;
|
||||
font-weight: 800;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
.section-body {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 0 18px;
|
||||
padding: 7px 13px 10px;
|
||||
}
|
||||
|
||||
.span-2 .section-body {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.feature {
|
||||
display: grid;
|
||||
grid-template-columns: 88px minmax(0, 1fr);
|
||||
gap: 9px;
|
||||
align-items: start;
|
||||
min-width: 0;
|
||||
padding: 8px 0;
|
||||
border-bottom: 1px dashed rgba(186, 205, 239, 0.15);
|
||||
}
|
||||
|
||||
.feature-name {
|
||||
padding-top: 3px;
|
||||
font-size: 14px;
|
||||
line-height: 1.5;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.commands {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 5px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.command {
|
||||
display: inline-block;
|
||||
padding: 3px 7px;
|
||||
border: 1px solid rgba(157, 184, 228, 0.22);
|
||||
border-radius: 5px;
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
word-break: break-all;
|
||||
}
|
||||
|
||||
.ranking-section .section-body {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.ranking-feature {
|
||||
grid-template-columns: 88px minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.ranking-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 5px;
|
||||
}
|
||||
|
||||
.ranking-list .command {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.trial-feature {
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.full-row {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.push-section .section-body {
|
||||
grid-template-columns: repeat(4, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.section--danger {
|
||||
border-color: rgba(213, 106, 99, 0.54) !important;
|
||||
}
|
||||
|
||||
.section--danger .section-title {
|
||||
color: #ffd6d3;
|
||||
background: linear-gradient(90deg, rgba(176, 65, 65, 0.3), rgba(105, 138, 194, 0.06));
|
||||
}
|
||||
|
||||
.section--success {
|
||||
border-color: rgba(98, 188, 146, 0.52) !important;
|
||||
}
|
||||
|
||||
.section--success .section-title {
|
||||
color: #d8ffeb;
|
||||
background: linear-gradient(90deg, rgba(39, 148, 103, 0.28), rgba(105, 138, 194, 0.06));
|
||||
}
|
||||
|
||||
.help-footer {
|
||||
margin-top: 17px;
|
||||
padding: 13px 16px 2px;
|
||||
border-top: 1px solid rgba(216, 195, 140, 0.24);
|
||||
font-size: 13px;
|
||||
line-height: 1.8;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.help-footer strong {
|
||||
color: #e6d4a4;
|
||||
}
|
||||
|
||||
@media (max-width: 1180px) {
|
||||
.section-grid {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.section.span-3 {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
.section.span-2 {
|
||||
grid-column: span 2;
|
||||
}
|
||||
|
||||
.ranking-list {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
|
||||
.push-section .section-body {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 760px) {
|
||||
.help-page {
|
||||
padding: 13px;
|
||||
border-radius: 14px;
|
||||
}
|
||||
|
||||
.help-header {
|
||||
align-items: flex-start;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.top-name {
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.top-desc {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.section-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.section.span-2,
|
||||
.section.span-3 {
|
||||
grid-column: span 1;
|
||||
}
|
||||
|
||||
.span-2 .section-body,
|
||||
.push-section .section-body {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.feature,
|
||||
.ranking-feature {
|
||||
grid-template-columns: 78px minmax(0, 1fr);
|
||||
}
|
||||
|
||||
.ranking-list {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,26 @@
|
||||
h2 {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 12px;
|
||||
color: #d93939;
|
||||
font-size: 26px;
|
||||
font-weight: 700;
|
||||
}table {
|
||||
margin-bottom: 20px;
|
||||
}th, td {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.lines {
|
||||
color: #555;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.price {
|
||||
color: #1e6bd6;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.empty {
|
||||
color: #999;
|
||||
font-style: italic;
|
||||
}
|
||||
@@ -0,0 +1,107 @@
|
||||
.header {
|
||||
background: #ffffff;
|
||||
border: 1px solid #e6e8ee;
|
||||
border-radius: 8px;
|
||||
padding: 22px 26px;
|
||||
margin-bottom: 16px;
|
||||
box-shadow: 0 6px 18px rgba(35, 38, 47, 0.06);
|
||||
}
|
||||
|
||||
.meta {
|
||||
display: flex;
|
||||
gap: 18px;
|
||||
margin-top: 10px;
|
||||
font-size: 15px;
|
||||
color: #667085;
|
||||
}
|
||||
|
||||
.table-wrapper {
|
||||
background: #ffffff;
|
||||
border: 1px solid #e6e8ee;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 6px 18px rgba(35, 38, 47, 0.06);
|
||||
}table {
|
||||
table-layout: fixed;
|
||||
}
|
||||
|
||||
th {
|
||||
padding: 14px 16px;
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
text-align: left;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
th:nth-child(2),
|
||||
th:nth-child(3),
|
||||
th:nth-child(4),
|
||||
td:nth-child(2),
|
||||
td:nth-child(3),
|
||||
td:nth-child(4) {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
td {
|
||||
padding: 14px 16px;
|
||||
border-bottom: 1px solid #edf0f5;
|
||||
font-size: 15px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.item {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.item-icon {
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
border-radius: 6px;
|
||||
flex: 0 0 auto;
|
||||
background: #edf0f5;
|
||||
}
|
||||
|
||||
.item-name {
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
font-weight: 700;
|
||||
color: #20232a;
|
||||
}
|
||||
|
||||
.price {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 4px;
|
||||
white-space: nowrap;
|
||||
font-weight: 700;
|
||||
color: #2f343d;
|
||||
}
|
||||
|
||||
.money-part {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 2px;
|
||||
margin-right: 3px;
|
||||
}
|
||||
|
||||
.money-icon {
|
||||
width: 17px;
|
||||
height: 17px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.sample {
|
||||
font-weight: 700;
|
||||
color: #2f343d;
|
||||
}
|
||||
|
||||
.time {
|
||||
color: #667085;
|
||||
font-size: 14px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
@@ -0,0 +1,84 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin: 0 0 12px 0;
|
||||
color: #222;
|
||||
font-size: 24px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.section-title::before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 5px;
|
||||
height: 30px;
|
||||
background: #2f74d0;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.cards {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.card {
|
||||
display: grid;
|
||||
grid-template-columns: 54px minmax(0, 1fr);
|
||||
gap: 12px;
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
padding: 14px;
|
||||
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 8px;
|
||||
object-fit: cover;
|
||||
background: #f1f2f6;
|
||||
}
|
||||
|
||||
.head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.name {
|
||||
color: #222;
|
||||
font-size: 18px;
|
||||
font-weight: 800;
|
||||
line-height: 1.25;
|
||||
}
|
||||
|
||||
.tag {
|
||||
color: #5d6680;
|
||||
background: #eef2f8;
|
||||
border-radius: 999px;
|
||||
padding: 2px 8px;
|
||||
font-size: 13px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.desc {
|
||||
color: #333;
|
||||
font-size: 15px;
|
||||
line-height: 1.55;
|
||||
word-break: break-word;
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
.meta {
|
||||
margin-bottom: 22px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.summary {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 14px;
|
||||
margin-bottom: 22px;
|
||||
}
|
||||
|
||||
.stat {
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
padding: 18px 14px;
|
||||
text-align: center;
|
||||
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
|
||||
}
|
||||
|
||||
.label {
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.value {
|
||||
color: #d93939;
|
||||
font-size: 30px;
|
||||
line-height: 1;
|
||||
font-weight: 800;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.skill-col {
|
||||
width: 34%;
|
||||
font-weight: 800;
|
||||
color: #333;
|
||||
word-break: break-word;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.leader-col {
|
||||
width: 30%;
|
||||
color: #333;
|
||||
word-break: break-word;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.color-col,
|
||||
.level-col {
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.level-col {
|
||||
color: #d93939;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
table {
|
||||
margin-top: 10px;
|
||||
text-align: left; /* 不影响表格内容 */
|
||||
}
|
||||
|
||||
.text-col {
|
||||
max-width: 360px;
|
||||
line-height: 1.5em;
|
||||
word-break: break-word;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.event-col {
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.role-col {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.time-col {
|
||||
color: #60657a;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,99 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
margin-top: 10px;
|
||||
table-layout: fixed;
|
||||
text-align: left;
|
||||
}th,
|
||||
td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* 角色列 */
|
||||
.role-col {
|
||||
width: 16%;
|
||||
color: #333333;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
/* 频道列 */
|
||||
.channel-col {
|
||||
width: 10%;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* 消息列 */
|
||||
.message-col {
|
||||
width: 56%;
|
||||
color: #333333;
|
||||
font-weight: 600;
|
||||
line-height: 1.65;
|
||||
word-break: break-word;
|
||||
overflow-wrap: anywhere;
|
||||
}
|
||||
|
||||
/* 时间列 */
|
||||
.time-col {
|
||||
width: 18%;
|
||||
color: #757b8f;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* 频道标签 */
|
||||
.channel-tag {
|
||||
display: inline-block;
|
||||
min-width: 58px;
|
||||
padding: 5px 10px;
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.channel-world {
|
||||
color: #d93939;
|
||||
border: 1px solid #f3bcbc;
|
||||
background: #fff0f0;
|
||||
}
|
||||
|
||||
.channel-school {
|
||||
color: #7d43b7;
|
||||
border: 1px solid #d8c0ef;
|
||||
background: #f6effd;
|
||||
}
|
||||
|
||||
.channel-team {
|
||||
color: #197d5b;
|
||||
border: 1px solid #b8e4d5;
|
||||
background: #edf9f5;
|
||||
}
|
||||
|
||||
.channel-map {
|
||||
color: #1e6bd6;
|
||||
border: 1px solid #bdd3f5;
|
||||
background: #eef5ff;
|
||||
}
|
||||
|
||||
.channel-other {
|
||||
color: #666666;
|
||||
border: 1px solid #d8d8d8;
|
||||
background: #f4f4f4;
|
||||
}
|
||||
|
||||
.empty-row td {
|
||||
padding: 50px 20px;
|
||||
color: #8a8fa3;
|
||||
font-size: 17px;
|
||||
text-align: center;
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
.section {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 16px;
|
||||
border-left: 4px solid #4f7cff;
|
||||
padding-left: 10px;
|
||||
color: #1f2a44;
|
||||
}
|
||||
|
||||
.card-container {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: #ffffff;
|
||||
border-radius: 8px;
|
||||
padding: 16px 12px;
|
||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
min-height: 90px;
|
||||
}
|
||||
|
||||
.card img {
|
||||
width: 100%;
|
||||
max-width: 180px;
|
||||
height: auto; /* 自动保持比例 */
|
||||
object-fit: contain;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.event-name {
|
||||
font-size: 22px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 4px;
|
||||
color: #2b3a67;
|
||||
}
|
||||
|
||||
.time {
|
||||
font-size: 22px;
|
||||
color: #7a7f99;
|
||||
}
|
||||
|
||||
.empty {
|
||||
color: #999;
|
||||
font-size: 14px;
|
||||
padding: 10px 0;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
table {
|
||||
margin-top: 10px;
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.rank-1 { color: gold; font-weight: bold; }
|
||||
.rank-2 { color: silver; font-weight: bold; }
|
||||
.rank-3 { color: #cd7f32; font-weight: bold; }
|
||||
|
||||
.winrate {
|
||||
color: #27ae60;
|
||||
font-weight: bold;
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.school {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.school-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
object-fit: contain;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.num-col {
|
||||
color: #d93939;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,84 @@
|
||||
.item {
|
||||
display: flex;
|
||||
background: #fff;
|
||||
border-radius: 14px;
|
||||
box-shadow: 0 6px 18px rgba(0,0,0,0.08);
|
||||
margin-bottom: 22px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.item img {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
object-fit: contain;
|
||||
background: #fafafa;
|
||||
padding: 14px;
|
||||
}
|
||||
|
||||
.info {
|
||||
flex: 1;
|
||||
padding: 18px 22px;
|
||||
}
|
||||
|
||||
.name {
|
||||
font-size: 26px;
|
||||
font-weight: 800;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
/* 品质颜色 */
|
||||
.q1 { color: #999; }
|
||||
.q2 { color: #2ecc71; }
|
||||
.q3 { color: #3498db; }
|
||||
.q4 { color: #9b59b6; }
|
||||
.q5 { color: #e67e22; }
|
||||
|
||||
.meta {
|
||||
font-size: 15px;
|
||||
color: #555;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.meta span {
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
.tip {
|
||||
background: #f8f9fb;
|
||||
border-left: 4px solid #d93939;
|
||||
padding: 8px 12px;
|
||||
font-size: 14px;
|
||||
color: #555;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.attrs {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.attr {
|
||||
background: #fafafa;
|
||||
border-radius: 10px;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.attr-name {
|
||||
font-size: 13px;
|
||||
color: #777;
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
|
||||
.attr-value {
|
||||
font-size: 17px;
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.footer {
|
||||
margin-top: 10px;
|
||||
font-size: 14px;
|
||||
color: #777;
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin: 0 0 12px 0;
|
||||
color: #222;
|
||||
font-size: 24px;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.section-title::before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 5px;
|
||||
height: 30px;
|
||||
background: #d93939;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.cards {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.card {
|
||||
display: grid;
|
||||
grid-template-columns: 54px minmax(0, 1fr);
|
||||
gap: 12px;
|
||||
background: white;
|
||||
border-radius: 12px;
|
||||
padding: 14px;
|
||||
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
|
||||
}
|
||||
|
||||
.icon {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
border-radius: 8px;
|
||||
object-fit: cover;
|
||||
background: #f1f2f6;
|
||||
}
|
||||
|
||||
.head {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.name {
|
||||
color: #222;
|
||||
font-size: 18px;
|
||||
font-weight: 800;
|
||||
line-height: 1.25;
|
||||
}
|
||||
|
||||
.tag {
|
||||
color: white;
|
||||
background: #d93939;
|
||||
border-radius: 999px;
|
||||
padding: 2px 8px;
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.interval {
|
||||
color: #7a7f99;
|
||||
background: #f1f2f6;
|
||||
border-radius: 999px;
|
||||
padding: 2px 8px;
|
||||
font-size: 13px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.desc {
|
||||
color: #333;
|
||||
font-size: 15px;
|
||||
line-height: 1.55;
|
||||
word-break: break-word;
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.event-col {
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.count-col {
|
||||
color: #d93939;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.role-col {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.time-col {
|
||||
color: #60657a;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
table {
|
||||
margin-top: 10px;
|
||||
text-align: left; /* 不影响表格内容 */
|
||||
}
|
||||
|
||||
.text-col {
|
||||
max-width: 360px;
|
||||
line-height: 1.5em;
|
||||
word-break: break-word;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
.section {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
.section-title {
|
||||
font-size: 32px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 16px;
|
||||
border-left: 4px solid #4f7cff;
|
||||
padding-left: 10px;
|
||||
color: #1f2a44;
|
||||
}
|
||||
|
||||
.card-container {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 16px;
|
||||
}
|
||||
.card {
|
||||
border-radius: 8px;
|
||||
padding: 30px 12px;
|
||||
text-align: center;
|
||||
font-weight: 600;
|
||||
font-size: 28px;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
/* 整块背景颜色控制 */
|
||||
.爆满 {
|
||||
background: #d9534f; /* 红 */
|
||||
}
|
||||
.拥挤 {
|
||||
background: #f0ad4e; /* 橙 */
|
||||
color: #3b2e00;
|
||||
}
|
||||
.正常, .顺畅 {
|
||||
background: #4cae4c; /* 绿 */
|
||||
}
|
||||
.维护 {
|
||||
background: #bfbfbf; /* 灰 */
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.empty {
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
padding: 6px 0;
|
||||
}
|
||||
|
||||
@media (max-width: 1000px) {
|
||||
.card-container { grid-template-columns: repeat(2, 1fr); }
|
||||
}
|
||||
@media (max-width: 600px) {
|
||||
.card-container { grid-template-columns: repeat(1, 1fr); }
|
||||
}
|
||||
@@ -0,0 +1,61 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.rank-col,
|
||||
.level-col,
|
||||
.camp-col,
|
||||
.score-col {
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.rank-col {
|
||||
width: 56px;
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.force {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
min-width: 108px;
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.force-icon {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
border-radius: 50%;
|
||||
object-fit: contain;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.role-col {
|
||||
min-width: 120px;
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.tong-col {
|
||||
max-width: 260px;
|
||||
word-break: break-word;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.score-col {
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.rank-col,
|
||||
.people-col,
|
||||
.score-col {
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.rank-col {
|
||||
width: 56px;
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.tong-col {
|
||||
min-width: 220px;
|
||||
font-weight: 800;
|
||||
color: #333;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.master-col {
|
||||
min-width: 150px;
|
||||
color: #333;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.castle-col {
|
||||
min-width: 110px;
|
||||
color: #60657a;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.people-col {
|
||||
color: #333;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.score-col {
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.rank-col,
|
||||
.people-col,
|
||||
.score-col {
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.rank-col {
|
||||
width: 56px;
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.tong-col {
|
||||
min-width: 220px;
|
||||
font-weight: 800;
|
||||
color: #333;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.master-col {
|
||||
min-width: 150px;
|
||||
color: #333;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.castle-col {
|
||||
min-width: 110px;
|
||||
color: #60657a;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.people-col {
|
||||
color: #333;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.score-col {
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.rank-col,
|
||||
.people-col,
|
||||
.score-col {
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.rank-col {
|
||||
width: 56px;
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.tong-col {
|
||||
min-width: 220px;
|
||||
font-weight: 800;
|
||||
color: #333;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.master-col {
|
||||
min-width: 150px;
|
||||
color: #333;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.castle-col {
|
||||
min-width: 110px;
|
||||
color: #60657a;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.people-col {
|
||||
color: #333;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.score-col {
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
/* ====== 日历网格 ====== */
|
||||
.calendar {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, 1fr);
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
/* 表头 */
|
||||
.week {
|
||||
text-align: center;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
color: #555;
|
||||
}
|
||||
|
||||
/* 卡片基础 */
|
||||
.card {
|
||||
min-height: 120px;
|
||||
border-radius: 12px;
|
||||
padding: 12px;
|
||||
box-sizing: border-box;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
/* 状态样式 */
|
||||
.card.past {
|
||||
background: #e5e5e5;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.card.today {
|
||||
background: #3b82f6;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.card.future {
|
||||
background: #ffffff;
|
||||
color: #333;
|
||||
border: 1px solid #ddd;
|
||||
}
|
||||
|
||||
/* 内容 */
|
||||
.date {
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.line {
|
||||
font-size: 16px;
|
||||
margin-top: 6px;
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.rank-col,
|
||||
.number-col {
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.rank-col {
|
||||
width: 60px;
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.role-col {
|
||||
min-width: 180px;
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.score-col {
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
}
|
||||
@@ -0,0 +1,49 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.force-col {
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.force {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.force-icon {
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 50%;
|
||||
object-fit: contain;
|
||||
flex: 0 0 auto;
|
||||
}
|
||||
|
||||
.name-col {
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.small-col {
|
||||
white-space: nowrap;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.comment-col {
|
||||
max-width: 420px;
|
||||
line-height: 1.5;
|
||||
word-break: break-word;
|
||||
color: #333;
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
table {
|
||||
margin-top: 10px;
|
||||
text-align: left; /* 不影响表格内容 */
|
||||
}
|
||||
|
||||
.text-col {
|
||||
max-width: 360px;
|
||||
line-height: 1.5em;
|
||||
word-break: break-word;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
@@ -0,0 +1,76 @@
|
||||
.header {
|
||||
margin-bottom: 24px;
|
||||
color: #1f2a44;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 34px;
|
||||
font-weight: 800;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.meta {
|
||||
font-size: 20px;
|
||||
color: #7a7f99;
|
||||
}
|
||||
|
||||
.section {
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
margin-bottom: 16px;
|
||||
border-left: 4px solid #4f7cff;
|
||||
padding-left: 10px;
|
||||
color: #1f2a44;
|
||||
}
|
||||
|
||||
.card-container {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.card {
|
||||
background: #ffffff;
|
||||
border-radius: 8px;
|
||||
padding: 16px 12px;
|
||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
min-height: 90px;
|
||||
}
|
||||
|
||||
.card img {
|
||||
width: 100%;
|
||||
max-width: 180px;
|
||||
height: auto;
|
||||
object-fit: contain;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.event-name {
|
||||
font-size: 22px;
|
||||
font-weight: 600;
|
||||
margin-bottom: 4px;
|
||||
color: #2b3a67;
|
||||
}
|
||||
|
||||
.time {
|
||||
font-size: 22px;
|
||||
color: #7a7f99;
|
||||
}
|
||||
|
||||
.empty {
|
||||
background: #ffffff;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
|
||||
color: #7a7f99;
|
||||
font-size: 20px;
|
||||
padding: 22px;
|
||||
}
|
||||
@@ -0,0 +1,155 @@
|
||||
.goods-image {
|
||||
display: block;
|
||||
width: 100%;
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.goods-desc {
|
||||
font-size: 16px;
|
||||
line-height: 1.8;
|
||||
color: #444;
|
||||
margin: 0 0 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.meta-row {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 20px 40px;
|
||||
font-size: 18px;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.meta-row .price {
|
||||
color: #d93939;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.table-wrapper {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, minmax(0, 1fr));
|
||||
gap: 20px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
.table-card {
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.table-title {
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 8px;
|
||||
text-align: center;
|
||||
color: #d93939;
|
||||
}
|
||||
|
||||
.table-scroll {
|
||||
width: 100%;
|
||||
overflow-x: auto;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
|
||||
}table {
|
||||
min-width: 420px;
|
||||
text-align: left;
|
||||
}th,
|
||||
td {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
th {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.server-col {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.price-col {
|
||||
color: #d93939;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.empty-row {
|
||||
height: 80px;
|
||||
padding: 28px 10px;
|
||||
text-align: center;
|
||||
color: #999999;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
/* ===== 万宝楼公示(蓝色) ===== */
|
||||
|
||||
.table-card.notice .table-title {
|
||||
color: #1e6bd6;
|
||||
}
|
||||
|
||||
.table-card.notice .price-col {
|
||||
color: #1e6bd6;
|
||||
}
|
||||
|
||||
.table-card.notice thead {
|
||||
background: #1e6bd6;
|
||||
}
|
||||
|
||||
/* ===== 万宝楼在售(绿色) ===== */
|
||||
|
||||
.table-card.sale .table-title {
|
||||
color: #2e8b57;
|
||||
}
|
||||
|
||||
.table-card.sale .price-col {
|
||||
color: #2e8b57;
|
||||
}
|
||||
|
||||
.table-card.sale thead {
|
||||
background: #2e8b57;
|
||||
}
|
||||
|
||||
/* ===== 查询区服(紫色) ===== */
|
||||
|
||||
.table-card.query .table-title {
|
||||
color: #8a4fd3;
|
||||
}
|
||||
|
||||
.table-card.query .price-col {
|
||||
color: #8a4fd3;
|
||||
}
|
||||
|
||||
.table-card.query thead {
|
||||
background: #8a4fd3;
|
||||
}
|
||||
|
||||
@media (max-width: 1100px) {
|
||||
.table-wrapper {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 720px) {
|
||||
body {
|
||||
padding: 12px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.goods-desc {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.meta-row {
|
||||
gap: 12px 20px;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.table-wrapper {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
table {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.purple {
|
||||
color: #a020f0;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.blue {
|
||||
color: #1e90ff;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.kungfu {
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
/* ====== 列表 ====== */
|
||||
.list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
/* 卡片 */
|
||||
.card {
|
||||
background: #ffffff;
|
||||
border-radius: 12px;
|
||||
padding: 16px 18px;
|
||||
box-shadow: 0 4px 14px rgba(0,0,0,0.06);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* 时间 */
|
||||
.time {
|
||||
width: 70px;
|
||||
text-align: center;
|
||||
font-size: 26px;
|
||||
font-weight: 700;
|
||||
color: #2563eb;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
/* 内容 */
|
||||
.content {
|
||||
flex: 1;
|
||||
padding: 0 16px;
|
||||
}
|
||||
|
||||
.stage {
|
||||
font-size: 22px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.meta {
|
||||
font-size: 18px;
|
||||
color: #666;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.desc {
|
||||
font-size: 20px;
|
||||
color: #444;
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
/* 图标 */
|
||||
.icon {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 8px;
|
||||
background: #e5e7eb;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
color: #374151;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
table {
|
||||
margin-top: 10px;
|
||||
text-align: left; /* 不影响表格内容 */
|
||||
}
|
||||
|
||||
.text-col {
|
||||
max-width: 360px;
|
||||
line-height: 1.5em;
|
||||
word-break: break-word;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
@@ -0,0 +1,158 @@
|
||||
.panel {
|
||||
width: 1100px;
|
||||
margin: auto;
|
||||
background: #ffffff;
|
||||
border-radius: 12px;
|
||||
padding: 22px;
|
||||
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
/* ===== 头部 ===== */
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
border-bottom: 1px solid #ddd;
|
||||
padding-bottom: 14px;
|
||||
}
|
||||
|
||||
.role-name {
|
||||
font-size: 40px;
|
||||
font-weight: bold;
|
||||
color: #1f1f1f;
|
||||
}
|
||||
|
||||
.sub-info {
|
||||
margin-top: 6px;
|
||||
font-size: 22px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* ===== 头像 + 核心数据 ===== */
|
||||
.stats-wrap {
|
||||
display: flex;
|
||||
gap: 24px;
|
||||
margin: 26px 0;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
/* 头像区域 */
|
||||
.avatar-box {
|
||||
width: 280px;
|
||||
height: 360px;
|
||||
background: #e9ebf1;
|
||||
border-radius: 16px;
|
||||
overflow: hidden;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.avatar-box img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
/* 右侧数据 */
|
||||
.stats {
|
||||
flex: 1;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-template-rows: repeat(2, 1fr);
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
/* 单个数据块 */
|
||||
.stat-box {
|
||||
background: #f5f6fa;
|
||||
border-radius: 12px;
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stat-title {
|
||||
font-size: 26px;
|
||||
color: #777;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 36px;
|
||||
margin-top: 8px;
|
||||
font-weight: bold;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.winrate {
|
||||
color: #2fbf71;
|
||||
}
|
||||
|
||||
.mmr {
|
||||
color: #f5a623;
|
||||
}
|
||||
|
||||
/* ===== 表格 ===== */table {
|
||||
margin-top: 20px;
|
||||
font-size: 18px;
|
||||
table-layout: fixed;
|
||||
}th, td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
th {
|
||||
color: #666;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
tbody tr:nth-child(odd) {
|
||||
background: #ffffff;
|
||||
}
|
||||
|
||||
.win {
|
||||
color: #2fbf71;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.lose {
|
||||
color: #e65050;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.mmr-up {
|
||||
color: #2fbf71;
|
||||
}
|
||||
|
||||
.mmr-down {
|
||||
color: #e65050;
|
||||
}
|
||||
|
||||
.mvp {
|
||||
color: #f5a623;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.time-col {
|
||||
width: 170px;
|
||||
font-size: 16px;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.duration-col {
|
||||
width: 92px;
|
||||
}
|
||||
|
||||
.kungfu-col {
|
||||
width: 150px;
|
||||
}
|
||||
|
||||
.result-col {
|
||||
width: 64px;
|
||||
}
|
||||
|
||||
.score-col {
|
||||
width: 104px;
|
||||
}
|
||||
|
||||
.grade-col {
|
||||
width: 96px;
|
||||
}
|
||||
|
||||
.mvp-col {
|
||||
width: 58px;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
table {
|
||||
margin-top: 10px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.text-col {
|
||||
max-width: 360px;
|
||||
line-height: 1.5em;
|
||||
word-break: break-word;
|
||||
font-weight: 600;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
/* ===== 阵营整行着色 ===== */
|
||||
tr.camp-haoqi {
|
||||
color: #1e6bd6; /* 浩气盟 */
|
||||
}
|
||||
|
||||
tr.camp-eren {
|
||||
color: #d93939; /* 恶人谷 */
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
tbody tr.camp-eren {
|
||||
background: #fff2f2;
|
||||
color: #b91c1c;
|
||||
}
|
||||
|
||||
tbody tr.camp-haoqi {
|
||||
background: #eff6ff;
|
||||
color: #1d4ed8;
|
||||
}
|
||||
|
||||
.camp-col {
|
||||
width: 90px;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-weight: 800;
|
||||
}
|
||||
|
||||
.fenxian-col,
|
||||
.server-col {
|
||||
width: 130px;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.role-col {
|
||||
max-width: 320px;
|
||||
color: #333;
|
||||
font-weight: 700;
|
||||
word-break: break-word;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
tr.camp-eren .role-col {
|
||||
color: #b91c1c;
|
||||
}
|
||||
|
||||
tr.camp-haoqi .role-col {
|
||||
color: #1d4ed8;
|
||||
}
|
||||
|
||||
.time-col {
|
||||
min-width: 150px;
|
||||
color: #60657a;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,84 @@
|
||||
.card {
|
||||
display: flex;
|
||||
background: #fff;
|
||||
border-radius: 16px;
|
||||
box-shadow: 0 6px 20px rgba(0,0,0,0.08);
|
||||
margin-bottom: 24px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.card img {
|
||||
width: 220px;
|
||||
height: 220px;
|
||||
object-fit: contain;
|
||||
background: #fafafa;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 1;
|
||||
padding: 20px 24px;
|
||||
}
|
||||
|
||||
.title {
|
||||
font-size: 26px;
|
||||
font-weight: 800;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
/* 品质颜色 */
|
||||
.q1 { color: #999; }
|
||||
.q2 { color: #2ecc71; }
|
||||
.q3 { color: #3498db; }
|
||||
.q4 { color: #9b59b6; }
|
||||
.q5 { color: #e67e22; }
|
||||
|
||||
.meta {
|
||||
color: #666;
|
||||
font-size: 15px;
|
||||
margin-bottom: 14px;
|
||||
}
|
||||
|
||||
.meta span {
|
||||
margin-right: 18px;
|
||||
}
|
||||
|
||||
.tip {
|
||||
background: #f8f9fb;
|
||||
border-left: 4px solid #d93939;
|
||||
padding: 10px 14px;
|
||||
font-size: 14px;
|
||||
color: #555;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.stats {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(5, 1fr);
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.stat {
|
||||
background: #fafafa;
|
||||
border-radius: 10px;
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.stat-name {
|
||||
font-size: 13px;
|
||||
color: #777;
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.stat-value {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.footer {
|
||||
margin-top: 12px;
|
||||
font-size: 14px;
|
||||
color: #888;
|
||||
}
|
||||
@@ -0,0 +1,34 @@
|
||||
.meta {
|
||||
margin-bottom: 24px;
|
||||
color: #7a7f99;
|
||||
font-size: 16px;
|
||||
text-align: center;
|
||||
}table {
|
||||
text-align: left;
|
||||
}th, td {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.server-col {
|
||||
width: 160px;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-weight: 800;
|
||||
color: #d93939;
|
||||
}
|
||||
|
||||
.map-col {
|
||||
max-width: 300px;
|
||||
color: #333;
|
||||
font-weight: 700;
|
||||
word-break: break-word;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.time-col {
|
||||
min-width: 160px;
|
||||
color: #60657a;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
@@ -0,0 +1,122 @@
|
||||
.header {
|
||||
background: #ffffff;
|
||||
border-radius: 14px;
|
||||
padding: 22px 26px;
|
||||
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.title-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 18px;
|
||||
}
|
||||
|
||||
.role {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
color: #565d70;
|
||||
font-size: 16px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.force-icon {
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
border-radius: 50%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.meta {
|
||||
margin-top: 12px;
|
||||
color: #7a7f99;
|
||||
font-size: 15px;
|
||||
line-height: 1.7;
|
||||
}
|
||||
|
||||
.summary {
|
||||
background: #ffffff;
|
||||
border-radius: 14px;
|
||||
padding: 22px 26px;
|
||||
box-shadow: 0 4px 16px rgba(0,0,0,0.08);
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.summary-top,
|
||||
.item-top {
|
||||
display: flex;
|
||||
align-items: baseline;
|
||||
justify-content: space-between;
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.summary-name {
|
||||
font-size: 24px;
|
||||
font-weight: 800;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.summary-percent {
|
||||
font-size: 34px;
|
||||
line-height: 1;
|
||||
font-weight: 900;
|
||||
color: #d93939;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.score {
|
||||
margin-top: 8px;
|
||||
color: #656d80;
|
||||
font-size: 15px;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.progress {
|
||||
height: 14px;
|
||||
margin-top: 14px;
|
||||
border-radius: 999px;
|
||||
overflow: hidden;
|
||||
background: #e7e9ef;
|
||||
}
|
||||
|
||||
.progress-fill {
|
||||
height: 100%;
|
||||
min-width: 3px;
|
||||
border-radius: 999px;
|
||||
background: linear-gradient(90deg, #d93939, #f59e42);
|
||||
}
|
||||
|
||||
.list {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.item {
|
||||
background: #ffffff;
|
||||
border-radius: 12px;
|
||||
padding: 15px 16px;
|
||||
box-shadow: 0 3px 12px rgba(0,0,0,0.06);
|
||||
}
|
||||
|
||||
.item-name {
|
||||
min-width: 0;
|
||||
font-size: 17px;
|
||||
font-weight: 800;
|
||||
color: #303543;
|
||||
word-break: break-word;
|
||||
}
|
||||
|
||||
.item-percent {
|
||||
color: #d93939;
|
||||
font-size: 18px;
|
||||
font-weight: 900;
|
||||
white-space: nowrap;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
.item .score {
|
||||
font-size: 14px;
|
||||
}
|
||||
@@ -0,0 +1,213 @@
|
||||
.meta {
|
||||
margin-bottom: 26px;
|
||||
color: #7a7f99;
|
||||
font-size: 18px;
|
||||
text-align: center;
|
||||
}table {
|
||||
table-layout: fixed;
|
||||
}th,
|
||||
td {
|
||||
height: 66px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
th {
|
||||
height: 52px;
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/*
|
||||
* 列宽分配
|
||||
*/
|
||||
.rank-width {
|
||||
width: 8%;
|
||||
}
|
||||
|
||||
.avatar-width {
|
||||
width: 9%;
|
||||
}
|
||||
|
||||
.force-width {
|
||||
width: 19%;
|
||||
}
|
||||
|
||||
.role-width {
|
||||
width: 25%;
|
||||
}
|
||||
|
||||
.server-width {
|
||||
width: 23%;
|
||||
}
|
||||
|
||||
.score-width {
|
||||
width: 16%;
|
||||
}
|
||||
|
||||
/*
|
||||
* 排名列
|
||||
*/
|
||||
.rank-col {
|
||||
color: #d93939;
|
||||
font-size: 18px;
|
||||
font-weight: 800;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/*
|
||||
* 头像列
|
||||
*/
|
||||
.avatar-col {
|
||||
padding-left: 4px;
|
||||
padding-right: 4px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
display: block;
|
||||
width: 46px;
|
||||
height: 46px;
|
||||
margin: 0 auto;
|
||||
border-radius: 50%;
|
||||
object-fit: cover;
|
||||
background: #eef2f8;
|
||||
}
|
||||
|
||||
/*
|
||||
* 职业列
|
||||
*/
|
||||
.force-col {
|
||||
padding-left: 4px;
|
||||
padding-right: 4px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.force {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 9px;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
color: #333;
|
||||
font-size: 17px;
|
||||
font-weight: 700;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.force-icon {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
object-fit: contain;
|
||||
flex: 0 0 auto;
|
||||
background: #eef2f8;
|
||||
}
|
||||
|
||||
.force-name {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/*
|
||||
* 角色列
|
||||
*/
|
||||
.role-name-col {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
color: #333;
|
||||
font-size: 17px;
|
||||
font-weight: 600;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/*
|
||||
* 服务器列
|
||||
*/
|
||||
.server-col {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
color: #333;
|
||||
font-size: 17px;
|
||||
text-align: center;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/*
|
||||
* 资历列
|
||||
*/
|
||||
.score-col {
|
||||
padding-left: 6px;
|
||||
padding-right: 10px;
|
||||
color: #d93939;
|
||||
font-size: 18px;
|
||||
font-weight: 800;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-variant-numeric: tabular-nums;
|
||||
}
|
||||
|
||||
/*
|
||||
* 小尺寸页面适配
|
||||
*/
|
||||
@media screen and (max-width: 760px) {
|
||||
body {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 30px;
|
||||
}
|
||||
|
||||
.meta {
|
||||
margin-bottom: 18px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
height: 58px;
|
||||
padding: 8px 5px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
th {
|
||||
height: 46px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.avatar {
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.force-icon {
|
||||
width: 34px;
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
.force {
|
||||
gap: 6px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.rank-col,
|
||||
.role-name-col,
|
||||
.server-col {
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
.score-col {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user