/**
 * 投诉建议页样式（参照 WH5 FeedbackPage scoped styles）
 */
.page-feedback {
  min-height: 100%;
  background-color: #f5f5f5;
  padding: 0;
}

.page-feedback .fb-body {
  padding: 12px 14px 18px;
}

/* 顶部说明提示 */
.page-feedback .fb-notice {
  background: #fff7e6;
  color: #8a5a00;
  border: 1px solid #ffe3b0;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* 类型切换按钮组 */
.page-feedback .fb-type-bar {
  display: flex;
  background-color: #fff;
  border-radius: 12px;
  padding: 6px;
  gap: 6px;
  margin-bottom: 12px;
}

.page-feedback .fb-type-btn {
  flex: 1;
  height: 36px;
  border: none;
  border-radius: 10px;
  background-color: #f3f4f6;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s, color 0.2s;
}

.page-feedback .fb-type-btn.active {
  background-color: #2d96fd;
  color: #fff;
}

/* 表单卡片 */
.page-feedback .fb-form {
  background-color: #fff;
  border-radius: 12px;
  padding: 14px 12px;
}

.page-feedback .fb-field {
  margin-bottom: 14px;
}

.page-feedback .fb-label {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.page-feedback .fb-input {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  background-color: #fff;
  box-sizing: border-box;
}

.page-feedback .fb-input:focus {
  border-color: #2d96fd;
}

.page-feedback .fb-input:disabled {
  background-color: #f5f5f5;
  color: #999;
}

.page-feedback .fb-textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  resize: none;
  line-height: 1.5;
  min-height: 120px;
  box-sizing: border-box;
}

.page-feedback .fb-textarea:focus {
  border-color: #2d96fd;
}

/* 字数计数器 */
.page-feedback .fb-counter {
  text-align: right;
  font-size: 12px;
  color: #999;
  margin-top: 6px;
}

/* 提交按钮 */
.page-feedback .fb-submit {
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 12px;
  background-color: #2d96fd;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  margin-top: 4px;
}

.page-feedback .fb-submit:active {
  background-color: #1f7edb;
}

.page-feedback .fb-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
