body {
  background-color: #2b2b2e;
  color: #fff;
  height: 100vh;
}
.width {
  width: 100%;
}
.height {
  height: 100%;
}
.padding {
  padding: 10px;
  box-sizing: border-box;
}
.flex-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
p {
  margin: 0;
  padding: 0;
}

.prefix {
}

.input-box {
  width: 215px;
  height: 32px;
  background-color: #424245;
  flex: 1;
  margin-right: 10px;
  position: relative;
}
.input-box .end-box {
  flex: 1;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}
.input-inner {
  width: 78%;
}
.input-box .end-box span {
  color: rgba(0, 0, 0, 0.65);
  font-size: 12px;
}
.input-box .end-box > span {
  background-color: #fff;
  padding: 0px 3px;
  margin-right: 30px;
  border-radius: 1px;
}
.input-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: -50px;
}
input {
  background: none;
  border: none;
  color: #fff;
  padding: 0px 5px;
}
input:focus {
  outline: none;
}
.subject-box {
  justify-content: flex-start;
  margin: 10px 0;
  flex-wrap: wrap;
}
.subject-box > div {
  margin-bottom: 10px;
}

.btn-box {
  background-color: #ff7800;
  padding: 5px 10px;
  display: inline-block;
  cursor: pointer;
  margin-right: 10px;
  font-size: 14px;
  border-radius: 2px;
}
.outer {
  position: relative;
}
.close {
  position: absolute;
  right: 6px;
  top: -25%;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #ff4d4f;
  z-index: 2;
  padding: 5px;
  box-sizing: border-box;
  cursor: pointer;
}
.icon {
  position: relative;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
}
.icon::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  transform: translate(-50%, -50%);
}
.icon::after {
  content: "";
  border-radius: 10px;
  display: block;
  position: absolute;
  background-color: #fff;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
}
.word-num {
  padding: 5px 10px;
  background-color: hsla(0, 0%, 94.9%, 0.965);
  border-color: hsla(0, 0%, 89.4%, 0.93);
  color: rgba(0, 0, 0, 0.65);
  display: inline-block;
  font-size: 12px;
  margin: 14px 0px;
}
.word-tip {
  font-size: 0.8em;
}
.input-box.err {
  border: 1px solid #ff4d4f;
  box-sizing: border-box;
  color: #ff4d4f;
}

.key-outer-box {
  margin-bottom: 40px;
}

.key-errbox {
  position: fixed;
  left: 50%;
  top: 0;
  z-index: 9999;
  transform: translateX(-50%);
}
.key-inner {
  display: none;
  min-width: 300px;
  background-color: #f00;
  color: #ff4d4f;
  background-color: #ffeded;
  text-align: center;
  padding: 5px 10px;
  border-radius: 2px;
}
.key-erropen {
  display: block;
  animation: move 0.3s ease-out forwards;
}
.key-errclose {
  animation: move 0.1s ease-out forwards;
}
@keyframes close {
  from {
    transform: translateY(300%);
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translateY(0);
  }
}
@keyframes move {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(300%);
  }
}

.dialog {
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  padding: 20px;
  box-sizing: border-box;
}
.dialog .key-dialog-inner {
  /* width: 80%; */
  overflow: auto;
  height: 80%;
  background-color: #2b2b2e;
  position: relative;
  padding: 40px;
  box-sizing: border-box;
}
.tabler-box {
  width: 650px;
  height: 100%;
  overflow: auto;
  padding-right: 10px;
}
.dialog.show {
  display: flex;
}
.body-box {
  max-width: 80%;
  overflow: auto;
}
.dialog table {
  border-spacing: 0;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.table-header tr {
  width: 100%;
}
td {
  border-color: #424245;
  border: none;
  border: 1px solid #424245;
  padding: 5px 10px;
  text-align: center;
}
.dia-close {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
/* 滚动条样式 */

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background: none;
  border: 0.5px solid #3a3a3e;
  margin-left: 5px;
  border-top: none;
  border-bottom: none;
}
::-webkit-scrollbar-track {
  background: none;
}
::-webkit-scrollbar-thumb {
  background: #888;
}
.key-btn-box {
  font-size: 16px;
}
.agency_box {
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: relative;
}

.word-box {
  width: 1130px;
}
.is-word-num,
.is-word-num > span {
  color: #fff;
  font-size: 14px;
}

.down_bg {
  padding-top: 50px;
}

.down .down_copy {
  padding-bottom: 40px;
}
.end-link {
  position: absolute;
  bottom: 40px;
  width: 1130px;
  left: 50%;
  transform: translateX(-50%);
}
.end-link a {
  color: #ff7800;
  margin-left: 20px;
}
