body {
  background: #1a1a1a;
  color: #ffffff;
  font-size: 24px;
  padding: 30px;
  margin: 0;
}

/** 滚动条 */
::-webkit-scrollbar {
  width: 0;
}

.not-found {
  color: #e63232;
  font-size: 30px;
}

.box {
  display: flex;
  width: 95%;
  height: 90%;
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.box-left {
  height: 100%;
  overflow: hidden;
}

.box-right {
  flex: 1;
  margin-left: 30px;
  color: #ffffff;
  padding: 10px;
  overflow-y: scroll;
  border: 1px solid #dee2e6;
}

table {
  border-collapse: collapse;
  text-align: center;
  margin: 0 auto 10px;
}

table th {
  width: 160px;
  height: 40px;
  color: #999;
  font-size: 22px;
  background-color: #474747;
  border: 1px solid #dee2e6;
  box-sizing: border-box;
}

table td {
  width: 160px;
  height: 40px;
  border: 1px solid #dee2e6;
  font-size: 20px;
  box-sizing: border-box;
}

.green {
  color: #50e3c2;
}

.red {
  color: #e63232;
}

.yellow {
  color: #ffbf00;
}

.title {
  width: 95%;
  min-height: 40px;
  font-size: 26px;
  font-weight: bold;
  position: absolute;
  top: 2%;
  left: 0;
  right: 0;
  margin: auto;
}

.content {
  height: 92%;
  overflow-y: scroll;
}

p {
  margin: 0;
  word-break: break-all;
  font-size: 18px;
}

/** iframe */
.ipbox {
  width: 320px;
  height: 100%;
  background: #ffffff;
  overflow: hidden;
  margin-top: 20px;
}

.ipframe {
  width: 100%;
  height: 100%;
}

/** loading */
@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  color: #ffc107;
  vertical-align: text-bottom;
  border: .15em solid currentColor;
  border-right-color: transparent;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: spinner-border .75s linear infinite;
  animation: spinner-border .75s linear infinite
}

.status-tips {
  background: #333;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 10px;
}

.status-tips .status-ok {
  background: url('../images/ok.png') center no-repeat;
  background-size: 100%;
  width: 25px;
  height: 25px;
}

.status-tips .text {
  margin-left: 10px;
}