* {
  font-family: GeographMedium;
  box-sizing: border-box;
}
.search-page-content {
  display: flex;
  width: 90%;
  margin: 40px auto;
  padding: 0 30px;
  max-width: 1600px;
  justify-content: space-between;
}
.search-page-left {
  width: 290px;
  margin-right: 60px;
  flex-shrink: 0;
}
.search-page-right {
  flex-grow: 1;
}
.search-result-list {
  margin-top: 15px;
}
.search-result-list li a {
  color: #111;
}
.search-result-list .search-result-item {
  width: 80%;
  margin: auto;
  background-color: #E4EBF4;
  padding-left: 10px;
  line-height: 44px;
  border-top: 1px solid #2AAA82;
  cursor: pointer;
}
.search-result-list .search-result-item:hover {
  background-color: #2AAA82;
}
.search-result-list .search-result-item:hover a {
  color: #fff;
}
.search-result-list .search-result-item:first-child {
  background-color: #2AAA82;
}
.search-result-list .search-result-item:first-child a {
  color: #fff;
}
.search-page-left .search-input-wrapper {
  border: 1px solid #2AAA82;
  border-radius: 50px;
  display: flex;
  height: 40px;
  position: relative;
}
.search-page-left .search-input-wrapper .search-input {
  flex-grow: 1;
  height: 100%;
  padding-left: 10px;
}
.search-page-left .search-text {
  background-color: #2AAA82;
  width: 100px;
  display: inline-block;
  height: 102%;
  color: #fff;
  border-radius: 50px;
  position: absolute;
  top: -1px;
  right: -1px;
}
.search-page-right .search-input-value {
  font-size: 18px;
  font-weight: bold;
}
.search-page-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.unfold-btn img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.arrow {
  transform: rotate(180deg);
  transition: all 0.5s;
}
.smc-industires-category {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
.smc-industires-category-active {
  height: 110px;
}
.industires-Category-item {
  width: 33%;
  margin: 10px 0;
  background-color: #2AAA82;
  height: 34px;
  line-height: 34px;
  text-align: center;
  opacity: 0.8;
  color: #fff;
}
.industires-Category-item:hover {
  opacity: 1;
}
.industires-Category-item a {
  color: #fff;
  display: inline-block;
  width: 90%;
  margin: auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.industiresCategory {
  width: 100%;
}
.loader {
  font-size: 20px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  /* position: relative; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-indent: -9999em;
  animation: load-effect 1s infinite linear;
}
@keyframes load-effect {
  0% {
    /*
      -3em:左移3em
       2em:下移2em
       0:模糊距离0，即纯色
       .5em:外扩.5em
       #4285C6:白色
      */
    box-shadow: -3em 2em 0 .5em #32aa81, 0 2em 0 0 #32aa81, 3em 2em 0 -.5em #32aa81;
  }
  25% {
    box-shadow: -3em 2em 0 0 #32aa81, 0 2em 0 -.5em #32aa81, 3em 2em 0 0 #32aa81;
  }
  50% {
    box-shadow: -3em 2em 0 -0.5em #32aa81, 0 2em 0 0 #32aa81, 3em 2em 0 .5em #32aa81;
  }
  75% {
    box-shadow: -3em 2em 0 0 #32aa81, 0 2em 0 .5em #32aa81, 3em 2em 0 0 #32aa81;
  }
  100% {
    box-shadow: -3em 2em 0 .5em #32aa81, 0 2em 0 0 #32aa81, 3em 2em 0 -.5em #32aa81;
  }
}
/*pc*/
@media only screen and (min-width: 1200px) {}
/*特殊尺寸处理*/
@media only screen and (min-width: 791px) and (max-width: 1199px) {}
/*mobile*/
@media only screen and (max-width: 1199px) {
  .search-page-content {
    flex-direction: column-reverse;
  }
  .search-page-content{
    padding: 0;
  }
  .search-page-right{
    width: 100%;
  }
  .search-page-left{
    width: 100%;
  }
  .modules-inquiry {
    width: 90% !important;
  }
  .industires-Category-item {
    border-radius: 50px;
  }
}


