/**
 * 个人资料页面样式
 * 标题与表单一排、标题不加粗、14px #1F2329、行距10px、按钮210×32、输入框330×32、头像100×100
 */

.profile-page .profile-main {
  flex: 1;
  min-width: 0;
}

.profile-card {
  background: var(--bg-primary);
  padding: var(--spacing-xl) 40px 40px;
}

.profile-title {
  font-size: 32px;
  color: #1F2329;
  margin-bottom: 38px;
}

/* 每行：标题与内容一排，标题与右侧间距 16px，行与行间距 20px */
.profile-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  margin-left: 12px;
}

.profile-row:last-of-type {
  margin-bottom: 0;
}

.profile-row__label {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: normal;
  color: #1F2329;
}

.profile-row__content {
  font-size: 14px;
  color: #1F2329;
}

/* 上传头像模块 */
.profile-avatar-upload {
  position: relative;
  width: 100px;
  height: 100px;
  background: #FAFAFA;
  border-radius: 3px;
  border: 1px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color var(--transition-base), background var(--transition-base);
}

.profile-avatar-upload:hover {
  border-color: var(--color-primary);
  background: #f0f5f0;
}

.profile-avatar-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.profile-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.profile-avatar-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  pointer-events: none;
}

.profile-avatar-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.profile-avatar-upload.has-image .profile-avatar-placeholder {
  display: none;
}

.profile-avatar-upload.has-image .profile-avatar-preview {
  display: block;
}

/* 输入框：宽 330px，高 32px，背景 #FAFAFA，圆角 3px，边框 #E5E5E5 */
.profile-input {
  width: 330px;
  height: 32px;
  padding: 0 12px;
  font-size: 14px;
  color: #1F2329;
  background: #FAFAFA;
  border-radius: 3px;
  border: 1px solid #E5E5E5;
  outline: none;
  transition: border-color var(--transition-base);
}

.profile-input::placeholder {
  color: #8F959E;
}

.profile-input:focus {
  border-color: var(--color-primary);
}

/* 提交按钮：宽 210px，高 32px */
.profile-actions {
  margin-top: 24px;
}

.profile-save-btn {
  width: 210px;
  height: 32px;
  margin-left: 50px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

@media (max-width: 768px) {
  .profile-row {
    flex-wrap: wrap;
  }

  .profile-input {
    width: 100%;
    max-width: 330px;
  }

  .profile-save-btn {
    width: 100%;
    max-width: 210px;
  }
}
