a {
    text-decoration: none!important;
}
/* ============================================
   Header Navigation Menu Styles
   ============================================ */

   .header-nav-menu {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .header-nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .header-nav-link {
    display: flex;
    align-items: center;
    padding: 0 16px;
    height: 100%;
    color: hsla(0,0%,100%,.7);
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }
  
  .header-nav-link:hover {
    color: #0069ff;
    background-color: rgba(0, 105, 255, 0.05);
  }
  
  .header-nav-link i.el-icon-arrow-down {
    margin-left: 4px;
    font-size: 12px;
    transition: transform 0.2s;
  }
  
  .header-nav-item:hover .header-nav-link i.el-icon-arrow-down {
    transform: rotate(180deg);
  }
  
  .header-nav-simple {
    padding: 0 20px;
  }
  
  .header-nav-icon {
    padding: 0 12px;
  }
  
  .header-nav-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
  }
  
  .header-nav-icon-wrapper i {
    font-size: 20px;
    color: hsla(0,0%,100%,.7);
  }
  
  .header-notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
  }
  
  .header-user-avatar {
    margin-left: 8px;
  }
  
  .header-user-avatar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .header-avatar-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #0069ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
  }
  
  .header-user-avatar:hover .header-avatar-circle {
    background-color: #0052cc;
    transform: scale(1.05);
  }

  .header-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }
  
  /* Element UI Dropdown Menu Customization */
  .header-dropdown-menu {
    min-width: 200px;
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #e4e7ed;
    border-radius: 4px;
  }
  
  .header-dropdown-menu .el-dropdown-menu__item {
    padding: 0;
    line-height: normal;
  }
  
  .header-dropdown-menu .el-dropdown-menu__item:hover {
    background-color: #f5f7fa;
  }
  
  .dropdown-link-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    width: 100%;
    transition: all 0.2s;
  }
  
  .dropdown-link-item:hover {
    color: #0069ff;
    background-color: transparent;
  }
  
  .dropdown-link-item i {
    margin-right: 8px;
    font-size: 16px;
    width: 18px;
    text-align: center;
  }
  
  .dropdown-link-item span {
    flex: 1;
  }
  
  /* Panel Amount Styles */
  .panel-amount {
    padding: 16px 20px;
    min-width: 280px;
  }
  
  .panel-amount-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
  }
  
  .panel-amount-head-title {
    font-size: 14px;
    color: #666;
    font-weight: 500;
  }
  
  .panel-amount-head-btn a {
    color: #0069ff;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .panel-amount-head-btn a:hover {
    color: #0052cc;
    text-decoration: underline;
  }
  
  .panel-amount-info {
    margin-top: 8px;
  }
  
  .panel-amount-number {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }
  
  .panel-amount-number .amount-number {
    font-size: 24px;
    font-weight: 600;
    color: #333;
  }
  
  .panel-amount-number em:last-child {
    font-size: 14px;
    color: #666;
    font-style: normal;
  }
  
  /* Notification Menu Styles */
  .header-notification-menu {
    min-width: 320px;
  }
  
  .notification-item {
    padding: 12px 20px;
  }
  
  .notification-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
  }
  
  .notification-content {
    font-size: 13px;
    color: #666;
  }
  
  /* User Menu Styles */
  .header-user-menu {
    min-width: 240px;
  }
  
  .user-menu-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .user-menu-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
  }
  
  .user-menu-id {
    font-size: 13px;
    color: #999;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .header-nav-menu {
      display: none;
    }
  }
  
  /* Element UI Dropdown Override */
  .header-container-right .el-dropdown {
    height: 100%;
  }
  
  .header-container-right .el-dropdown .el-dropdown-link {
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  /* Fix for Element UI dropdown positioning */
  .header-container-right .el-popper {
    z-index: 2000;
  }
  
  /* Icon alignment */
  .header-nav-link .el-icon-arrow-down {
    vertical-align: middle;
  }
  
  /* Ensure proper spacing between menu items */
  .header-nav-menu > * {
    margin-right: 0;
  }
  
  .header-nav-menu > *:last-child {
    margin-right: 20px;
  }
  
  /* Badge positioning fix */
  .header-notification-badge .el-badge__content {
    background-color: #f56c6c;
    border-color: #f56c6c;
  }
  
  /* User menu item hover effect */
  .header-user-menu .dropdown-link-item {
    transition: all 0.2s;
  }
  
  .header-user-menu .dropdown-link-item:hover {
    background-color: #f5f7fa;
    padding-left: 24px;
  }
  
  /* Ensure dropdown items don't have extra padding */
  .header-dropdown-menu .el-dropdown-menu__item {
    padding: 0;
  }
  
  /* ============================================
     Account Dropdown Menu Styles
     ============================================ */
  
  .account-dropdown-popper {
    padding: 0 !important;
    border-radius: 0 0 8px 8px !important;
    overflow: hidden;
  }
  
  .account-dropdown-menu {
    min-width: 368px !important;
    max-width: 368px !important;
    padding: 0 !important;
    border: 1px solid #eaedf1 !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
    background-color: #fff !important;
  }
  
  .account-dropdown-menu .el-dropdown-menu__item {
    padding: 0 !important;
    line-height: normal;
    border-bottom: none !important;
  }
  
  .account-dropdown-menu .el-dropdown-menu__item:focus,
  .account-dropdown-menu .el-dropdown-menu__item:hover {
    background-color: transparent !important;
  }
  
  .account-dropdown-wrapper {
    background-color: #fff;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
  }
  
  /* 用户信息区域 */
  .account-dropdown-info {
    background: linear-gradient(287deg, rgba(232, 241, 255, 0.3) 11.07%, rgba(245, 248, 255, 0.3) 89%),
                linear-gradient(291deg, rgba(201, 222, 255, 0.3) 24.92%, rgba(245, 248, 255, 0.3) 88.01%);
    display: flex;
    justify-content: space-between;
    padding: 20px;
  }
  
  .account-info__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2ebff;
    border-radius: 50%;
    height: 48px;
    width: 48px;
    min-width: 48px;
    min-height: 48px;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .account-info__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 50%;
  }
  
  .account-info__placeholder {
    color: #1759dd;
    font-size: 19px;
    font-weight: 500;
    line-height: 29px;
  }
  
  .account-info__data {
    flex: 1 1;
    min-width: 0;
  }
  
  .account-info__name {
    display: flex;
    align-items: center;
    color: #0c0d0e;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 2px;
  }
  
  .account-name-text {
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 1;
  }
  
  .copy-icon-wrapper {
    margin-left: 8px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    padding: 2px;
    border-radius: 2px;
    transition: background-color 0.2s;
  }
  
  .copy-icon-wrapper:hover {
    background-color: #f0f0f0;
  }
  
  .account-info__link {
    color: #42464e;
    font-size: 13px;
    font-weight: 400;
    line-height: 22px;
    margin-left: auto;
  }
  
  .account-info__link > a {
    display: flex;
    align-items: center;
    color: #42464e !important;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .account-info__link > a:hover {
    color: #1664ff !important;
  }
  
  .account-info__link > a:hover svg path {
    stroke: #1664ff;
  }
  
  .account-info__link > a svg {
    margin-left: 4px;
  }
  
  .account-info__id {
    display: flex;
    align-items: flex-start;
    color: #42464e;
    font-size: 13px;
    line-height: 22px;
    margin-top: 2px;
    margin-bottom: 8px;
  }
  
  .account-info__type,
  .account-info__real-name {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 10px;
    font-weight: 500;
    height: 18px;
    padding: 2px 6px;
    margin-right: 4px;
    box-shadow: 0 0 0 1px #dde2e9;
  }
  
  .account-info__type {
    background: #f6f8fa;
    color: #42464e;
    text-align: center;
  }
  
  .account-info__real-name {
    background-color: #f6f8fa;
    border: none;
    color: #42464e;
    text-decoration: none;
    transition: all 0.2s;
  }
  
  .account-info__real-name:hover {
    color: #1664ff !important;
  }
  
  .account-info__real-name span {
    margin: 0 4px;
  }
  
  .account-info__real-name svg {
    margin-left: 2px;
  }
  
  /* 内容区域 */
  .account-dropdown-content {
    padding: 16px 20px;
  }
  
  .module-links {
    border-bottom: 1px solid #eaedf1;
    padding: 16px 0;
  }
  
  .module-links:first-child {
    padding-top: 0;
  }
  
  .module-links:last-child {
    border-bottom: none;
  }
  
  .module-links__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  
  .module-links__title {
    font-size: 14px;
    font-weight: 500;
    color: #0c0d0e;
    line-height: 22px;
  }
  
  .module-links__title-slot {
    margin-left: auto;
  }
  
  .cost-balance {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
  }
  
  .cost-balance__title {
    font-size: 12px;
    color: #42464e;
    line-height: 18px;
    white-space: nowrap;
  }
  
  .cost-balance__value {
    color: #0c0d0e;
    font-weight: 500;
    margin-left: 4px;
  }
  
  .cost-balance__link {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  
  .cost-balance__link a {
    color: #1664ff;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .cost-balance__link a:hover {
    color: #0052cc;
  }
  
  .module-links__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    justify-content: space-between;
  }
  
  .module-links__item {
    margin: 0;
    flex: 1;
    min-width: 0;
    text-align: center;
  }
  
  .module-links__link {
    display: block;
    padding: 8px 4px;
    color: #42464e;
    font-size: 13px;
    line-height: 20px;
    text-decoration: none;
    transition: color 0.2s;
    white-space: nowrap;
  }
  
  .module-links__link:hover {
    color: #1664ff !important;
  }
  
  /* 待办事项 */
  .todo {
    border-bottom: 1px solid #eaedf1;
    padding: 16px 0;
  }
  
  .todo__title {
    font-size: 14px;
    font-weight: 500;
    color: #0c0d0e;
    line-height: 22px;
    margin-bottom: 12px;
  }
  
  .todo__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
  }
  
  .todo__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    color: #42464e;
    font-size: 13px;
    line-height: 20px;
    text-decoration: none;
    transition: color 0.2s;
    flex: 1;
    min-width: 0;
  }
  
  .todo__item:hover {
    color: #1664ff !important;
  }
  
  .todo__item span:last-child {
    color: #1664ff;
    font-weight: 500;
    margin-left: 8px;
  }
  
  /* 退出登录按钮 */
  .logout-btn {
    width: 100%;
    margin: 0;
  }
  
  /* 响应式 */
  @media (max-width: 960px) {
    .account-dropdown-menu {
      width: 100% !important;
      max-width: 100% !important;
    }
  
    .account-dropdown-info {
      padding: 20px;
    }
  
    .account-info__id {
      margin-bottom: 16px;
    }
  
    .account-dropdown-content {
      padding: 20px;
    }
  
    .module-links {
      padding: 20px 0;
    }
  }
  
  /* 链接悬停效果统一 */
  .account-dropdown-wrapper a:hover,
  .account-dropdown-wrapper a:hover * {
    color: #1664ff !important;
  }
  
  /* 滚动条样式 */
  .account-dropdown-wrapper::-webkit-scrollbar {
    width: 6px;
  }
  
  .account-dropdown-wrapper::-webkit-scrollbar-track {
    background: #f5f5f5;
  }
  
  .account-dropdown-wrapper::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 3px;
  }
  
  .account-dropdown-wrapper::-webkit-scrollbar-thumb:hover {
    background: #bfbfbf;
  }
  
  /* ============================================
     Support Dropdown Menu Styles
     ============================================ */
  
  .support-dropdown-popper {
    padding: 0 !important;
  }
  
  .support-dropdown-menu {
    min-width: 246px !important;
    max-width: 246px !important;
    padding: 0 !important;
    border: 1px solid #eaedf1 !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
    background-color: #fff !important;
  }
  
  .support-dropdown-menu .el-dropdown-menu__item {
    padding: 0 !important;
    line-height: normal;
    border-bottom: none !important;
  }
  
  .support-dropdown-menu .el-dropdown-menu__item:focus,
  .support-dropdown-menu .el-dropdown-menu__item:hover {
    background-color: transparent !important;
  }
  
  .support-dropdown-wrapper {
    background-color: #fff;
  }
  
  /* 工单状态统计区域 */
  .support-ticket-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border-bottom: 1px solid #eaedf1;
  }
  
  .support-ticket-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 12px 8px;
    transition: background-color 0.2s;
    cursor: pointer;
    min-height: 60px;
  }
  
  .support-ticket-header-info:hover {
    background-color: #f5f7fa;
  }
  
  .support-ticket-header-info-text {
    font-size: 12px;
    color: #737a87;
    line-height: 18px;
    margin-bottom: 4px;
    white-space: nowrap;
  }
  
  .support-ticket-header-info-num {
    font-size: 20px;
    font-weight: 600;
    color: #0c0d0e;
    line-height: 28px;
  }
  
  .support-ticket-header-divider {
    width: 1px;
    height: 38px;
    background-color: #eaedf1;
    flex-shrink: 0;
    align-self: center;
  }
  
  /* 支持链接列表 */
  .support-dropdown-list {
    padding: 8px 0;
    display: flex;
    flex-direction: column;
  }
  
  .support-dropdown-list-item {
    display: block;
    padding: 10px 16px;
    color: #42464e;
    font-size: 13px;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
  }
  
  .support-dropdown-list-item:hover {
    color: #1664ff !important;
    background-color: #f5f7fa;
  }
  
  /* ============================================
     Invoice Page Styles
     ============================================ */
  
  #invoice-app {
    padding: 20px 0;
  }
  
  .invoice-card .el-card__header {
    padding: 15px 20px;
    border-bottom: 1px solid #ebeef5;
  }
  
  .card-header-custom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .card-header-actions {
    display: flex;
    gap: 8px;
  }
  
  .invoice-status-wrapper {
    display: flex;
    align-items: center;
  }
  
  
  
  .invoice-summary {
    border-top: 1px solid #ebeef5;
    padding-top: 15px;
  }
  
  .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f5f7fa;
  }
  
  .summary-row:last-child {
    border-bottom: none;
  }
  
  .summary-row.total-row {
    border-top: 2px solid #ebeef5;
    margin-top: 8px;
    padding-top: 12px;
  }
  
  .summary-label {
    color: #606266;
    font-size: 14px;
  }
  
  .summary-value {
    color: #303133;
    font-size: 14px;
    font-weight: 500;
  }
  
  .invoice-balance {
    border-top: 2px solid #ebeef5;
    padding-top: 15px;
    margin-top: 15px;
  }
  
  .balance-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .balance-label {
    color: #303133;
    font-size: 14px;
  }
  
  .balance-value {
    color: #303133;
    font-size: 16px;
  }
  
  .payment-method-display {
    color: #606266;
    font-size: 14px;
    line-height: 1.8;
  }
  
  .payment-btn-container {
    width: 100%;
  }
  
  .credit-apply-desc {
    color: #606266;
    font-size: 13px;
    line-height: 1.6;
  }
  
  .credit-apply-desc strong {
    color: #303133;
  }
  
/* 响应式调整 */
@media (max-width: 768px) {
  .card-header-custom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .card-header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .invoice-status-tag {
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* ============================================
   Frontend User Menu Styles
   ============================================ */

#frontend-user-menu {
  display: flex;
  align-items: center;
  margin-left: 12px;
}

.frontend-user-dropdown {
  height: 100%;
  display: flex;
  align-items: center;
}

.frontend-user-avatar-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.frontend-avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #0069ff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s;
}

.frontend-user-dropdown:hover .frontend-avatar-circle {
  background-color: #0052cc;
  transform: scale(1.05);
}

.frontend-avatar-text {
  color: #fff;
  font-weight: 500;
}

.frontend-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* 确保前台用户菜单使用相同的下拉样式 */
#frontend-user-menu .account-dropdown-menu {
  min-width: 368px !important;
  max-width: 368px !important;
}

/* 隐藏原有的用户信息显示 */
.userInfo-name {
  display: none !important;
}

/* ============================================
   Sidebar Navigation Styles (from nav.css)
   ============================================ */

a:focus,
a:hover {
	color: #006eff;
}

#cf-service-sidebar {
	position: relative;
	z-index: 700;
	height: 100%;
	background-color: #fff;
	width: 236px;
	transition: all .3s ease-out 0s;
	border-right: 1px solid #dfe1e6;
}

#cf-service-sidebar.cf-sidebar-mini {
	width: 48px;
}

.cf-sidebar-wrapper {
	z-index: 95;
	font-size: 12px;
	color: #252b3a;
	height: 100%;
	background-color: #fff;
	position: relative;
}

.cf-sidebar-service-wrapper {
	height: 46px;
	background-color: #fff;
	overflow: hidden;
	position: relative;
}

.cf-sidebar-more-service-row {
	position: absolute;
	height: 46px;
	z-index: 100;
	width: 236px;
	cursor: pointer;
}

a.cf-sidebar-more-service-item {
	display: flex;
	height: 46px;
	width: 100%;
	text-decoration: none;
	color: #252b3a;
	white-space: nowrap;
}

.cf-sidebar-service-icon {
	color: #252b3a;
	display: flex;
	width: 47px;
	height: 50px;
	justify-content: center;
	align-items: center;
}

.hwsicon-frame-service-list {
	font-size: 16px !important;
}

#cf-show-all-service-box .cf-sidebar-service-icon {
	padding: 14px;
	height: 46px;
	font-size: 24px;
}

#cf-show-all-service-box .cf-sidebar-service-name {
	height: 46px;
	line-height: 46px;
	margin-top: 0;
}

.cf-sidebar-service-name,
.cf-sidebar-toolbar {
	height: 50px;
	line-height: 50px;
	vertical-align: middle;
}

.cf-sidebar-service-name {
	display: inline-block;
	width: 188px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.cf-sidebar-mini .cf-sidebar-line {
	margin-left: 6px;
	margin-right: 6px;
}

.cf-sidebar-line {
	height: 1px;
	background-color: #dfe1e6;
	width: auto;
}

.cf-sidebar-wrapper .list-group {
	display: block;
	overflow-x: hidden;
	position: relative;
	height: calc(100% - 84px);
	cursor: pointer;
}

.cf-sidebar-wrapper .list-group .list-group-item {
	width: 236px;
	padding: 0px;
	height: 50px;
	border: none;
	position: relative;
}

.cf-sidebar-wrapper .list-group .list-group-item:hover,
.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item .leftmenu-item-child .leftmenu-item-child-li:hover,
.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item .leftmenu-item-title:hover {
	background: #DFEDFF;
}

.cf-sidebar-wrapper .list-group .list-group-item.pitch .cf-sidebar-service-name {
	color: #006eff;
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item .leftmenu-item-child .leftmenu-item-child-li:hover {
	color: #006eff;
}

.cf-sidebar-wrapper .list-group .list-group-item:hover .cf-sidebar-service-icon {
	color: #006eff;
}

.cf-sidebar-wrapper .list-group .list-group-item>a {
	display: flex;
	align-items: center;
}

.cf-sidebar-toolbar {
	display: none;
	position: absolute;
	right: 10px;
	top: 0;
	cursor: move;
	cursor: -ms-move;
}

.cf-sidebar-wrapper .list-group .list-group-item:hover .cf-sidebar-toolbar {
	display: inline-block;
}

.cf-sidebar-collection-service:hover {
	cursor: pointer;
	background-color: #fff;
}

.sortable-chosen>a {
	color: #006eff;
}

.ti-leftmenu-container {
	position: absolute;
	font-size: 14px;
	top: 0px;
	left: 48px;
	z-index: 90;
	width: 187px;
	height: 100%;
	background-color: #fff;
	color: #575d6c;
	box-shadow: 0 2px 4px 0 rgb(2 25 42 / 10%);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.ti-leftmenu-container .ti-leftmenu-panel {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	overflow: visible;
	padding: 0 24px;
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-title {
	height: 60px;
	line-height: 60px;
	border-bottom: 1px solid #E5E5E5;
	margin-bottom: 10px;
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item .leftmenu-item-title {
	display: inline-block;
	height: 38px;
	line-height: 38px;
	width: calc(100% + 48px);
	position: relative;
	right: 24px;
	padding: 0 24px;
	cursor: pointer;
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item .leftmenu-item-title .pullDown-icon {
	position: absolute;
	font-size: 12px;
	color: #999;
	right: 24px;
	top: 13px;
	transition: all 0.2s linear;
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item.active .leftmenu-item-title .pullDown-icon {
	transform: rotate(-180deg);
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item .leftmenu-item-child {
	position: relative;
	padding-left: 0px;
	height: 0px;
	max-height: 0px;
	overflow: hidden;
	transition: all 0.3s linear;
	opacity: 0;
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item.active .leftmenu-item-child {
	height: auto;
	overflow: inherit;
	max-height: 1000px;
	opacity: 1;
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item .leftmenu-item-child::before {
	position: absolute;
	left: 0px;
	width: 1px;
	top: 13px;
	content: "";
	height: calc(100% - 24px);
	background: #E5E5E5;
	z-index: 1;
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item .leftmenu-item-child .leftmenu-item-child-li {
	position: relative;
	display: block;
	line-height: 18px;
	padding: 10px 36px 10px 40px;
	cursor: pointer;
	outline: none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	width: calc(100% + 48px);
	right: 24px;
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item .leftmenu-item-child .leftmenu-item-child-li.active {
	color: #006eff;
}

.ti-leftmenu-container .ti-leftmenu-panel .ti-leftmenu-item .leftmenu-item-child .leftmenu-item-child-li.active::before {
	position: absolute;
	left: 24px;
	top: 10px;
	content: "";
	width: 1px;
	height: calc(100% - 20px);
	background: #006eff;
	z-index: 10;
}

.imgSidebar.ri-icon {
	font-size: 24px;
	display: inline-block;
	width: 24px;
	height: 24px;
	line-height: 24px;
	text-align: center;
	vertical-align: middle;
}

.imgSidebar.ri-icon[class*="ri-"] {
	font-size: 24px;
	width: 47px;
}

.full-menu-mode .page-body {
	min-width: calc(1366px - 236px);
	left: 236px;
	top: 0px;
	background: #EEF0F5;
}

.mini-menu-mode .page-body {
	min-width: auto;
	left: 48px;
	background-color: #f2f4f8;
}

.page-body.page-home {
	min-height: calc(100vh);
	box-sizing: border-box;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	overflow-x: hidden;
	overflow-y: auto;
	transition: left 0.3s ease-out;
}

.ActiveBack {
	color: #006eff;
	background-color: #E4F0FF;
}

/* Docs (Knowledge Base) Styles */
#docs-app {
	min-height: calc(100vh - 60px);

}

.docs-search-section {
	margin-bottom: 30px;
}

.docs-search-autocomplete {
	width: 100%;
}

.docs-search-autocomplete .el-input__inner {
	border-radius: 4px 0 0 4px;
}

.docs-search-autocomplete .el-autocomplete-suggestion {
	max-height: 300px;
	overflow-y: auto;
}

.docs-search-autocomplete .el-autocomplete-suggestion__list {
	padding: 0;
	margin: 0;
}

.docs-search-autocomplete .el-autocomplete-suggestion__item {
	padding: 12px 15px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.docs-search-autocomplete .el-autocomplete-suggestion__item:hover {
	background-color: #f5f7fa;
}

.docs-search-autocomplete .el-autocomplete-suggestion__item.highlighted {
	background-color: #ecf5ff;
	color: #409eff;
}

.docs-content-wrapper {
	min-height: 500px;
}

.docs-categories-view {
	margin-top: 20px;
}

.docs-category-card {
	margin-bottom: 20px;
	cursor: pointer;
	transition: all 0.3s;
}

.docs-category-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.docs-category-header {
	display: flex;
	align-items: center;
	gap: 10px;
}

.docs-category-name {
	flex: 1;
	font-size: 16px;
	font-weight: 500;
}

.docs-category-badge {
	margin-left: auto;
}

.docs-category-description {
	color: #666;
	font-size: 14px;
	margin: 10px 0;
	min-height: 40px;
}

.docs-category-footer {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #999;
	margin-top: 10px;
}

.docs-popular-section {
	margin-top: 40px;
}

.docs-section-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.docs-popular-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.docs-popular-list li {
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.2s;
}

.docs-popular-list li:hover {
	background-color: #f5f7fa;
	padding-left: 10px;
}

.docs-popular-list li:last-child {
	border-bottom: none;
}

.docs-article-title {
	flex: 1;
	font-size: 14px;
}

.docs-article-meta {
	font-size: 12px;
	color: #999;
	display: flex;
	gap: 15px;
}

.docs-breadcrumb {
	margin-bottom: 20px;
}

.docs-search-result-header {
	margin-bottom: 20px;
}

.docs-search-result-header h3 {
	font-size: 18px;
	font-weight: 500;
	color: #333;
}

.docs-articles-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.docs-article-item {
	padding: 20px;
	border-bottom: 1px solid #f0f0f0;
	cursor: pointer;
	transition: all 0.2s;
}

.docs-article-item:hover {
	background-color: #f5f7fa;
	border-left: 3px solid #409eff;
	padding-left: 17px;
}

.docs-article-item:last-child {
	border-bottom: none;
}

.docs-article-item-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
}

.docs-article-item-title {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	margin: 0;
	flex: 1;
}

.docs-article-item-title mark {
	background-color: #ffeb3b;
	padding: 2px 4px;
}

.docs-article-item-excerpt {
	color: #666;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 10px;
}

.docs-article-item-excerpt mark {
	background-color: #ffeb3b;
	padding: 2px 4px;
}

.docs-article-item-footer {
	display: flex;
	gap: 20px;
	font-size: 12px;
	color: #999;
}

.docs-article-view {
	margin-top: 20px;
}

.docs-article-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 20px;
}

.docs-article-title {
	font-size: 28px;
	font-weight: 600;
	color: #333;
	margin: 0;
	flex: 1;
}

.docs-article-meta {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
}

.docs-article-stats {
	margin-left: 15px;
	font-size: 14px;
	color: #999;
}

.docs-article-content {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 30px;
}

.docs-article-content h1,
.docs-article-content h2,
.docs-article-content h3,
.docs-article-content h4 {
	margin-top: 25px;
	margin-bottom: 15px;
	font-weight: 600;
}

.docs-article-content p {
	margin-bottom: 15px;
}

.docs-article-content ul,
.docs-article-content ol {
	margin-bottom: 15px;
	padding-left: 30px;
}

.docs-article-content code {
	background-color: #f5f5f5;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: 'Courier New', monospace;
}

.docs-article-content pre {
	background-color: #f5f5f5;
	padding: 15px;
	border-radius: 5px;
	overflow-x: auto;
	margin-bottom: 15px;
}

.docs-article-content pre code {
	background: none;
	padding: 0;
}

.docs-article-vote {
	margin-top: 30px;
	padding: 20px;
	background-color: #f5f7fa;
	border-radius: 5px;
	text-align: center;
}

.docs-article-vote h4 {
	margin-bottom: 15px;
	font-size: 16px;
	color: #333;
}

.docs-article-vote-thanks {
	margin-top: 30px;
}

.docs-related-articles {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #f0f0f0;
}

.docs-related-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.docs-related-list li {
	padding: 10px 0;
	cursor: pointer;
	color: #409eff;
	transition: all 0.2s;
}

.docs-related-list li:hover {
	color: #66b1ff;
	padding-left: 10px;
}

.docs-empty {
	text-align: center;
	padding: 60px 20px;
	color: #999;
}

.docs-empty i {
	font-size: 48px;
	margin-bottom: 15px;
	display: block;
}

@media print {
	.docs-breadcrumb,
	.docs-article-actions,
	.docs-article-vote,
	.docs-related-articles {
		display: none;
	}
}

/* Global Search Styles */
.global-search-wrap {
	background-color: hsla(0,0%,100%,.1);
	height: 100%;
	margin-right: 12px;
	position: relative;
	transition: width .5s ease;
	width: 240px;
}

@media screen and (max-width: 1199.9px) {
	.global-search-wrap {
		margin-right: 10px;
	}
}

@media screen and (max-width: 600px) {
	.global-search-wrap {
		background: transparent;
		width: 24px;
	}
}

@media screen and (min-width: 601px) {
	.global-search-wrap {
		border-left: 1px solid hsla(0,0%,9%,.05);
		border-right: 1px solid hsla(0,0%,9%,.05);
	}
}

@media screen and (min-width: 1200px) and (max-width: 1600px) {
	.global-search-wrap {
		width: 40px;
	}
}

@media screen and (min-width: 601px) {
	.global-search-wrap.global-search-active,
	.global-search-wrap:has(.global-search-active) {
		width: 421px;
	}
	
	.global-search-wrap.global-search-active .global-search-btn,
	.global-search-wrap:has(.global-search-active) .global-search-btn {
		cursor: pointer;
	}
}

.global-search {
	backface-visibility: hidden;
	cursor: text;
	height: 100%;
	overflow: hidden;
	transform: translateZ(0);
	z-index: 9999;
	display: flex;
	align-items: center;
}

@media screen and (min-width: 601px) {
	.global-search {
		padding: 9px 8px 9px 4px;
	}
}

.global-search-btn {
	display: block;
	flex-shrink: 0;
	height: 18px;
	width: 32px;
	cursor: pointer;
	color: hsla(0,0%,100%,.7);
}

@media screen and (max-width: 600px) {
	.global-search-btn {
		height: 24px;
		width: 24px;
	}
}

.global-search-input {
	background: transparent;
	border: none;
	color: #fff;
	flex: 1 0 auto;
	cursor: text;
	font-size: 14px;
	margin-left: 2px;
	outline: none;
}

.global-search-input::-webkit-input-placeholder {
	color: hsla(0,0%,100%,.5);
}

.global-search-input::-moz-placeholder {
	color: hsla(0,0%,100%,.5);
}

.global-search-input::placeholder {
	color: hsla(0,0%,100%,.5);
}

@media screen and (max-width: 600px) {
	.global-search-input {
		display: none;
	}
}

/* Mobile user drawer styles */
.sdk-menus-drawer { 
  background: #fff; 
  width: 100%; 
  max-width: 360px; 
  position: fixed; 
  right: 0; 
  top: 0; 
  bottom: 0; 
  z-index: 2020; 
  box-shadow: -8px 0 20px rgba(0,0,0,0.12); 
  transform: translateX(100%); 
  transition: transform .28s cubic-bezier(.2,.8,.2,1); 
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.nav-user-menu.show .sdk-menus-drawer { transform: translateX(0); }
.sdk-menus-drawer__header { 
  padding: 12px 16px; 
  border-bottom: 1px solid #f0f0f0; 
  display: flex; 
  align-items: center; 
  justify-content: flex-end;
  flex-shrink: 0;
}
.sdk-menus-drawer__body { 
  flex: 1; 
  overflow: hidden; 
  position: relative;
}
.sdk-menus-drawer__body-inner {
  height: 100%;
  overflow: hidden;
}
.sdk-nav-v2-account-panel__account { padding: 16px; border-bottom: 1px solid #f5f5f5; }
.sdk-nav-v2-account-panel__info { padding: 0; }
.sdk-nav-v2-account-panel__info-name { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.sdk-nav-v2-account-panel__info-left { font-weight: 700; font-size: 18px; color: #222; }
.sdk-nav-v2-account-panel__info-tag { padding: 4px 10px; border-radius: 12px; border: 1px solid #dff7e6; color: #2aa04a; background: #f6fffb; font-size: 12px; }
.sdk-nav-v2-account-panel__info-account { display: flex; align-items: center; justify-content: space-between; color: #666; font-size: 14px; }
.sdk-nav-v2-account-panel__info-account-list { list-style: none; padding: 0; margin: 0; }
.sdk-nav-v2-account-panel__menu-list { padding: 8px 0; }
.sdk-nav-v2-account-panel__menu-item { border-bottom: 1px solid #f5f5f5; }
.sdk-nav-v2-account-panel__menu-item:last-child { border-bottom: none; }
.sdk-nav-v2-account-panel__menu-item-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; color: #222; text-decoration: none; cursor: pointer; }
.sdk-nav-v2-account-panel__menu-item-inner:hover { background: #f9f9f9; }
.sdk-nav-v2-account-panel__menu-item-left { display: flex; align-items: center; gap: 12px; }
.sdk-menus-drawer .menu-icon { 
  width: 32px; 
  height: 32px; 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  background: #f1f5fb; 
  border-radius: 8px; 
  color: #1677ff; 
  font-size: 16px; 
}
.menu-label { font-size: 15px; color: #333; }
.sdk-menus-drawer__footer { 
  padding: 16px; 
  border-top: 1px solid #f0f0f0; 
  background: #fff; 
  flex-shrink: 0;
}
.sdk-menus-btn--brand { 
  background: #1677ff; 
  color: #fff; 
  border: none; 
  padding: 12px 16px; 
  width: 100%; 
  border-radius: 8px; 
  font-size: 15px;
  cursor: pointer;
}
.sdk-menus-btn--brand:hover { background: #0958d9; }

/* Backdrop for mobile drawer */
.sdk-menus-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .28s ease, opacity .28s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 2010;
}
.nav-user-menu.show .sdk-menus-backdrop {
  background: rgba(0,0,0,0.45);
  opacity: 1;
  pointer-events: auto;
}

/* Panel slider (main and subpanel) */
.panel-slider { 
  display: flex; 
  width: 200%; 
  height: 100%; 
  transition: transform .28s cubic-bezier(.2,.8,.2,1); 
  will-change: transform; 
  transform: translateX(0);
}
.sdk-menus-drawer.panel-open .panel-slider { 
  transform: translateX(-50%); 
}
.panel-main, .panel-sub { 
  flex: 0 0 50%; 
  width: 50%; 
  box-sizing: border-box; 
  height: 100%;
  overflow-y: auto; 
}
.panel-sub { 
  padding: 0; 
}

/* Close and back button styles */
.sdk-menus-drawer__header button { 
  background: #fff; 
  border: 1px solid #e5e7eb; 
  border-radius: 6px; 
  padding: 8px 10px; 
  cursor: pointer; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.sdk-menus-drawer__header button:hover { background: #f5f5f5; }
.sdk-nav-v2-account-panel__header { 
  display: flex; 
  align-items: center; 
  gap: 8px; 
  padding: 14px 16px; 
  border-bottom: 1px solid #f5f5f5; 
  background: #fff;
}
.sdk-nav-v2-account-panel__header .sdk-menus-btn { 
  border: 1px solid #e5e7eb; 
  background: #fff; 
  padding: 8px 12px; 
  border-radius: 6px; 
  cursor: pointer;
  font-size: 14px;
}
.sdk-nav-v2-account-panel__header .sdk-menus-btn:hover { background: #f5f5f5; }
.sdk-nav-v2-account-panel__title { font-size: 16px; font-weight: 600; color: #222; }

/* Chevron icon in menu */
.ruyi-icon-chevron-right { color: #999; flex-shrink: 0; }


.global-search-hint {
	background: #fff;
	border-radius: 4px;
	border-top: 1px solid #e5e6eb;
	box-shadow: 0 -1px 4px rgba(21,40,76,.06), 0 20px 20px rgba(21,40,76,.2), 0 50px 100px rgba(50,50,76,.14);
	padding: 16px 0;
	position: absolute;
	right: 0;
	top: calc(100% - 1px);
	transition: opacity .3s ease-in-out;
	width: 421px;
	z-index: 3;
	max-height: 500px;
	overflow-y: auto;
}

.global-search-hint > * {
	padding: 0 16px;
}

.global-search-hint > .global-search-hint-title:first-child {
	padding-top: 0;
}

@media screen and (max-width: 600px) {
	.global-search-hint {
		display: none;
	}
}

.global-search-hint-title {
	color: #86909c;
	cursor: default;
	display: inline-block;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 17px;
	padding-top: 6px;
	vertical-align: bottom;
	width: fit-content;
	margin-bottom: 8px;
}

.global-search-card-list {
	display: flex;
	flex-wrap: wrap;
	margin: 12px 0 8px;
}

.global-search-hint-card {
	background: #f7f7f7;
	color: #1d2129;
	cursor: pointer;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	height: 24px;
	line-height: 20px;
	margin-bottom: 12px;
	padding: 2px 4px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
}

.global-search-hint-card:not(:last-child) {
	margin-right: 16px;
}

.global-search-hint-card:hover {
	background: rgba(22,100,255,.1);
	color: #1664ff;
}

.global-search-hint-link {
	color: #42464e;
	font-size: 13px;
	text-decoration: none;
}

.global-search-hint-link:hover {
	color: #1664ff;
}

.global-search-hint-entry {
	cursor: pointer;
	font-size: 14px;
	height: 30px;
	line-height: 30px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 12px;
	border-radius: 4px;
	transition: background-color 0.2s;
}

.global-search-hint-entry:not(:first-child) {
	margin-top: 4px;
}

.global-search-hint-entry:hover,
.global-search-hint-entry[data-active=true] {
	background: #f5f7fa;
}

.global-search-hint-entry:hover .global-search-hint-link,
.global-search-hint-entry[data-active=true] .global-search-hint-link {
	color: #1664ff;
}

.global-search-result-section {
	margin-bottom: 16px;
}

.global-search-result-section:not(:first-child) {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #eaedf1;
}

.global-search-hint-content {
	max-height: 400px;
	overflow-y: auto;
}

/* ============================================
   Announcement Dialog Styles
   ============================================ */

.announcement-dialog .el-dialog__body {
	max-height: 60vh;
	overflow-y: auto;
}

.announcement-content {
	line-height: 1.8;
	color: #303133;
	font-size: 14px;
}

.announcement-content p {
	margin-bottom: 12px;
}

.announcement-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 8px 0;
}

.announcement-content a {
	color: #409EFF;
}

.announcement-content a:hover {
	text-decoration: underline;
}

.announcement-content ul,
.announcement-content ol {
	padding-left: 20px;
	margin-bottom: 12px;
}

.announcement-content li {
	margin-bottom: 6px;
}

.announcement-content h1,
.announcement-content h2,
.announcement-content h3,
.announcement-content h4 {
	margin: 16px 0 8px;
	font-weight: 600;
}

.announcement-content pre,
.announcement-content code {
	background-color: #f5f7fa;
	border-radius: 4px;
	padding: 2px 6px;
	font-family: Consolas, Monaco, monospace;
}

.announcement-content pre {
	padding: 12px;
	overflow-x: auto;
}

.announcement-content blockquote {
	border-left: 4px solid #409EFF;
	padding-left: 12px;
	margin: 12px 0;
	color: #606266;
	background-color: #f5f7fa;
	padding: 12px 16px;
	border-radius: 0 4px 4px 0;
}

.announcement-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 12px 0;
}

.announcement-content table th,
.announcement-content table td {
	border: 1px solid #ebeef5;
	padding: 8px 12px;
	text-align: left;
}

.announcement-content table th {
	background-color: #f5f7fa;
	font-weight: 600;
}

/* ============================================
   Station Message Notification Styles
   ============================================ */

.notification-dropdown-menu {
	min-width: 360px !important;
	max-width: 360px !important;
	padding: 0 !important;
}

.notification-dropdown-header {
	padding: 12px 16px;
	border-bottom: 1px solid #ebeef5;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 500;
	color: #303133;
}

.notification-unread-count {
	font-size: 12px;
	color: #f56c6c;
	font-weight: normal;
}

.notification-dropdown-body {
	max-height: 400px;
	overflow-y: auto;
	min-height: 100px;
}

.notification-msg-item {
	padding: 12px 16px;
	border-bottom: 1px solid #f5f7fa;
	cursor: pointer;
	transition: background-color 0.2s;
}

.notification-msg-item:hover {
	background-color: #f5f7fa;
}

.notification-msg-item:last-child {
	border-bottom: none;
}

.notification-msg-unread {
	background-color: #ecf5ff;
}

.notification-msg-unread:hover {
	background-color: #d9ecff;
}

.notification-msg-title {
	font-size: 14px;
	color: #303133;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.notification-msg-stick {
	display: inline-block;
	padding: 0 4px;
	margin-right: 4px;
	font-size: 10px;
	background-color: #f56c6c;
	color: #fff;
	border-radius: 2px;
	vertical-align: middle;
}

.notification-msg-category {
	display: inline-block;
	padding: 0 4px;
	margin-right: 4px;
	font-size: 10px;
	color: #fff;
	border-radius: 2px;
	vertical-align: middle;
}

.notification-msg-time {
	font-size: 12px;
	color: #909399;
	margin-top: 4px;
}

.notification-empty {
	text-align: center;
	padding: 40px 20px;
	color: #909399;
}

.notification-dropdown-footer {
	padding: 10px 16px;
	border-top: 1px solid #ebeef5;
	text-align: center;
}

.notification-view-all {
	color: #409EFF;
	font-size: 13px;
}

.notification-view-all:hover {
	color: #66b1ff;
}

/* Station Message Dialog */
.station-msg-dialog .el-dialog__body {
	max-height: 60vh;
	overflow-y: auto;
}

.station-msg-content {
	line-height: 1.8;
	color: #303133;
	font-size: 14px;
}

.station-msg-content p {
	margin-bottom: 12px;
}

.station-msg-content img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 8px 0;
}

.station-msg-content a {
	color: #409EFF;
}

.station-msg-content a:hover {
	text-decoration: underline;
}

/* ============================================
   Add Funds Dialog Styles
   ============================================ */

.addfunds-dialog .el-dialog__body {
	padding: 20px 24px;
}

.addfunds-dialog .quick-amounts-wrap .el-button {
	min-width: 80px;
}

.addfunds-dialog .payment-method-item {
	padding: 12px 20px;
	border: 1px solid #dcdfe6;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s;
	background: #fff;
	position: relative;
}

.addfunds-dialog .payment-method-item:hover {
	border-color: #409EFF;
	background-color: #f5f7fa;
}

.addfunds-dialog .payment-method-item.active {
	border-color: #409EFF;
	background-color: #ecf5ff;
	color: #409EFF;
}

.addfunds-dialog .payment-method-item.active::after {
	content: '\2713';
	position: absolute;
	top: -1px;
	right: -1px;
	width: 18px;
	height: 18px;
	background: #409EFF;
	border-radius: 0 6px 0 6px;
	color: #fff;
	font-size: 12px;
	line-height: 18px;
	text-align: center;
}

.addfunds-dialog .el-input-group__prepend,
.addfunds-dialog .el-input-group__append {
	background-color: #f5f7fa;
	border-color: #dcdfe6;
	color: #909399;
	padding: 0 15px;
}

.addfunds-dialog .el-form-item__label {
	font-weight: 500;
	color: #303133;
}

/* ============================================
   Mobile Sidebar Fixes
   ============================================ */

/* Fix sidebar icon display in mini mode */
#cf-service-sidebar.cf-sidebar-mini .cf-sidebar-service-icon {
  width: 48px;
  min-width: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cf-service-sidebar.cf-sidebar-mini .imgSidebar.ri-icon {
  width: 24px !important;
  min-width: 24px;
  font-size: 22px;
  text-align: center;
}

#cf-service-sidebar.cf-sidebar-mini .list-group-item {
  padding: 0;
}

#cf-service-sidebar.cf-sidebar-mini .list-group-item > a {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

#cf-service-sidebar.cf-sidebar-mini .cf-sidebar-service-name {
  display: none;
}

/* Mobile responsive styles for sidebar */
@media (max-width: 768px) {
  /* Hide sidebar completely on mobile */
  #cf-service-sidebar {
    display: none !important;
  }
  
  /* Hide sub-menu on mobile */
  .ti-leftmenu-container {
    display: none !important;
  }
  
  /* Page body should start from left edge on mobile */
  .mini-menu-mode .page-body,
  .full-menu-mode .page-body {
    left: 0 !important;
    min-width: auto;
  }
  
  /* User drawer should be full width on mobile */
  .sdk-menus-drawer {
    width: 100% !important;
    max-width: 100% !important;
  }
}