/* 头部展示区 */
.hero {
  margin-top: 75px;
  display: flex; /* 核心：弹性布局 */
  align-items: center; /* 垂直居中（可选） */
  gap: 20px; /* 左右间距（可改） */
  margin: 0 65px;
}

.hero-img {
  flex: 1;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-text {
  width: 450px; /* 你想要的固定宽度 */
  /* height: 100%; */
  /* background: #f5f5f5; */
  /* padding: 20px; */
  box-sizing: border-box;
  font-size: 16.5px;
  line-height: 0.95;
  color: #642f2d;
}

/* @media (min-width: 1200px) {
  .hero-text {
    font-size: 12.5px;
  }
}
@media (min-width: 1366px) {
  .hero-text {
    font-size: 14.5px;
  }
} */
.hero-text-gap {
  margin-top: 20px;
}
/* 表单 */
/* 表单区域 */
.form-section {
  /* background-color: aquamarine; */
  margin: 95px 0px;
  padding: 0px 100px;

  text-align: center;
  width: 100%;
  max-width: 1000px;
  min-width: 900px;

  /* text-transform: uppercase;
  color: #eb6100; */
}

.form-title {
  font-size: 32px;
  text-transform: uppercase;
  color: #eb6100;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 40px;
}

.form-group {
  text-align: left;
}

input {
  border: 2px solid transparent; /* 默认没有颜色 */

  padding: 8px 12px;
  outline: none; /* 去掉默认蓝色外框 */
  transition: transparent 0.3s ease; /* 平滑过渡 */
}

input:focus {
  border-color: #eb6100;
}

.form-group label {
  display: block;
  /* margin-bottom: 8px; */
  font-size: 20px;
  font-weight: 600;
  color: #eb6100;
  font-weight: bold;
}

.form-group input {
  /* margin-top: 15px; */
  width: 100%;
  max-width: 1000px;
  padding: 10px;
  background-color: #ffe6dd;
  border-radius: 8px;
  font-size: 18px;
  color: #333;
}

.form-group input::placeholder {
  color: #999;
}

.radio-group {
  display: flex;
  gap: 30px;
  margin-top: 8px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #555;
  /* justify-content: center; */
}

.form-radio {
  display: flex;
  justify-content: center;
  /* flex-direction: row;
  align-items: center;
  justify-content: center; */
  margin-top: 20px;
}

.form-group-gap {
  margin-top: 18px;
}

.radio-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #eb6100;
}

.full-width {
  grid-column: 1 / -1;
}

.submit-btn {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 20px;
}

.submit-btn button {
  padding: 15px 45px;
  background-color: #eb6100;
  color: white;
  border: none;
  border-radius: 40px;
  font-size: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
