* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #222a36;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* 隐藏滚动条但允许滚动 - 针对html和body */
html {
    font-size: 16px;
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

body {
    overflow: -moz-scrollbars-none;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: auto;
    overflow-y: auto;
    overflow-x: hidden;
    /* 隐藏滚动条 */
    -ms-overflow-style: none;
    scrollbar-width: none;
    flex: 1;
}

.container::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.main-content {
    flex: 1 0 auto;
    padding: 0.625rem 1.25rem 0 1.25rem;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

footer {
    flex-shrink: 0;
    flex: 0 0 auto;
}

.notice-item img {
    width: 6.25rem;
    margin-top: 1.25rem;
}

#date-section,
#time-section {
    display: inline;
}

.datetime-container {
    margin-top: 0.625rem;
    font-size: 1rem;
    color: rgb(253, 114, 114);
}

.lunar-date {
    color: rgb(253, 114, 114);
    font-weight: 400;
    margin-left: 0.3125rem;
}

.festival {
    color: rgb(253, 114, 114);
    font-weight: 400;
    margin-left: 0.3125rem;
}

.notice-more {
    text-align: right;
    margin-top: 0.625rem;
}

.notice-more a {
    color: #3498db;
    text-decoration: none;
    font-size: 0.875rem;
}

.notice-more a:hover {
    text-decoration: underline;
}

.wx-image-container {
    text-align: center;
    margin-top: 1.25rem;
}

.wx-image-container img {
    max-width: 31.25rem;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.notice-card {
    position: relative;
    height: 100%;
    background-color: #2a3446;
    border-radius: 0.5rem;
    padding: 0.9375rem 0.9375rem 0.625rem 0.9375rem;
    display: flex;
    flex-direction: column;
}

.notice-header {
    position: relative;
    z-index: 2;
    background-color: #2a3446;
    padding-bottom: 0.5rem;
    flex-shrink: 0;
}

.notice-content {
    position: relative;
    width: 100%;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.notice-header h3 {
    color: #5ec4c7;
    cursor: default;
    font-size: 1.125rem;
}

.notice-header h3.admin-clickable {
    cursor: pointer;
    transition: color 0.3s ease;
}

.notice-header h3.admin-clickable:hover {
    color: #ffd700;
}

.notice-header h3.admin-clickable .admin-cog {
    transition: transform 0.5s ease;
}

.notice-header h3.admin-clickable:hover .admin-cog {
    transform: rotate(180deg);
}

.stat-img {
    text-align: center;
}

.stat-img img {
    margin: 0.9375rem 1.25rem 0 0;
    height: 5.625rem;
}

.gg {
    color: white;
    padding: 0.9375rem;
}

.gg h4 {
    color: #5ec4c7;
    margin-bottom: 0.625rem;
}

.gg p {
    font-size: 0.875rem;
    text-indent: 2rem;
    margin-bottom: 0.625rem;
    line-height: 1.9;
}

.welcome-section {
    position: relative;
    padding: 0.9375rem 1.25rem 0.625rem 1.25rem;
    border-radius: 0.625rem;
    margin: 0;
    flex-shrink: 0;
}

.welcome-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.marquee-wrapper {
    position: absolute;
    right: 1.875rem;
    bottom: 1.25rem;
    width: 25%;
    height: 1.5rem;
    overflow: hidden;
}

.marquee-container {
    display: inline-block;
    white-space: nowrap;
    will-change: transform;
}

.marquee-content {
    display: inline-block;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    margin-right: 1.875rem;
    color: rgba(224, 247, 96, 1);
    font-size: 0.8125rem;
}

.marquee-icon {
    color: #5ec4c7;
    margin-right: 0.5rem;
    font-size: 0.875rem;
}

.marquee-separator {
    color: rgba(253, 114, 114, 0.5);
    margin: 0 0.5rem;
}

.marquee-no-notice {
    color: rgb(253, 114, 114);
    font-size: 0.875rem;
    font-style: italic;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.unit {
    color: #5ec4c7;
    margin-left: 0.25rem;
}

.quick-actions {
    flex-shrink: 0;
    margin-bottom: 0.5rem;
}

/* ===== 双二维码展示区域 ===== */
.qrcode-display-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0.9375rem;
    min-height: 0;
}

.qrcode-display-wrapper .qr-title {
    color: #5ec4c7;
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.qrcode-display-wrapper .qr-title i {
    font-size: 1.25rem;
}

/* 双二维码容器 */
.qr-double-container {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}

.qr-item {
    background: #ffffff;
    padding: 0.75rem;
    border-radius: 0.75rem;
    position: relative;
    max-width: 12.5rem;
    width: 100%;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.2);
    text-align: center;
    flex: 1;
    min-width: 8.75rem;
    max-width: 13.75rem;
}

.qr-item .qr-label {
    color: #2a3446;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
}

.qr-item .qr-label .label-icon {
    font-size: 1rem;
}

.qr-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.375rem;
}

.qr-item .qr-expired-overlay-sm {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.qr-item .qr-expired-overlay-sm i {
    font-size: 1.875rem;
    color: #ff6b6b;
    margin-bottom: 0.375rem;
}

.qr-item .qr-expired-overlay-sm span {
    font-size: 1rem;
    font-weight: 700;
}

.qr-expiry-info-sm {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    margin-top: 0.625rem;
    font-weight: 500;
    text-align: center;
}

.qr-expiry-info-sm .valid {
    color: #5ec4c7;
}

.qr-expiry-info-sm .expired {
    color: #ff6b6b;
}

.qr-expiry-info-sm strong {
    color: #ffd700;
}

.qr-tip {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8125rem;
    margin-top: 0.5rem;
    text-align: center;
}

.qr-tip i {
    margin-right: 0.375rem;
}

/* 管理员在二维码区域显示上传按钮 */
.qrcode-display-wrapper .qr-admin-upload {
    margin-top: 0.625rem;
    display: none;
}

.admin-view .qrcode-display-wrapper .qr-admin-upload {
    display: block;
}

.qrcode-display-wrapper .qr-admin-upload .upload-mini-btn {
    background: transparent;
    border: 1px dashed rgba(255, 215, 0, 0.4);
    color: rgba(255, 215, 0, 0.6);
    padding: 0.3125rem 1.25rem;
    border-radius: 1rem;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: all 0.3s;
}

.qrcode-display-wrapper .qr-admin-upload .upload-mini-btn:hover {
    border-color: #ffd700;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.08);
}

.qrcode-display-wrapper .qr-admin-upload .upload-mini-btn i {
    margin-right: 0.375rem;
}

/* ===== 用户管理链接（仅管理员可见，右下角浮动） ===== */
.admin-user-link {
    display: none;
    position: fixed;
    bottom: 1.875rem;
    right: 1.875rem;
    z-index: 9998;
    background: rgba(42, 52, 70, 0.92);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 3.125rem;
    padding: 0.625rem 1.375rem;
    color: rgba(255, 215, 0, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.4);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    align-items: center;
    gap: 0.625rem;
    backdrop-filter: blur(4px);
}

.admin-user-link:hover {
    border-color: #ffd700;
    color: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 0.375rem 1.875rem rgba(255, 215, 0, 0.2);
    background: rgba(42, 52, 70, 0.98);
}

.admin-user-link i {
    font-size: 1.125rem;
    color: #ffd700;
}

.admin-user-link .link-badge {
    background: #ffd700;
    color: #2a3446;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.0625rem 0.5rem;
    border-radius: 0.625rem;
    margin-left: 0.25rem;
}

.show-admin-link .admin-user-link {
    display: inline-flex;
}

/* ===== 原有样式继续 ===== */

.bottom-fixed-wrapper {
    margin-top: auto;
    padding-top: 0.375rem;
    flex-shrink: 0;
    position: relative;
}

.bottom-fixed-wrapper .left2 {
    text-align: center;
    margin-top: 0.25rem;
}

.bottom-fixed-wrapper .left2 img {
    height: 4.25rem;
    max-width: 100%;
    display: inline-block;
}

.download-desktop-section {
    text-align: center;
    padding-top: 0.25rem;
    border-top: 1px solid rgba(94, 196, 199, 0.10);
    flex-shrink: 0;
}

.download-desktop-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgb(44, 84, 85), #3da5a8);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 1.5625rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0.125rem 0.75rem rgba(94, 196, 199, 0.3);
    flex-wrap: wrap;
    justify-content: center;
}

.download-desktop-btn:hover {
    transform: translateY(-0.125rem) scale(1.02);
    box-shadow: 0 0.375rem 1.5rem rgba(94, 196, 199, 0.5);
    background: linear-gradient(135deg, rgb(44, 84, 85), #3da5a8);
    color: #fff;
}

.download-desktop-btn:active {
    transform: translateY(0) scale(0.98);
}

.download-desktop-btn i {
    font-size: 1rem;
}

.download-desktop-btn .version-tag {
    font-size: 0.625rem;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.125rem 0.5rem;
    border-radius: 0.75rem;
    margin-left: 0.125rem;
}

.download-desktop-btn .new-badge-sm {
    display: inline-block;
    background: #ff4757;
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 700;
    padding: 0.0625rem 0.5rem;
    border-radius: 0.625rem;
    margin-left: 0.25rem;
    animation: blink-new 1.2s ease-in-out infinite;
    line-height: 1rem;
    letter-spacing: 0.3px;
}

.download-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.125rem 0.625rem;
    border-radius: 0.75rem;
    font-size: 0.6875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.375rem;
}

.download-count-badge i {
    font-size: 0.625rem;
    color: #ffd700;
}

.download-count-badge #downloadCount {
    font-weight: 600;
    color: #ffd700;
    min-width: 1.25rem;
    display: inline-block;
    text-align: center;
}

.download-sub-text {
    display: block;
    color: rgb(253 225 9 / 92%);
    font-size: 0.875rem;
    margin-top: 0.125rem;
    font-weight: 400;
    width: 100%;
}

@keyframes blink-new {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.92);
    }
}

.new-badge {
    display: inline-block;
    background: #ff4757;
    color: #fff;
    font-size: 0.625rem;
    font-weight: 700;
    padding: 0.0625rem 0.5rem;
    border-radius: 0.625rem;
    margin-left: 0.375rem;
    vertical-align: middle;
    animation: blink-new 1.2s ease-in-out infinite;
    line-height: 1.125rem;
    letter-spacing: 0.5px;
}

/* ===== 微信群二维码弹窗样式 ===== */
.wechat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.wechat-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.wechat-modal-content {
    background: #2a3446;
    border-radius: 1rem;
    padding: 1.875rem 2.5rem 2.5rem;
    max-width: 31.25rem;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(94, 196, 199, 0.2);
}

.wechat-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    color: #718096;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.wechat-modal-close:hover {
    color: #ff6b6b;
}

.wechat-modal-title {
    color: #5ec4c7;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.wechat-modal-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    margin-bottom: 1rem;
}

/* 弹窗中的双二维码 */
.wechat-qr-double {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 0.875rem;
}

.wechat-qr-item {
    background: #ffffff;
    padding: 0.75rem;
    border-radius: 0.75rem;
    position: relative;
    text-align: center;
    flex: 1;
    min-width: 8.75rem;
    max-width: 12.5rem;
}

.wechat-qr-item .qr-label {
    color: #2a3446;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.wechat-qr-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.375rem;
}

.wechat-qr-item .qr-expired-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.wechat-qr-item .qr-expired-overlay i {
    font-size: 1.875rem;
    color: #ff6b6b;
    margin-bottom: 0.375rem;
}

.wechat-qr-item .qr-expired-overlay span {
    font-size: 0.875rem;
    font-weight: 600;
}

.qr-expiry-info {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin-bottom: 0.625rem;
}

.qr-expiry-info .valid {
    color: #5ec4c7;
}

.qr-expiry-info .expired {
    color: #ff6b6b;
}

.wechat-group-name {
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.wechat-tip {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
}

.wechat-modal-footer {
    margin-top: 0.875rem;
    padding-top: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wechat-service-btn {
    background: transparent;
    border: 1px solid #5ec4c7;
    color: #5ec4c7;
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.wechat-service-btn:hover {
    background: #5ec4c7;
    color: #2a3446;
}

.wechat-service-btn.admin-btn {
    border-color: #ffd700;
    color: #ffd700;
    animation: pulse-gold 2s ease-in-out infinite;
}

.wechat-service-btn.admin-btn:hover {
    background: #ffd700;
    color: #2a3446;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 1.25rem 0.3125rem rgba(255, 215, 0, 0.15);
    }
}

/* ===== 上传模态框 ===== */
.upload-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.upload-modal.active {
    display: flex;
}

.upload-modal-content {
    background: #2a3446;
    border-radius: 1rem;
    padding: 1.875rem 2.5rem 2.1875rem;
    max-width: 28.125rem;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.upload-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    color: #718096;
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.upload-modal-close:hover {
    color: #ff6b6b;
}

.upload-modal-title {
    color: #ffd700;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
}

.upload-modal-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    margin-bottom: 1.25rem;
}

.upload-drop-zone {
    border: 2px dashed rgba(94, 196, 199, 0.3);
    border-radius: 0.75rem;
    padding: 1.875rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(94, 196, 199, 0.03);
}

.upload-drop-zone:hover {
    border-color: #5ec4c7;
    background: rgba(94, 196, 199, 0.06);
}

.upload-drop-zone.dragover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
}

.upload-drop-zone i {
    font-size: 3rem;
    color: #5ec4c7;
    display: block;
    margin-bottom: 0.625rem;
}

.upload-drop-zone .upload-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.upload-drop-zone .upload-text strong {
    color: #5ec4c7;
}

.upload-drop-zone .upload-hint {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.75rem;
    margin-top: 0.375rem;
}

#uploadFileInput {
    display: none;
}

.upload-preview {
    display: none;
    margin-top: 1rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
}

.upload-preview img {
    max-width: 9.375rem;
    max-height: 9.375rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.upload-preview .file-name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    margin-top: 0.375rem;
}

.upload-submit-btn {
    display: none;
    margin-top: 1rem;
    background: linear-gradient(135deg, #ffd700, #f0a500);
    color: #2a3446;
    border: none;
    padding: 0.625rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.upload-submit-btn:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.5rem rgba(255, 215, 0, 0.3);
}

.upload-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.upload-status-msg {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    display: none;
}

.upload-status-msg.success {
    color: #5ec4c7;
    display: block;
}

.upload-status-msg.error {
    color: #ff6b6b;
    display: block;
}

.upload-status-msg.loading {
    color: #ffd700;
    display: block;
}

.datetime-container .wechat-link {
    color: #5ec4c7;
    text-decoration: none;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.datetime-container .wechat-link:hover {
    color: #ffd700;
}

.datetime-container .wechat-link i {
    margin-right: 0.25rem;
}

.highlight-wrapper {
    background-color: #2a3446;
    border-radius: 0.5rem;
    padding: 0.9375rem 0.9375rem 0.625rem 0.9375rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.highlight-wrapper .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.375rem;
    padding-bottom: 0.375rem;
    border-bottom: 1px solid rgba(94, 196, 199, 0.08);
    flex-shrink: 0;
}

.highlight-wrapper .section-header h3 {
    color: #5ec4c7;
    font-size: 0.9375rem;
    font-weight: 500;
}

.highlight-wrapper .section-header h3 i {
    margin-right: 0.375rem;
}

.highlight-wrapper .section-header .service-badge {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.6875rem;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.06);
    padding: 0.125rem 0.625rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 215, 0, 0.08);
}

.highlight-wrapper .section-header .service-badge i {
    font-size: 0.625rem;
    color: #ffd700;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem 1rem;
    flex: 1;
    align-content: center;
    min-height: 0;
}

.highlight-item {
    padding: 0.625rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    min-height: 3.5rem;
}

.highlight-item .h-icon {
    font-size: 2.25rem;
    color: #ffd700;
    width: 2.5rem;
    text-align: center;
    flex-shrink: 0;
    opacity: 0.9;
}

.highlight-item:hover .h-icon {
    opacity: 1;
}

.highlight-item .h-info {
    flex: 1;
    min-width: 0;
}

.highlight-item .h-title {
    color: #e8f0f8;
    font-size: 1.125rem;
    font-weight: 600;
}

.highlight-item .h-desc {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    margin-top: 0.125rem;
}

.dashboard-content {
    display: flex;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
    width: 100%;
    flex: 1;
    min-height: 0;
    padding-bottom: 0.3125rem;
}

.dashboard-content .left-col {
    flex: 2;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.dashboard-content .left-col .highlight-wrapper {
    flex: 1;
    min-height: 0;
}

.dashboard-content .right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.dashboard-content .right-col .notice-card {
    flex: 1;
    min-height: 0;
}

.action-card {
    cursor: pointer;
}

.mobile-redirect-banner {
    display: none;
    background: linear-gradient(135deg, #5ec4c7, #3498db);
    color: white;
    text-align: center;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    margin: 0.625rem 0 0 0;
    flex-shrink: 0;
}

.mobile-redirect-banner a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
}