/* 黄豆云控制台页样式 */
.console-loading { padding: 60px 0; color: #999; text-align: center; }
.console-login-card {
  max-width: 560px; margin: 72px auto; background: #fff; border: 1px solid #eee; border-radius: 12px;
  padding: 56px 48px; text-align: center;
}
.clc-icon { font-size: 52px; }
.clc-title { font-size: 24px; font-weight: 600; margin: 18px 0 10px; color: #262626; }
.clc-desc { font-size: 14px; color: #8c8c8c; line-height: 1.8; margin-bottom: 26px; }
.clc-actions { display: flex; justify-content: center; gap: 14px; }

.console-dash { display: flex; gap: 28px; padding: 48px 32px 80px; align-items: flex-start; }
.cd-left {
  width: 220px; flex-shrink: 0; background: #fff; border: 1px solid #eee; border-radius: 10px;
  padding: 32px 24px; text-align: center;
}
.cd-avatar {
  width: 72px; height: 72px; margin: 0 auto 14px; border-radius: 50%;
  background: linear-gradient(-52deg,#ff76b1,#9c2dff 46%,#6c6eff); color: #fff;
  font-size: 30px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.cd-name { font-size: 18px; font-weight: 600; color: #262626; }
.cd-username { font-size: 13px; color: #999; margin-top: 4px; }
.cd-logout {
  margin-top: 22px; width: 100%; height: 38px; border: 1px solid #ffd6d4; background: #fff;
  color: #e1251b; border-radius: 6px; font-size: 14px; cursor: pointer;
}
.cd-logout:hover { background: #fff2f1; }
.cd-right { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 18px; }
.cd-card { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 24px 28px; }
.cd-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 16px; color: #262626; }
.cd-info { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed #f0f0f0; font-size: 14px; }
.cd-info:last-child { border-bottom: none; }
.cd-info span { color: #8c8c8c; }
.cd-field { margin-bottom: 14px; }
.cd-field label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; color: #262626; }
.cd-field input {
  width: 100%; height: 40px; border: 1px solid #d9d9d9; border-radius: 6px; padding: 0 12px; font-size: 14px; outline: none;
}
.cd-field input:focus { border-color: #e1251b; }
.cd-err { min-height: 16px; font-size: 12px; color: #e1251b; margin-bottom: 6px; }
.cd-save {
  height: 40px; padding: 0 28px; background: #e1251b; color: #fff; border: none; border-radius: 6px;
  font-size: 14px; cursor: pointer;
}
.cd-save:hover { background: #fd441f; }
.cd-save:disabled { background: #d9d9d9; cursor: not-allowed; }
.cd-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.cd-links a {
  display: block; padding: 12px 14px; background: #f6f8fa; border-radius: 6px; font-size: 14px;
  color: #333; transition: all .2s;
}
.cd-links a:hover { color: #e1251b; background: #fff2f1; }

@media (max-width: 900px) {
  .console-dash { flex-direction: column; }
  .cd-left { width: 100%; }
  .cd-links { grid-template-columns: 1fr; }
}
