.use-tips-dialog-background {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 4000;
}
.use-tips-dialog-background.show-dialog {
  display: flex;
}
.use-tips-dialog-background .use-tips-dialog {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  background-color: #ffffff;
  border-radius: 12px;
}
@media (max-width: 500px) {
  .use-tips-dialog-background .use-tips-dialog {
    width: calc(100% - 40px);
    max-width: 100%;
  }
}
.use-tips-dialog-background .use-tips-dialog .dialog-header {
  position: relative;
  height: 146px;
}
.use-tips-dialog-background .use-tips-dialog .dialog-header img {
  width: 100%;
  height: 100%;
  border-radius: 12px 12px 0 0;
}
.use-tips-dialog-background .use-tips-dialog .dialog-header .dialog-close-button {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.use-tips-dialog-background .use-tips-dialog .dialog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.use-tips-dialog-background .use-tips-dialog .dialog-body p {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #333940;
}
.use-tips-dialog-background .use-tips-dialog .dialog-body p .email {
  font-family: Microsoft YaHei;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 24px;
  letter-spacing: 0%;
  color: #0076fe;
}
.tool-tips {
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  padding: 15px 15px 15px 20px;
  column-gap: 10px;
  color: #67c23a;
  background-color: #f0f9eb;
  border-radius: 4px;
  z-index: 3000;
  transition: top 0.3s ease-in-out;
}
.tool-tips.error {
  background-color: #fef0f0;
  color: #f56c6c;
}
.tool-tips.error .check-circle {
  background-color: #f56c6c;
}
.tool-tips.error .check-circle::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 12px;
  height: 2px;
  background-color: white;
  border: none;
}
.tool-tips.error .check-circle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 12px;
  height: 2px;
  background-color: white;
  border: none;
}
.tool-tips.show-tips {
  top: 20px;
}
.tool-tips .check-circle {
  position: relative;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #4caf50;
}
.tool-tips .check-circle::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.collect-template-tips {
  display: flex;
  column-gap: 10px;
  position: fixed;
  padding: 15px;
  align-items: center;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  background-color: #f0f9eb;
  border-radius: 5px;
  transition: top 0.3s ease-in-out;
}
.collect-template-tips.show-tips {
  top: 20px;
}
.collect-template-tips.show-tips .message-content .go-check {
  display: none;
}
.collect-template-tips.collect-show-tips {
  top: 20px;
}
.collect-template-tips svg {
  width: 16px;
  height: 16px;
}
.collect-template-tips .message-content {
  display: flex;
  align-items: center;
  column-gap: 14px;
}
.collect-template-tips .message-content .content-text {
  font-family: Microsoft YaHei UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #67c23a;
  white-space: nowrap;
}
.collect-template-tips .message-content .go-check {
  display: block;
  padding: 4px 18px;
  background-color: #cfeae2;
  border-radius: 3px;
  cursor: pointer;
  font-family: Microsoft YaHei UI;
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 5%;
  text-align: center;
  color: #0076fe;
  white-space: nowrap;
}
.collect-template-tips .message-content .go-check:hover {
  background-color: #b8dcd0;
}
.template-dialog {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 4000;
}
.template-dialog.show-dialog {
  display: block;
}
.template-dialog .dialog-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 12px;
}
.template-dialog .dialog-content .dialog-header {
  display: flex;
  align-items: center;
  justify-content: end;
}
.template-dialog .dialog-content .dialog-header .dialog-close-button {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: transparent;
  border: none;
}
.template-dialog .dialog-content .dialog-header .dialog-close-button:hover::before,
.template-dialog .dialog-content .dialog-header .dialog-close-button:hover::after {
  background-color: #0076fe;
}
.template-dialog .dialog-content .dialog-header .dialog-close-button::before,
.template-dialog .dialog-content .dialog-header .dialog-close-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #666;
}
.template-dialog .dialog-content .dialog-header .dialog-close-button::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.template-dialog .dialog-content .dialog-header .dialog-close-button::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.template-dialog.intercept-dialog .dialog-content {
  width: 400px;
  padding: 20px 30px;
}
.template-dialog.intercept-dialog .dialog-content .dialog-header {
  justify-content: space-between;
}
.template-dialog.intercept-dialog .dialog-content .dialog-header .header-text {
  line-height: 24px;
  font-size: 18px;
  color: #303133;
}
.template-dialog.intercept-dialog .dialog-content .dialog-body {
  margin-top: 20px;
}
.template-dialog.intercept-dialog .dialog-content .dialog-body .interceptTips {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.template-dialog.intercept-dialog .dialog-content .dialog-body .interceptTips .preiview-icon {
  display: inline-block;
  min-width: 25px;
  height: 25px;
  width: 25px;
  background-position: -149px -53px;
}
.template-dialog.intercept-dialog .dialog-content .dialog-body .interceptTips span {
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}
.template-dialog.intercept-dialog .dialog-content .dialog-body .bottomButton {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 16px;
  margin-top: 30px;
}
.template-dialog.intercept-dialog .dialog-content .dialog-body .bottomButton div {
  display: flex;
  width: 72px;
  height: 32px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  font-size: 12px;
  cursor: pointer;
}
.template-dialog.intercept-dialog .dialog-content .dialog-body .bottomButton div:nth-child(1) {
  color: #000;
  border: 1px solid #efefef;
}
.template-dialog.intercept-dialog .dialog-content .dialog-body .bottomButton div:nth-child(1):hover {
  color: #409eff;
}
.template-dialog.intercept-dialog .dialog-content .dialog-body .bottomButton div:nth-child(2) {
  color: #fff;
  background-color: #0076ff;
}
.template-dialog.intercept-dialog .dialog-content .dialog-body .bottomButton div:nth-child(2):hover {
  opacity: 0.9;
}
.mobile-warn-dialog .dialog-header {
  padding: 10px;
}
.mobile-warn-dialog .dialog-body {
  width: 335px;
  padding: 10px 20px 20px;
}
.mobile-warn-dialog .tops {
  font-size: 16px;
  font-weight: bold;
  color: #141419;
  text-align: center;
}
.mobile-warn-dialog .tops p {
  margin-bottom: 10px;
}
.mobile-warn-dialog .h5LinkUrl {
  display: flex;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  margin-top: 20px;
  background-color: #f8f8f9;
  align-items: center;
  justify-content: space-between;
}
.mobile-warn-dialog .h5LinkUrl .preiview-icon {
  width: 20px;
  height: 21px;
  background-position: -118px -56px;
}
.mobile-warn-dialog .h5LinkUrl input {
  width: calc(100% - 30px);
  color: #333940;
  font-size: 14px;
  background-color: #f8f8f9;
  border: none;
}
.mobile-warn-dialog .copyBut {
  width: 100%;
  height: 40px;
  line-height: 40px;
  background: #4091f7;
  border-radius: 4px 4px 4px 4px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  margin-top: 20px;
  text-align: center;
}
.recruit-dialog {
  align-items: center;
  justify-content: center;
}
.recruit-dialog.show-dialog {
  display: flex;
}
.recruit-dialog .dialog-content {
  width: 536px;
  padding: 20px;
  border-radius: 8px;
  background-image: url('/templates/image/tipBg.png');
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 600px) {
  .recruit-dialog .dialog-content {
    width: calc(100% - 40px);
  }
}
.recruit-dialog .dialog-content .dialog-body {
  padding: 0 40px;
}
.recruit-dialog .dialog-content .dialog-body .body-title {
  display: flex;
  align-items: center;
}
.recruit-dialog .dialog-content .dialog-body .body-title .title-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 5px;
  line-height: 28px;
  font-size: 12px;
  color: #ffffff;
  text-align: center;
  margin-right: 8px;
  background-image: linear-gradient(0deg, #0076fe, #0076fe), linear-gradient(97.62deg, #087bff 5.52%, #5ea8ff 100%);
  border-radius: 10px 0 10px 0;
  font-weight: 700;
}
.recruit-dialog .dialog-content .dialog-body .body-title .title-text {
  display: flex;
  align-items: center;
  line-height: 28px;
  font-size: 18px;
  color: #333940;
  font-weight: 700;
}
.recruit-dialog .dialog-content .dialog-body .body-content-list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 20px;
}
.recruit-dialog .dialog-content .dialog-body .body-content-list li {
  font-size: 14px;
  color: #333940;
}
.recruit-dialog .dialog-content .dialog-body .recruit-qrcode {
  width: 140px;
  height: 140px;
  border: 1px solid #0076fe;
  margin: 24px auto 0;
}
.recruit-dialog .dialog-content .dialog-body .recruit-qrcode img {
  display: block;
  width: 100%;
  height: 100%;
}
.recruit-dialog .dialog-content .dialog-body .qrcode-text {
  display: block;
  margin-top: 12px;
  color: #666666;
  font-size: 13px;
  text-align: center;
}
