1249 lines
23 KiB
CSS
1249 lines
23 KiB
CSS
/* ============================================================
|
|
public.css - Shared styles across all pages
|
|
============================================================ */
|
|
|
|
:root {
|
|
--primary: #102b6a;
|
|
--primary-light: #1a3f8f;
|
|
--primary-hover: #0d224f;
|
|
--navy: #102b6a;
|
|
--navy-deep: #08183c;
|
|
--gold: #fdb933;
|
|
--gold-dark: #f5a623;
|
|
--orange: #f15a22;
|
|
--red: #e74c3c;
|
|
--red-dark: #c0392b;
|
|
--purple: #7b2d8e;
|
|
--green: #27ae60;
|
|
--white: #ffffff;
|
|
--bg: #eef3fb;
|
|
--bg-light: #f4f6fb;
|
|
--bg-body: #f5f6fa;
|
|
--text: #1f2a44;
|
|
--text-soft: #60708c;
|
|
--text-dark: #1a1a2e;
|
|
--text-default: #333333;
|
|
--text-muted: #6b7280;
|
|
--text-light: #999999;
|
|
--border: rgba(16, 43, 106, 0.1);
|
|
--border-light: #e5e7eb;
|
|
--border-lighter: #f0f0f0;
|
|
--shadow: 0 20px 48px rgba(16, 43, 106, 0.08);
|
|
--shadow-soft: 0 12px 26px rgba(16, 43, 106, 0.08);
|
|
--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
|
|
--radius-sm: 4px;
|
|
--radius-md: 18px;
|
|
--radius-lg: 28px;
|
|
--max-width: 1480px;
|
|
--font-main: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
1. Reset & Base
|
|
---------------------------------------------------------- */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
body {
|
|
font-family: var(--font-main);
|
|
background:
|
|
radial-gradient(circle at top left, rgba(253, 185, 51, 0.08), transparent 24%),
|
|
radial-gradient(circle at top right, rgba(16, 43, 106, 0.09), transparent 20%),
|
|
linear-gradient(180deg, #f9fbff 0%, #edf2fb 42%, #eef3fb 100%);
|
|
color: var(--text);
|
|
line-height: 1.6;
|
|
min-height: 100vh;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
ul {
|
|
list-style: none;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
display: block;
|
|
}
|
|
|
|
button,
|
|
input,
|
|
select {
|
|
font: inherit;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
2. Topbar (unified header)
|
|
---------------------------------------------------------- */
|
|
.topbar {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1000;
|
|
background:
|
|
linear-gradient(180deg, rgba(32, 74, 139, .98) 0%, rgba(18, 50, 111, .98) 48%, rgba(10, 31, 74, .98) 100%),
|
|
linear-gradient(90deg, rgba(8, 24, 60, .98), rgba(16, 43, 106, .98) 46%, rgba(15, 70, 126, .98));
|
|
border-top: 1px solid rgba(255, 255, 255, .1);
|
|
border-bottom: 1px solid rgba(253, 185, 51, .36);
|
|
box-shadow:
|
|
0 10px 24px rgba(8, 24, 60, .26),
|
|
inset 0 1px 0 rgba(255, 255, 255, .16),
|
|
inset 0 -1px 0 rgba(0, 0, 0, .24);
|
|
}
|
|
|
|
.topbar::before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0 0 auto;
|
|
height: 22px;
|
|
pointer-events: none;
|
|
background:
|
|
linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0)),
|
|
linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent);
|
|
}
|
|
|
|
.topbar::after {
|
|
content: "";
|
|
position: absolute;
|
|
inset: auto 0 -10px;
|
|
height: 10px;
|
|
pointer-events: none;
|
|
background: linear-gradient(180deg, rgba(8, 24, 60, .24), rgba(8, 24, 60, 0));
|
|
}
|
|
|
|
.topbar__inner {
|
|
position: relative;
|
|
z-index: 1;
|
|
width: min(var(--max-width), 100%);
|
|
margin: 0 auto;
|
|
min-height: 82px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 28px;
|
|
}
|
|
|
|
.topbar__logo {
|
|
width: 200px;
|
|
height: auto;
|
|
filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .24));
|
|
}
|
|
|
|
.topbar__nav {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
gap: 8px;
|
|
min-width: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.topbar__nav::-webkit-scrollbar {
|
|
display: none;
|
|
width: 0;
|
|
height: 0;
|
|
}
|
|
|
|
.topbar__nav-link {
|
|
position: relative;
|
|
display: inline-flex;
|
|
flex: 0 0 auto;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 12px 18px;
|
|
border-radius: 999px;
|
|
border: 1px solid transparent;
|
|
color: rgba(255, 255, 255, .82);
|
|
font-size: 15px;
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, .28);
|
|
box-shadow: none;
|
|
transition: .24s ease;
|
|
}
|
|
|
|
.topbar__nav-link:hover,
|
|
.topbar__nav-link.is-active {
|
|
color: var(--white);
|
|
background: rgba(255, 255, 255, .06);
|
|
border-color: rgba(255, 255, 255, .08);
|
|
box-shadow: none;
|
|
}
|
|
|
|
.topbar__nav-link.is-active::after {
|
|
content: "";
|
|
position: absolute;
|
|
left: 50%;
|
|
bottom: 4px;
|
|
width: 24px;
|
|
height: 3px;
|
|
transform: translateX(-50%);
|
|
border-radius: 999px;
|
|
background: linear-gradient(90deg, #ffd16a, var(--gold));
|
|
}
|
|
|
|
.topbar__user,
|
|
.topbar__guest,
|
|
.topbar__logged {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.topbar__profile {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
border-radius: 999px;
|
|
padding: 4px 8px;
|
|
border: 1px solid transparent;
|
|
transition: .24s ease;
|
|
}
|
|
|
|
.topbar__profile:hover {
|
|
background: rgba(255, 255, 255, .08);
|
|
border-color: rgba(255, 255, 255, .14);
|
|
}
|
|
|
|
.topbar__actions {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
gap: 6px;
|
|
}
|
|
|
|
.topbar__btn {
|
|
border: none;
|
|
border-radius: 999px;
|
|
padding: 10px 18px;
|
|
cursor: pointer;
|
|
transition: .24s ease;
|
|
}
|
|
|
|
.topbar__btn:hover {
|
|
filter: brightness(1.05);
|
|
}
|
|
|
|
.topbar__actions .topbar__btn {
|
|
padding: 7px 16px;
|
|
line-height: 1.15;
|
|
text-align: center;
|
|
}
|
|
|
|
.topbar__btn--ghost {
|
|
color: var(--white);
|
|
background: transparent;
|
|
border: 1px solid rgba(255, 255, 255, .22);
|
|
}
|
|
|
|
.topbar__btn--primary {
|
|
color: var(--navy-deep);
|
|
font-weight: 700;
|
|
background: linear-gradient(135deg, #ffd26b, var(--gold));
|
|
box-shadow: 0 4px 10px rgba(253, 185, 51, .16);
|
|
}
|
|
|
|
.topbar__btn--center {
|
|
color: var(--white);
|
|
background: rgba(255, 255, 255, .1);
|
|
border: 1px solid rgba(255, 255, 255, .18);
|
|
}
|
|
|
|
.topbar__btn--logout {
|
|
color: rgba(255, 255, 255, .82);
|
|
background: rgba(255, 255, 255, .06);
|
|
border: 1px solid rgba(255, 255, 255, .14);
|
|
}
|
|
|
|
.topbar__avatar {
|
|
width: 42px;
|
|
height: 42px;
|
|
border-radius: 50%;
|
|
border: 2px solid rgba(253, 185, 51, .7);
|
|
object-fit: cover;
|
|
}
|
|
|
|
.topbar__meta {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
}
|
|
|
|
.topbar__uname {
|
|
display: flex;
|
|
justify-content: center;
|
|
color: var(--white);
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.topbar__ubadge {
|
|
display: inline-flex;
|
|
width: fit-content;
|
|
padding: 3px 10px;
|
|
border-radius: 999px;
|
|
background: linear-gradient(135deg, #ffd26b, var(--gold));
|
|
color: var(--navy-deep);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
3. Site Footer (unified footer)
|
|
---------------------------------------------------------- */
|
|
.site-footer {
|
|
width: min(var(--max-width), 100%);
|
|
margin: 0 auto;
|
|
margin-top: 28px;
|
|
}
|
|
|
|
.site-footer__inner {
|
|
padding: 34px 38px;
|
|
border-radius: 28px;
|
|
border: 1px solid rgba(16, 43, 106, .08);
|
|
background: linear-gradient(135deg, rgba(8, 24, 60, .98), rgba(16, 43, 106, .96) 55%, rgba(17, 74, 126, .96));
|
|
}
|
|
|
|
.site-footer__layout {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
gap: 56px;
|
|
}
|
|
|
|
.site-footer__brand {
|
|
flex: 1 1 520px;
|
|
min-width: 0;
|
|
padding-left: 4px;
|
|
}
|
|
|
|
.site-footer__logo {
|
|
width: 250px;
|
|
}
|
|
|
|
.site-footer__inner p {
|
|
margin: 10px 0 0;
|
|
color: rgba(255, 255, 255, .8);
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.site-footer__copyright {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.site-footer__desc {
|
|
max-width: 100%;
|
|
color: rgba(255, 255, 255, .62) !important;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.site-footer__meta {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px 22px;
|
|
margin-top: 0;
|
|
color: rgba(255, 255, 255, .56);
|
|
font-size: 12px;
|
|
}
|
|
|
|
.site-footer__meta a,
|
|
.index-style-02 {
|
|
color: rgba(255, 255, 255, .56);
|
|
}
|
|
|
|
.site-footer__meta a:hover,
|
|
.index-style-02:hover {
|
|
color: rgba(255, 255, 255, .86);
|
|
}
|
|
|
|
.site-footer__contact {
|
|
width: 360px;
|
|
padding: 0;
|
|
border: none;
|
|
background: transparent;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.site-footer__contact.is-empty {
|
|
display: none;
|
|
}
|
|
|
|
.site-footer__contact-head {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 4px;
|
|
margin-bottom: 18px;
|
|
}
|
|
|
|
.site-footer__contact-kicker {
|
|
color: rgba(253, 185, 51, .9) !important;
|
|
font-size: 11px !important;
|
|
font-weight: 800;
|
|
line-height: 1;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0;
|
|
}
|
|
|
|
.site-footer__contact-head strong {
|
|
color: var(--white);
|
|
font-size: 24px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
.site-footer__contact-head span {
|
|
color: rgba(255, 255, 255, .58);
|
|
font-size: 12px;
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.site-footer__qr-grid {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
gap: 20px;
|
|
}
|
|
|
|
.site-footer__qr-card {
|
|
flex: 0 0 132px;
|
|
min-width: 0;
|
|
padding: 8px 8px 10px;
|
|
border-radius: 16px;
|
|
background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 249, 255, .96));
|
|
text-align: center;
|
|
box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
|
|
}
|
|
|
|
.site-footer__qr-card img {
|
|
width: 116px;
|
|
height: 116px;
|
|
border-radius: 12px;
|
|
object-fit: cover;
|
|
background: var(--white);
|
|
}
|
|
|
|
.site-footer__qr-card span {
|
|
display: block;
|
|
margin-top: 7px;
|
|
color: var(--navy-deep);
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
4. Ball Styles (unified ball system)
|
|
---------------------------------------------------------- */
|
|
.ball {
|
|
display: inline-flex;
|
|
box-sizing: border-box;
|
|
flex: 0 0 32px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 32px;
|
|
min-width: 32px;
|
|
height: 32px;
|
|
padding: 0;
|
|
border-radius: 999px;
|
|
color: var(--white);
|
|
font-size: 14px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.ball--compact {
|
|
flex-basis: 22px;
|
|
width: 22px;
|
|
min-width: 25px;
|
|
height: 25px;
|
|
font-size: 11px;
|
|
padding: 0;
|
|
}
|
|
|
|
.ball--red {
|
|
background: linear-gradient(180deg, #ff6d76, #f24858);
|
|
}
|
|
|
|
.ball--blue {
|
|
background: linear-gradient(180deg, #5b96ff, #306ee2);
|
|
}
|
|
|
|
.ball--orange {
|
|
background: linear-gradient(180deg, #ffb35f, #ff8c1a);
|
|
}
|
|
|
|
.ball--green {
|
|
background: linear-gradient(180deg, #45d59e, #1ea871);
|
|
}
|
|
|
|
.ball--purple {
|
|
background: linear-gradient(180deg, #a07cff, #7c57ef);
|
|
}
|
|
|
|
.ball--gold {
|
|
background: linear-gradient(180deg, #ffd35a, #f1a61a);
|
|
}
|
|
|
|
.ball--teal {
|
|
background: linear-gradient(180deg, #40d4ce, #119f9a);
|
|
}
|
|
|
|
.ball--violet {
|
|
background: linear-gradient(180deg, #c68cff, #8f57ea);
|
|
}
|
|
|
|
.ball--empty {
|
|
background: #dbe4f2;
|
|
color: #7d8ba4;
|
|
}
|
|
|
|
/* Legacy ball styles (compat) */
|
|
.red-q {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, #f15a22, #e74c3c);
|
|
color: #fff;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
margin: 1px 2px;
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 2px 6px rgba(241, 90, 34, 0.35);
|
|
}
|
|
|
|
.bule-q {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 28px;
|
|
height: 28px;
|
|
border-radius: 50%;
|
|
background: linear-gradient(135deg, #102b6a, #3b6fd4);
|
|
color: #fff;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
margin: 1px 2px;
|
|
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
|
|
box-shadow: 0 2px 6px rgba(16, 43, 106, 0.35);
|
|
}
|
|
|
|
.table-text {
|
|
font-size: 14px;
|
|
color: #333;
|
|
}
|
|
|
|
.table-img {
|
|
width: 30px;
|
|
height: 30px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
5. Main Container
|
|
---------------------------------------------------------- */
|
|
.cxz-main {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
6. Breadcrumb
|
|
---------------------------------------------------------- */
|
|
.cxz-breadcrumb {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
min-height: 48px;
|
|
padding: 14px 0 16px;
|
|
color: #6b7280;
|
|
font-size: 14px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.cxz-breadcrumb a {
|
|
color: #5f6f86;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.cxz-breadcrumb a:hover {
|
|
color: var(--primary);
|
|
}
|
|
|
|
.cxz-breadcrumb .sep {
|
|
margin: 0 1px;
|
|
color: #b8c1cf;
|
|
}
|
|
|
|
.cxz-breadcrumb span:not(.sep) {
|
|
color: #34425a;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
7. Lottery Tabs
|
|
---------------------------------------------------------- */
|
|
.cxz-lottery-tabs {
|
|
display: flex;
|
|
gap: 8px;
|
|
padding: 16px 0;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.cxz-lottery-tab {
|
|
padding: 8px 22px;
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
color: #6b7280;
|
|
background: #fff;
|
|
border: 1px solid #e5e7eb;
|
|
cursor: pointer;
|
|
transition: all 0.25s;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.cxz-lottery-tab:hover {
|
|
color: #102b6a;
|
|
border-color: #102b6a;
|
|
background: #f4f6fb;
|
|
}
|
|
|
|
.cxz-lottery-tab.active {
|
|
color: #fff;
|
|
background: #102b6a;
|
|
border-color: #102b6a;
|
|
box-shadow: 0 2px 8px rgba(16, 43, 106, 0.25);
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
8. Section Header
|
|
---------------------------------------------------------- */
|
|
.cxz-section-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 0;
|
|
border-bottom: 2px solid #f0f0f0;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
.cxz-section-title {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: #1a1a2e;
|
|
position: relative;
|
|
padding-left: 14px;
|
|
}
|
|
|
|
.cxz-section-title::before {
|
|
content: "";
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50%;
|
|
transform: translateY(-50%);
|
|
width: 4px;
|
|
height: 20px;
|
|
background: linear-gradient(180deg, #102b6a, #fdb933);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
.cxz-section-more {
|
|
font-size: 14px;
|
|
color: #6b7280;
|
|
cursor: pointer;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.cxz-section-more:hover {
|
|
color: #102b6a;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
9. Data Tables
|
|
---------------------------------------------------------- */
|
|
.cxz-table-box {
|
|
background: #fff;
|
|
border-radius: 10px;
|
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
|
|
overflow: hidden;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.cxz-table-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 16px 20px;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.cxz-table-title {
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
color: #1a1a2e;
|
|
}
|
|
|
|
.cxz-data-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.cxz-data-table thead {
|
|
background: #f4f6fb;
|
|
}
|
|
|
|
.cxz-data-table th {
|
|
padding: 12px 16px;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: #6b7280;
|
|
text-align: left;
|
|
white-space: nowrap;
|
|
border-bottom: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.cxz-data-table td {
|
|
padding: 12px 16px;
|
|
font-size: 14px;
|
|
color: #333;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.cxz-data-table tbody tr {
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.cxz-data-table tbody tr:hover {
|
|
background: #f9fafb;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
10. Pagination
|
|
---------------------------------------------------------- */
|
|
.cxz-pagination {
|
|
padding: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
11. CommonUtil Compat (ads & links)
|
|
---------------------------------------------------------- */
|
|
.PublicAdvertising {
|
|
background: #fff;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
.PublicAdvertisingUl {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 10px;
|
|
justify-content: center;
|
|
}
|
|
|
|
.PublicAdvertisingLi {
|
|
display: inline-block;
|
|
}
|
|
|
|
.PublicAdvertisingLi a {
|
|
display: inline-block;
|
|
padding: 4px 12px;
|
|
font-size: 13px;
|
|
color: #6b7280;
|
|
border-radius: 4px;
|
|
transition: all 0.2s;
|
|
background: #f4f6fb;
|
|
}
|
|
|
|
.PublicAdvertisingLi a:hover {
|
|
color: #102b6a;
|
|
background: #eef1f8;
|
|
}
|
|
|
|
.PublicAdvertisingImg {
|
|
display: block;
|
|
max-width: 100%;
|
|
border-radius: 6px;
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
}
|
|
|
|
.PublicAdvertisingImg:hover {
|
|
transform: scale(1.02);
|
|
box-shadow: 0 4px 16px rgba(16, 43, 106, 0.1);
|
|
}
|
|
|
|
.FooterPublicFriendship {
|
|
background: #fff;
|
|
padding: 16px 0;
|
|
border-top: 1px solid #e5e7eb;
|
|
}
|
|
|
|
.FooterPublicFriendship .other-box {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.FooterPublicFriendship .link-box {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
.FooterPublicFriendship .other-title {
|
|
font-size: 14px;
|
|
font-weight: 600;
|
|
color: #1a1a2e;
|
|
margin-bottom: 8px;
|
|
padding-left: 10px;
|
|
border-left: 3px solid #102b6a;
|
|
}
|
|
|
|
.FooterPublicFriendship .link-listUl {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 8px;
|
|
}
|
|
|
|
.FooterPublicFriendship .link-listLi {
|
|
display: inline-block;
|
|
}
|
|
|
|
.FooterPublicFriendship .link-listLi a {
|
|
display: inline-block;
|
|
padding: 4px 12px;
|
|
font-size: 13px;
|
|
color: #6b7280;
|
|
border-radius: 4px;
|
|
transition: all 0.2s;
|
|
background: #f4f6fb;
|
|
}
|
|
|
|
.FooterPublicFriendship .link-listLi a:hover {
|
|
color: #102b6a;
|
|
background: #eef1f8;
|
|
}
|
|
|
|
.FooterPublicAdvertising {
|
|
background: #f4f6fb;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
12. Gotop Button
|
|
---------------------------------------------------------- */
|
|
.gotop {
|
|
position: fixed;
|
|
right: 28px;
|
|
bottom: 28px;
|
|
width: 52px;
|
|
height: 52px;
|
|
border: none;
|
|
border-radius: 50%;
|
|
color: var(--navy-deep);
|
|
background: linear-gradient(135deg, #ffd26b, var(--gold));
|
|
box-shadow: 0 16px 28px rgba(253, 185, 51, .3);
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
transition: .24s ease;
|
|
z-index: 900;
|
|
}
|
|
|
|
.gotop.is-visible {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
13. Modal (history query)
|
|
---------------------------------------------------------- */
|
|
.modal-mask {
|
|
position: fixed;
|
|
inset: 0;
|
|
display: none;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 30px;
|
|
background: rgba(4, 15, 36, .58);
|
|
backdrop-filter: blur(8px);
|
|
z-index: 1100;
|
|
}
|
|
|
|
.modal-mask.is-open {
|
|
display: flex;
|
|
}
|
|
|
|
.modal-box {
|
|
width: min(1080px, 100%);
|
|
max-height: 82vh;
|
|
overflow: hidden;
|
|
border-radius: 28px;
|
|
background: #fdfefe;
|
|
box-shadow: 0 30px 80px rgba(4, 15, 36, .35);
|
|
}
|
|
|
|
.modal-box__head {
|
|
padding: 22px 24px;
|
|
color: var(--white);
|
|
background: linear-gradient(90deg, #08183c, #102b6a, #164d86);
|
|
}
|
|
|
|
.modal-box__head strong {
|
|
display: block;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.modal-box__head p {
|
|
margin: 6px 0 0;
|
|
color: rgba(255, 255, 255, .72);
|
|
font-size: 13px;
|
|
}
|
|
|
|
.modal-box__head button {
|
|
width: 42px;
|
|
height: 42px;
|
|
border: none;
|
|
border-radius: 50%;
|
|
background: rgba(255, 255, 255, .08);
|
|
color: var(--white);
|
|
font-size: 28px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.modal-box__filter {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
padding: 18px 24px;
|
|
background: #f3f7fe;
|
|
}
|
|
|
|
.modal-box__filter span {
|
|
color: var(--text-soft);
|
|
}
|
|
|
|
.modal-box__filter select,
|
|
.modal-input {
|
|
height: 44px;
|
|
padding: 0 14px;
|
|
border-radius: 14px;
|
|
border: 1px solid rgba(16, 43, 106, .12);
|
|
background: var(--white);
|
|
}
|
|
|
|
.modal-box__body {
|
|
max-height: calc(82vh - 146px);
|
|
overflow: auto;
|
|
}
|
|
|
|
.modal-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
.modal-table th {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 2;
|
|
padding: 14px 16px;
|
|
background: #eef4fe;
|
|
color: var(--navy);
|
|
font-size: 13px;
|
|
text-align: left;
|
|
}
|
|
|
|
.modal-table td {
|
|
padding: 14px 16px;
|
|
border-top: 1px solid rgba(16, 43, 106, .08);
|
|
color: var(--text);
|
|
font-size: 14px;
|
|
}
|
|
|
|
.modal-table .history-code {
|
|
color: var(--navy);
|
|
font-weight: 700;
|
|
font-family: Consolas, "SFMono-Regular", monospace;
|
|
}
|
|
|
|
.modal-table .is-empty {
|
|
text-align: center;
|
|
color: var(--text-soft);
|
|
padding: 28px 16px;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
14. Scrollbar
|
|
---------------------------------------------------------- */
|
|
::-webkit-scrollbar {
|
|
width: 8px;
|
|
height: 8px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #f1f1f1;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: rgba(16, 43, 106, .2);
|
|
border-radius: 999px;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #999;
|
|
}
|
|
|
|
/* Firefox */
|
|
* {
|
|
scrollbar-width: thin;
|
|
scrollbar-color: rgba(16, 43, 106, .2) #f1f1f1;
|
|
}
|
|
|
|
/* ----------------------------------------------------------
|
|
15. Responsive
|
|
---------------------------------------------------------- */
|
|
@media (max-width: 1024px) {
|
|
.topbar__inner {
|
|
min-height: 68px;
|
|
gap: 16px;
|
|
}
|
|
|
|
.topbar__nav-link {
|
|
padding: 10px 14px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.cxz-main {
|
|
padding: 16px;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 16px;
|
|
}
|
|
|
|
.PublicAdvertisingUl {
|
|
padding: 0 16px;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.topbar__inner {
|
|
flex-wrap: wrap;
|
|
min-height: auto;
|
|
padding: 10px 12px;
|
|
gap: 8px;
|
|
}
|
|
|
|
.topbar__logo {
|
|
width: 170px;
|
|
}
|
|
|
|
.topbar__nav {
|
|
order: 3;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
flex: 0 0 100%;
|
|
flex-wrap: nowrap;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
justify-content: flex-start;
|
|
gap: 4px;
|
|
padding-bottom: 0;
|
|
scrollbar-width: none;
|
|
-ms-overflow-style: none;
|
|
-webkit-overflow-scrolling: touch;
|
|
}
|
|
|
|
.topbar__nav-link {
|
|
flex: 0 0 auto;
|
|
padding: 6px 14px;
|
|
font-size: 13px;
|
|
line-height: 1;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.topbar__btn {
|
|
padding: 8px 14px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.cxz-main {
|
|
padding: 12px;
|
|
}
|
|
|
|
.cxz-section-title {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.cxz-lottery-tabs {
|
|
gap: 6px;
|
|
padding: 12px 0;
|
|
overflow-x: auto;
|
|
-webkit-overflow-scrolling: touch;
|
|
flex-wrap: nowrap;
|
|
}
|
|
|
|
.cxz-lottery-tab {
|
|
padding: 6px 16px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.cxz-data-table th,
|
|
.cxz-data-table td {
|
|
padding: 10px 8px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.red-q,
|
|
.bule-q {
|
|
width: 24px;
|
|
height: 24px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.ball {
|
|
flex-basis: 28px;
|
|
width: 28px;
|
|
min-width: 28px;
|
|
height: 28px;
|
|
font-size: 12px;
|
|
padding: 0;
|
|
}
|
|
|
|
.ball--compact {
|
|
flex-basis: 22px;
|
|
width: 22px;
|
|
min-width: 22px;
|
|
height: 22px;
|
|
font-size: 11px;
|
|
padding: 0;
|
|
}
|
|
|
|
.PublicAdvertisingUl {
|
|
padding: 0 12px;
|
|
gap: 6px;
|
|
}
|
|
|
|
.PublicAdvertisingLi a {
|
|
padding: 3px 8px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.cxz-breadcrumb {
|
|
font-size: 13px;
|
|
}
|
|
|
|
.cxz-pagination {
|
|
padding: 16px 12px;
|
|
}
|
|
|
|
.site-footer__inner {
|
|
padding: 18px 16px;
|
|
border-radius: 18px;
|
|
}
|
|
|
|
.site-footer__layout {
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
gap: 22px;
|
|
}
|
|
|
|
.site-footer__brand {
|
|
flex-basis: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
.site-footer__contact {
|
|
width: 100%;
|
|
max-width: 360px;
|
|
}
|
|
|
|
.site-footer__qr-grid {
|
|
justify-content: start;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 520px) {
|
|
.topbar__inner {
|
|
align-items: center;
|
|
}
|
|
|
|
.topbar__logo {
|
|
width: 150px;
|
|
}
|
|
|
|
.topbar__user,
|
|
.topbar__guest,
|
|
.topbar__logged {
|
|
gap: 6px;
|
|
}
|
|
|
|
.topbar__avatar {
|
|
width: 34px;
|
|
height: 34px;
|
|
}
|
|
|
|
.topbar__actions .topbar__btn {
|
|
padding: 6px 12px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.topbar__nav {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.site-footer__logo {
|
|
width: 190px;
|
|
}
|
|
|
|
.site-footer__meta {
|
|
gap: 8px 14px;
|
|
}
|
|
|
|
.site-footer__contact {
|
|
max-width: none;
|
|
}
|
|
|
|
.site-footer__qr-grid {
|
|
gap: 12px;
|
|
}
|
|
|
|
.site-footer__qr-card {
|
|
flex: 0 0 calc(50% - 6px);
|
|
padding: 8px 6px 10px;
|
|
}
|
|
|
|
.site-footer__qr-card img {
|
|
width: 100%;
|
|
height: auto;
|
|
aspect-ratio: 1 / 1;
|
|
}
|
|
}
|