/* Extracted from common/header_common.htm. Keep this file loaded after page styles. */

/* Global Layout Chrome */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
        }

        :root {
            --primary-color: #f76234;
            --secondary-color: #3498db;
            --dark-color: #333;
            --light-color: #ecf0f1;
            --sidebar-width: 80px;
            --navbar-height: 60px;
            --success-color: #2ecc71;
            --warning-color: #f39c12;
            --gray-color: #95a5a6;
        }
		
		a{
			text-decoration: none;
		}
		a:hover{
			color:var(--primary-color);
			text-decoration: none;
		
		}

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--navbar-height);
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            padding: 0 20px;
            z-index: 30;
            transition: all 0.3s ease;
        }

        .navbar-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo img{
            height:46px;
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            background: var(--primary-color);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .navbar-center {
            display: flex;
            gap: 30px;
            margin-left: 20px;
            overflow-x: auto;
            padding-bottom: 5px;
            scrollbar-width: none; /* Firefox */
        }

        .navbar-center::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }

        .navbar-center a {
            color: var(--dark-color);
            font-weight: 600;
            font-size: 16px;
            white-space: nowrap;
            transition: color 0.3s;
            position: relative;
        }

        .navbar-center a:hover {
            color: var(--primary-color);
        }

        .navbar-center a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s;
        }

        .navbar-center a:hover::after {
            width: 100%;
        }

        .navbar-right {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-left: auto;
        }

		.search-box {
			display: flex;
			align-items: center;
			background: #f1f1f1;
			border-radius: 30px;
			overflow: hidden;
			padding: 5px 15px;
		}

		.search-box form {
			display: flex;
			align-items: center;
			width: 100%;
		}

		.search-box input {
			border: none;
			background: transparent;
			padding: 8px 10px;
			outline: none;
			width: 200px;
			height: 30px;
			font-size: 14px;
			line-height: normal;
			vertical-align: middle;
		}

		.search-box button {
			background: var(--primary-color);
			color: white;
			border: none;
			border-radius: 50%;
			width: 30px;
			height: 30px;
			cursor: pointer;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: background 0.3s;
			font-size: 14px;
			line-height: normal;
			padding: 0;
			margin: 0;
		}

		.search-box button:hover {
			background: #c0392b;
		}

.message-bell {
    position: relative;
    display: flex;
	right: -20px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    color: #555;
    font-size: 20px;
    transition: color 0.3s;
    margin: 0 5px;
}

.message-bell:hover {
    color: var(--primary-color);
}

.badge-dot {
    position: absolute;
    top: 5px;
    right: 8px;
    width: 8px;
    height: 8px;
    background-color: #e74c3c;
    border-radius: 50%;
    border: 2px solid white;
}

.message-dropdown {
    position: absolute;
    top: calc(100% + 13px);
    right: -30px;;
    width: 160px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.message-bell:hover .message-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.message-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f1f1;
}

.message-dropdown a:last-child {
    border-bottom: none;
}

.message-dropdown a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

.msg-count {
    background-color: #e74c3c;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 12px;
    line-height: 1;
}
        .auth-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .auth-btn {
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .login-btn {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .login-btn:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
        }

        .register-btn {
            background: var(--primary-color);
            color: white;
            border: 2px solid var(--primary-color);
        }

        .register-btn:hover {
            background: #c0392b;
            border-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
        }

        .user-profile {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 20px;
            transition: background-color 0.3s;
        }

        .user-profile:hover {
            background-color: #f5f5f5;
        }

		.user-avatar {
			width: 36px;
			height: 36px;
			border-radius: 50%;
			overflow: hidden;
			display: flex;
			align-items: center;
			justify-content: center;
			color: white;
			font-weight: bold;
			font-size: 14px;
			transition: transform 0.3s;
		}

		.user-avatar:hover {
			transform: scale(1.1);
		}

		.user-avatar img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}


        .user-name {
            font-weight: 600;
            color: var(--dark-color);
            font-size: 16px;
            max-width: 80px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .user-menu {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 10px;
            width: 280px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .user-profile:hover .user-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .menu-row {
            display: flex;
            width: 100%;
            border-bottom: 1px solid #f1f1f1;
        }

        .menu-row:last-child {
            border-bottom: none;
        }

        .menu-item {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 12px 15px;
            color: #555;
            text-decoration: none;
            transition: all 0.2s;
            font-size: 14px;
            min-height: 44px;
        }

        .menu-item:hover {
            background: #f8f9fa;
            color: var(--primary-color);
        }

        .menu-item i {
            width: 20px;
            margin-right: 10px;
            font-size: 14px;
            text-align: center;
        }

        .menu-item.message-item {
            width: 100%;
            flex: none;
            justify-content: space-between;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #e74c3c;
            color: white;
            font-size: 11px;
            font-weight: bold;
            width: 18px;
            height: 18px;
            border-radius: 9px;
            margin-left: 8px;
        }

        .menu-item.management-item {
            width: 100%;
            flex: none;
        }

        .user-info-item {
            display: flex;
            align-items: center;
            padding: 8px 15px;
            color: #666;
            font-size: 14px;
            min-height: 36px;
            background-color: #f9f9f9;
            border-top: 1px solid #f1f1f1;
            width: 100%;
        }

        .user-info-item:first-of-type {
            border-top: 1px solid #f1f1f1;
        }

        .menu-item.logout {
            color: #e74c3c;
            border-top: 1px solid #f1f1f1;
            margin-top: 0;
            width: 100%;
            flex: none;
        }

        .menu-item.logout:hover {
            background: #fff5f5;
            color: #c0392b;
        }

        .floating-actions {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
            transition: bottom 0.3s ease;
        }

        .floating-actions.bottom-nav-active {
            bottom: 75px;
        }

        .action-item {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
        }
		.action-item a{
            color: white;
        }

        .action-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            background: #c0392b;
        }

        .action-item.hidden-mobile {
            display: none;
        }

        .action-item.radish-action::after {
            content: '联系我';
            position: absolute;
            right: 45px;
            background: var(--primary-color);
            color: white;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 1;
            pointer-events: none;
            font-weight: 500;
            z-index: 1001;
            box-shadow: 0 3px 8px rgba(0,0,0,0.2);
        }

        .action-item.radish-action::before {
            content: '';
            position: absolute;
            right: 41px;
            width: 0;
            height: 0;
            border-top: 5px solid transparent;
            border-bottom: 5px solid transparent;
            border-left: 5px solid var(--primary-color);
            opacity: 1;
            pointer-events: none;
            z-index: 1001;
        }

        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
            display: none;
            z-index: 1000;
            transition: all 0.3s ease;
            height: 60px;
            align-items: center;
        }

        .bottom-nav a {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 8px 0;
            color: var(--dark-color);
            font-size: 13px;
            height: 100%;
        }

        .bottom-nav a:hover {
            color: var(--primary-color);
        }

        .bottom-nav a i {
            font-size: 18px;
            margin-bottom: 3px;
        }

        .sidebar {
            position: fixed;
            left: 0;
            top: var(--navbar-height);
            height: calc(100vh - var(--navbar-height));
            width: var(--sidebar-width);
            background: var(--dark-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            z-index: 20;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .sidebar.hidden {
            width: 0;
        }

        .sidebar-content {
            width: 100%;
            transition: opacity 0.3s;
        }

        .sidebar.hidden .sidebar-content {
            opacity: 0;
            pointer-events: none;
        }

        .sidebar-item {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 0;
            cursor: pointer;
            transition: all 0.3s;
            color: #bdc3c7;
        }

        .sidebar-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }

        .sidebar-item.active {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            position: relative;
        }

        .sidebar-item.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: var(--primary-color);
        }

        .sidebar-icon {
            font-size: 20px;
            margin-bottom: 5px;
        }

        .sidebar-text {
            font-size: 12px;
            font-weight: 500;
        }

        .main-content {
            margin-left: var(--sidebar-width);
            margin-top: var(--navbar-height);
            padding: 25px;
            min-height: 100vh;
            transition: margin-left 0.3s ease;
        }

        .main-content.sidebar-hidden {
            margin-left: 0;
        }

/* Page Width Modes
   Discuz adds .widthauto to <html> when the admin "wide" mode is enabled. */
html:not(.widthauto) body:not(#nv_portal).pg_forumdisplay .main-content,
html:not(.widthauto) body#nv_portal.pg_list .main-content,
html:not(.widthauto) body#nv_portal.pg_block .main-content,
html:not(.widthauto) body#nv_portal.pg_comment .main-content {
    width: min(1200px, calc(100% - var(--sidebar-width) - 50px));
    margin-right: auto;
    margin-left: calc(var(--sidebar-width) + max(25px, (100vw - var(--sidebar-width) - 1200px) / 2));
}

html.widthauto body:not(#nv_portal).pg_forumdisplay .main-content,
html.widthauto body#nv_portal.pg_list .main-content,
html.widthauto body#nv_portal.pg_block .main-content,
html.widthauto body#nv_portal.pg_comment .main-content {
    width: auto;
    max-width: none;
    margin-left: var(--sidebar-width);
    margin-right: 0;
}

body.pg_viewthread .main-content,
body#nv_portal.pg_view .main-content,
body#nv_home.pg_spacecp .main-content,
body#nv_home.pg_space .main-content,
body.pg_post .main-content,
body.pg_modcp .main-content,
body#nv_portal.pg_portalcp .main-content {
    width: min(1200px, calc(100% - var(--sidebar-width) - 50px));
    margin-right: auto;
    margin-left: calc(var(--sidebar-width) + max(25px, (100vw - var(--sidebar-width) - 1200px) / 2));
}

body#nv_portal.pg_index .main-content {
    width: auto;
    max-width: none;
    margin-left: var(--sidebar-width);
    margin-right: 0;
}

body.pg_viewthread .main-content > .wp,
body#nv_portal.pg_view .main-content > .article-container,
body#nv_home.pg_spacecp .main-content > #ct,
body#nv_home.pg_space .main-content > #ct,
body.pg_post .main-content > #ct,
body.pg_modcp .main-content > #ct {
    width: 100%;
    max-width: 100%;
}

html:not(.widthauto) body:not(#nv_portal).pg_forumdisplay .main-content.sidebar-hidden,
html:not(.widthauto) body#nv_portal.pg_list .main-content.sidebar-hidden,
html:not(.widthauto) body#nv_portal.pg_block .main-content.sidebar-hidden,
html:not(.widthauto) body#nv_portal.pg_comment .main-content.sidebar-hidden,
body.pg_viewthread .main-content.sidebar-hidden,
body#nv_portal.pg_view .main-content.sidebar-hidden,
body#nv_home.pg_spacecp .main-content.sidebar-hidden,
body#nv_home.pg_space .main-content.sidebar-hidden,
body.pg_post .main-content.sidebar-hidden,
body.pg_modcp .main-content.sidebar-hidden,
body#nv_portal.pg_portalcp .main-content.sidebar-hidden {
    width: min(1200px, calc(100% - 50px));
    margin-right: auto;
    margin-left: max(25px, calc((100vw - 1200px) / 2));
}

html.widthauto body:not(#nv_portal).pg_forumdisplay .main-content.sidebar-hidden,
html.widthauto body#nv_portal.pg_list .main-content.sidebar-hidden,
html.widthauto body#nv_portal.pg_block .main-content.sidebar-hidden,
html.widthauto body#nv_portal.pg_comment .main-content.sidebar-hidden,
body#nv_portal.pg_index .main-content.sidebar-hidden {
    width: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}


/* Radish Sidebar */
        .user-sidebar {
            position: fixed;
            top: 0;
            right: -350px;
            width: 350px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 15px rgba(0,0,0,0.1);
            z-index: 2000;
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .user-sidebar.active {
            right: 0;
        }

        .user-sidebar-header {
            padding: 20px;
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #f76234 0%, #c0392b 100%);
        }

        .user-sidebar-header h3 {
            color: white;
            font-size: 20px;
            margin: 0;
        }

        .close-btn {
            font-size: 28px;
            cursor: pointer;
            color: white;
            transition: color 0.3s;
        }

        .close-btn:hover {
            color: #f1f1f1;
        }

        .user-sidebar-content {
            padding: 20px;
            flex: 1;
            overflow-y: auto;
        }

        .user-avatar-large {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }

        .user-avatar-sidebar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
			overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 36px;
        }

        .user-sidebar-content h4 {
            text-align: center;
            color: var(--primary-color);
            margin-bottom: 25px;
            font-size: 22px;
        }

        .site-updates {
            margin-bottom: 28px;
        }

        .site-updates-head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }

        .site-updates-title {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #333;
            font-size: 17px;
            font-weight: 700;
        }

        .site-updates-title i {
            color: var(--primary-color);
            font-size: 15px;
        }

        .site-updates-note {
            color: #9aa0a6;
            font-size: 12px;
            white-space: nowrap;
        }

        .site-update-list {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .site-update-item {
            display: block;
            position: relative;
            min-height: 44px;
            padding: 11px 0 11px 18px;
        }

        .site-update-item::before {
            content: "";
            position: absolute;
            left: 2px;
            top: 19px;
            z-index: 1;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary-color);
        }

        .site-update-item::after {
            content: "";
            position: absolute;
            left: 4px;
            top: 25px;
            bottom: -19px;
            width: 1px;
            background: rgba(247, 98, 52, 0.28);
        }

        .site-update-item:last-child::after {
            display: none;
        }

        .site-update-text {
            display: block;
            color: #555;
            font-size: 15px;
            line-height: 1.45;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .site-update-date {
            color: var(--lt2-primary);
            font-weight: 700;
        }

        .my-menu {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .my-menu span {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            color: #555;
            transition: all 0.2s;
            border-radius: 8px;
            font-size: 16px;
        }

        .my-menu span:hover {
            background: #f8f9fa;
            color: var(--primary-color);
        }

        .my-menu .luobo-contact-desc {
            display: block;
            font-weight: 700;
            line-height: 2.5;
        }

        .luobo-contact-card {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 118px;
            gap: 14px;
            align-items: center;
            padding: 13px;
            border: 1px solid #eceff3;
            border-radius: 12px;
            background: #f8fafb;
        }

        .luobo-contact-copy span,
        .luobo-contact-copy strong {
            display: block;
        }

        .luobo-contact-copy span {
            color: #8a8f98;
            font-size: 14px;
            padding: 0;
            border-radius: 0;
            transition: none;
            text-align: left;
            justify-content: flex-start;
        }

        .luobo-contact-copy span:hover {
            background: transparent;
            color: #8a8f98;
        }

        .luobo-contact-copy strong {
            margin-top: 4px;
            color: #222;
            font-size: 18px;
        }

        .luobo-contact-copy button {
            min-height: 34px;
            margin-top: 12px;
            border: 0;
            border-radius: 17px;
            padding: 0 16px;
            background: var(--primary-color);
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
        }

        .luobo-contact-qr {
            width: 118px;
            height: 118px;
            border-radius: 10px;
            object-fit: cover;
            background: #fff;
        }

        .my-menu span i {
            width: 20px;
            margin-right: 12px;
            font-size: 16px;
        }


        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1500;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }


/* Scroll To Top */
#scrollToTop {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

#scrollToTop.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.footer_z {
    margin-top: 60px;
}

@media (max-width: 1100px) {
    .user-sidebar {
        width: 300px;
    }
}

@media (max-width: 900px) {
    :root {
        --sidebar-width: 60px;
    }

    .sidebar-text {
        display: none;
    }

    .navbar-center {
        display: none;
    }

    .search-box {
        display: none;
    }

    .navbar-right {
        margin-left: auto;
        margin-right: 0;
        padding-right: 0;
        justify-content: flex-end;
    }

    .user-profile {
        gap: 5px;
        padding-right: 5px;
    }

    .user-name {
        max-width: 60px;
        font-size: 14px;
    }

    .floating-actions {
        bottom: 20px;
        right: 20px;
    }

    .user-menu {
        width: 260px;
    }
}

@media (max-width: 768px) {
    :root {
        --navbar-height: 50px;
    }

    .navbar {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 20px;
    }

    .sidebar {
        display: none !important;
        transform: translateX(-100%);
        width: 0 !important;
        opacity: 0;
        visibility: hidden;
    }

    .main-content {
        margin-left: 0 !important;
        width: auto !important;
        max-width: none !important;
        margin-right: 0 !important;
        transition: none !important;
    }

    .action-item#toggleSidebar {
        display: none !important;
    }
}

@media (max-width: 600px) {
    .action-item.radish-action::after {
        right: 40px;
        font-size: 11px;
        padding: 3px 8px;
    }

    .action-item.radish-action::before {
        right: 37px;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 4px solid var(--primary-color);
    }

    .auth-buttons {
        gap: 5px;
    }

    .auth-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .user-menu {
        width: 240px;
    }

    .menu-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .menu-item i {
        font-size: 13px;
        margin-right: 8px;
    }

    .user-info-item {
        padding: 6px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    :root {
        --navbar-height: 50px;
    }

    .navbar {
        padding: 0 15px;
    }

    .logo-text {
        font-size: 18px;
    }

    .user-profile {
        padding-right: 0;
    }

    .user-avatar {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .action-item.radish-action::after,
    .action-item.radish-action::before {
        display: none;
    }

    .floating-actions {
        bottom: 15px;
        right: 15px;
        gap: 12px;
    }

    .action-item {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .user-menu {
        width: 220px;
    }

    .menu-item {
        padding: 8px 10px;
        font-size: 12px;
        min-height: 40px;
    }

    .menu-item i {
        font-size: 12px;
        margin-right: 6px;
        width: 16px;
    }

    .user-info-item {
        padding: 5px 10px;
        font-size: 12px;
        min-height: 34px;
    }

    .badge {
        width: 16px;
        height: 16px;
        font-size: 10px;
        margin-left: 6px;
    }
}
