/* 理财大厅页面定制背景 */
.finance-header{
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #eef2f7;
  padding: 16px;
}
.finance-header h2,
.finance-header p{
  text-align: center;
}
/* 标题背景图（请将图片上传为 /assets/img/finance_header_bg.png） */
.finance-header{
  background-image: url('/assets/img/finance_header_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* 产品卡片背景（两种选择器：新卡片 .finance-card 与旧 panel 样式的 fallback） */
.finance-card{
  background-color: #ffffff;
  background-image: url('/assets/img/finance_card_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
}

/* 旧结构 fallback：panel 面板内应用背景，不影响其他页面的默认面板 */
.page-finance .panel.panel-info .panel-body{
  background-image: url('/assets/img/finance_card_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  border-radius: 12px;
}

.finance-progress{
  height: 8px;
  border-radius: 999px;
  background: rgba(226, 232, 240, 0.9);
  overflow: hidden;
  margin: 6px 0 10px;
}

.finance-progress-row{
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 10px;
}

.finance-progress-label{
  font-size: 12px;
  color: #6b7280;
  white-space: nowrap;
}

.finance-progress-percent{
  font-size: 12px;
  color: #374151;
  white-space: nowrap;
  min-width: 42px;
  text-align: right;
}

.finance-progress-row .finance-progress{
  flex: 1;
  margin: 0;
}

.finance-progress-bar{
  height: 100%;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: 999px;
}
