.typeSelect{
				display: flex;
				justify-content: center;
				align-items: center;
				margin: 2.60416vw 0;
				z-index: 999999;
			}
			.typeSelect .typeList{
				display: flex;
				width: 40%;
				margin-left: -123px;
			}
			.typeTit{
				color: #888888;
				font-family:'pingfangsc';
				font-size: 20px;
				line-height: 3.64583vw;
				width: 155px;
			}
			.dropdown {
			  width: 100%;
			  /*background: #f8f8f8;*/
			  border-radius:15px;
			 	/*height: 21.875vw;*/
			}
			
.dropdown__switch:checked + .dropdown__options-filter .dropdown__select {
  transform: scaleY(1);
}
.dropdown__switch:checked + .dropdown__options-filter .dropdown__filter:after {
  transform: rotate(-135deg);
}
.dropdown__options-filter {
  width: 100%;
  cursor: pointer;
  margin-bottom: 0;
}
.dropdown__filter {
  position: relative;
  display: flex; 
  color: #222;
  background: #F8F8F8;
  border-radius: 15px;
  font-size: 20px;
  font-family:'pingfangsc';
  line-height: 3.64583vw;
  text-transform: uppercase;
  transition: .3s;
  outline: none;
  font-weight: normal;
  z-index: 999999;
  margin-bottom: 0;
}
.dropdown__filter_box{
	border-radius: 15px 15px 0 0;
}
.dropdown__filter:focus {
  /*border: 1px solid #918FF4;
  outline: none;
  box-shadow: 0 0 5px 3px #918FF4;*/
}
.dropdown__filter::after {
  position: absolute;
  top: 45%;
  right: 1.5625vw;
  content: '';
  width: 10px;
  height: 10px;
  
  border-right: 2px solid #595959;
  border-bottom: 2px solid #595959;
  transform: rotate(45deg) translateX(-45%);
  transition: .2s ease-in-out;
  z-index: 999999;
}
.dropdown__filter .dropdown__filter-selected{
	width: 100%;
	padding: 0 1.5625vw;
	background: #fff;
	border-radius: 15px;
	border: 1px solid #e5e5e5;
	z-index: 999;
}
.dropdown__select {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 19.4375vw;
  margin-top: 0px;
  overflow-y: scroll;
  transform: scaleY(0);
  transform-origin: top;
  transition: .2s ease-in-out;
  background: #f8f8f8;
  padding: 0 1.5625vw;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding-top: 15px;
  margin-top: -15px;
}

.dropdown__select::-webkit-scrollbar-track{
	background: #dcdcdc;
	border-radius: 2px;
	opacity: 0
}
.dropdown__select::-webkit-scrollbar{
	display: block;
	width: 4px;
	height: 15px;
	opacity: 0;
}
.dropdown__select::-webkit-scrollbar-thumb{
	/*width: 4px;
	height: 100px; */
	border: 4px solid #EF7C0F;
	background: #EF7C0F;
	border-radius: 2px;
	margin-top: 15px;
	margin-bottom: 15px;
}
.dropdown__select::-webkit-scrollbar-button{
	display: block;
	width: 4px;
	height: 7px; 
	opacity: 0;
	
}
.dropdown__select-option {
  border-bottom: 1px solid #eee;
  transition: .3s;
  color: #222;
  font-size: 16px;
  font-family:'pingfangsc';
}
.dropdown__select-option:last-of-type {
  border-bottom: 0;
}
.dropdown__select-option:hover {
  background-color: #f9f9f9;
  color: #EF7C0F;
}
@media (max-width: 1440px) {
	.typeSelect .typeList{
		width: 50%;
		margin-left: -43px;
	}
	.typeTit{
		width: 125px;
	}
	.dropdown{
		width: 64%;
	}
}
@media (max-width: 768px) {
	.typeSelect .typeList{
		width: 100%;
		display: block;
		margin-left: 0;
	}
  .dropdown {
    width: 100%;
    background: none;
    padding: 20px;
  }
  .typeTit{
  	line-height: 50px;
  	margin-left: 20px;
  	font-size: 16px;
  }
  .dropdown__filter {
  	line-height: 50px;
  	font-size: 16px;
  }
  .dropdown__select{
  	height: 272px;
  }
  .dropdown__options-filter{
  	width: 100%;
  }
  .dropdown__select-option{
  	font-size: 14px;
  }
}