@charset "UTF-8";
.op_container {
  width: 100%;
  height: 100%;
  position: relative;
}
.op_container .header {
  max-width: 90vw;
  line-height: 71px;
  margin: 0 auto;
}
.op_container .footer {
  position: absolute;
  line-height: 71px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}
.op_container .footer p {
  margin: 0;
  text-align: center;
}
/* .op_container .body_container {
  width: 100%;
  position: relative;
  background: url("/ps_post/static/src/img/op-bg.jpg") no-repeat center;
  background-size: 100% 110%;
} */
.op_container .card_body {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: 19%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.op_container .card_body .body_left p:nth-child(1) {
  font-size: 30px;
  font-weight: 400;
}
.op_container .card_body .body_left p:nth-child(2) {
  font-size: 45px;
  font-weight: bold;
  margin-top: 37px;
}
.op_container .card_body .body_right {
  width: 100%;
  min-height: 380px;
  background: rgba(255, 255, 255, 0.53);
  border-radius: 3px;
  padding: 20px;
  box-sizing: border-box;
}
.op_container .card_body .body_right .title {
  font-size: 20px;
  font-family: Source Han Sans CN;
  color: #1d8ee8;
  font-weight: 600;
}
.op_container .card_body .body_right .op_form_group {
  width: 100%px;
  height: 40px;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.op_container .card_body .body_right .op_form_group .col_form_label {
  font-size: 14px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #222222;
  display: inline-block;
  padding: 0px 13px;
  margin: 0;
  flex-shrink: 0;
}
.op_container .card_body .body_right .op_form_group .col_form_label::after {
  content: "|";
  margin-left: 10px;
}
.op_container .card_body .body_right .op_form_group .op_captcha_img {
  display: inline-block;
  width: 96px;
  height: 38px;
  cursor: pointer;
}
.op_container .card_body .body_right .op_form_group .col_form_label2 {
  font-size: 14px;
  font-family: Source Han Sans CN;
  font-weight: 400;
  color: #222222;
  display: inline-block;
  padding: 0px 0px 0px 13px;
  margin: 0px 13px 0px 0px;
  flex-shrink: 0;
  width: 88px;
  border-right: 1px solid #d0d0d0;
  word-break: break-word;
}
.op_container .card_body .body_right .op_form_group .form_control {
  flex: 1;
  border: none;
  padding: 0;
  outline: none;
  height: 38px;
  background: none;
}
.op_container .card_body .body_right .op_form_group input:-webkit-autofill,
.op_container .card_body .body_right .op_form_group textarea:-webkit-autofill,
.op_container .card_body .body_right .op_form_group select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
}
.op_container .card_body .body_right .op_form_group#captcha_code_box {
  display: none;
}
.op_container .card_body .body_right .signup {
  float: right;
  margin: 0 0 10px 0;
  line-height: 40px;
  color: #222222;
}
.op_container .card_body .body_right .signup div {
  display: inline-block;
  line-height: 2;
}
.op_container .card_body .body_right .signup .signup_create {
  color: #1d8ee8;
  border-bottom: 1px solid #1d8ee8;
  cursor: pointer;
}
.op_container .card_body .body_right .tip {
  color: #e33d3d;
  margin: 0;
  font-size: 12px;
  word-break: break-all;
}


.op_container .database_create_container .database_create_body .form_control {
  width: 250px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #d0d0d0;
  border-radius: 3px;
  margin-left: 1rem;
  outline: none;
}
.op_container .database_create_container .database_create_body .dup_name {
  display: none;
  color: #e33d3d;
}
.op_container .database_create_container .database_create_body .btn_create {
  width: 250px;
  height: 40px;
  border-radius: 3px;
}
.op_container .login_warning {
  display: none;
}
.op_container .btn_common {
  color: #ffffff;
  background-color: #386aff;
  border: none;
  outline: none;
}
.op_container .btn_common :active {
  opacity: 0.8;
}
.op_container .btn_submit {
  width: 100%;
  height: 40px;
  border-radius: 20px;
  margin-top: 20px;
}
.op_container .btn_submit.loading .loginText,
.op_container #change.loading .loginText {
  display: none;
}
.op_container .btn_submit.loading::before,
.op_container #change.loading::before {
  content: "\f110";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: spin 1s linear infinite;
}

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