#search {
  width:     720px;
  margin:    56px auto 14px;
  position:  absolute;
  z-index:   2000;
  top:       20%;
  left:      50%;
  transform: translate(-50%, -50%);
}

#search form {
  position: relative
}

#search-text {
  color:            #000;
  width:            100%;
  height:           50px;
  font-size:        1pc;
  border:           0;
  border-radius:    25px;
  background-color: #FFF;
  box-shadow:       0 1px 6px 0 rgb(32 33 36 / 28%);
  text-indent:      50px;
}

#search button {
  position:      absolute;
  top:           0px;
  left:          0;
  background:    none;
  border:        0;
  width:         30px;
  height:        36px;
  margin:        7px 9pt 0;
  line-height:   36px;
  border-radius: 3px;
  cursor:        pointer;
}

#search label:hover {
  background: rgb(210 228 218);
  cursor:     pointer
}

#search button i {
  color:     #000;
  font-size: 18px
}

.search-group {
  display:      block;
  padding-left: 20px
}

.s-current .search-type {
  padding-left: 0;
  display:      block
}

.s-current {
  display: block
}

#search-list,
#yy {
  position: relative
}

.s-type {
  position: absolute;
  top:      0;
  left:     0;
  z-index:  13;
  width:    75px
}

.s-type:hover {
  height: auto
}

.s-type > span {
  display: block;
  height:  31px;
  width:   75px
}

.s-type-list {
  display:       none;
  position:      absolute;
  top:           31px;
  width:         70px;
  background:    rgba(0, 0, 0, 0.9);
  border-radius: 6px;
  box-shadow:    0 0 6px rgba(0, 0, 0, .16);
  padding:       9pt 0;
}

.s-type-list:before {
  position:            absolute;
  top:                 -1pc;
  left:                10px;
  content:             ' ';
  display:             block;
  width:               0;
  height:              0;
  border:              10px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.s-type-list label {
  display:    block;
  font-size:  15px;
  text-align: center;
  padding:    2px 0;
}

.s-type-list .tile-lg {
  color:         #FFF;
  width:         3pc;
  height:        3pc;
  font-size:     1.25rem;
  line-height:   3rem;
  border-radius: .3rem;
  display:       block;
  margin:        auto
}

.s-type-list label:hover {
  color: #FFF
}

.s-type:hover .s-type-list {
  display:     block;
  padding-top: 8px
}

.type-text {
  position:     absolute;
  left:         0;
  width:        75px;
  padding-left: 9pt;
  font-size:    1pc;
  line-height:  31px
}

.type-text:after {
  content:     "\e6aa";
  font-family: iconfont;
  margin:      0 0 0 10px
}

.search-type {
  white-space: nowrap;
  margin:      0
}

.search-type label {
  margin: 0
}

.search-type li {
  display: inline-block
}

.search-type li label {
  display:       inline-block;
  padding:       4px 10px;
  font-size:     14px;
  line-height:   31px;
  border-radius: 3px 3px 0 0;
  cursor:        pointer;
}

.search-type input:checked + label, .search-type input:hover + label {
  background-color: rgb(210 228 218);
  box-shadow:       0 1px 6px 0 rgb(32 33 36 / 28%);
}

.search-type li {
  list-style: none;
  display:    inline-block
}

@media screen and (max-width: 767px) {
  .search-list {
    height:      30px;
    overflow-y:  hidden;
    overflow-x:  scroll;
    white-space: nowrap
  }
}

@media screen and (max-width: 768px) {
  #search {
    width: 90%;
  }

  .search-type {
    overflow: auto;
  }

  .search-list {
    height:      30px;
    overflow-y:  hidden;
    overflow-x:  scroll;
    white-space: nowrap;
  }
}