/* .select-wrapper {
  border: 2px solid #ccc;
  background-color: white;
  border-radius: 4px;
  height: 28px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: 1px solid #cdcdcd;
} */

.select-input {
  width: 100%;
  padding: 6px 40px 6px 15px;
  border: none;
  outline: none;
  background: transparent;
  color: #999999;
  font-size: 14px;
  cursor: pointer;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 2;
}

.select-text {
  flex: 1;
  line-height: 14px;
}

/* 未选占位：浅灰（图1）；有选值：深蓝（图2），由 JS 加 has-selection */
.servo-item-select .select-text {
  color: #999999;
}

.select-text.has-selection {
  color: #003399;
  font-weight: 500;
}

.servo-item {
  width: 1130px;
  background: #f3f3f3;
  border-radius: 4px;
  /* padding: 20px 30px;
  margin: 20px 0 0 50px; */
  padding: 20px 0px 20px 30px;
}

.servo-item .servo-item-body {
  display: flex;
  align-items: center;
}

.servo-item-label {
  width: 130px;
  font-size: 14px;
  color: #333333;
  white-space: nowrap;
}

.servo-item-select {
  background: #fff;
  border-radius: 4px;
  margin-left: 20px;
  margin-right: 10px;
  position: relative;
  border: 1px solid #CDCDCD;
}

.servo-item-select:hover{
  border: 1px solid #003399;
}

.servo-item-select .select-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  height: 32px;
  line-height: 32px;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px;
}

.servo-item-select.inactive{
  background: #F5F5F5;
}
.servo-item-select.inactive .select-text {
  color: #CDCDCD;
}
.servo-item-select.inactive .servo-item-arrow-icon {
  opacity: 0.4;
}
.servo-item-select.inactive:hover{
  border: 1px solid #CDCDCD;
}
.select-dropdown {
  position: absolute;
  top: 33px;
  left: 0;
  right: 0;
  max-height: 256px;
  overflow-y: auto;
  background: #fff;
  border-radius: 0 0 4px 4px;
  z-index: 1;
  box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.12);
  border-radius: 0px 0px 4px 4px;
  border: 1px solid #E6E6E6;
}

.select-option {
  padding: 9px 10px;
  color: #333;
  font-size: 14px;
  cursor: pointer;
}
.select-option:hover{
  background: #DBF0FF;
  color: #003399;
}

.select-option.selected {
  background: #DBF0FF;
  font-weight: bold;
  color: #003399;
}
.servo-item .servo-item-body .servo-item-radio {
  position: relative;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
}
.servo-item .servo-item-body .servo-item-radio.noChose {
  color: #999999;
}
.servo-item .servo-item-body .servo-item-radio:hover{
   background: #f3f5ff;
  border: 1px solid #003399;
  font-weight: 400;
  color: #333333;
}
.servo-item .servo-item-body .servo-item-radio.active {
  background: #f3f5ff;
  border: 1px solid #003399;
  font-weight: 500;
  color: #003399;
}
 .servo-item-color {
  padding: 0 20px;
}
.servo-item .servo-item-body .servo-item-radio.inactive{
  background: #F5F5F5;
}
.servo-item .servo-item-body .servo-item-radio.inactive:hover{
  border: 1px solid #e8e8e8;
  color: #999999;
}
/* 下拉右侧：未选值显示下拉箭头图，有选值时叠放显示清除图标 */
.select-wrapper-icons {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.servo-item .select-wrapper-icons .servo-item-arrow-icon,
.servo-item .select-wrapper-icons .servo-item-clean-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  object-fit: contain;
  
}
.servo-item .select-wrapper-icons .servo-item-arrow-icon.up{
    transform: translateY(-50%) rotate(180deg);
  }
.servo-item .servo-item-clean-icon {
  width: 13px;
  height: 13px;
  opacity: 0;
  pointer-events: none;
}

.servo-item-select.has-value .servo-item-arrow-icon {
  opacity: 0;
  pointer-events: none;
}

.servo-item-select.has-value .servo-item-clean-icon {
  opacity: 1;
  pointer-events: auto;
}

/* 仅 0~1 个可选值：右侧不显示任何图标（仍可点左侧文案区域打开下拉） */
.servo-item-select.select-no-clear .servo-item-clean-icon,
.servo-item-select.select-no-clear .servo-item-arrow-icon {
  opacity: 0 !important;
  pointer-events: none !important;
}
.servo-item-select.select-no-clear .select-wrapper-icons {
  width: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.servo-item .servo-item-question-icon {
  width: 14px;
  height: 14px;
}
.servo-item .servo-item-radio-icon {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 13px;
  height: 12px;
}
.servo-item-product {
  width: 1130px;
  border-radius: 4px;
  margin-left: 20px;
}
.show {
  display: block;
}
.disclaimer-notice {
  margin-left: 30px;
  margin-top: 21px;
  width: 1150px;
  height: 38px;
  background: #f2f2f2;
  border-radius: 4px 4px 4px 4px;
  display: flex;
  align-items: center;
  .icon {
    margin-left: 16px;
    margin-top: 4px;
  }
  .content {
    margin-left: 10px;
    height: 22px;
    font-family: "PingFang SC, PingFang SC";
    font-weight: 400;
    font-size: 13px;
    color: #333333;
    line-height: 22px;
    text-align: left;
  }
}
.disclaimer {
  margin-left: 30px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  height: 16px;
  font-family: "Source Han Sans CN, Source Han Sans CN";
  font-size: 12px;
  color: #333333;
  line-height: 16px;
  text-align: left;
  .title {
    font-weight: bold;
  }
}

.brand{
  width: 1200px;
  margin: 20px 0px 20px 120px;
}