.register-panel {
  padding-top: 50px;
}

.content-header {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

.code-btn {
  width: 132px;
  height: 48px;
  margin-left: 12px;
}

.logo-title {
  font-family: Inter, Inter;
  font-weight: bold;
  font-size: 32px;
  color: #131523;
  line-height: 44px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 0 0 0 88px;
}

.content-body {
  width: 58%;
  /* background-color: antiquewhite; */
  /* height: 500px; */
  margin-left: 400px;
}

.user-name {
  font-family: Inter, Inter;
  font-weight: 500;
  font-size: 16px;
  color: rgba(9, 17, 45, 0.8);
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin: 0;
  margin-bottom: 10px;
}

.inputAll {
  height: 48px;
  width: 464px;
}

.pass-word {
  margin-top: 30px;
}

/* 多选下拉框样式 */
#countrySelect {
  height: auto;
  min-height: 40px;
  padding: 6px 12px;
}

#countrySelect option {
  padding: 8px 12px;
}

#countrySelect option:checked {
  background-color: #007bff;
  color: white;
}

.custom-select {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}

.select-header {
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selected-text {
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}

/* 悬浮提示框样式 */
.tooltip {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 1001;
  display: none;
  white-space: nowrap;
  font-size: 14px;
  /* 调整提示框位置，避免遮挡 */
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
}

.caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}

/* 下拉框容器样式 */
.select-dropdown {
  position: absolute;
  width: 430px;
  background-color: white;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  margin-left: -1px;
}

/* 搜索框样式 */
.search-box {
  padding: 8px;
  border-bottom: 1px solid #eee;
}

.search-box input {
  width: 100%;
  height: 32px;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.search-box input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

/* 选项列表样式 */
.select-options {
  max-height: 200px;
  overflow-y: auto;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.select-options li {
  padding: 10px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f5f5f5;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
}

.select-options li:last-child {
  border-bottom: none;
}

.select-options li:hover {
  background-color: #f8f9fa;
}

.select-options li.selected {
  background-color: #007bff;
  color: white;
}

.select-options li.selected:hover {
  background-color: #0056b3;
}

.select-options li input[type="checkbox"] {
  margin-right: 8px;
  cursor: pointer;
}

.select-options li label {
  cursor: pointer;
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.select-options li.selected input[type="checkbox"] {
  accent-color: white;
}

.select-options li span {
  display: block;
  font-size: 14px;
}

/* 悬浮提示框样式 */
.tooltip {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  display: none;
  white-space: nowrap;
}

.selected-countries {
  margin-top: 8px;
  padding: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-height: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.selected-tag {
  background-color: #007bff;
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}

.selected-tag:hover::after {
  content: attr(data-full-name);
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
}

.button-css {
  display: flex;
  justify-content: flex-start;
}

.bottom-css {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding-right: 15%; */
  width: 70%;
}

.little-tip {
  font-family: Inter, Inter;
  font-weight: 400;
  font-size: 10px;
  color: rgba(9, 17, 45, 0.8);
  line-height: 24px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

/* 弹窗背景 */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* 弹窗内容 */
.popup-content {
  background-color: white;
  width: 468px;
  height: 208px;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 关闭按钮 */
.popup-content button {
  align-self: flex-end;
}

/* 进度条样式 */
.progress {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #0d65f8;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

.pro-img {
  width: 28px;
  height: 28px;
}

.img-div {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.progress-css {
  width: 300px;
  margin: 0 auto;
  height: 8px;
  border-radius: 4px 4px 4px 4px;
}

.bottom-tip {
  display: flex;
  justify-content: center;
  font-family: Inter, Inter;
  font-weight: 500;
  font-size: 14px;
  color: rgba(9, 17, 45, 0.8);
  /* line-height: 20px; */
  font-style: normal;
  text-transform: none;
  margin-top: -15px;
}

.right-css {
  width: 560px;
  /* background-color: #ccc; */
  height: 68px;
  margin-left: 390px;
  /* display: flex; */
  /* flex-wrap: nowrap; */
}

.num-css {
  width: 60px;
  height: 60px;
}

.right-css-left {
  display: flex;
  width: 100%;
  height: 60px;
  /* justify-content: space-between; */
  align-items: center;
  margin-top: 8px;
  padding: 0 20px 0 37px;
  margin-bottom: 10px;
}

.blue-css {
  padding: 0;
  margin: 0;
  font-family: Inter, Inter;
  font-weight: 500;
  font-size: 16px;
  color: #1a66ff;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.middle-css {
  width: 344px;
  display: flex;
  align-items: center;
}

.grey-css {
  font-family: Inter, Inter;
  font-weight: 500;
  font-size: 16px;
  color: rgba(9, 17, 45, 0.8);
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.right-css-bottom {
  display: flex;
  justify-content: space-between;
  padding-right: 60px;
}