/* 预约咨询页面 - 按设计图 1:1 实现，全部使用 px */

.request-appointment-page {
  background-color: #ffffff;
  min-height: 100%;
  padding-bottom: 65px;
}

.request-appointment-page .ra-banner {
  background-color: #e8e6e6;
  height: 196px;
  padding: 32px 0 40px;
  /* display: none; */
}

.request-appointment-page .ra-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.request-appointment-page .ra-title {
  color: #2a2a2a;
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  font-family: Open Sans, Lato, sans-serif;
  margin-bottom: 24px;
}

.request-appointment-page .ra-steps {
  display: flex;
  align-items: center;
  gap: 16px;
}

.request-appointment-page .ra-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.request-appointment-page .ra-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 22px;
  font-family: Lato, sans-serif;
}

.request-appointment-page .ra-step-num.active,
.request-appointment-page .ra-step-num.completed {
  background-color: #6f0b65;
  color: #ffffff;
  border-color: #6f0b65;
}

.request-appointment-page .ra-step-num.inactive {
  background-color: #e8e6e6;
  border: 1px solid #949494;
  color: #949494;
}

.request-appointment-page .ra-step-text {
  font-size: 18px;
  line-height: 22px;
  font-family: Lato, sans-serif;
}

.request-appointment-page .ra-step-text.active,
.request-appointment-page .ra-step-text.completed {
  color: #2a2a2a;
}

.request-appointment-page .ra-step-text.inactive {
  color: #949494;
}

.request-appointment-page .ra-step-line {
  width: 80px;
  height: 1px;
  background-color: #949494;
}

.request-appointment-page .ra-step-line.active {
  background-color: #6f0b65;
}

.request-appointment-page .ra-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

.request-appointment-page .ra-section {
  margin-bottom: 32px;
}

.request-appointment-page .ra-section-title {
  font-size: 24px;
  line-height: 24px;
  color: #2a2a2a;
  font-family: Lato, sans-serif;
  margin-bottom: 8px;
}

.request-appointment-page .ra-section-desc {
  font-size: 16px;
  line-height: 24px;
  color: #2a2a2a;
  font-weight: 300;
  font-family: Lato, sans-serif;
}

.request-appointment-page .ra-field-label {
  font-size: 16px;
  line-height: 24px;
  color: #2a2a2a;
  font-family: Lato, sans-serif;
  margin-bottom: 8px;
}

.request-appointment-page .ra-field-label .required {
  color: #df3131;
}

.request-appointment-page .ra-select-wrap {
  position: relative;
  background-color: #f8f7f7;
  height: 44px;
  border: 1px solid #ddd;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.request-appointment-page .ra-select-wrap select {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  color: #2a2a2a;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.request-appointment-page .ra-select-wrap:hover {
  border-color: #6f0b65;
}

.request-appointment-page .ra-arrow {
  filter: brightness(0) opacity(0.4);
}

.request-appointment-page .ra-select-wrap .ra-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 8px;
}

.request-appointment-page .ra-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #e8e6e6;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(39, 47, 59, 0.1);
  z-index: 100;
  display: none;
}

.request-appointment-page .ra-dropdown.open {
  display: block;
}

.request-appointment-page .ra-dropdown-item {
  height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #2a2a2a;
  cursor: pointer;
  transition: all 0.2s;
}

.request-appointment-page .ra-dropdown-item:hover {
  background-color: #f8f7f7;
}

.request-appointment-page .ra-dropdown-item.selected {
  color: #6f0b65;
  background-color: #f8f7f7;
  font-weight: 500;
}

.request-appointment-page .ra-select-wrap.error {
  border-color: #df3131;
  background-color: #fff9f9;
}

.request-appointment-page .ra-birthday-row select:focus {
  outline: none;
  border-color: #6f0b65;
}

.request-appointment-page .ra-birthday-row select.error:focus {
  border-color: #df3131;
}

.request-appointment-page .ra-divider {
  height: 1px;
  background-color: #e8e6e6;
  margin: 0 0 48px;
}

.request-appointment-page .ra-info-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #6f0b65;
  font-family: Open Sans, sans-serif;
  margin-bottom: 24px;
}

.request-appointment-page .ra-form-row {
  display: flex;
  gap: 40px;
  margin-bottom: 14px;
}

.request-appointment-page .ra-form-row .ra-form-group {
  flex: 1;
}

.request-appointment-page .ra-form-group {
  margin-bottom: 14px;
}

.request-appointment-page .ra-form-group.full-width {
  margin-bottom: 32px;
}

.request-appointment-page .ra-input {
  width: 100%;
  height: 44px;
  padding: 0 16px;
  background-color: #f8f7f7;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #2a2a2a;
  box-sizing: border-box;
}

.request-appointment-page .ra-input:focus {
  outline: none;
  border-color: #6f0b65;
}

.request-appointment-page .ra-input.error,
.request-appointment-page .ra-select-wrap.error,
.request-appointment-page .ra-textarea.error,
.request-appointment-page .ra-birthday-row select.error,
.request-appointment-page .ra-phone-prefix.error,
.request-appointment-page .ra-phone-input.error {
  border-color: #df3131 !important;
  background-color: #fff9f9 !important;
}

.request-appointment-page .ra-select-wrap.error .ra-selected-val {
  color: #df3131;
}

.request-appointment-page .ra-error-msg {
  color: #df3131;
  font-size: 14px;
  line-height: 20px;
  margin-top: 4px;
  display: block;
}

.request-appointment-page .ra-input::placeholder {
  color: #999;
}

.request-appointment-page .ra-input.error::placeholder {
  color: #df3131;
  opacity: 0.7;
}

/* 优化自定义下拉框样式 */
.request-appointment-page .ra-custom-dropdown {
  cursor: pointer;
  user-select: none;
}

.request-appointment-page .ra-custom-dropdown .ra-selected-val {
  font-size: 16px;
  color: #2a2a2a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.request-appointment-page .ra-custom-dropdown .ra-selected-val.ra-placeholder {
  color: #999;
}

.request-appointment-page .ra-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #e8e6e6;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(39, 47, 59, 0.1);
  z-index: 100;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}

.request-appointment-page .ra-radio-row {
  display: flex;
  gap: 48px;
  align-items: center;
}

.request-appointment-page .ra-radio-item {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.request-appointment-page .ra-radio-item input {
  display: none;
}

.request-appointment-page .ra-radio-icon-wrap {
  display: inline-block;
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}

.request-appointment-page .ra-radio-icon-wrap img {
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0;
}

.request-appointment-page .ra-radio-item input:checked ~ .ra-radio-icon-wrap .ra-radio-fill {
  display: block;
}

.request-appointment-page .ra-radio-item input:checked ~ .ra-radio-icon-wrap .ra-radio-line {
  display: none;
}

.request-appointment-page .ra-radio-item input:not(:checked) ~ .ra-radio-icon-wrap .ra-radio-fill {
  display: none;
}

.request-appointment-page .ra-radio-item input:not(:checked) ~ .ra-radio-icon-wrap .ra-radio-line {
  display: block;
}

.request-appointment-page .ra-radio-item > span:last-of-type {
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 300;
}

.request-appointment-page .ra-radio-item input:checked ~ span:last-of-type {
  font-weight: 400;
}

.request-appointment-page .ra-birthday-row {
  display: flex;
  gap: 16px;
}

.request-appointment-page .ra-birthday-row select {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  background-color: #f8f7f7;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #2a2a2a;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23949494' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 24px 24px;
  padding-right: 44px;
}

.request-appointment-page .ra-phone-wrap {
  display: flex;
  height: 44px;
}

.request-appointment-page .ra-phone-prefix-wrap {
  position: relative;
}

.request-appointment-page .ra-phone-prefix {
  width: 120px;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  background-color: #f8f7f7;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 4px 0 0 4px;
  cursor: pointer;
}

.request-appointment-page .ra-phone-prefix .ra-earth {
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.request-appointment-page .ra-phone-prefix .ra-code {
  font-size: 16px;
  color: #2a2a2a;
  flex: 1;
}

.request-appointment-page .ra-phone-prefix .ra-arrow {
  width: 16px;
  height: 16px;
}

.request-appointment-page .ra-phone-input {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  background-color: #f8f7f7;
  border: 1px solid #ddd;
  border-radius: 0 4px 4px 0;
  font-size: 16px;
  color: #2a2a2a;
  box-sizing: border-box;
}

.request-appointment-page .ra-phone-input:focus {
  outline: none;
  border-color: #6f0b65;
}

.request-appointment-page .ra-btn-next {
  display: inline-block;
  height: 48px;
  padding: 0 48px;
  background-color: #6f0b65;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 48px;
  font-family: Lato, sans-serif;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  margin-top: 48px;
  margin-bottom: 65px;
}

.request-appointment-page .ra-btn-next:hover {
  background-color: #5a0952;
}

.request-appointment-page .ra-btn-login {
  display: inline-block;
  height: 48px;
  padding: 0 48px;
  background-color: #6f0b65;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 48px;
  font-family: Lato, sans-serif;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
  margin-top: 48px;
  margin-bottom: 65px;
}

.request-appointment-page .ra-btn-login:hover {
  background-color: #5a0952;
}

.request-appointment-page .ra-btn-back {
  display: inline-block;
  height: 48px;
  padding: 0 48px;
  background-color: #6f0b65;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 48px;
  font-family: Lato, sans-serif;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: left;
  margin-top: 48px;
  margin-bottom: 65px;
}

.request-appointment-page .ra-btn-back:hover {
  background-color: #5a0952;
}

.request-appointment-page .ra-form-actions {
  clear: both;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.request-appointment-page .ra-form-actions.ra-step1-actions {
  justify-content: flex-end;
}

/* textarea */
.request-appointment-page .ra-textarea {
  width: 100%;
  min-height: 120px;
  padding: 16px;
  background-color: #f8f7f7;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  color: #2a2a2a;
  font-family: inherit;
  box-sizing: border-box;
  resize: vertical;
}

.request-appointment-page .ra-textarea:focus {
  outline: none;
  border-color: #6f0b65;
}

.request-appointment-page .ra-textarea::placeholder {
  color: #949494;
  font-weight: 300;
}

/* 上传区 */
.request-appointment-page .ra-upload-hint {
  font-size: 14px;
  color: #949494;
  margin-top: -4px;
  margin-bottom: 8px;
}

.request-appointment-page .ra-upload-wrap {
  margin-top: 8px;
  width: 100%;
  position: relative;
}

.request-appointment-page .ra-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 24px;
  background-color: #fdf5fc;
  border: 1px solid #6f0b65;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  color: #6f0b65;
  font-weight: 500;
  position: relative;
}

.request-appointment-page .ra-upload-btn input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  font-size: 0;
}

.request-appointment-page .ra-upload-btn:hover {
  background-color: #6f0b65;
  color: #ffffff;
}

.request-appointment-page .ra-upload-btn:hover .ra-upload-icon {
  filter: brightness(0) invert(1);
}

/* input 覆盖整个 label 按钮，点击即选文件 */
.request-appointment-page .ra-upload-wrap .ra-upload-btn input[type="file"],
.request-appointment-page .ra-upload-wrap input[type="file"].ra-file-input-hidden,
.request-appointment-page .ra-upload-wrap input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.request-appointment-page .ra-upload-icon {
  width: 20px;
  height: 20px;
  filter: invert(12%) sepia(91%) saturate(3665%) hue-rotate(287deg) brightness(88%) contrast(106%);
}

.request-appointment-page .ra-file-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 50%;
}

.request-appointment-page .ra-file-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #f5f5f5;
  border-radius: 4px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.request-appointment-page .ra-file-item:hover {
  background-color: #ebebeb;
}

.request-appointment-page .ra-file-item .ra-file-status {
  margin-left: 8px;
  font-size: 13px;
  color: #949494;
}

.request-appointment-page .ra-file-item.ra-file-uploading .ra-file-status {
  color: #6f0b65;
}

.request-appointment-page .ra-file-item.ra-file-done .ra-file-status {
  color: #2d8a3e;
}

.request-appointment-page .ra-file-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.request-appointment-page .ra-file-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.request-appointment-page .ra-file-name {
  font-size: 15px;
  color: #2a2a2a;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.request-appointment-page .ra-file-size {
  font-size: 13px;
  color: #949494;
}

.request-appointment-page .ra-file-remove {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  transition: opacity 0.2s;
}

.request-appointment-page .ra-file-remove:hover {
  opacity: 0.8;
}

.request-appointment-page .ra-file-remove img {
  width: 20px;
  height: 20px;
}

/* Confirmation 预览 */
.request-appointment-page .ra-confirm-section {
  margin-bottom: 32px;
}

.request-appointment-page .ra-confirm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.request-appointment-page .ra-confirm-header span {
  font-size: 20px;
  font-weight: 600;
  color: #2a2a2a;
}

.request-appointment-page .ra-edit-link {
  font-size: 16px;
  color: #6f0b65;
  text-decoration: none;
}

.request-appointment-page .ra-edit-link:hover {
  text-decoration: underline;
}

.request-appointment-page .ra-confirm-divider {
  height: 1px;
  background-color: #e8e6e6;
  margin-bottom: 16px;
}

.request-appointment-page .ra-confirm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
}

.request-appointment-page .ra-confirm-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.request-appointment-page .ra-confirm-key {
  font-size: 14px;
  color: #949494;
}

.request-appointment-page .ra-confirm-val {
  font-size: 16px;
  color: #2a2a2a;
}

.request-appointment-page .ra-confirm-medical-text {
  font-size: 16px;
  line-height: 24px;
  color: #2a2a2a;
  margin-bottom: 12px;
}

.request-appointment-page .ra-confirm-medical-text:last-of-type {
  margin-bottom: 0;
}

.request-appointment-page .ra-confirm-files {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.request-appointment-page .ra-confirm-file-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #f5f5f5;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
}

.request-appointment-page .ra-confirm-file-icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.request-appointment-page .ra-confirm-file-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}

.request-appointment-page .ra-confirm-file-name {
  font-size: 15px;
  color: #2a2a2a;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.request-appointment-page .ra-confirm-file-size {
  font-size: 13px;
  color: #949494;
}

.request-appointment-page .ra-confirm-file-name {
  color: #2a2a2a;
}

.request-appointment-page .ra-confirm-file-size {
  color: #949494;
  font-size: 12px;
}

.request-appointment-page .ra-confirm-no-files {
  font-size: 14px;
  color: #949494;
  margin: 0;
}

.request-appointment-page .ra-doctor-select .ra-select-wrap,
.request-appointment-page .ra-patient-self .ra-select-wrap {
  width: 440px;
  max-width: 100%;
}

.request-appointment-page .ra-doctor-select {
  margin-top: 8px;
}

.request-appointment-page .ra-patient-self {
  margin-top: 8px;
  margin-bottom: 0;
}

/* 国家选择（与电话前缀同风格，自定义下拉+搜索） */
.request-appointment-page .ra-country-select-wrap {
  position: relative;
  width: 100%;
}

.request-appointment-page .ra-country-select-btn {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background-color: #f8f7f7;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  color: #2a2a2a;
  font-family: inherit;
  text-align: left;
}

.request-appointment-page .ra-country-select-btn .ra-earth {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

.request-appointment-page .ra-country-select-btn .ra-country-display {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}

.request-appointment-page .ra-country-select-btn .ra-country-display .ra-flag {
  font-size: 18px;
}

.request-appointment-page .ra-country-select-btn .ra-country-display.placeholder {
  color: #f8f7f7;
}

.request-appointment-page .ra-country-select-btn .ra-country-display:not(.placeholder) {
  color: #2a2a2a;
}

.request-appointment-page .ra-country-select-btn .ra-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.request-appointment-page .ra-country-select-wrap .ra-country-dropdown {
  min-width: 100%;
  width: 100%;
}

/* 国家代码下拉 */
.request-appointment-page .ra-country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 100;
  min-width: 280px;
  max-height: 300px;
  overflow: hidden;
  display: none;
}

.request-appointment-page .ra-country-dropdown.open {
  display: block;
}

.request-appointment-page .ra-country-search {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.request-appointment-page .ra-country-search input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.request-appointment-page .ra-country-list {
  max-height: 240px;
  overflow-y: auto;
}

.request-appointment-page .ra-country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
}

.request-appointment-page .ra-country-item:hover {
  background: #f9f9f9;
}

.request-appointment-page .ra-country-item .ra-flag {
  font-size: 20px;
}

.request-appointment-page .ra-country-item .ra-name {
  flex: 1;
  font-size: 14px;
  color: #333;
}

.request-appointment-page .ra-country-item .ra-code {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

/* 未登录时显示的登录提示区域 */
.request-appointment-page .ra-login-required {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
  text-align: center;
}

.request-appointment-page .ra-login-required-inner {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 40px 32px;
  display: inline-block;
}

.request-appointment-page .ra-login-required-text {
  font-size: 18px;
  color: #333;
  margin: 0 0 24px 0;
}

/* Success Panel */
.request-appointment-page .ra-success-panel {
  padding: 80px 24px;
  text-align: center;
  background-color: #ffffff;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.request-appointment-page .ra-success-content {
  max-width: 560px;
  margin: 0 auto;
}

.request-appointment-page .ra-success-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
}

.request-appointment-page .ra-success-icon {
  width: 100%;
  height: 100%;
}

.request-appointment-page .ra-success-title {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 16px;
  font-family: Open Sans, sans-serif;
}

.request-appointment-page .ra-success-desc {
  font-size: 18px;
  line-height: 28px;
  color: #949494;
  margin-bottom: 48px;
  font-family: Lato, sans-serif;
}

.request-appointment-page .ra-success-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.request-appointment-page .ra-success-link {
  display: inline-block;
  height: 48px;
  line-height: 46px;
  padding: 0 40px;
  border: 1px solid #6f0b65;
  border-radius: 4px;
  color: #6f0b65;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  box-sizing: border-box;
}

.request-appointment-page .ra-success-link:hover {
  background-color: #fdf5fc;
}

.request-appointment-page .ra-success-btn {
  display: inline-block;
  height: 48px;
  line-height: 48px;
  padding: 0 40px;
  background-color: #6f0b65;
  border-radius: 4px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.request-appointment-page .ra-success-btn:hover {
  background-color: #5a0952;
}

/* 提交成功内联显示 - 与设计图 1:1 一致 */
.request-appointment-page .ra-success-inline {
  text-align: center;
  padding: 48px 24px 64px;
  background: #fff;
  margin: 0 auto;
  max-width: 480px;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.request-appointment-page .ra-success-inline .ra-success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.request-appointment-page .ra-success-inline .ra-success-icon img {
  width: 120px;
  height: 120px;
  display: block;
}
.request-appointment-page .ra-success-inline .ra-success-text {
  font-size: 20px;
  line-height: 24px;
  color: #202a21;
  margin-bottom: 42px;
  font-family: Lato, 'Open Sans', sans-serif;
  font-weight: lighter;
}
.request-appointment-page .ra-success-inline .ra-success-text strong {
  /* color: #6f0b65; */
  font-weight: 600;
}
.request-appointment-page .ra-success-inline .ra-success-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.request-appointment-page .ra-success-inline .ra-success-link {
  font-size: 18px;
  color: #6f0b65;
  text-decoration: underline;
}
.request-appointment-page .ra-success-inline .ra-success-link:hover {
  color: #5a0952;
}
.request-appointment-page .ra-success-inline .ra-success-btn {
  padding: 0;
  background: #6f0b65;
  color: #fff;
  border: none;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  width: 118px;
  border-radius: 0;
  height: 48px;
  text-align: center;
  align-items: center;
}
.request-appointment-page .ra-success-inline .ra-success-btn:hover {
  background: #5a0952;
  color: #fff;
}

/* 响应式：小屏时两列改为单列 */
@media (max-width: 768px) {
  .request-appointment-page .ra-form-row {
    flex-direction: column;
    gap: 0;
  }
  .request-appointment-page .ra-title {
    font-size: 36px;
    line-height: 48px;
  }
  .request-appointment-page .ra-steps {
    flex-wrap: wrap;
  }
  .request-appointment-page .ra-btn-next {
    width: 100%;
    text-align: center;
    float: none;
  }
}
