/* 通用样式 */
.quote-form-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 12px;
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #1a1a1a;
}

/* 顶部宣传语风格 */
.quote-header {
  text-align: center;
  margin-bottom: 40px;
}

.main-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #031633;
  margin-bottom: 10px;
}

.highlight-sub {
  color: #f2b805;
  font-style: italic;
  font-weight: 700;
}

/* 宣传段落 */
.quote-header p {
  font-size: 17px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 12px;
}

.quote-header a {
  color: #031633;
  font-weight: 600;
  text-decoration: underline;
}

/* 表单说明标题 */
.form-title {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: #031633;
  text-align: center;
}

/* 表单布局 */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

/* 标签与输入框样式 */
label {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #031633;
}

.quote-form-section input,
.quote-form-section select,
.quote-form-section textarea {
  padding: 12px 14px;
  font-size: 16px;
  border: 2px solid #f2b805;
  border-radius: 8px;
  background-color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.quote-form-section select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #ffa500;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 70px;
}

.quote-button {
  background-color: #f2b805;
  color: #000;
  border: none;
  padding: 14px 32px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;

  min-width: 200px;
  max-width: 280px;
  text-align: center;
}
.quote-button:hover {
  background-color: #ffcb2b;
}


