#socCompare {
  display: none;
  font-size: 12px;
  margin: 0 auto;
}

#socCompare .compare-head {
  text-align: center;
  font-size: 20px;
}
#socCompare .return-topPage {
  font-size: 12px;
  font-weight: normal;
  color: #4285f4;
  cursor: pointer;
  border-radius: 4px;
  user-select: none;
  padding: 0px 14px 0px 2px;
  background: url(../svg/return.svg) bottom right no-repeat;
}
#socCompare .compare-head .return-topPage:hover {
  background-color: rgba(0, 255, 255, 0.1);
  transform: translateX(1px);
}
#socCompare .compare-head .return-topPage:active {
  background-color: rgba(0, 255, 255, 0.2);
  transform: translateX(-1px);
}

#socCompare #mainCompare {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#socCompare #mainCompare .row {
  display: flex;
}
#socCompare #mainCompare .col-1 {
  width: 48px;
  min-width: 48px;
  border-right: #eee solid 1px;
  border-bottom: #eee solid 1px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
#socCompare #mainCompare .col {
  width: 132px;
  min-width: 132px;
  border-right: #eee solid 1px;
  border-bottom: #eee solid 1px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#socCompare #mainCompare .product-row .col {
  text-align: left;
  /* justify-content: flex-start; */
}

/* 新增自定义Soc */
.addCustomModal {
  width: 288px;
  height: 466px;
  background-color: #fff;
  font-size: 12px;
  border-radius: 16px;
  padding: 8px 0px 8px 8px;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 3;
  overflow: hidden;
}
.addCustomModal .modalHead {
  height: 20px;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
  margin-right: 24px;
}
.addCustomModal #modulMainC {
  height: 446px;
  overflow-y: auto;
  font-weight: normal;
  font-size: 14px;
}
.addCustomModal #modulMainC #mainForm {
  display: flex;
  flex-direction: column;
  margin: 12px auto;
}
.addCustomModal #modulMainC #mainForm > label {
  display: flex;
  margin: 4px 0px;
  align-items: center;
}
.addCustomModal #modulMainC #mainForm > label > span {
  width: 72px;
  display: block;
  text-align: center;
}
.addCustomModal #modulMainC #mainForm > label input[type="text"],
.addCustomModal #modulMainC #mainForm > label #cScore,
.addCustomModal #modulMainC #mainForm > label select {
  width: 128px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid #999;
  outline: none;
}
.addCustomModal #modulMainC #mainForm > label #cScore {
  width: 72px;
}
.addCustomModal #modulMainC #mainForm > label #cScorePercent {
  width: 116px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 6px;
  border: 0px solid #999;
  outline: none;
  height: 16px;
}
.addCustomModal #modulMainC #mainForm > label > span > span {
  color: #ff0000;
}
.addCustomModal #modulMainC #mainForm > label div {
  display: flex;
  align-items: center;
  justify-items: center;
  font-size: 16px;
}
.addCustomModal #modulMainC #mainForm > label div input {
  vertical-align: top;
  /* -webkit-margin-top: 4px; */
}
.addCustomModal #modulMainC #mainForm > label div button {
  margin: 8px;
  border: 0px;
  height: 24px;
  border-radius: 6px;
  cursor: pointer;
  padding: 2px 8px;
  color: #333;
}
.addCustomModal #modulMainC #mainForm > label div #exitCustomButton {
  background-color: rgba(135, 135, 135, 0.1);
}
.addCustomModal #modulMainC #mainForm > label div #exitCustomButton:hover {
  background-color: rgba(135, 135, 135, 0.2);
}
/* .addCustomModal #modulMainC #mainForm > label div #exitCustomButton:active {
  background-color: rgba(135, 135, 135, 0.3);
} */
.addCustomModal #modulMainC #mainForm > label div #addCustomButton {
  background-color: rgba(66, 133, 244, 0.2);
}
.addCustomModal #modulMainC #mainForm > label div #addCustomButton:hover {
  background-color: rgba(66, 133, 244, 0.3);
}
/* .addCustomModal #modulMainC #mainForm > label div #addCustomButton:active {
  background-color: rgba(66, 133, 244, 0.4);
} */

/* 关闭新增自定义弹窗 */
.addCustomModal .closeModul {
  display: block;
  position: absolute;
  right: 4px;
  top: 4px;
  user-select: none;
  padding: 4px;
  border-radius: 16px;
  font-size: 16px;
  background-color: #fefefe;
  color: #888;
  line-height: 16px;
  text-align: center;
  height: 16px;
  width: 16px;
}
.addCustomModal .closeModul::before {
  content: "\2716";
}
.addCustomModal .closeModul:hover {
  cursor: pointer;
  background: rgba(240, 255, 240, 0.1);
}
.addCustomModal .closeModul:active {
  cursor: pointer;
  background: rgba(238, 238, 255, 0.2);
}
