Files
2026-08-04 02:08:49 +08:00

128 lines
2.5 KiB
CSS

.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: var(--jx3-text-secondary);
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;
color: var(--jx3-text-muted);
}
.meta-row .price {
color: var(--jx3-gold-bright);
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: var(--jx3-gold-bright);
}
.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: var(--jx3-gold-bright);
font-weight: 700;
}
.empty-row {
height: 80px;
padding: 28px 10px;
text-align: center;
color: var(--jx3-text-muted);
font-weight: 400;
}
/* ===== 万宝楼公示(蓝色) ===== */
.table-card.notice .table-title {
color: var(--jx3-blue);
}
.table-card.notice .price-col {
color: var(--jx3-blue);
}
.table-card.notice thead {
background: rgba(63, 111, 153, 0.78);
}
/* ===== 万宝楼在售(绿色) ===== */
.table-card.sale .table-title {
color: var(--jx3-green);
}
.table-card.sale .price-col {
color: var(--jx3-green);
}
.table-card.sale thead {
background: rgba(43, 111, 82, 0.78);
}
/* ===== 查询区服(紫色) ===== */
.table-card.query .table-title {
color: var(--jx3-purple);
}
.table-card.query .price-col {
color: var(--jx3-purple);
}
.table-card.query thead {
background: rgba(90, 67, 126, 0.8);
}