/* ==================== 评审标准模块样式 ==================== */
.standard-wrapper {
  padding: 40px 0;
}

.standard-header {
  text-align: center;
  margin-bottom: 40px;
}

.standard-title {
  font-size: 36px;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 10px;
}

.standard-section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #0089FF;
  display: inline-block;
}

.section-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.section-content > p {
  margin-bottom: 16px;
}

.key-points {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.key-points li {
  padding-left: 20px;
  margin-bottom: 12px;
  position: relative;
}

.key-points li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0089FF;
  font-size: 20px;
  font-weight: bold;
}

/* 表格样式 */
.table-wrapper {
  margin: 24px 0;
  overflow-x: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.standard-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

.standard-table thead {
  background: #ececed;
}

.standard-table thead th {
  padding: 16px 20px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: left;
  border: none;
}

.standard-table tbody tr {
  border-bottom: 1px solid #e8e8e8;
  transition: background-color 0.3s;
}

.standard-table tbody tr:last-child {
  border-bottom: none;
}

.standard-table tbody tr:hover {
  background-color: #f5f9ff;
}

.standard-table tbody td {
  padding: 16px 20px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  vertical-align: top;
}

.standard-table tbody td strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* 维度一表格特殊样式 */
.overview-table .veto-row {
  background-color: #fff5f5;
}

.overview-table .veto-row:hover {
  background-color: #ffe8e8;
}

/* 维度详情 */
.dimension-detail {
  margin: 40px 0;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.dimension-title {
  font-size: 24px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dimension-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.dimension-badge.veto {
  background: #FF4D4F;
}

.dimension-badge.quality {
  background: #52C41A;
}

.dimension-badge.value {
  background: #FF8C00;
}

.dimension-badge.usability {
  background: #1890FF;
}

.dimension-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  padding: 12px;
  background: #f8f9fa;
  border-left: 4px solid #0089FF;
  border-radius: 4px;
}

/* 奖项评判细则 */
.award-detail {
  margin: 30px 0;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}

.award-detail:hover {
  border-color: #0089FF;
  box-shadow: 0 4px 16px rgba(0, 137, 255, 0.15);
}

.award-title {
  font-size: 22px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.award-icon {
  font-size: 28px;
}

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

.award-list > li {
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
  line-height: 1.8;
}

.award-list > li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: #0089FF;
  font-size: 18px;
  font-weight: bold;
}

.sub-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
}

.sub-list li {
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
  line-height: 1.6;
}

.sub-list li::before {
  content: '◦';
  position: absolute;
  left: 0;
  color: #52C41A;
  font-size: 16px;
}

/* 对比表格特殊样式 */
.comparison-table tbody td {
  font-size: 14px;
}

.comparison-table tbody td:first-child {
  background: #f8f9fa;
  font-weight: 600;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
  .standard-wrapper {
    padding: 20px 0;
  }

  .standard-title {
    font-size: 28px;
  }

  .section-title {
    font-size: 22px;
  }

  .dimension-detail {
    padding: 20px 16px;
  }

  .dimension-title {
    font-size: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .standard-table {
    font-size: 14px;
  }

  .standard-table thead th,
  .standard-table tbody td {
    padding: 12px 10px;
  }

  .award-detail {
    padding: 16px;
  }

  .award-title {
    font-size: 18px;
  }

  /* 移动端表格横向滚动 */
  .table-wrapper {
    -webkit-overflow-scrolling: touch;
  }

  .standard-table {
    min-width: 600px;
  }
}

@media screen and (max-width: 480px) {
  .standard-title {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }

  .dimension-title {
    font-size: 18px;
  }

  .award-title {
    font-size: 16px;
  }

  .section-content {
    font-size: 14px;
  }
}

