[class^="BJCA"] {
  margin: 0;
  padding: 0;
}
[class^="BJCA"]:disabled {
  background-color: #f5f7fa;
  border-color: #e4e7ed;
  color: #c0c4cc;
  cursor: not-allowed;
}
.BJCA-message-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.BJCA-message-box {
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  padding: 10px 20px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(-100%);

}

.BJCA-message-box.transition {
  transition: opacity 0.3s, transform 0.3s;
}

.BJCA-message-box.show {
  opacity: 1;
  transform: translateY(0);
}

.BJCA-message-box.success {
  color: #67c23a;
  background-color: #f0f9eb;
  border-color: #e1f3d8;
}

.BJCA-message-box.warning {
  color: #e6a23c;
  background-color: #fdf6ec;
  border-color: #faecd8;
}


.BJCA-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0s linear 0.2s;
  z-index: 9997;
}

.BJCA-loadingMask {
  position: absolute;
  z-index: 99999;
  background-color: hsla(0, 0%, 100%, .9);
  margin: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity .3s;
}

.BJCA-loadingSpinner {
  top: 50%;
  margin-top: -21px;
  width: 100%;
  text-align: center;
  position: absolute;
}

.BJCA-loading {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 5px solid #f0f0f0;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.BJCA-modal {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.2s, transform 0.2s;
  min-width: 600px;
  min-height: 330px;
}

.BJCA-container {
  min-height: 173px;
  padding: 30px 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.BJCA-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s;
}

.BJCA-modal.open {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.2s, transform 0.2s;
}

.BJCA-tabContainer {
  width: 100%;
}

.BJCA-tab-nav {
  display: flex;
  position: relative;
}

.BJCA-tab-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #409eff;
  z-index: 1;
  transition: transform .3s cubic-bezier(.645, .045, .355, 1);
  list-style: none;
  width: 100px;
}

.ordinaryContentText {
  padding-left: 29px !important;
  text-align: left !important;
}

.BJCA-tab-nav-item {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  color: #909399;
  border-bottom: 2px solid #e4e7ed;
  cursor: pointer;
  text-align: center;
}

.BJCA-tab-nav-item:hover {
  color: #409eff;
}

.BJCA-tab-nav-item.active {
  color: #409eff;
}


.BJCA-inputContainer {
  margin-bottom: 20px;
  height: 42px;
  width: 380px;

}

.BJCA-UkeyInput {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.BJCA-inputLabel {
  display: inline-block;
  margin-bottom: 5px;
  width: 60px;
  font-size: 14px;
  color: #666666;
}

.BJCA-inputField {
  width: 300px;
  height: 42px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #EEEEEE;
  outline: none;
  padding-left: 5px;
  box-sizing: border-box;
}

.BJCA-selectContainer {
  margin-bottom: 20px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 380px;
}

.BJCA-seclectLabel {
  width: 60px;
  font-size: 14px;
  color: #666666;
  display: inline-block;
  text-align: right;
}

input[type="text"][class^="BJCA"],
select[class^="BJCA"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.BJCA-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.BJCA-selectField {
  width: 300px;
  height: 42px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #EEEEEE !important;
  outline: none;
  box-sizing: border-box;
}

.BJCA-selectOption {
  height: 34px;
}

.BJCA-selectOptionPlaceholder {
  color: #b2b2b2;
}

.BJCA-btnContainer {
  display: flex;
  justify-content: center;
}

.BJCA-button {
  display: inline-block;
  background-color: #2276FF;
  font-size: 14px;
  color: #FFFFFF;
  ;
  text-decoration: none;
  cursor: pointer;
  width: 100px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  box-sizing: border-box;
}

.BJCA-button.BJCA-cancel {
  background-color: #EEF5FF;
  color: #2276FF;
  border: 1px solid #2276FF;
}

.BJCA-image {
  width: 200px;
  height: 141px;
  margin: auto;
}

.BJCA-codeTips {
  margin-top: 14px;
  font-size: 14px;
  color: #666666;
}

.BJCA-codeContainer {
  text-align: center;
}

.BJCA-inputField.BJCA-codeInput {
  width: 205px;
}

.BJCA-codeBtn {
  width: 90px;
  height: 40px;
  background: #2276FF;
  border-radius: 4px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.BJCA-codeText {
  height: 40px;
  display: inline-block;
  line-height: 40px;
  text-align: center;
  box-sizing: border-box;
  color: #666666;
  cursor: pointer;
  font-size: 14px;
}

.BJCA-hidden {
  display: none;
}

.BJCA-show {
  display: inline-block;
}


.BJCA-containerTop {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.BJCA-tips {
  display: flex;
  align-items: center;
}

.BJCA-rectangle {
  width: 3px;
  height: 16px;
  background: #2276FF;
  border-radius: 2px;
  display: inline-block;
  margin-right: 10px;
}

.BJCA-sealTitle {
  font-size: 16px;
  color: #000000;
  display: inline-block;
}

.BJCA-certName {
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: center;
}

.BJCA-sealContent {
  height: 260px;
  margin-top: 20px;
  display: flex;
}

.BJCA-sealVeiw {
  flex: 1;
}

.BJCA-sealList {
  width: 141px;
  height: 100%;
  border-top: 1px #666666 dotted;
  border-right: 1px #666666 dotted;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
}

.BJCA-sealItem {
  height: 42px;
  line-height: 42px;
  padding-left: 10px;
}

.BJCA-sealItem.BJCA-sealItemActive {
  color: #2276FF;
}

.BJCA-modalSeal {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.BJCA-sealImg {
  max-width: 160px;
  max-height: 160px;
}

.BJCA-sealImgBox {
  height: 188px;
  background: #F4F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
}

.BJCA-sealBtns {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 70px;
}

.BJCA-sealItemDiv {
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.BJCA-tooltipText {
  visibility: hidden;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 10;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.BJCA-tooltip:hover .BJCA-tooltipText {
  visibility: visible;
  opacity: 1;
}

.BJCA-sealInfoDialog {
  padding: 0;
  width: 560px;
  height: 632px;
}

.BJCA-sealInfo {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.BJCA-sealInfoTitle {
  height: 56px;
  border-bottom: 1px solid #F4F4F4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.BJCA-xIcon {
  width: 21px;
  height: 21px;
  position: relative;
  cursor: pointer;
}

.BJCA-xIcon::before,
.BJCA-xIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #666;
}

.BJCA-xIcon::before {
  transform: rotate(45deg);
}

.BJCA-xIcon::after {
  transform: rotate(-45deg);
}

.BJCA-sealInfoContent {
  padding: 0 20px;
  height: 100%;
  flex: 1;
  overflow-y: auto;
}

.BJCA-sealInfoSuccessTip {
  height: 83px;
  border-bottom: 1px dotted #EEEEEE;
  display: flex;
  align-items: center;
}

.BJCA-sealInfoSuccessRight {
  margin-left: 14px;
}

.BJCA-sealInfoSuccessTips {
  font-size: 16px;
  color: #333333;
  margin-bottom: 10px;
  font-weight: 600;
}

.BJCA-sealInfoSuccessText {
  font-size: 14px;
  color: #666666;
}

.BJCA-signedInfo {
  height: 133px;
  border-bottom: 1px dotted #EEEEEE;
}

.BJCA-signedInfoBtns {
  display: flex;
  align-items: center;
}

.BJCA-signedInfoBtn {
  width: 120px;
  height: 46px;
  background: #F3F8FF;
  border-radius: 4px 4px 0px 0px;
  color: #2276FF;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.BJCA-ordinarySealInfoBtn {
  opacity: 0.6;
}

.BJCA-signedInfoBtn.BJCA-signedInfoBtnActive {
  background: #2276FF;
  color: #fff;
}

.BJCA-signedInfContent {
  margin-top: 20px;
}

.BJCA-row {
  display: flex;
}

.BJCA-row.Mt {
  margin-top: 20px;
}

.BJCA-col {
  display: flex;
  min-width: 220px;
}

.BJCA-col.Ml {
  margin-left: 20px;
}

.BJCA-label {
  min-width: 65px;
  font-size: 14px;
  color: #666666;
}

.BJCA-value {
  width: 160px;
  font-size: 14px;
  color: #333333;
}

.BJCA-sealDetails {
  height: 300px;
  overflow-y: auto;
}

.BJCA-sealDetailsLabel {
  min-width: 115px;
  font-size: 14px;
  color: #666666;
  margin-top: 20px;
}

.BJCA-sealDetailsValue {
  min-width: 270px;
  font-size: 14px;
  color: #333333;
  margin-top: 20px;
}

.BJCA-fail {
  height: 375px;
}

.BJCA-failContent {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  width: 155px;
  margin: auto;
}

.tippy-box[data-animation=fade][data-state=hidden] {
  opacity: 0
}

[data-tippy-root] {
  max-width: calc(100vw - 10px)
}

.tippy-box {
  position: relative;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  transition-property: transform, visibility, opacity
}

.tippy-box[data-placement^=top]>.tippy-arrow {
  bottom: 0
}

.tippy-box[data-placement^=top]>.tippy-arrow:before {
  bottom: -7px;
  left: 0;
  border-width: 8px 8px 0;
  border-top-color: initial;
  transform-origin: center top
}

.tippy-box[data-placement^=bottom]>.tippy-arrow {
  top: 0
}

.tippy-box[data-placement^=bottom]>.tippy-arrow:before {
  top: -7px;
  left: 0;
  border-width: 0 8px 8px;
  border-bottom-color: initial;
  transform-origin: center bottom
}

.tippy-box[data-placement^=left]>.tippy-arrow {
  right: 0
}

.tippy-box[data-placement^=left]>.tippy-arrow:before {
  border-width: 8px 0 8px 8px;
  border-left-color: initial;
  right: -7px;
  transform-origin: center left
}

.tippy-box[data-placement^=right]>.tippy-arrow {
  left: 0
}

.tippy-box[data-placement^=right]>.tippy-arrow:before {
  left: -7px;
  border-width: 8px 8px 8px 0;
  border-right-color: initial;
  transform-origin: center right
}

.tippy-box[data-inertia][data-state=visible] {
  transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11)
}

.tippy-arrow {
  width: 16px;
  height: 16px;
  color: #333
}

.tippy-arrow:before {
  content: "";
  position: absolute;
  border-color: transparent;
  border-style: solid
}

.tippy-content {
  position: relative;
  padding: 5px 9px;
  z-index: 1
}