@charset "UTF-8";
/* CSS Document */

.suggest-wrapper {
  display: none;
  background: #fff;
  z-index: 2;
  margin-top: 6px;
  border-radius: 2px;
  position: absolute;
  width: 700px;
  box-shadow: rgba(12, 3, 7, 0.14902) 0 0 13px 0;
}

.suggest-wrapper ul li:hover {
  background-color: #f8f8f8;
  cursor: pointer;
}

.suggest-wrapper ul li:hover a {
  text-decoration: none;
}

.suggest-wrapper ul li:last-child a {
  padding-bottom: 18px;
}

.suggest-link {
  color: #333;
  font-size: 14px;
  padding: 17px 20px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggest-button {
  border: none;
  width: 100%;
  height: 52px;
  border-top: 1px solid #d3d3d3;
  font-size: 14px;
  color: #4AB3DF;
  cursor: pointer;
  background: #fff;
}

.suggest-button:hover {
  background-color: #f8f8f8;
}
