





.btn-primary, .bg-primary {
  background-color: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
}
.text-primary {
  color: var(--primary-dark) !important;
}


.note {
  padding-top: 0;
}

.post {
  padding: 0 !important;
  margin: 0 auto;
  width: 100%;
  font-family: var(--font-ui);
  background: transparent !important;
}

.data-header .title {
  word-break: break-word;
  margin: var(--spacing-xs) 0 8px; 
  font-family: var(--font-ui);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #1A202C;
  letter-spacing: 0.02em;
}



.card {
  border: none;
  border-radius: var(--border-radius-sm);
}


.sidebar-section{
  background: transparent;
}


.content-card {
  padding: 24px;
}


.title-meta {
  margin-top: var(--spacing-sm);
  font-size: 13px;
  color: var(--text-muted);
}

.title-meta span {
  margin-right: 0;
}

.title-meta .meta-divider {
  color: #CBD5E0;
  font-size: 13px;
  margin: 0;
}



.chart-controls {
  background: transparent;
  padding: 10px 0;
}


.pro-chart-controls {
  background: transparent;
  padding: 0 0 16px 0;
  border-bottom: 1px solid #EDF2F7;
  border-radius: 0;
  margin-top: 24px;
  margin-bottom: 24px;
}


.chart-range-controls {
  padding: 0;
  margin-top: 15px;
}

.chart-range-controls-slider{
  padding: 0 10px;
  


  min-height: 32px;
}


.chart-lock-hint {
  display: none;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #86909C;
  white-space: nowrap;
  flex-shrink: 0;
}

.chart-lock-hint-btn i {
  font-size: 11px;
}

.chart-lock-hint-btn {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 0 10px;
  height: 22px;
  line-height: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #1A4FBE;
  background: transparent;
  border: 1px solid #C8D5EF;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s, color 0.15s;
}

.chart-lock-hint-btn:hover {
  background: #EEF2FB;
  border-color: #1A4FBE;
  color: #1240A0;
}

@media (max-width: 768px) {
  .chart-controls {
    flex-direction: column !important;
    gap: 15px;
  }
  
  .chart-selector {
    width: 100%;
  }
  
  .chart-selector select {
    width: 100% !important;
    min-width: auto;
  }
  
  .chart-type-btns {
    width: 100%;
    justify-content: space-between;
  }
}

.chart-header {
  clear: both;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: var(--spacing-xl);
  border-radius: var(--border-radius-md);
  
}


.content-card.card.mt-0 {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  box-shadow: none;
}


.data-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}


.category-options {
  display: flex;
  align-items: center;
}

.category-options .unlock-toolbar-slot:empty {
  display: none;
}


.pro-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: none;
  padding: 4px 20px 4px 4px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-dark);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  background-size: 12px;
  transition: color 0.15s ease;
}

.pro-select:hover {
  color: var(--primary-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5L6 8l3.5-3.5' fill='none' stroke='%231A4FBE' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pro-select:focus {
  outline: none;
}

.category-select {
  display: inline-flex;
  align-items: center;
}

.category-select label {
  margin-right: 5px;
  font-size: 14px;
  color: var(--text-muted);
}

.category-select select {
  width: 100px;
  padding: 4px 8px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.data-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

.data-actions-group {
  display: flex;
  gap: var(--spacing-md);
}

.data-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
  font-size: 14px;
  text-decoration: none;
  border: 1px solid var(--border-color-dark);
  transition: all 0.2s ease;
}

.data-action-btn:hover {
  background-color: var(--primary-dark);
  color: white;
  text-decoration: none;
  border-color: var(--primary-dark);
}



.chart-tabs {
  border-bottom: none;
  background: #f9f9f9;
}

.chart-tabs .nav-link {
  color: var(--text-dark);
  border: none;
  padding: var(--spacing-xs) var(--spacing-md);
  font-size: 14px;
  border-radius: 0;
  padding: 10px 15px;
}

.chart-tabs .nav-link:hover {
  background-color: var(--bg-hover);
  color: var(--primary-dark);
}

.chart-tabs .nav-link.active {
  background: var(--primary-dark);
  color: white;
  border: none;
  border-radius: var(--border-radius-md);
}

.chart-toggle.btn-group {
  float: left;
}

.chart-toggle .btn.btheme {
  background: var(--bg-gray);
  border: 1px solid #ddd;
  color: var(--text-dark);
  padding: 5px var(--spacing-md);
  font-size: 14px;
  margin-right: 5px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
}

.chart-toggle .btn.btheme:hover {
  background: var(--bg-hover);
}


.chart-container {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
  position: relative;
}

.chart-container canvas {
  max-width: 100%;
  min-height: 320px;
}


.chart-range {
  font-size: 14px;
  color: var(--text-muted);
}

.ui-widget-header{
  background: #f6f6f6!important;
}


.show-table {
  overflow-x: auto;
  margin-top: 0;
}

.ntable {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
}

.ntable th,
.ntable td {
  padding: 8px var(--spacing-md);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.ntable th {
  background: var(--bg-gray-th);
  font-weight: 500;
  color: var(--text-dark);
}

.ntable td {
  color: var(--text-dark);
}

.ntable tr:hover {
  background: var(--bg-gray-light);
}

.ntable .link-access {
  color: var(--color-link)!important;
}


.table-note {
  font-size: 12px;
  color: var(--text-muted);
}

.table-note p {
  margin: 5px 0;
}

.table-note a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--primary-dark);
  transition: all 0.2s ease;
}

.table-note a:hover {
  color: var(--primary-color);
  border-bottom-style: solid;
}


.btn-pro {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 13px;
  color: #4A5568;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-pro:hover {
  background-color: #F7FAFC;
  color: var(--primary-dark);
}

.btn-pro.active {
  color: var(--primary-dark);
}



.chart-type-btns .btn-pro { position: relative; }
.chart-type-btns .btn-pro.active::after {
  content: ''; position: absolute; left: 50%; bottom: -2px; transform: translateX(-50%);
  width: 16px; height: 2px; border-radius: 1px; background: var(--primary-color);
}





.chart-type-btns .btn-toggle::before {
  content: '';
  width: 12px; height: 12px; margin-right: 5px; flex: none;
  border: 1px solid #C9CDD4;
  border-radius: 2px;
  background: #fff;
  transition: all 0.2s ease;
}
.chart-type-btns .btn-toggle.active::before {
  background: var(--primary-color);
  border-color: var(--primary-color);
  
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M2.5 6.2l2.4 2.4 4.6-5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}
.chart-type-btns .btn-toggle.active::after { display: none; }   

.btn-pro .iconfont {
  font-size: 14px;
  margin-right: 4px;
  transition: color 0.2s ease;
}

.btn-pro:hover .iconfont,
.btn-pro.active .iconfont {
  color: var(--primary-dark);
}


.chart-action-btns .btn-pro {
  background-color: transparent;
}
.chart-action-btns .btn-pro:hover {
  background-color: #f8fbff;
}

.btn-pro-divider {
  width: 1px;
  height: 14px;
  background-color: #E2E8F0;
}

.btn-pro-action {
  border-color: #E2E8F0;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.btn-pro-action:hover {
  border-color: var(--primary-dark);
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,102,204,0.08);
}



.btn-pro-action-hover {
  border-color: #E2E8F0;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.btn-pro-action-hover:hover {
  border-color: var(--primary-dark);
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,102,204,0.08);
}

.btn-pro-loadmore {
  border: 1px solid #E2E8F0;
  color: var(--primary-dark);
  background-color: #F8FAFC;
  padding: 8px 24px;
  border-radius: 20px;
}

.btn-pro-loadmore:hover {
  background-color: var(--primary-dark);
  color: #fff;
  border-color: var(--primary-dark);
}

.btn-pro-loadmore:hover .iconfont {
  color: #fff;
}

.widget-btns {
  min-height: 30px;
  margin-top: var(--spacing-md);
}

.btn-all {
  color: var(--color-link)!important;
  font-size: 14px;
  text-align: center;
  display: block;
  border-radius: var(--border-radius-sm);
  text-decoration: none;
  transition: 0.3s;
}

.btn-all:hover {
  color: var(--primary-dark);
  font-size: 14px;
}

.indexmore {
  cursor: pointer;
}


.title-link {
  color: var(--text-dark);
  text-decoration: none;
}

.title-link:hover {
  color: var(--primary-color);
}


.text-truncate {
  display: block;
}


.rightad {
  margin-bottom: 10px;
  width: 100%;
  float: right;
  border-radius: var(--border-radius-sm);
  background: #fff;
  overflow: hidden;
}

.rightad img{
  width: 100%;
}


.sub-region-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sub-region-link {
  display: block;
  padding: 8px 10px;
  background: #f8f9fa;
  border-radius: var(--border-radius-sm);
  color: #495057;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  text-align: center;
  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub-region-link:hover {
  background: var(--color-link);
  border-color: var(--color-link);
  color: white;
  transform: translateY(-1px);
}




.region-ranking-widget {
  position: relative;
}

.hot-ranking-widget {
  position: sticky;
  top: 80px; 
  max-height: calc(100vh - 100px); 
  overflow-y: auto; 
  transition: box-shadow 0.3s ease;
}


.hot-ranking-widget::-webkit-scrollbar {
  width: 6px;
}

.hot-ranking-widget::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-sm);
}

.hot-ranking-widget::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}


.region-ranking-widget .ranking-tabs,
.hot-ranking-widget .ranking-tabs {
  display: flex;
  margin-bottom: 6px;
  padding: 4px;
  background: #f5f7fa;
  border-radius: var(--border-radius-md);
}

.region-ranking-widget .ranking-tab,
.hot-ranking-widget .ranking-tab {
  flex: 1;
  padding: 6px;
  font-size: 13px;
  color: #666;
  background: transparent;
  border: none;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  text-align: center;
}

.region-ranking-widget .ranking-tab:hover,
.hot-ranking-widget .ranking-tab:hover {
  color: #333;
  background: rgba(255, 255, 255, 0.5);
}

.region-ranking-widget .ranking-tab.active,
.hot-ranking-widget .ranking-tab.active {
  color: var(--text-dark);
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}


.region-ranking-widget .ranking-list,
.hot-ranking-widget .ranking-list {
  display: flex;
  flex-direction: column;
}

.region-ranking-widget .ranking-item,
.hot-ranking-widget .ranking-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 6px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}


.region-ranking-widget .ranking-item:hover,
.hot-ranking-widget .ranking-item:hover {
  background: #f5f7fa;
}


.region-ranking-widget .rank-badge,
.hot-ranking-widget .rank-badge {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: var(--border-radius-md);
  background: #e8eaf0;
  color: #666;
  flex-shrink: 0;
  border: none;
}


.region-ranking-widget .rank-badge.rank-1,
.hot-ranking-widget .rank-badge.rank-1 {
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #8b6914;
}

.region-ranking-widget .rank-badge.rank-2,
.hot-ranking-widget .rank-badge.rank-2 {
  background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
  color: #666;
}

.region-ranking-widget .rank-badge.rank-3,
.hot-ranking-widget .rank-badge.rank-3 {
  background: linear-gradient(135deg, #cd7f32 0%, #e6a957 100%);
  color: #5c3d1f;
}


.region-ranking-widget .rank-content,
.hot-ranking-widget .rank-content {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.region-ranking-widget .rank-name,
.hot-ranking-widget .rank-name {
  flex: 1;
  min-width: 0;
}

.region-ranking-widget .rank-name a,
.hot-ranking-widget .rank-name a {
  color: #333;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.region-ranking-widget .rank-name a:hover,
.hot-ranking-widget .rank-name a:hover {
  color: var(--primary-dark);
}


.region-ranking-widget .rank-value-wrapper,
.hot-ranking-widget .rank-value-wrapper {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
}

.region-ranking-widget .rank-value,
.hot-ranking-widget .rank-value {
  font-size: 13px;
  color: var(--text-medium); 
  font-family: var(--font-ui);
  font-feature-settings: "tnum" on, "lnum" on;
}

.region-ranking-widget .rank-unit,
.hot-ranking-widget .rank-unit {
  font-size: 11px;
  color: #999;
  font-weight: 400;
}


.region-ranking-widget .ranking-empty,
.hot-ranking-widget .ranking-empty {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.region-ranking-widget .ranking-empty .iconfont,
.hot-ranking-widget .ranking-empty .iconfont {
  font-size: 48px;
  opacity: 0.2;
  display: block;
  margin-bottom: 12px;
}

.region-ranking-widget .ranking-empty p,
.hot-ranking-widget .ranking-empty p {
  font-size: 13px;
  margin: 0;
}


.region-ranking-widget .tab-content > .tab-pane,
.hot-ranking-widget .tab-content > .tab-pane {
  display: none;
}

.region-ranking-widget .tab-content > .active,
.hot-ranking-widget .tab-content > .active {
  display: block;
}

.region-ranking-widget .tab-pane.fade,
.hot-ranking-widget .tab-pane.fade {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.region-ranking-widget .tab-pane.show,
.hot-ranking-widget .tab-pane.show {
  opacity: 1;
}




.chart-lock-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.chart-lock-overlay .lock-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: rgba(244, 245, 248, 0.6);
  border: 1px solid #C9CDD4;
  border-top: 3px solid #1A4FBE;
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  padding: 12px 16px 12px 14px;
  min-width: 280px;
  max-width: 380px;
  box-shadow: none;
}

.chart-lock-overlay .lock-panel-body {
  flex: 1;
  min-width: 0;
}

.chart-lock-overlay .lock-panel-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1F2329;
  line-height: 1.4;
  margin-bottom: 5px;
}

.chart-lock-overlay .lock-icon {
  flex-shrink: 0;
  opacity: 0.75;
}

.chart-lock-overlay .lock-panel-desc {
  font-size: 11px;
  color: #86909C;
  line-height: 1.5;
  padding-left: 20px;
}

.chart-lock-overlay .lock-panel-action {
  flex-shrink: 0;
}

.chart-lock-overlay .lock-panel-btn {
  display: inline-block;
  padding: 0 14px;
  height: 30px;
  line-height: 28px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #1A4FBE;
  border: 1px solid #1240A0;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s, border-color 0.15s;
}

.chart-lock-overlay .lock-panel-btn:hover {
  background: #1240A0;
  border-color: #0D3280;
}



.hot-list-article {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: nums;
}

.hot-list-article li {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 20px;
  margin-bottom: 18px;
  position: relative;
  counter-increment: nums;
  padding-left: 28px;
}

.hot-list-article li a {
  flex: 1;
  color: var(--text-dark);
  font-size: 13px;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.hot-list-article li a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.hot-list-article .update-time {
  font-size: 12px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-left: auto;
}

.hot-list-article li:before {
  color: var(--text-dark);
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  content: counter(nums, decimal);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  background-color: var(--bg-gray-light);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  font-family: SourceCodeProRegular, Menlo, Monaco, Consolas, "Courier New", monospace, "Helvetica Neue", Arial,
    sans-serif;
  font-size: 12px;
  flex-shrink: 0;
}

.hot-list-article li:first-child:before,
.hot-list-article li:nth-child(2):before,
.hot-list-article li:nth-child(3):before {
  color: var(--bg-white);
  text-shadow: none;
}

.hot-list-article li:first-child:before {
  background-color: #e24d46;
}

.hot-list-article li:nth-child(2):before {
  background-color: #2ea7e0;
}

.hot-list-article li:nth-child(3):before {
  background-color: #6bc30d;
}


.sidebar-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sidebar-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  background: #F8FAFC;
  border-radius: var(--border-radius-sm);
  transition: all 0.2s ease;
  text-align: center;
}

.sidebar-stat-item:hover {
  background: #f0f4fa;
}

.sidebar-stat-label {
  font-size: 13px;
  color: #718096;
  font-weight: 500;
  margin-bottom: 6px;
}

.sidebar-stat-value {
  font-size: 14px;
  color: var(--text-dark);
  word-break: break-all;
}

.sidebar-stat-value .stat-unit {
  font-size: 12px;
  color: var(--text-gray);
  margin-left: 2px;
  font-weight: normal;
}


.side-tool {
  position: fixed;
  right: 20px;
  bottom: 50px;
  z-index: 999;
}

.side-tool ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-tool li {
  margin-bottom: 10px;
}

.side-tool .function-button {
  display: block;
  width: 40px;
  height: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  text-align: center;
  line-height: 40px;
  color: var(--text-muted);
  font-size: 20px;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: 0.3s;
}

.side-tool .function-button:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}








#pointsPayModal .pay-dialog { max-width: 380px; }

#pointsPayModal .pay-view { display: flex; flex-direction: column; }
#pointsPayModal .pay-content { border: 1px solid var(--border-color-dark); border-radius: 4px; }
#pointsPayModal .pay-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 12px 16px; border-bottom: 1px solid #E5E6EB; }
#pointsPayModal .pay-title { font-size: 15px; font-weight: 600; color: #1D2129; }
#pointsPayModal .pay-body { padding: 2px 16px 10px; }

#pointsPayModal .pay-foot { display: flex; justify-content: flex-end; gap: 8px; padding: 12px 16px; }


#pointsPayModal .pay-kv { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid #F2F3F5; font-size: 13px; }
#pointsPayModal .pay-k { width: 40px; flex-shrink: 0; color: #86909C; line-height: 22px; }
#pointsPayModal .pay-v { flex: 1; min-width: 0; color: #1D2129; line-height: 22px; }
#pointsPayModal .pay-price { font-weight: 600; color: var(--primary-color); }

#pointsPayModal .pay-points { display: flex; justify-content: space-between; align-items: center; padding: 10px 0 2px; font-size: 13px; color: #4E5969; }
#pointsPayModal .pay-points b { color: var(--primary-color); font-weight: normal; }

#pointsPayModal .pay-link { display: inline-block; padding: 4px 0; color: var(--primary-color); text-decoration: none; font-size: 13px; cursor: pointer; }
#pointsPayModal .pay-link:hover { color: var(--primary-dark); }

#pointsPayModal .pay-btn { height: 30px; padding: 0 16px; font-size: 13px; font-family: inherit; border-radius: 4px; border: 1px solid var(--border-color-dark); background: #fff; color: #4E5969; cursor: pointer; transition: background-color 0.15s ease, color 0.15s ease; }
#pointsPayModal .pay-btn:hover { background: #F6F7F9; }
#pointsPayModal .pay-btn-primary { background: var(--primary-color); border-color: var(--primary-color); color: #fff; }
#pointsPayModal .pay-btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
#pointsPayModal .pay-btn:disabled { opacity: 0.6; cursor: not-allowed; }


#pointsPayModal .pay-scope-line { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
#pointsPayModal .pay-scope-line .pay-link { white-space: nowrap; }


#pointsPayModal .pay-detail-sum { font-size: 13px; color: #4E5969; padding: 10px 0 6px; }
#pointsPayModal .pay-detail-sum b { color: var(--primary-color); font-weight: 600; }
#pointsPayModal .pay-names { list-style: none; margin: 0; padding: 0 0 4px; max-height: 252px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--border-color-dark) transparent; }
#pointsPayModal .pay-names::-webkit-scrollbar { width: 3px; }
#pointsPayModal .pay-names::-webkit-scrollbar-thumb { background: var(--border-color-dark); border-radius: 2px; }
#pointsPayModal .pay-names::-webkit-scrollbar-track { background: transparent; }
#pointsPayModal .pay-names li { display: flex; gap: 8px; font-size: 13px; line-height: 20px; padding: 3px 0; color: #1D2129; }

#pointsPayModal .pay-names li span:last-child { overflow-wrap: anywhere; min-width: 0; }
#pointsPayModal .pay-names .pay-name-i { width: 20px; flex-shrink: 0; text-align: right; color: #A9B0BC; font-variant-numeric: tabular-nums; }


#pointsPayModal .btn-group .btn-outline-secondary {
  border-color: #d0d0d0;
  color: #666;
  font-weight: normal;
  transition: all 0.15s ease;
}

#pointsPayModal .btn-group .btn-outline-secondary:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: #f8f9fa;
}

#pointsPayModal .btn-group .btn-check:checked + .btn-outline-secondary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white !important;
}


.insufficient-tips {
  animation: shake 0.5s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}




@media (max-width: 1200px) {

  .d-flex {
    display: block !important; 
  }

  .searchbox .backinner .inner,
  .qz-foot-nr {
    width: 100%;
    padding: 0 20px;
  }
  
  .index {
    width: 100% !important;
    padding: 70px 15px 0;
  }
  
  .content-main,
  .content-sidebar {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
  }
  
  
  .hot-ranking-widget {
    position: relative;
    top: auto;
    max-height: none;
    overflow-y: visible;
  }
}

@media (max-width: 768px) {
  .searchbox .backinner .inner .logo-box {
    width: 120px;
  }

  .widget-tag-nav {
    display: none;
  }

  .searchbox .searchtext {
    width: 180px;
  }

  .tiwen {
    margin-left: 10px;
  }

  .serach-nav {
    margin-left: 10px;
  }

  .note .post .article .title {
    font-size: 20px;
  }

  .in-code,
  .ou-code {
    position: static;
    display: inline-block;
    margin: 10px;
  }
  
  
  .ws_text_login_reg {
    min-width: auto;
  }
  
  .ws_text_login_reg .user-dropdown .nav-link {
    min-width: auto;
    max-width: 120px;
  }
  
  .ws_text_login_reg .user-dropdown .user-nickname {
    max-width: 60px;
  }
}


.detail-crumb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.detail-crumb-row .crumb-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-top: -10px;
}

.crumb-actions .btn-pro,
.crumb-actions .btn-pro-outline,
.region-actions .btn-pro,
.region-actions .btn-pro-outline {
  border-color: transparent;
  background-color: transparent;
}
.crumb-actions .btn-pro:hover,
.crumb-actions .btn-pro-outline:hover,
.region-actions .btn-pro:hover,
.region-actions .btn-pro-outline:hover {
  border-color: transparent;
  background-color: #f8fbff;
  color: var(--primary-color);
}


.chart-action-btns .btn-platform-entry { text-decoration: none; }


#slider-range-min.ui-slider {
  height: 12px;
  background: #ebedf0;
  border: none;
  border-radius: 2px;
  margin: 10px 0;
}
#slider-range-min .ui-slider-range {
  

  background: rgba(26, 79, 190, 0.18) !important;
  border-radius: 2px;
}
#slider-range-min .ui-slider-handle {
  width: 20px;
  height: 16px;
  top: -2px;
  margin-left: -10px;
  background: #fff;
  border: 1px solid #b6bcc7;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
}
#slider-range-min .ui-slider-handle:hover,
#slider-range-min .ui-slider-handle.ui-state-active {
  border-color: var(--primary-color, #1A4FBE);
}


.metric-select {
  
  --metric-panel-bg: #fff;
  position: relative;
  font-family: var(--font-ui);
}
.metric-select-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  border: none;
  background: transparent;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-dark);
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.15s, background-color 0.15s;
}
.metric-select-trigger:hover {
  color: var(--primary-color);
}
.metric-select-trigger:focus-visible {
  outline: 1px solid var(--primary-color);
  outline-offset: 1px;
}
.metric-select-name {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.metric-select-chevron {
  display: inline-flex;
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.15s;
}
.metric-select-trigger:hover .metric-select-chevron {
  color: var(--primary-color);
}
.metric-select-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 240px;
  max-width: 320px;
  background: var(--metric-panel-bg);
  border: 1px solid var(--border-color-dark);
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 100;
}
.metric-select-panel[hidden],
.metric-select-empty[hidden] {
  display: none;
}
.metric-select-search {
  padding: 6px;
  border-bottom: 1px solid var(--border-color);
}
.metric-select-search-input {
  width: 100%;
  padding: 4px 8px;
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text-dark);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.15s;
}
.metric-select-search-input:focus {
  border-color: var(--primary-color);
}
.metric-select-list {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: 280px;
  overflow-y: auto;
}
.metric-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}

.metric-option:hover,
.metric-option.is-active {
  background-color: var(--border-color);
}

.metric-option::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: transparent;
}
.metric-option.is-selected::before {
  background: var(--primary-color);
}
.metric-option-check {
  flex: 0 0 14px;
  display: inline-flex;
  justify-content: center;
  color: var(--primary-color);
  visibility: hidden;
}
.metric-option.is-selected .metric-option-check {
  visibility: visible;
}
.metric-option-name {
  flex: 1;
  font-size: 13px;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.15s;
}
.metric-option.is-selected .metric-option-name {
  color: var(--primary-color);
}

.metric-option-unit {
  flex-shrink: 0;
  margin-left: auto;
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}
.metric-select-empty {
  padding: 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}
