/* 涓嬫媺瀹瑰櫒鏍峰紡 */
.dropdown-container {
  position: relative;
  width: 100%;
}

/* 涓嬫媺瑙﹀彂鍣ㄦ牱寮 */
.dropdown-trigger {
  width: 100%;
  /* padding: 12px 15px; */
  line-height: 30px;
  background-color: white;
  border: 1px solid #DCDFE6;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  font-size: 16px;
  color: #333;
  transition: all 0.2s ease;
  padding-left: 9px;
  padding-right: 9px;
}

/* .dropdown-trigger:hover {
  border-color: #888;
} */

.dropdown-trigger:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
}

/* 涓嬫媺绠ご鏍峰紡 */
.dropdown-arrow {
  width: 20px;
  height: 15px;
  /* border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #666; */
  transition: transform 0.2s ease;
}
.dropdown-arrow .icon{
  width: 100%;
  height: 100%;
}
.dropdown-container.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* 涓嬫媺閫夐」鍒楄〃鏍峰紡 */
.dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
  transition: max-height 0.3s ease;
  z-index: 100;
  display: none;
}

/* 婊氬姩鏉℃暣浣撻儴鍒 */
.dropdown-options::-webkit-scrollbar {
    width: 3px; /* 婊氬姩鏉＄殑瀹藉害 */
}
 
/* 婊氬姩鏉¤建閬 */
.dropdown-options::-webkit-scrollbar-track {
    background: #f1f1f1; /* 杞ㄩ亾棰滆壊 */
}
 
/* 婊氬姩鏉℃粦鍧 */
.dropdown-options::-webkit-scrollbar-thumb {
    background: #ADADAD; /* 婊戝潡棰滆壊 */
    border-radius: 10px; /* 婊戝潡鍦嗚 */
}




/* .dropdown-container.open .dropdown-options {
  max-height: 200px;
} */

/* 閫夐」鏍峰紡 */
.dropdown-option {
  padding: 12px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.dropdown-option:hover {
  background-color: #5cac4a0d;
  color: #5CAC4A;
}

.dropdown-option.selected {
  background-color: #5cac4a0d;
  color: #5CAC4A;
  font-weight: 500;
}

/* 鍒嗛殧绾 */
.dropdown-divider {
  height: 1px;
  background-color: #eee;
  margin: 5px 0;
}

#selectedText{
  white-space: nowrap;    /* 绂佹鏂囨湰鎹㈣ */
overflow: hidden;       /* 瓒呭嚭瀹瑰櫒鐨勯儴鍒嗛殣钘 */
text-overflow: ellipsis; /* 瓒呭嚭閮ㄥ垎鏄剧ず鐪佺暐鍙凤紙...锛 */

font-size: 14px;
}