@charset "utf-8";
/* security-keybord.css
++++++++++++++++++++++++++++++++++++++++
* NOTE
++++++++++++++++++++++++++++++++++++++++
- Charset: utf-8
- Return code: LF
++++++++++++++++++++++++++++++++++++++++ */
.sk-clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.sk-bg-overlay {
  background: rgba(33, 46, 70, 0.4);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  display: none;
}
.security-keybord * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.security-keybord {
  display: none;
  z-index: 110;
  position: absolute;
  left: -586px;
  top: 162px;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none; /* IE10 later */
  width: 610px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 2, 0.4);
  border-radius: 8px;
  background: rgba(238, 238, 240, 1);
  font-size: 18px;
}
.sk-header {
  position: relative;
  padding: 0 16px;
  height: 32px;
  line-height: 32px;
  background-color: rgba(230, 230, 234, 1);
  border-radius: 8px 8px 0 0;
  font-size: 14px;
}
.sk-header-close {
  position: absolute;
  display: block;
  top: 6px;
  right: 16px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url(/assets/images/sk-close.svg) no-repeat;
  cursor: pointer;
}
.sk-header-title {
  font-size: 13px;
  color: rgba(0, 0, 60, 0.3)
}
.sk-header-close:hover {
}
.sk-body {
  float: left;
  padding: 16px 8px 16px 16px;
}
.sk-body div span:first-child {
  margin-left: 0;
}
.sk-body div span {
  display: block;
  float: left;
  width: 32px;
  height: 32px;
  margin: 0;
  background: rgba(50, 174, 215, 1);
  color: rgba(255,255,255,0.88);
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  line-height: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(0, 0, 10, 0.1);
  border-bottom: 1px solid rgba(0, 0, 10, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.sk-body .sk-disabled-key:hover {
  background: rgba(50, 174, 215, 1);
  cursor: default;
}
.sk-body div span:hover {
  background: rgba(255, 255, 255, 1);
  color: rgba(50, 174, 215, 1);
  cursor: pointer;
}
.sk-body div span:active {
  background: rgba(35, 124, 153, 1);
  color: rgba(255, 255, 255, 1);
}
.sk-extra {
  float: left;
  padding: 16px 16px 16px 0;
  max-width: 120px;
  text-align: center;
  font-size: 14px;
}
.sk-extra span {
  display: block;
  padding: 0 8px;
  height: 32px;
  line-height: 32px;
  color: #fff;  
  border: 1px solid rgba(50, 174, 215, 0.4);
  cursor: pointer;
  border-radius: 2px;
}
.sk-extra span:nth-child(1) {
  border-bottom: 0;
  border-radius: 2px 2px 0 0;
}
.sk-extra span:nth-child(2) {
  border-radius: 0 0 2px 2px;
}
.sk-extra span:nth-child(1),
.sk-extra span:nth-child(2) {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(50, 174, 215, 1);
}
.sk-extra span:nth-child(1):hover,
.sk-extra span:nth-child(2):hover,
.sk-footer span:hover {
  background: rgba(50, 174, 215, 0.1);
}
.sk-extra span:nth-child(1):active,
.sk-extra span:nth-child(2):active,
.sk-footer span:active {
  background: rgba(35, 124, 153, 1);
  color: rgba(255, 255, 255, 1);
}
.sk-extra span:nth-child(3) {
  margin-top: 32px;
  background: rgba(50, 174, 215, 1);
}
.sk-extra span:nth-child(3):hover {
  background: rgba(255, 255, 255, 1);
  color: rgb(50, 174, 215);
  cursor: pointer;
}
.sk-extra span:nth-child(3):active {
  background: rgba(35, 124, 153, 1);
  color: rgba(255, 255, 255, 1);
}
.sk-footer {
  clear: both;
  padding: 0 16px 16px 16px;
  overflow: auto;
  font-size: 14px;
  color: rgb(50, 174, 215);
}
.sk-footer span {
  display: table-cell;
  padding: 7px 0;
  width: 480px;
  background: #fff;
  text-align: center;
  border-radius: 2px;
  border: 1px solid rgba(50, 174, 215, 0.4);
  letter-spacing: 1px;
}
.sk-footer span:hover {
  cursor: pointer;
}
.sk-footer span:active {
  /*color: rgba(35, 124, 153, 1);*/
}
