fix: guard admin h5 entry pages

This commit is contained in:
Codex
2026-07-02 01:41:00 +08:00
parent 7d629843b7
commit d8e3db79d2
8 changed files with 283 additions and 16 deletions

View File

@@ -172,6 +172,62 @@
box-shadow: 0 5px 16px rgba(15, 23, 42, 0.04);
}
.platform-module-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 16px;
}
.platform-module-card {
position: relative;
overflow: hidden;
min-height: 170px;
padding: 22px;
border-radius: 28px;
background: linear-gradient(135deg, #1152d4, #38bdf8);
box-shadow: 0 12px 24px rgba(17, 82, 212, 0.14);
}
.platform-module-card:nth-child(2) { background: linear-gradient(135deg, #10b981, #2dd4bf); }
.platform-module-card:nth-child(3) { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.platform-module-card:nth-child(4) { background: linear-gradient(135deg, #f97316, #fbbf24); }
.platform-module-card::after {
content: "";
position: absolute;
right: -28px;
bottom: -44px;
width: 130px;
height: 130px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.16);
}
.platform-module-card .platform-row-main,
.platform-module-card .platform-row-meta,
.platform-module-label {
position: relative;
z-index: 1;
}
.platform-module-card .platform-row-main {
margin-top: 30px;
color: #fff;
font-size: 30px;
font-weight: 950;
}
.platform-module-card .platform-row-meta {
color: rgba(255, 255, 255, 0.82);
}
.platform-module-label {
display: block;
color: rgba(255, 255, 255, 0.82);
font-size: 20px;
font-weight: 850;
}
.platform-row-main {
display: block;
color: var(--tiku-text);