.bigSelect {
  display: inline-block;
  width: 300px;
  padding: 0 0 0 15px;
  height: 45px;
  outline: 0;
  border: 0;
  background: var(--bg-color);
  position: relative;
  box-sizing: border-box;
  transition: all 0.35s;
  border-top-left-radius: 15px;
      text-align: start;
}
.bigSelect:hover{
	background: #000;
	color: #fff;
}
.bigSelect:hover h3 a{
	color: #fff !important;
}
.bigSelect h3 {
  /*display: flex;
  justify-content: space-between;*/
  width: 100%;
  height: 45px;
  line-height: 45px;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  transition: all 0.35s;
  position: relative;
  z-index: 3;
  cursor: pointer;
  overflow: hidden;
}
.bigSelect h3 a{
	display: block;
}
.bigSelect h3 i {
  padding: 0 15px;
}
.bigSelect .list {
  position: absolute;
  left: 0;
  right: 0;
  top: 45px;
  z-index: 8;
  background: #000;
  height: 0;
  overflow-y: auto;
  visibility: hidden;
  transition: all 0.35s;
}
.bigSelect .list::-webkit-scrollbar {
  width: 2px;
  height: 1px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.bigSelect .list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--bg-color);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.bigSelect .list::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #ededed;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
}
.bigSelect .list .item {
  overflow: hidden;
  cursor: pointer;
  padding: 15px;
  font-size: 14px;
  color: #fff;
  border-bottom: 1px solid #d5d5d5;
}
.bigSelect .list .item:hover {
  background: var(--btn-bg-hover)
}
.bigSelect.on h3 i {
  background: #000;
  transform: rotate(90deg);
}
.bigSelect.on .list {
  visibility: visible;
  height: auto;
}

.CateList{
	    text-align: center;
}

.CateList .searchput {
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  float: right;
  padding-top: 15px;
}

.CateList .searchput input {
  width: 260px;
  float: left;
  line-height: 40px;
  padding: 7px 20px;
  font-size: 18px;
  color: #888;
  border: 1px solid #dcdcdc;
  height: 46px;
  box-sizing: border-box;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.CateList .searchput input::placeholder {
  font-size: 18px;
  color: #888
}
.CateList .searchput button {
  float: left;
  text-align: center;
  height: 46px;
  border: 0;
  background-color: var(--btn-bg);
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  box-sizing: border-box;
  padding: 10px 26px;
  border-radius: 0 10px 10px 0;
}

.CateList .clear {
  clear: both;
}



@media(max-width: 1600px) {
  .bigSelect {
    width: 272px;
  }
}

@media(max-width: 1440px) {
  .bigSelect {
    width: 224px;
  }
}

@media(max-width: 1299px) {
  .bigSelect {
    width: 200px;
  }
  .CateList .searchput input {
    width: 190px;
    padding: 7px 12px;
    font-size: 16px;
  }
  .CateList .searchput input::-webkit-input-placeholder {
  	font-size: 16px;
  }
  .CateList .searchput input:-moz-placeholder{
  	font-size: 16px;
  }
  .CateList .searchput input::-moz-placeholder{
  	font-size: 16px;
  }
  .CateList .searchput input:-ms-input-placeholder{
  	font-size: 16px;
  }
  .CateList .searchput button {
    font-size: 16px;
    padding: 10px 20px;
  }
  .bigSelect h3{
	font-size: 16px;
  }
}

@media(max-width:991px) {
  .bigSelect {
    width: auto;
    display: block;
    margin-bottom: 15px;
    border-top-right-radius: 15px;
  }
  .bigSelect.on h3 i {
    border-top-left-radius: 15px;
  }

  .CateList .searchput {
    display: block;
    width: 100%;
  }
  .CateList .searchput input{width: 78%;}
  .CateList .searchput button{width: 22%;}
}
@media(max-width:767px){
  .CateList .searchput input{width: 65%;}
  .CateList .searchput button{width: 35%;}
}