/* ===== 组件样式 ===== */
.my-select {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}

.select-label {
  font-size: 16px;
  color: #FFFFFF;
  letter-spacing: 0;
  text-align: right;
  line-height: 22px;
  font-weight: 400;
}

/* 顶部显示区域 */
.select-trigger {
  display: flex;
  align-items: center;
  gap: 12px;
}

.arrow {
  font-size: 10px;
  transition: transform .25s ease;
}

.arrow.open {
  transform: rotate(180deg);
}

/* 下拉胶囊 */
.select-dropdown {
  position: absolute;
  top: 26px;
  right: 0;
  padding: 10px;
  backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateY(-8px);
  transition: all .25s ease;
  pointer-events: none;
  min-width: 150px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 233, 244, 0.20);
  box-shadow: 0 2px 8px 0 rgba(72, 112, 219, 0.34);
  border-radius: 6px;
  z-index: 999;
}

.select-dropdown.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 10001;
}

.select-icon {
  width: 12px;
}

/* 选项 */
.select-item {
  padding: 8px 10px;
  color: #333;
  text-align: left;
  transition: all .2s;
  border-radius: 6px;
  background: white;
}

/* .select-item+.select-item {
  margin-top: 6px;
} */

.select-item:hover {
  background: rgba(50, 141, 255, 0.1);
}

.select-item.active {
  background: #328DFF;
  color: #fff;
}