/* 重置样式 */
.page-offsite-valuation, .page-offsite-valuation view, .page-offsite-valuation text, .page-offsite-valuation image, .page-offsite-valuation svg, .page-offsite-valuation button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.page-offsite-valuation {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'SF Pro SC', 'Helvetica Neue', Arial, sans-serif;
  background: #F5F5F5;
  min-height: 100vh;
  overflow-x: hidden;
  color: #333;
}

/* ===== 导航栏 ===== */
.nav-bar {
  background: linear-gradient(180deg, #5A8CFF 0%, #6A9CFF 100%);
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 16px;
  position: relative;
  z-index: 20;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ===== 蓝色背景与图表 ===== */
.blue-bg {
  background: linear-gradient(180deg, #5A8CFF 0%, #6A9CFF 100%);
  padding-bottom: 30px;
  position: relative;
  padding-top: 60px;
}

.blue-bg::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 20px;
  background: #F5F5F5;
  border-radius: 20px 20px 0 0;
}

/* ===== 图表 ===== */
.chart-area {
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.chart-container {
  width: 100%;
  height: 160px;
}

.chart-container svg {
  width: 100%;
  height: 100%;
}

.chart-y-label {
  font-size: 10px;
  fill: rgba(255,255,255,0.5);
}

.chart-x-label {
  font-size: 10px;
  fill: rgba(255,255,255,0.5);
}

.chart-grid {
  stroke: rgba(255,255,255,0.15);
  stroke-width: 0.5;
}

.chart-tooltip-bg {
  fill: #fff;
}

.chart-tooltip-text {
  font-size: 11px;
  fill: #333;
  font-weight: 600;
}

/* ===== 快捷操作卡片 ===== */
.quick-card {
  margin: -16px 16px 14px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  position: relative;
  z-index: 10;
  padding: 20px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
}

.quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.quick-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #EBF2FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-icon-image {
  width: 22px;
  height: 22px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(55%) saturate(500%) hue-rotate(210deg) brightness(95%);
}

.quick-label {
  font-size: 12px;
  color: #333;
  font-weight: 500;
}

/* ===== 内容区域 ===== */
.content-area {
  padding: 0 16px 180px;
}

/* ===== 区块标题 ===== */
.section-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  margin-top: 4px;
}

.section-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-icon-image {
  width: 18px;
  height: 18px;
}

.section-icon-orange .section-icon-image {
  filter: brightness(0) saturate(100%) invert(65%) sepia(68%) saturate(466%) hue-rotate(350deg) brightness(95%);
}

.section-icon-blue .section-icon-image {
  filter: brightness(0) saturate(100%) invert(45%) sepia(55%) saturate(500%) hue-rotate(210deg) brightness(95%);
}

.section-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.section-value {
  margin-left: auto;
  text-align: right;
}

.section-value-red {
  font-size: 14px;
  font-weight: 600;
  color: #2563EB;
}

.section-value-gray {
  font-size: 11px;
  color: #999;
}

/* ===== 列表项 ===== */
.list-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.03);
  margin-bottom: 12px;
}

.list-item {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #F5F5F5;
}

.list-item:last-child {
  border-bottom: none;
}

.list-left {
  flex: 1;
  min-width: 0;
}

.list-name {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin-bottom: 3px;
}

.list-desc {
  font-size: 12px;
  color: #999;
  margin-bottom: 2px;
}

.list-stars {
  display: flex;
  gap: 1px;
}

.star-icon {
  width: 12px;
  height: 12px;
  filter: brightness(0) saturate(100%) invert(65%) sepia(68%) saturate(466%) hue-rotate(350deg) brightness(95%);
}

.star-icon-gray {
  width: 12px;
  height: 12px;
  filter: brightness(0) saturate(100%) invert(70%) sepia(0%) saturate(0%) hue-rotate(0deg);
}

.list-right {
  text-align: right;
  flex-shrink: 0;
  margin-left: 12px;
}

.list-value {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.list-value-red {
  font-size: 16px;
  font-weight: 700;
  color: #2563EB;
}

.list-sub {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}

/* ===== 操作按钮 ===== */
.btn-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 25px;
  background: #2B6AFF;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 18px;
  box-shadow: 0 4px 14px rgba(43,106,255,0.3);
  letter-spacing: 1px;
}
