.banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title1-sty {
  color: white;
  font-size: 47px;
  letter-spacing: 10px;
  font-weight: bold;
}

.title2-sty {
  color: white;
  letter-spacing: 1px;
  font-size: 20px;
}

.content-all {
  margin-top: 50px;
}

.fitst-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.select_title,
.find-num {
  font-weight: bold;
  font-size: 18px;
}

.custom-dropdown {
  position: relative;
  display: inline-block;
  background-color: #f7f7f7;
  padding: 10px 15px;
  border-radius: 5px;
  width: 160px;
  max-width: 160px;
  color: #888888;
}

.dropdown-content,
.dropdown-content-2 {
  display: none;
  position: absolute;
  overflow-y: auto;
  max-height: 190px;
  left: 0;
  top: 46px;
  border-radius: 5px;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content li,
.dropdown-content-2 li {
  color: #888888;
  padding: 5px 16px;
  font-size: 14px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.dropdown-content li:hover,
.dropdown-content-2 li:hover {
  background-color: #e6edf7;
  color: #0949aa;
}

.bi-chevron-down::before {
  color: #015fef;
}

.show {
  display: block;
}

/* 针对整个页面的滚动条 */
.dropdown-content::-webkit-scrollbar,
.dropdown-content-2::-webkit-scrollbar {
  width: 10px; /* 滚动条的宽度 */
}

/* 滚动条滑块 */
.dropdown-content::-webkit-scrollbar-thumb,
.dropdown-content-2::-webkit-scrollbar-thumb {
  background: #0d4eac; /* 滑块颜色 */
  border-radius: 10px; /* 滑块圆角 */
}

/* 滚动条轨道 */
.dropdown-content::-webkit-scrollbar-track,
.dropdown-content-2::-webkit-scrollbar-track {
  background: #f1f1f1; /* 轨道颜色 */
  border-radius: 10px; /* 轨道圆角 */
}

.dropdown-btn {
  display: inline-block;
}

.select_drop,
.select_drop-2 {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

.select_div {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-logo {
  cursor: pointer;
}

.second-content,
.third-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}

.third-content {
  display: none;
}

.shop-list,
.result-list {
  width: 23%;
  margin-right: 2.66%;
  margin-bottom: 30px;
}

.shop-img {
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}

.shops-imgs img {
  transition: transform 1s;
}

.shops-imgs img:hover {
  transform: scale(1.2);
}

.shop-title,
.result-title {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

.shop-list:nth-child(4n),
.shop-list:last-child,
.result-list:nth-child(4n),
.result-list:last-child {
  margin-right: unset;
}

.detail-city {
  min-height: 60px;
  visibility: hidden;
  padding: 10px 5px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.detail-city span {
  color: #0a49aa;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 10px;
}

.detail-city span:last-child {
  margin-right: unset;
}

.result-address,
.result-name {
  display: block;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}

.result-name {
  font-weight: bold;
}

.result-dec {
  margin-top: 10px;
}

.result-address {
  color: #8e8e8e;
}

.return-back {
  display: none;
  text-align: center;
}

.back-sty {
  cursor: pointer;
  color: #064ba8;
  display: inline-block;
  padding: 5px 40px;
  border: 1px solid #064ba8;
}

.back-sty:hover {
  color: white;
  background-color: #064ba8;
}

.open-more {
  display: none;
  align-items: center;
  justify-content: center;
}

.more-sty {
  font-size: 14px;
  margin-right: 10px;
}

@media screen and (min-width: 992px) {
  .result-find {
    visibility: hidden;
  } 
}

@media screen and (min-width: 992px) and (max-width:1200px) {
  .select_div{
    width: 50%;
  }
}

@media screen and (max-width: 991px) {
  .title2-sty {
    font-size: 14px;
  }
  .dropdown-content, .dropdown-content-2 {
    top: 34px;
  }
  .content-all {
    margin-top: 25px;
    padding: 0 25px;
  }
  .hide-list {
    display: none;
  }
  .title1-sty {
    font-size: 22px;
  }

  .select_div {
    width: 100%;
  }

  .custom-dropdown {
    width: 110px;
    padding: 5px 10px;
  }

  .dropdown-content,
  .dropdown-content-2 {
    min-width: 110px;
  }

  .dropdown-btn,
  .dropdown-btn-2 {
    font-size: 14px;
  }

  .second-content,
  .third-content {
    margin-top: 30px;
  }

  .shop-list,
  .result-list {
    width: 47%;
    margin-right: 6%;
    margin-bottom: 20px;
  }

  .detail-city {
    display: none;
  }

  .shop-list:nth-child(2n),
  .shop-list:last-child,
  .result-list:nth-child(2n),
  .result-list:last-child {
    margin-right: unset;
  }

  .select_title,
  .find-num,
  .shop-title,
  .result-title {
    font-size: 16px;
  }

  .fitst-content {
    flex-wrap: wrap;
  }

  .result-find {
    width: 100%;
    text-align: center;
  }

  .find-num {
    display: inline-block;
    margin-top: 20px;
  }

  .result-name,
  .result-address {
    font-size: 12px;
  }
}

@media screen and (max-width: 385px) {
  .title1-sty{
  font-size: 20px;
  letter-spacing: 5px;
  }

  .select_title, .find-num, .shop-title, .result-title {
    font-size: 14px;
  }

  .dropdown-btn, .dropdown-btn-2 {
    font-size: 12px;
  }
  
  .custom-dropdown {
    width: 85px;
    padding: 5px 0 5px 5px;
  }

  .search-logo img {
    width: 85%;
  }

  .dropdown-content,.dropdown-content-2{
    min-width: 85px;
  }

  .dropdown-content, .dropdown-content-2 {
    top: 29px;
  }
}
