/* ===== page consult (compiled from Vue SCSS) ===== */
@charset "UTF-8";
.consult-page {
  min-height: 80vh;
  min-height: 80dvh;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.form-group {
  position: relative;
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .consult-form-container .gap-6 {
    gap: 16px;
  }
}
.error-msg {
  color: #c94a4a;
  position: absolute;
  bottom: 0;
  left: 0;
}

.border-top {
  border-top: 1px solid #d9e5e0;
}

.border-dashed {
  border-style: dashed;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.d-inline-block {
  display: inline-block;
}

.align-items-start {
  align-items: flex-start;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.hover-underline:hover {
  text-decoration: underline;
}

.transition-all {
  transition: all 0.3s ease;
}

/* 表单控件 */
.form-input,
.form-select {
  padding: 12px 16px;
  border: 1px solid #d9e5e0;
  border-radius: 4px;
  font-size: 14px;
  color: #1e2b27;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}
.form-input:focus,
.form-select:focus {
  border-color: #0b6b5a;
  box-shadow: 0 0 0 2px rgba(11, 107, 90, 0.1);
}
.form-input:disabled,
.form-select:disabled {
  background-color: #f7faf9;
  cursor: not-allowed;
}

.file-upload-wrapper {
  transition: border-color 0.3s;
}
.file-upload-wrapper:hover {
  border-color: #0b6b5a;
}

.btn-text {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
}
.btn-text:hover {
  text-decoration: underline;
}

/* Reverted from utilities.scss */
.py-8 {
  padding-top: 48px;
  padding-bottom: 80px;
}

.p-10 {
  padding: 40px 60px;
}

.mb-8 {
  margin-bottom: 80px;
}

.mb-6 {
  margin-bottom: 48px;
}

.mb-4 {
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.text-secondary {
  color: #66736e;
}

.text-main {
  color: #1e2b27;
}

.text-sm {
  font-size: 14px;
}

.line-height-lg {
  line-height: 1.8;
}

.cursor-pointer {
  cursor: pointer;
}

.mb-2 {
  margin-bottom: 12px;
}

.mr-2 {
  margin-right: 12px;
}

.text-primary {
  color: #0b6b5a;
}

.max-w-600 {
  max-width: 600px;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.p-4 {
  padding: 24px;
}

.text-xs {
  font-size: 12px;
}

.max-w-800 {
  max-width: 800px;
}

.bg-light {
  background-color: #f7faf9;
}

.border {
  border: 1px solid #d9e5e0;
}

.rounded {
  border-radius: 8px;
}

.shadow-md {
  box-shadow: 0 4px 12px rgba(11, 107, 90, 0.08);
}

.flex-column {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.w-full {
  width: 100%;
}

.interactive-btn {
  transition: transform 0.2s ease;
}
.interactive-btn:hover, .interactive-btn:focus {
  background-color: #0b6b5a !important;
  color: #ffffff !important;
  border-color: #0b6b5a !important;
}
.interactive-btn:active {
  background-color: #0b6b5a !important;
  color: #ffffff !important;
  border-color: #0b6b5a !important;
  transform: scale(0.96) translateY(2px);
}

.no-hover-bg:hover, .no-hover-bg:focus {
  background-color: #0b6b5a !important;
  color: #ffffff !important;
  border-color: #0b6b5a !important;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pt-6 {
  padding-top: 48px;
}

.p-8 {
  padding: 80px;
}

.opacity-80 {
  opacity: 0.8;
}

.px-10 {
  padding-left: 60px;
  padding-right: 60px;
}

.px-8 {
  padding-left: 80px;
  padding-right: 80px;
}

.mt-1 {
  margin-top: 8px;
}

.gap-6 {
  gap: 48px;
}

/* Reverted responsive */
@media (max-width: 767px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .p-8 {
    padding: 24px;
  }
  .px-10 {
    padding-left: 20px;
    padding-right: 20px;
  }
}