@charset "utf-8";

input[type=text],
input[type=password],
select {
  width: 100%;
  height: 32px;
  text-indent: 6px;
  font-size: 15px;
  border: solid #CCC 1px;
  border-radius: 4px;
}

select {
  position: relative;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #FFF;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAZ0lEQVQ4T2NkoBAwUqifYdQABtQwmD9/qSoj4++tDAyMrNgD9//v//9ZvRMTo2/D5DECEckQVVRD/t9G1wySxxoLmIZg14zTAJAEwhAGBmw24/QCsrNBhoD4yH5GD5vRhIQjGknJoQAZ9SoRxrO+AQAAAABJRU5ErkJggg==");
  background-repeat: no-repeat;
  background-position: right 4px center;
}

input[type=text]:not(.warning):hover,
input[type=password]:not(.warning):hover,
input[type=text]:not(.warning):focus,
input[type=password]:not(.warning):focus,
select:not(.warning):hover,
select:not(.warning):focus {
  border: solid 1px #3388FF;
  box-shadow: 0px 0px 3px #41aaf7;
}

input[type=text].warning:not([disabled]),
input[type=password].warning:not([disabled]),
select.warning:not([disabled]) {
  background-color: #fffde5;
  border-color: #F00;
}

input[type=text].warning:not([disabled]):hover,
input[type=password].warning:not([disabled]):hover,
select.warning:not([disabled]):hover,
input[type=text].warning:not([disabled]):focus,
input[type=password].warning:not([disabled]):focus,
select.warning:not([disabled]):focus {
  border-color: #F00;
  box-shadow: 0px 0px 3px #f00;
}

/*输入框占位文本颜色*/
input::-webkit-input-placeholder {
  color: #ccc;
}

input:-moz-placeholder {
  color: #ccc;
}

input::-moz-placeholder {
  color: #ccc;
}

input:-ms-input-placeholder {
  color: #ccc;
}

button {
  outline: none;
  background-color: #0d9cf6;
  color: #FFF;
  border: 0;
  border-radius: 4px;
}

button[type=submit] {
  width: 100%;
  height: 40px;
  font-size: 16px;
  position: relative;
  letter-spacing: 8px;
  position: relative;
}

button:hover,
button:focus {
  background-color: #41aaf7;
}

button:active {
  background-color: #0288dd;
}

button[type=button][disabled],
button[type=submit][disabled] {
  background-color: #969696;
}

body {
  --width: 1200px;
  min-width: var(--width);
}

.head {
  display: flex;
  justify-content: center;
  border-bottom: solid #EAEAEA 1px;
  box-shadow: 0 1px 10px #EAEAEA;
}

.headwrap {
  display: flex;
  justify-content: space-between;
  height: 70px;
  width: var(--width);
}

.head-left,
.head-right {
  display: flex;
  align-items: center;
}

.head-left {
  font-size: 22px;
  color: #2281C7;
  column-gap: 12px;
}

#register {
  padding: 3px 6px;
}

.wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 100px;
}

.wrap {
  width: var(--width);
  display: flex;
  column-gap: 100px;
}

.wrap .helpwrap {
  flex-grow: 1;
  width: 0;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

dl.help dt {
  font-size: 16px;
  line-height: 32px;
}

dl.help dt span {
  border-left: 4px solid transparent;
  padding-left: 8px;
}

dl.help dt.active span {
  color: #3eaf7c;
  border-left-color: #3eaf7c;
}

dl.help dd {
  background-color: #F1F6FC;
  margin-left: 12px;
  padding: 16px;
  display: none;
}

dl.help dt.active+dd {
  display: block;
}

.registerform {
  flex-grow: 1.5;
  width: 0;
}

#form {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.editcol {
  display: flex;
}

.editcol-tag {
  width: 200px;
  min-width: 200px;
  display: flex;
  align-items: center;
}

.requiretip::after {
  display: inline-block;
  vertical-align: middle;
  content: '*';
  color: red;
  font-weight: bold;
  margin-left: 6px;
}

.editcol-cont {
  flex-grow: 1;
  width: 0;
  position: relative;
}

.validitytip {
  position: absolute;
  z-index: 2;
}

.validitytip .validitytip-content {
  position: relative;
  margin-top: -2px;
  padding: 4px 3px 3px 0;
  color: #ff6945;
  font-size: 12px;
  line-height: normal;
}

/* 上传组件 */
.file-item {
  width: 80px;
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FAFAFA;
  border: 1px solid #EBEBEB;
}

.file-item img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.clearimg {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #FFF;
  border-radius: 50%;
  background-color: #f36c12;
  border: solid 1px #FFF;
  cursor: pointer;
}

.clearimg:before {
  line-height: 18px;
  content: "\e615";
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.selectimg {
  position: relative;
  width: 80px;
  height: 80px;
  border: solid 1px #F0F1F5;
  background-color: #FAFAFA;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selectimg::before {
  font-size: 26px;
  color: #B2B2B2;
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\ee34";
}

.file-item:hover,
.selectimg:hover {
  border: solid 1px #41aaf7;
  box-shadow: 0px 0px 5px #41aaf7;
}

/* 密码等级 */
#safelevel {
  display: flex;
  column-gap: 1px;
}

#safelevel li {
  flex-grow: 1;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background-color: #EEF1F4;
  color: #999;
}

#safelevel.level1 li:nth-child(1) {
  background-color: #FF8C00;
  color: #FFF;
}

#safelevel.level2 li:nth-child(1),
#safelevel.level2 li:nth-child(2) {
  background-color: #1E90FF;
  color: #FFF;
}

#safelevel.level3 li {
  background-color: #32CD32;
  color: #FFF;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  color: #999;
}

div.dlgbox .dlgbox-content {
  line-height: 20px;
}

button[type=submit] div.blinking {
  display: none;
}

button[type=submit][disabled] div.blinking {
  display: inline-block;
}

button[type=submit] div.blinking {
  position: relative;
  width: 14px;
  height: 14px;
  padding: 0px;
  margin: 0;
  margin-right: 8px;
  letter-spacing: normal;
}

button[type=submit] div.blinking span {
  width: 4px;
  height: 2px;
  display: inline-block;
  border-radius: 4px;
  background: #FFF;
  position: absolute;
  left: 50%;
  top: 50%;
  animation: 1s blink infinite;
  transform-origin: left top;
  opacity: 0.4;
}

.blinking span:first-child {
  transform: rotate(45deg) translateX(3px) translateY(-1px);
  animation-delay: 0.125s;
}

.blinking span:nth-child(2) {
  transform: rotate(90deg) translateX(3px) translateY(-1px);
  animation-delay: 0.25s;
}

button[type=submit] div.blinking span:nth-child(3) {
  transform: rotate(135deg) translateX(3px) translateY(-1px);
  animation-delay: 0.375s;
}

button[type=submit] div.blinking span:nth-child(4) {
  transform: rotate(180deg) translateX(3px) translateY(-1px);
  animation-delay: 0.5s;
}

button[type=submit] div.blinking span:nth-child(5) {
  transform: rotate(225deg) translateX(3px) translateY(-1px);
  animation-delay: 0.625s;
}

button[type=submit] div.blinking span:nth-child(6) {
  transform: rotate(270deg) translateX(3px) translateY(-1px);
  animation-delay: 0.75s;
}

button[type=submit] div.blinking span:nth-child(7) {
  transform: rotate(315deg) translateX(3px) translateY(-1px);
  animation-delay: 0.875s;
}

button[type=submit] div.blinking span:nth-child(8) {
  transform: rotate(360deg) translateX(3px) translateY(-1px);
  animation-delay: 0s;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  33% {
    opacity: 0.8;
  }

  66% {
    opacity: 0.6;
  }

  100% {
    opacity: 0.4;
  }
}