.SA_search {
  /* width: 100%; */
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  margin: 10px;
  background: #fff;
}

.Trace_search {
  display: flex;
  justify-content: space-between;
  width: 89%;
  height: 48px;
  background: #fff;
  padding: 0px 10px;
  border: 1px solid #c0c4cc;
  border-radius: 4px;
  align-items: center;
}
.Trace_search img {
  display: none;
}
.Trace_search:hover img {
  display: block;
}

.Trace_search .icon-boat {
  font-size: 24px;
  color: #057748;
}

.Trace_input {
  height: 100%;
  flex-grow: 2;
  border: none;
  background: none;
  padding: 0 5px;
  font-size: 16px;
  color: #606266;
}
.Trace_input::placeholder {
  color: #a8abb2; /* 红色 */
  font-size: 16px; /* 字体大小 */
  opacity: 1; /* 完全不透明 */
}
:focus-visible {
  outline: none; /* 移除默认的outline */
}
.Trace_search .icon-close {
  align-self: center;
  color: #ccc;
  cursor: pointer;
}

.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-close:before {
  content: "\e6c3";
  pointer-events: none;
}

/* 按钮 */
.Trace_button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11%;
  height: 50px;
  line-height: 40px;
  background: #057748;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 3px;
  margin-left: 10px;
  /* padding: 0 15px; */
}
.Trace_button .icon-search1 {
  font-size: 14px;
  font-weight: normal;
  display: flex;
}

/* 下拉框 */
.Trace_list_item {
  min-width: 400px;
  width:89%;
  background: #fff;
  position: absolute;
  padding: 0;
  border-radius: 4px;
  overflow: auto;
  max-height: 204px;
  z-index: 7;
  margin: 0;
  top: 52px;
  left: 10px;
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.12),
    0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
}

.Trace_list_item li {
  height: 34px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 12px;
  color: #999;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  padding: 0 10px;
  transition: all 0.3s;

  &:hover {
    background: #f5f7fa;
  }

  li {
    list-style: none;
  }

  b {
    color: #333;
    margin-right: 10px;
    white-space: nowrap;
  }

  span {
    margin-right: 5px;
  }
}
.Container_ship {
  font-size: 12px;
  font-style: normal;
  border: 1px solid #008234;
  color: #008234;
  display: inline-flex;
  padding: 0 2px;
  height: 16px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  border-radius: 4px;
}

.Bulk_ship {
  font-size: 12px;
  font-style: normal;
  border: 1px solid #ff9913;
  color: #ff9913;
  display: inline-flex;
  padding: 0 2px;
  min-width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
  border-radius: 4px;
}
/* 定义滚动条整体样式 */
::-webkit-scrollbar {
  width: 5px; /* 滚动条宽度 */
  background-color: #f1f1f1; /* 滚动条背景色 */
}

/* 定义滚动条轨道样式 */
::-webkit-scrollbar-track {
  background: #f8f8f8;
  border-radius: 10px;
}

/* 定义滚动滑块样式 */
::-webkit-scrollbar-thumb {
  background-color: #c2c5ca;
  border-radius: 4px;
}

/* 悬停时滑块颜色变化 */
::-webkit-scrollbar-thumb:hover {
  background-color: #909399;
  border-radius: 4px;
}
.el-select-dropdown__wrap{
  max-height: 214px;
}