#app {
  background: #f7f7f7;
}

/* 占位 */
.header-space {
  height: 120px;
}

/* select 选项 */
.select-container {
  padding: 34px 40px;
  box-sizing: border-box;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  margin-bottom: 35px;
}

.select-container .row {
  margin: 24px 0;
}

.select-container .label-title {
  width: 90px;
  font-size: 18px;
  color: #151515;
  margin-right: 25px;
  flex-shrink: 0;
  margin-top: 4px;
  margin-bottom: 4px;
}

.select-container .options .item {
  margin: 4px 15px;
  font-size: 18px;
  color: #717171;
  cursor: pointer;
}

.select-container .options .item.active {
  color: #004ca0;
}

.select-container .options .item:hover {
  color: #004ca0;
}

.select-container .options .all {
  font-size: 18px;
  font-weight: 500;
  color: #004ca0;
  cursor: pointer;
}

/* 排序搜索 */
.sort-container {
  margin-bottom: 35px;
}

.sort-container .left {
  font-size: 18px;
  font-weight: 500;
  color: #004ca0;
}

.sort-container .left .new {
  margin-right: 45px;
}

.sort-container .sort-t {
  display: none;
}

.sort-container .sort-item {
  cursor: pointer;
}

.sort-container .sort-item.active .sort-b {
  display: none;
}

.sort-container .sort-item.active .sort-t {
  display: block;
}

.sort-container .search {
  position: relative;
}

.sort-container .search::after {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  height: 18px;
  background: #004ea1;
  right: 25px;
  top: 50%;
  transform: translate(0, -50%);
}

.sort-container .search .search-icon {
  position: absolute;
  width: 11px;
  height: 11px;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
}

.sort-container .search input.form-control {
  border: none;
  background: none;
  box-shadow: none;
  padding-left: 8px;
  padding-right: 40px;
  width: 176px;
  height: 30px;
  border-radius: 34px;
  box-sizing: border-box;
  border: 1px solid #004ea1;

  font-size: 14px;
  color: #767676;
}

/* 搜索效果 */
.searhc-res-container {
  margin-bottom: 50px;
}

.searhc-res-container .res-item {
  margin: 15px 0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 4px 10px 0px rgba(13, 35, 62, 0.05);
}

.searhc-res-container .designer-item {
  position: relative;
  
}

.searhc-res-container .designer-pic {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.searhc-res-container .designer-intro {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  width: 100%;
  height: 118px;
  border-radius: 15px 76px 15px 15px;
  background: rgba(255, 255, 255, 0.8);
  padding: 8px 0 0 28px;
  box-sizing: border-box;
}

.searhc-res-container .designer-intro .designer-name {
  width: 70%;
  font-size: 18px;
  font-weight: bold;
  color: #333333;
  padding: 3px 0;
  box-sizing: border-box;
  border-bottom: 2px solid #232323;
}

.searhc-res-container .designer-intro .designer-other-info {
  width: 80%;
  margin-top: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #444444;
}

.searhc-res-container .username {
  font-size: 22px;
  font-weight: bold;
  color: #333333;
}

.searhc-res-container .info-box {
  font-size: 14px;
  color: #7a7a7a;
  padding: 20px;
  box-sizing: border-box;
}

.searhc-res-container .info-box .top::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100px;
  height: 1px;
  background: #c3c3c3;
  z-index: 9;
}
.searhc-res-container .info-box .expr {
  margin-top: 15px;
}

.searhc-res-container .info-box .company {
  margin: 5px 0;
}

.searhc-res-container .info-box .detail {
  width: 108px;
  height: 31px;
  border-radius: 55px;
  background: linear-gradient(74deg, #8ec9ff 0%, #1e79e9 99%);
  /* 案例阴影 */
  box-shadow: 0px 4px 10px 0px rgba(13, 35, 62, 0.05);
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 15px;
}

.searhc-res-container .info-box .cases img {
  width: 122px;
  height: 91px;
  border-radius: 6px;
  margin: 15px 0;
}
.searhc-res-container .info-box .cases img:first-child {
  margin: 15px 10px 15px 0;
}

@media screen and (max-width: 1200px) {
  .header-space {
    height: 80px;
  }
}

@media screen and (max-width: 768px) {
  .header-space {
    height: 60px;
  }
  .res-item{
    flex-wrap: wrap;
  }
}
<!--耗时1755813905.8606秒-->