
.apply-expert-page[data-v-d96f1496] {
  min-height: 100vh;
  background: #fff;
  padding: 32px 20px;
}
.title[data-v-d96f1496] {
  font-size: 22px;
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 32px;
  text-align: center;
}
.form-section[data-v-d96f1496] {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px 32px;
  box-shadow: 0 2px 12px rgba(233,30,99,0.06);
}
.form-label[data-v-d96f1496] {
  font-size: 15px;
  color: #d81b60;
  margin: 18px 0 8px 0;
  font-weight: 500;
}
.required[data-v-d96f1496] {
  color: #e91e63;
  margin-left: 2px;
}
.submit-btn[data-v-d96f1496] {
  margin-top: 32px;
  background: #e91e63;
  border: none;
}
.verified-info[data-v-d96f1496] {
  background: #f8bbd0;
  color: #d81b60;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 15px;
  text-align: center;
}

/* 状态页面样式 */
.status-section[data-v-d96f1496] {
  background: #fff;
  border-radius: 12px;
  padding: 24px 16px 32px;
  box-shadow: 0 2px 12px rgba(233,30,99,0.06);
}
.status-card[data-v-d96f1496] {
  text-align: center;
}
.status-header[data-v-d96f1496] {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  gap: 12px;
}
.status-header .van-icon[data-v-d96f1496] {
  font-size: 24px;
}
.status-text[data-v-d96f1496] {
  font-size: 18px;
  font-weight: 600;
}
.status-pending[data-v-d96f1496] {
  color: #ff9800;
}
.status-approved[data-v-d96f1496] {
  color: #4caf50;
}
.status-rejected[data-v-d96f1496] {
  color: #f44336;
}
.status-details[data-v-d96f1496] {
  text-align: left;
  margin-bottom: 24px;
}
.detail-item[data-v-d96f1496] {
  display: flex;
  margin-bottom: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.detail-item[data-v-d96f1496]:last-child {
  border-bottom: none;
}
.detail-item .label[data-v-d96f1496] {
  color: #666;
  min-width: 80px;
  font-size: 14px;
}
.detail-item .value[data-v-d96f1496] {
  color: #333;
  font-size: 14px;
  flex: 1;
}
.photos-section[data-v-d96f1496] {
  margin-top: 24px;
}
.photos-title[data-v-d96f1496] {
  font-size: 15px;
  color: #d81b60;
  margin-bottom: 12px;
  font-weight: 500;
}
.photos-grid[data-v-d96f1496] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.photo-item[data-v-d96f1496] {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.photo-item[data-v-d96f1496]:hover {
  border-color: #e91e63;
}
.photo-item img[data-v-d96f1496] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.action-buttons[data-v-d96f1496] {
  margin-top: 32px;
}
.action-buttons .van-button[data-v-d96f1496] {
  margin-bottom: 12px;
}
