/* 插件核心样式（可自定义修改） */
.country-code-select {
  min-width: 52px;
  border-bottom:solid 1px #000;
  font-family: Arial, sans-serif;
  margin-right: 8px;
  font-size: 14px;
  font-weight: 400;
  font-family:"SourceHanSansCNRegular";
  line-height: 28px;
  display: none;
}

/* 输入框/选择框样式 */
.ccs-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.ccs-trigger:hover {
  border-color: #999;
}

/* 下拉面板样式 */
.ccs-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  background: #fff;
  z-index: 999999;
  display: none;
  margin-top: 2px;
}

/* 搜索框样式 */
.ccs-search-input {
  width: 100%;
  padding: 6px 7.5px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

/* 国家列表项样式 */
.ccs-options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ccs-option {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.ccs-option:hover {
  background-color: #f5f5f5;
}

.ccs-option.active {
  background-color: #e8f4ff;
  color: #1677ff;
}

/* 箭头样式 */
.ccs-arrow {
  width: 16px;
  height: 16px;

}
.ccs-arrow img{
  width:100%;
  height:100%;
}

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