.search-list {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  background: #fff;
  padding-top: 0.6rem;
  border-radius: 0.2rem;
  box-shadow: 0rem 0.11rem 0.21rem 0rem rgba(0, 0, 0, 0.04);
  max-height: 10rem;
  overflow: auto;
}

.search-list a {
  padding: 0.4rem 0.42rem;
  font-size: 0.45rem;
  color: #005293;
  line-height: 1;
}

body {
  display: flex;
  flex-direction: column;
}

.index-main {
  padding: 0.5rem 2rem;
  flex: 1;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 8rem;
}

.index-main .search-logo {
  width: 10rem;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: block;
}

.index-main .ipt-box {
  position: relative;
  height: 1rem;
  display: flex;
}

.index-main .ipt-box input {
  position: relative;
  width: 12rem;
  height: 100%;
  border-radius: 0.5rem;
  color: #2c4d68;
  border-color: #2c4d68;
  padding: 0 0.8rem 0 0.5rem;
  font-size: 0.45rem;
  z-index: 9;
}

.index-main .ipt-box .search {
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  right: 0.2rem;
  top: 0.1rem;
  cursor: pointer;
  z-index: 10;
}

@media screen and (max-width: 960px) {
  .ipt-box {
    width: 15rem;
    height: 2rem !important;
  }
  .ipt-box input {
    width: 15rem !important;
  }
  .ipt-box .search {
    width: 2rem !important;
    height: 2rem !important;
    top: 0 !important;
  }
}
