/* 产品配置展示通用样式 - 统一hdyidc-前缀 */

/* 重置默认样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 页面基础样式 */
.hdyidc-page {
  background-color: #ffffff;
  padding: 20px;
}

/* 表格样式 */
table.hdyidc-table {
  font-size: 15px;
  color: #000;
  width: 100%;
  border-width: 0;
  border-collapse: collapse;
}

table.hdyidc-table td {
  font-size: 15px;
  border-width: 0;
  padding: 4px 8px;
  line-height: 1.4;
}

/* 左侧标题样式 */
table.hdyidc-table td.hdyidc-title-cell {
  color: #999;
  font-weight: bold;
}

/* 警示文字样式 */
.hdyidc-warning {
  color: #e53e3e !important;
  font-size: 14px !important;
  margin: 12px 0 !important;
  display: block !important;
  font-weight: bold !important;
  padding: 8px 12px !important;
  background-color: #fff5f5 !important;
  border-left: 4px solid #e53e3e !important;
  border-radius: 2px !important;
}

/* 气泡式标签通用样式 */
.hdyidc-bubble {
  display: inline-block !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: bold !important;
  margin-right: 6px !important;
  margin-bottom: 6px !important;
  border: 1px solid rgba(0,0,0,0.15) !important;
  text-shadow: 0 0 1px rgba(255,255,255,0.5) !important;
  color: inherit !important;
}

/* 气泡标签颜色样式 */
.hdyidc-bubble-blue {
  background-color: #80bfff !important;
  color: #0066cc !important;
}

.hdyidc-bubble-green {
  background-color: #80e6b3 !important;
  color: #00994d !important;
}

.hdyidc-bubble-orange {
  background-color: #ffbf80 !important;
  color: #e67300 !important;
}

/* 气泡标签悬停效果 */
.hdyidc-bubble:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.2s ease !important;
}

/* 小标签样式 */
.hdyidc-smalltag {
  display: inline-block !important;
  padding: 0 6px !important;
  border: 1px solid #80bfff !important;
  font-size: 12px !important;
  line-height: 20px !important;
  border-radius: 20px !important;
  background: #fff !important;
  color: #0066cc !important;
  position: relative !important;
  top: -1px !important;
  margin-left: 4px !important;
  font-weight: bold !important;
}