#evaluationPanelBox{
  position: fixed;
  width: calc(100% - 45px);
  height: calc(100% - 50px);
  right: 0;
  z-index: 999;
  background: #fff;
  padding: 10px;
  overflow-y: auto;
}
#evaluationPanelBox .boxClose {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
  cursor: pointer;
  font-size: 20px;
}
#evaluationPanelBox .tab-content{
  height: calc(100% - 50px);
}

#evaluationPanelBox .tab-content .tab-pane,
#evaluationPanelBox .tab-content .evaluation-container{
  height: 100%;
}
.mode-content .table{
  margin-bottom: 0;
}
.mode-content .filterBar{
  display: flex;
  padding: 15px;
  background: rgb(248, 250, 255);
  border-radius: 22px;
  border: 1px solid #b0b0b0;
  margin-bottom: 15px;
  position: relative;
}
.mode-content .filterBar #exportMissingData{
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.mode-content .filterBar span:not(:first-child){
  margin-left: 15px;
}
.evaluation-container {
    background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden;
}
.eval-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #f0f0f0;
}
.eval-title { font-size: 18px; font-weight: bold; display: flex; align-items: center; color: #333; }
.title-bar { width: 5px; height: 20px; background: #2563eb; margin-right: 12px; border-radius: 2px; }

.eval-controls { display: flex; gap: 15px; }

/* 卡片布局 */
.ranking-group { margin-bottom: 30px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.eval-card {
    border: 1px solid #eef2f7; border-radius: 10px; padding: 15px; position: relative;
    transition: transform 0.2s; background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* .eval-card:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.1); } */

/* 排名角标 */
.rank-badge {
    position: absolute; top: 10px; right: 15px; font-size: 24px; font-weight: 800; font-style: italic;
}
.top-1 { border-top: 4px solid #facc15; } /* 金色 */
.top-2 { border-top: 4px solid #94a3b8; } /* 银色 */
.top-3 { border-top: 4px solid #b45309; } /* 铜色 */
.bottom3{
  border-top: 4px solid #f59e0b;
}
.top-1color { color: #facc15; } /* 金色 */
.top-2color { color: #94a3b8; } /* 银色 */
.top-3color { color: #b45309; } /* 铜色 */
.card-name { font-weight: bold; font-size: 16px; margin-bottom: 10px; display: block; color: #1e293b; }
.card-info { font-size: 13px; color: #64748b; line-height: 1.8; }
.info-label { width: 90px; display: inline-block; }
.score-highlight { font-size: 20px; color: #2563eb; font-weight: bold; }

.hide { display: none; }

.eval-controls .evaluationSelect{
  display: inline-block;
  width: auto;
}

#companyFilter {
  width: 300px;
}

.boxClose:hover{
  color: tomato;
}