.popup-cover {
  display: none;
  background: rgba(128, 128, 128, 0.43);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 55;
}
.popup .popup-container {
  min-height: 300px;
  background: #fff;
  box-shadow: 8px 8px 16px 0px rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 60;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.popup .popup-container.show {
  transform: translate(-50%, -50%) scale(1);
}
.popup .popup-container .close {
  display: block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  font-size: 22px;
  font-weight: bold;
  color: #ccc;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 65;
}
.popup .popup-container .btns {
  display: flex;
  justify-content: center;
  gap: 0 26px;
}
.popup .popup-container .btns .btn {
  width: 140px;
  background: #1259F0;
  line-height: 38px;
  font-size: 14px;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
}
.popup .popup-container .btns .btn.cancel {
  background-color: #ccc;
  color: #333;
}
.popup ::-webkit-scrollbar {
  width: 6px;
  height: 12px;
  background-color: transparent;
}
.popup ::-webkit-scrollbar-thumb {
  background: #E7E9EE;
  border-radius: 6px;
}
.popup ::-webkit-scrollbar-button {
  height: 0;
}
.popup.atc-filter .popup-container {
  background-color: #fff;
}
.popup.atc-filter .popup-container .close {
  top: 8px;
}
.popup.atc-filter .popup-content {
  width: 900px;
}
.popup.atc-filter .popup-content .title {
  line-height: 18px;
  font-size: 14px;
  font-weight: bold;
  color: #242424;
  padding: 11px 20px;
  border-bottom: 1px solid #F0F0F0;
}
.popup.atc-filter .popup-content .popup-content-container {
  padding-top: 20px;
}
.popup.atc-filter .popup-content .popup-content-container .filter-search {
  height: 34px;
  background: #FFFFFF;
  border: 1px solid #E6EBF2;
  border-radius: 4px;
  padding: 0 4px;
  margin: 0 20px;
  display: flex;
  align-items: center;
}
.popup.atc-filter .popup-content .popup-content-container .filter-search input {
  flex: 1;
  height: 20px;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  color: #242424;
  border: 0 none;
  outline: none;
  padding-left: 6px;
}
.popup.atc-filter .popup-content .popup-content-container .filter-search input::placeholder {
  color: #B2BBBB;
}
.popup.atc-filter .popup-content .popup-content-container .filter-search .search-btn {
  user-select: none;
  width: 66px;
  height: 24px;
  background: url(/assets/images/demand/input-search-white.png) no-repeat 10px center;
  background-size: 13px;
  background-color: #4282FF;
  line-height: 24px;
  font-size: 14px;
  color: #fff;
  text-align: right;
  cursor: pointer;
  padding-right: 8px;
  margin-left: 8px;
  border-radius: 4px;
}
.popup.atc-filter .popup-content .popup-content-container .filter-search .search-btn:hover {
  background-color: #1259F0;
}
.popup.atc-filter .popup-content .popup-content-container .filter-tree {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
.popup.atc-filter .popup-content .popup-content-container .filter-tree .left {
  width: 560px;
  height: 423px;
  background: #FAFAFB;
  border-radius: 4px;
  overflow-y: auto;
  padding: 20px;
}
.popup.atc-filter .popup-content .popup-content-container .filter-tree .left .tree {
  background: transparent;
}
.popup.atc-filter .popup-content .popup-content-container .filter-tree .right {
  width: 289px;
  height: 423px;
  background: #FAFAFB;
  border-radius: 4px;
  overflow-y: auto;
  padding: 20px;
}
.popup.atc-filter .popup-content .popup-content-container .filter-tree .right .checked-item {
  background: url(/assets/images/demand/icon-checked-item.png) no-repeat left center;
  background-size: 18px;
  line-height: 26px;
  font-size: 14px;
  color: #242424;
  padding-left: 22px;
  padding-right: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}
.popup.atc-filter .popup-content .popup-content-container .filter-tree .right .checked-item .del {
  width: 24px;
  height: 24px;
  background: url(/assets/images/demand/icon-checked-close.png) no-repeat center center;
  background-size: 12px;
  position: absolute;
  top: 1px;
  right: 0;
  cursor: pointer;
}
.popup.atc-filter .popup-content .popup-content-container .btns {
  border-top: 1px solid #F0F0F0;
  margin-top: 20px;
  padding: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.popup.atc-filter .popup-content .popup-content-container .btns .btn {
  user-select: none;
  width: 80px;
  line-height: 18px;
  font-size: 14px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 7px 0;
  cursor: pointer;
}
.popup.atc-filter .popup-content .popup-content-container .btns .btn.cancel {
  color: #464646;
  background: #F0F3F8;
  border-color: #DFE2E8;
}
.popup.atc-filter .popup-content .popup-content-container .btns .btn.ensure {
  color: #fff;
  background: #4282FF;
  border-color: #4282FF;
}
.popup.atc-filter .popup-content .popup-content-container .btns .btn.ensure:hover {
  background: #1259F0;
  border-color: #1259F0;
}
.popup.login-tip .popup-container {
  background-color: #fff;
}
.popup.login-tip .popup-content {
  width: 524px;
  padding: 100px 20px 77px;
  display: flex;
  flex-direction: column;
}
.popup.login-tip .popup-content .tips {
  width: fit-content;
  line-height: 21px;
  font-size: 16px;
  color: #39435A;
  margin: 0 auto;
}
.popup.login-tip .popup-content .tips span {
  font-weight: bold;
}
.popup.login-tip .popup-content .btn {
  display: block;
  width: 236px;
  height: 46px;
  background: #4282FF;
  line-height: 46px;
  font-size: 16px;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  margin: 56px auto 0;
}
.popup.cantact .popup-container {
  background: url(/assets/images/demand/bg-contact-1.png) no-repeat right top, linear-gradient(90deg, #FFFFFF 0%, #E9F4FF 100%), #FFFFFF;
  background-size: 211px auto, 100%;
  min-height: auto;
}
.popup.cantact .popup-content {
  width: 524px;
  height: 100%;
  display: flex;
}
.popup.cantact .popup-content .left {
  width: 200px;
  background: url(/assets/images/demand/bg-contact.png) no-repeat left bottom;
  background-size: 200px auto;
  padding: 50px 23px 40px 36px;
  font-size: 0;
}
.popup.cantact .popup-content .left .logo {
  width: 108px;
}
.popup.cantact .popup-content .left .text {
  line-height: 24px;
  font-size: 13px;
  color: #1259F0;
  margin-top: 16px;
}
.popup.cantact .popup-content .right {
  flex: 1;
  min-height: 328px;
  padding: 46px 20px 40px 70px;
}
.popup.cantact .popup-content .right .title {
  line-height: 22px;
  font-size: 17px;
  font-weight: bold;
  color: #15213A;
  margin-bottom: 15px;
}
.popup.cantact .popup-content .right .text {
  background: no-repeat left center;
  background-size: 16px;
  line-height: 32px;
  font-size: 14px;
  color: #1259F0;
  word-break: break-all;
  padding-left: 24px;
}
.popup.cantact .popup-content .right .text.people {
  background-image: url(/assets/images/demand/icon-people.png);
}
.popup.cantact .popup-content .right .text.tel {
  background-image: url(/assets/images/demand/icon-tel.png);
}
.popup.cantact .popup-content .right .qr-code {
  display: none;
  width: 108px;
  font-size: 0;
  margin-top: 16px;
}
.popup.cantact .popup-content .right .qr-code .code {
  border: 1px solid #DBDBDB;
  width: 100%;
}
.popup.cantact .popup-content .right .tips {
  display: none;
  width: 108px;
  line-height: 16px;
  font-size: 12px;
  color: #777E8E;
  text-align: center;
  margin-top: 2px;
}
.popup.popup-submit .popup-container {
  background-color: #fff;
}
.popup.popup-submit .popup-content {
  width: 826px;
  padding: 62px 86px 86px;
  display: flex;
  flex-direction: column;
}
.popup.popup-submit .popup-content .title {
  width: fit-content;
  line-height: 24px;
  font-size: 18px;
  font-weight: bold;
  color: #15213A;
  margin: 0 auto;
}
.popup.popup-submit .popup-content .submit-content {
  margin-top: 68px;
  display: flex;
  justify-content: space-between;
}
.popup.popup-submit .popup-content .submit-content .submit-item {
  width: 198px;
  height: 286px;
  border: 1px solid #E7E9EE;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.popup.popup-submit .popup-content .submit-content .submit-item:hover {
  background: rgba(66, 135, 255, 0.1);
  box-shadow: 4px 4px 12px 0px rgba(162, 191, 255, 0.25);
  border: 1px solid #9BBFFF;
}
.popup.popup-submit .popup-content .submit-content .submit-item .img {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
}
.popup.popup-submit .popup-content .submit-content .submit-item .name {
  line-height: 18px;
  font-size: 14px;
  color: #000;
}
.popup.popup-submit .popup-content .contact {
  width: fit-content;
  background: url(/assets/images/demand/rightright-blue.png) no-repeat right center;
  background-size: 14px;
  line-height: 18px;
  font-size: 13px;
  color: #1259F0;
  margin: 86px auto 0;
  padding-right: 18px;
  cursor: pointer;
}
.popup.submit-success .popup-container {
  background-color: #fff;
}
.popup.submit-success .popup-content {
  width: 826px;
  padding: 62px 63px 135px;
  display: flex;
  flex-direction: column;
  font-size: 0;
}
.popup.submit-success .popup-content .title {
  width: fit-content;
  line-height: 24px;
  font-size: 18px;
  font-weight: bold;
  color: #15213A;
  margin: 0 auto;
}
.popup.submit-success .popup-content .img {
  width: 198px;
  height: 198px;
  margin: 82px auto 0;
}
.popup.submit-success .popup-content .tips {
  width: fit-content;
  line-height: 21px;
  font-size: 16px;
  color: #39435A;
  margin: 20px auto 0;
}
.popup.submit-success .popup-content .btn {
  display: block;
  width: 220px;
  height: 44px;
  line-height: 42px;
  font-size: 14px;
  color: #4282FF;
  border: 1px solid #4282FF;
  border-radius: 6px;
  text-align: center;
  margin: 80px auto 0;
}
.popup.popup-editor .popup-container {
  background-color: #fff;
}
.popup.popup-editor .popup-content {
  width: 826px;
  padding: 62px 63px 50px;
  display: flex;
  flex-direction: column;
}
.popup.popup-editor .popup-content .title {
  width: fit-content;
  line-height: 24px;
  font-size: 18px;
  font-weight: bold;
  color: #15213A;
  margin: 0 auto;
}
.popup.popup-editor .popup-content .submit-content {
  margin-top: 68px;
  display: flex;
  justify-content: space-between;
}
.popup.popup-editor .popup-content .submit-content .submit-item {
  width: 198px;
  height: 286px;
  border: 1px solid #E7E9EE;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.popup.popup-editor .popup-content .submit-content .submit-item:hover {
  background: rgba(66, 135, 255, 0.1);
  box-shadow: 4px 4px 12px 0px rgba(162, 191, 255, 0.25);
  border: 1px solid #9BBFFF;
}
.popup.popup-editor .popup-content .submit-content .submit-item .img {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
}
.popup.popup-editor .popup-content .submit-content .submit-item .name {
  line-height: 18px;
  font-size: 14px;
  color: #000;
}
