/* 提示文字样式 */
.error-tip {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  font-size: 14px;
  color: #dc3545;
  display: none;
}

/* 显示提示文字 */
.error-tip.show {
  display: block;
}