/* 产品问题弹出层样式 */

/* 弹出层容器样式 */
#productQuestion {
  max-width: 600px;
  width: 90%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* 表单样式 */
#productQuestion .contact-form {
  padding: 20px;
}

/* 表单标题 */
#productQuestion .form-title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}

/* 表单组样式 */
#productQuestion .form-group {
  margin-bottom: 15px;
}

/* 表单标签 */
#productQuestion .form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  margin-bottom: 8px;
}

/* 表单输入框 */
#productQuestion .form-control {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

#productQuestion .form-control:focus {
  outline: none;
  border-color: #409eff;
  box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

/* 文本域样式 */
#productQuestion .form-textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  resize: vertical;
  min-height: 120px;
  transition: border-color 0.3s ease;
}

#productQuestion .form-textarea:focus {
  outline: none;
  border-color: #409eff;
  box-shadow: 0 0 0 2px rgba(64, 158, 255, 0.2);
}

/* 提交按钮 */
#productQuestion .form-submit {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #000000;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#productQuestion .form-submit:hover {
  background: #fed925;
  color: #000000;
}

#productQuestion .form-submit:active {
  background: #fed925;
  color: #000000;
}

/* 错误提示样式 */
#productQuestion .form-error {
  color: #f56c6c;
  font-size: 12px;
  margin-top: 5px;
}

/* 成功提示样式 */
#productQuestion .form-success {
  color: #67c23a;
  font-size: 12px;
  margin-top: 5px;
}

/* 响应式样式 */
@media (max-width: 768px) {
  #productQuestion {
    width: 95%;
  }

  #productQuestion .contact-form {
    padding: 15px;
  }

  #productQuestion .form-title {
    font-size: 18px;
  }
}
