/* ========== 异议申请专属样式 ========== */

/* 页面标题区 */
.page-hero {
  padding: 36px 0 40px;
  border-bottom: 1px solid var(--line);
}

.page-hero-title {
  font-size: 28px;
  line-height: 40px;
  font-weight: 600;
  color: var(--text-main);
}

.page-hero-subtitle {
  margin-top: 12px;
  font-size: 15px;
  line-height: 24px;
  color: var(--text-body);
}

/* 异议处理流程 */
.section {
  padding: 48px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

.section-title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 28px;
}

/* 步骤条 */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 120px;
  position: relative;
}

.step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--brand);
  background: #ffffff;
  position: relative;
  z-index: 2;
  transition: background 0.2s;
}

.step:first-child .step-circle {
  background: var(--brand);
  color: #ffffff;
}

.step-name {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-main);
}

.step-desc {
  margin-top: 6px;
  font-size: 13px;
  line-height: 20px;
  color: var(--text-muted);
  text-align: center;
  max-width: 100px;
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--brand);
  margin-top: 24px;
  min-width: 60px;
  position: relative;
  z-index: 1;
}

/* 异议类型卡片 */
.type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 2列布局下，第3张卡片居中独占第二行 */
.type-grid > .type-card:nth-child(3):last-child {
  grid-column: 1 / 3;
  justify-self: center;
  max-width: calc(50% - 10px);
}

.type-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.type-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 2px;
  background: var(--brand);
}

.type-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 8px 24px rgba(15, 32, 43, 0.06);
}

.type-card-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--text-main);
  padding-left: 12px;
  margin-bottom: 16px;
}

.type-card-list {
  list-style: none;
  padding-left: 12px;
}

.type-card-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 28px;
  color: var(--text-body);
}

.type-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* 处理时效 */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.timeline-card {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timeline-icon svg {
  width: 24px;
  height: 24px;
}

.timeline-info {
  flex: 1;
}

.timeline-label {
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-main);
  margin-bottom: 4px;
}

.timeline-value {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--brand);
}

.timeline-note {
  font-size: 13px;
  line-height: 20px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* 申请材料前置说明 */
.materials-intro {
  font-size: 14px;
  line-height: 26px;
  color: var(--text-body);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

/* 模板下载区 */
.download-section {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.download-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  color: var(--text-main);
  margin-bottom: 16px;
}

.download-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.download-item svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

.download-item a {
  font-size: 14px;
  line-height: 22px;
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}

.download-item a:hover {
  color: var(--brand-hover, #b8251a);
  text-decoration: underline;
}

/* 注意事项提示框 */
.notice-box {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.notice-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-muted);
}

.notice-content {
  flex: 1;
}

.notice-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.notice-list {
  list-style: none;
}

.notice-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 26px;
  color: var(--text-body);
}

.notice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* 下拉菜单当前项高亮（异议申请页面独有） */
.about-dropdown a.dropdown-active {
  color: var(--brand);
  background: var(--brand-soft);
  font-weight: 500;
}
[0x7FF82DFBE6A4] ANOMALY: use of REX.w is meaningless (default operand size is 64)
[0x7FF82DFBE6A4] ANOMALY: use of REX.w is meaningless (default operand size is 64)
