/** @format */

* {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

.container {
  padding-bottom: 20px;
}

.search-wrapper {
  padding: 80px 15px 50px;
  transition-duration: 0.3s;
}

.logo {
  width: 165px;
  height: 40px;
  text-align: center;
  font-size: 0;
  margin: 0 auto 50px;
  transition-duration: 0.3s;
}
.search-input {
  display: block;
  width: 100%;
  height: 45px;
  line-height: 45px;
  background-color: #f6f6f6;
  border-radius: 7px;
  font-size: 15px;
  color: #333;
  border: 0;
  padding: 0 10px;
  box-sizing: border-box;
}
.search-input::placeholder {
  color: #999;
}
.search-btn {
  display: block;
  width: 100%;
  height: 45px;
  background-color: #5a78ff;
  border-radius: 7px;
  margin-top: 20px;
  font-size: 18px;
  color: #fff;
  border: 0;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-active:hover,
.btn-active:active {
  color: #fff !important;
  background-color: #4e6bf1 !important;
}
.search-btn img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  display: none;
}
.search-btn.loading img {
  display: block;
  animation: loading 2s linear infinite;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.search-wrapper.mini {
  padding: 30px 15px 20px;
}

.search-wrapper.mini .logo {
  margin-bottom: 20px;
}

.search-empty {
  padding: 80px 0;
  text-align: center;
  /* background-color: #f7f8fc; */
  border-radius: 7px;
  margin: 0 15px;
}
.search-empty .icon {
  width: 170px;
  height: 125px;
  margin-bottom: 10px;
}
.search-empty .text {
  font-size: 14px;
  color: #666;
}

.search-result {
  padding: 10px 10px 20px;
  background-color: #f7f8fc;
  border-radius: 7px;
  margin: 0 15px;
}
.search-result .item {
  display: flex;
  line-height: 20px;
  padding: 5px 0;
}
.search-result .label {
  width: 74px;
  font-size: 15px;
  color: #999;
  flex-shrink: 0;
}
.search-result .content {
  font-size: 15px;
  color: #333;
}
.search-result .btn-copy {
  padding: 2px 10px;
  font-size: 14px;
  color: #fff;
  background-color: #5a78ff;
  border-radius: 5px;
  border: 0;
  margin-left: 8px;
}
.search-result .btn-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 40px;
  font-size: 16px;
  color: #fff;
  background-color: #5a78ff;
  border-radius: 7px;
  margin: 12px auto 0;
  text-decoration: none;
}

.btn-jump {
  position: absolute;
  top: -1000px;
  left: -1000px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-jump.show {
  position: static;
  top: auto;
  left: auto;
}
