/**
 * 定盘问卷页面样式
 */

/* 定盘颜色变量 */
:root {
  --dingpan-primary: #B794F6;
  --dingpan-primary-rgb: 183, 148, 246;
  --dingpan-primary-dark: #9370DB;
  --dingpan-primary-dark-rgb: 147, 112, 219;
  --dingpan-accent: #8A2BE2;
  --dingpan-accent-rgb: 138, 43, 226;
  --dingpan-bg-dark: #2D1B69;
  --dingpan-error: #ff6b6b;
  --dingpan-success: #81c784;
  --dingpan-success-rgb: 76, 175, 80;
  --dingpan-danger: #e57373;
  --dingpan-danger-rgb: 244, 67, 54;
}

/* 定盘入口按钮样式 */
.dingpan-entry {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(147, 112, 219, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
  border: 1px solid rgba(147, 112, 219, 0.4);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dingpan-entry:hover {
  background: linear-gradient(135deg, rgba(147, 112, 219, 0.3) 0%, rgba(138, 43, 226, 0.3) 100%);
  border-color: rgba(147, 112, 219, 0.6);
}

.dingpan-entry:active {
  transform: scale(0.98);
}

.dingpan-icon {
  font-size: 18px;
  margin-right: 8px;
}

.dingpan-text {
  color: #B794F6;
  font-size: 14px;
  font-weight: 500;
}

.dingpan-arrow {
  margin-left: 8px;
  color: #B794F6;
  font-size: 14px;
}

/* 定盘页面容器 */
.dingpan-container {
  min-height: 100vh;
  padding: 0 20px 40px;
  color: #fff;
}

/* 加载状态 */
.dingpan-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #B794F6;
}

.dingpan-loading .loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(183, 148, 246, 0.3);
  border-top-color: #B794F6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.dingpan-loading p {
  margin-top: 16px;
  font-size: 14px;
}

/* 顶部导航 */
.dingpan-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, #2D1B69 0%, #11082A 100%);
  z-index: 10;
}

.dingpan-header .back-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.dingpan-header .header-title {
  font-size: 18px;
  font-weight: 600;
}

.dingpan-header .header-right {
  width: 36px;
}

/* 进度条 */
.dingpan-progress {
  margin: 20px 0;
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #9370DB, #B794F6);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.progress-percent {
  color: #B794F6;
  font-weight: 600;
}

/* 问题卡片 */
.question-card {
  background: transparent;
  border-radius: 16px;
  padding: 24px 20px;
  margin: 20px 0;
}

.question-text {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}

/* 选项 */
.options-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  outline: none;
}

.option-btn:focus {
  outline: none;
}

.option-btn:hover:not(:disabled) {
  background: rgba(147, 112, 219, 0.2);
  border-color: rgba(147, 112, 219, 0.4);
}

/* 用 class 替代 :active，解决微信 WebView 中 :active 状态卡住的问题 */
.option-btn.btn-pressed:not(:disabled) {
  transform: scale(0.98);
}

.option-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* 上次选择的选项高亮 */
.option-btn.previous-selected {
  background: rgba(147, 112, 219, 0.15);
  border-color: rgba(147, 112, 219, 0.5);
  position: relative;
}

.option-btn.previous-selected .option-label {
  background: rgba(147, 112, 219, 0.5);
}

.previous-badge {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: rgba(147, 112, 219, 0.9);
  background: rgba(147, 112, 219, 0.15);
  padding: 2px 8px;
  border-radius: 10px;
}

.option-label {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(147, 112, 219, 0.3);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  margin-right: 12px;
  flex-shrink: 0;
}

.option-text {
  font-size: 15px;
  line-height: 1.4;
}

/* 提示 */
.dingpan-tip {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* 结果页面 */
.result-title {
  text-align: center;
  padding: 30px 0;
}

.result-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.result-confidence {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
}

.confidence-value {
  font-size: 36px;
  font-weight: 700;
  color: #B794F6;
  display: inline-block;
  margin-right: 4px;
}

.result-emoji {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.result-title h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}

.result-title p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* 无结果页面 */
.no-result-container {
  text-align: center;
  padding: 60px 20px;
}

.no-result-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.no-result-container h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.no-result-container p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

/* 时辰卡片 */
.result-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hour-card {
  display: flex;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hour-card:hover {
  background: rgba(147, 112, 219, 0.15);
  border-color: rgba(147, 112, 219, 0.3);
}

.hour-card.top-hour {
  background: linear-gradient(135deg, rgba(147, 112, 219, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
  border-color: rgba(147, 112, 219, 0.4);
}

.hour-rank {
  font-size: 28px;
  margin-right: 16px;
}

.hour-info {
  flex: 1;
}

.hour-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hour-time {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}

.hour-star {
  font-size: 13px;
  color: #B794F6;
}

.hour-score {
  text-align: center;
}

.score-value {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #B794F6;
}

.score-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* 统计信息 */
.result-stats {
  text-align: center;
  margin: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* 操作按钮 */
.result-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
}

.result-actions .btn-primary {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, #9370DB, #B794F6);
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.result-actions .btn-secondary {
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* 错误状态 */
.error-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}

.error-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.error-message {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.error-container .btn-primary {
  padding: 12px 32px;
  background: linear-gradient(135deg, #9370DB, #B794F6);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}

/* 上一题按钮 */
.prev-question-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.prev-question-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prev-question-btn:hover:not(:disabled) {
  border-color: rgba(147, 112, 219, 0.5);
  color: #B794F6;
}

.prev-question-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ===================== 调试面板样式 ===================== */

/* 调试入口按钮 */
.debug-toggle-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  padding-bottom: 20px;
}

.debug-toggle-btn {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.debug-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

/* 调试面板 */
.debug-panel {
  margin-top: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.debug-loading,
.debug-error {
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.debug-error {
  color: var(--dingpan-error);
}

/* 调试区块 */
.debug-section {
  margin-bottom: 24px;
}

.debug-section:last-child {
  margin-bottom: 0;
}

.debug-section h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dingpan-primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* 12时辰得分网格 */
.hour-scores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.hour-score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
}

.hour-score-name {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.hour-score-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--dingpan-primary);
}

/* 分页控制 */
.debug-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-controls button {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pagination-controls button:hover:not(:disabled) {
  background: rgba(var(--dingpan-primary-dark-rgb), 0.2);
  border-color: rgba(var(--dingpan-primary-dark-rgb), 0.4);
}

.pagination-controls button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-controls select {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  cursor: pointer;
}

.pagination-controls select option {
  background: var(--dingpan-bg-dark);
  color: #fff;
}

/* 答题详情列表 */
.debug-questions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.debug-question-item {
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid rgba(var(--dingpan-primary-dark-rgb), 0.5);
}

.debug-q-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.debug-q-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--dingpan-primary);
}

.debug-q-palace {
  font-size: 11px;
  padding: 2px 6px;
  background: rgba(var(--dingpan-primary-dark-rgb), 0.2);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.7);
}

.debug-q-answer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-left: auto;
}

.debug-q-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 6px;
}

.debug-q-option {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.debug-q-impacts {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.debug-impact {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}

.debug-impact.positive {
  background: rgba(var(--dingpan-success-rgb), 0.2);
  color: var(--dingpan-success);
}

.debug-impact.negative {
  background: rgba(var(--dingpan-danger-rgb), 0.2);
  color: var(--dingpan-danger);
}

.debug-no-impact {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

.debug-empty {
  text-align: center;
  padding: 20px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* ===================== 反馈弹窗样式 ===================== */

/* 反馈按钮容器 */
.feedback-btn-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/* 反馈触发按钮 */
.feedback-trigger-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
  border: 1px solid rgba(102, 126, 234, 0.4);
  border-radius: 24px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(102, 126, 234, 0.2);
}

.feedback-trigger-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.feedback-trigger-btn.submitted {
  background: rgba(165, 214, 167, 0.3);
  border-color: rgba(165, 214, 167, 0.5);
  box-shadow: none;
  cursor: default;
}

/* 反馈弹窗 */
.feedback-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.feedback-modal-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  max-height: 85vh;
  background: linear-gradient(135deg, #2D1B69 0%, #11082A 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feedback-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feedback-modal-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}

.feedback-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.feedback-modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.feedback-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.feedback-modal-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 反馈问题块 */
.feedback-question {
  margin-bottom: 20px;
}

.feedback-question:last-of-type {
  margin-bottom: 16px;
}

.feedback-followup {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 问题标签 */
.feedback-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

/* 选项容器 */
.feedback-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* 准确度选项 - 垂直排列 */
.accuracy-options {
  flex-direction: column;
}

/* 准确度选项按钮 */
.feedback-option-btn {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.feedback-option-btn:hover {
  background: rgba(var(--dingpan-primary-rgb), 0.15);
  border-color: rgba(var(--dingpan-primary-rgb), 0.3);
}

.feedback-option-btn.selected {
  background: rgba(var(--dingpan-primary-rgb), 0.2);
  border-color: var(--dingpan-primary);
}

.feedback-emoji {
  font-size: 20px;
  margin-right: 12px;
}

.feedback-text {
  flex: 1;
}

/* 是否知道时辰选项 - 横向排列 */
.knows-hour-options {
  flex-direction: row;
}

/* 紧凑型选项按钮 */
.feedback-option-btn.compact {
  flex: 1;
  justify-content: center;
  padding: 12px 16px;
}

.feedback-option-btn.compact .feedback-emoji {
  margin-right: 8px;
  font-size: 16px;
}

.feedback-option-btn.compact .feedback-text {
  flex: none;
}

/* 时辰选项 - 网格排列 */
.hour-options {
  display: grid;
  gap: 8px;
}

.hour-options.predicted-hours {
  grid-template-columns: 1fr;
}

.hour-options.all-hours {
  grid-template-columns: repeat(3, 1fr);
}

/* 时辰选项按钮 */
.feedback-hour-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 2px;
}

.feedback-hour-btn:hover {
  background: rgba(var(--dingpan-primary-rgb), 0.15);
  border-color: rgba(var(--dingpan-primary-rgb), 0.3);
}

.feedback-hour-btn.selected {
  background: rgba(var(--dingpan-primary-rgb), 0.25);
  border-color: var(--dingpan-primary);
}

.feedback-hour-btn.disabled-look {
  opacity: 0.4;
}

/* 推荐时辰按钮（横向布局） */
.predicted-hours .feedback-hour-btn {
  flex-direction: row;
  justify-content: flex-start;
  padding: 12px 16px;
  gap: 10px;
}

.feedback-hour-btn .hour-rank-badge {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--dingpan-primary-rgb), 0.3);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.feedback-hour-btn .hour-name {
  font-size: 15px;
  font-weight: 500;
}

.feedback-hour-btn .hour-time {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* 全部时辰按钮的时间显示 */
.all-hours .feedback-hour-btn .hour-name {
  font-size: 14px;
}

.all-hours .feedback-hour-btn .hour-time {
  font-size: 11px;
}

/* 不确定按钮 - 占满一行 */
.feedback-hour-btn.unknown-btn {
  grid-column: 1 / -1;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border-style: dashed;
}

.feedback-hour-btn.unknown-btn .feedback-emoji {
  font-size: 16px;
}

.feedback-hour-btn.unknown-btn span:last-child {
  font-size: 14px;
}

/* 文本输入框 */
.feedback-textarea {
  width: 100%;
  min-height: 80px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.feedback-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.feedback-textarea:focus {
  outline: none;
  border-color: rgba(var(--dingpan-primary-rgb), 0.5);
}

/* 提交按钮 */
.feedback-submit-btn {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, rgba(var(--dingpan-primary-dark-rgb), 0.6), rgba(var(--dingpan-primary-rgb), 0.6));
  border: 1px solid rgba(var(--dingpan-primary-rgb), 0.3);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.feedback-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(var(--dingpan-primary-dark-rgb), 0.8), rgba(var(--dingpan-primary-rgb), 0.8));
  border-color: rgba(var(--dingpan-primary-rgb), 0.5);
}

.feedback-submit-btn:disabled,
.feedback-submit-btn.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* 感谢信息 */
.feedback-thanks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  color: var(--dingpan-success);
}

.feedback-thanks-icon {
  font-size: 24px;
}
