* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html,
body {
  font-size: 12px;
}
.table {
  width: 100%;
}
.table.border th,
.table.border td {
  border: 1px solid #000;
  text-align: center;
}
.table th {
  padding: 5px 1px;
}
.skeleton th,
.skeleton td,
.skeleton .place {
  border: none !important;
  background-color: #efefef;
}
.skeleton .place {
  width: 200px;
  height: 20px;
  display: inline-block;
}
.btn {
  padding: 2px 6px;
  color: #fff;
  background-color: #409eff;
  border-color: #409eff;
}
.wapper {
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
  position: relative;
}
.wapper .btn-box {
  position: fixed;
  height: 70px;
  line-height: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
}
.wapper .btn-box .btn {
  width: 200px;
  height: 40px;
  font-size: 18px;
}
.wapper .input-data-box .title,
.wapper .output-data-box .title {
  padding: 10px;
  text-align: center;
}
.wapper .input-data-box .tab-inner,
.wapper .output-data-box .tab-inner {
  padding: 10px;
}
.wapper .input-data-box .input-file {
  text-align: center;
  display: flex;
  justify-content: space-evenly;
}
.wapper .output-data-box .output-data-show .out-item .h {
  padding: 15px 0 10px 0;
  margin: 10px 0;
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
  text-align: center;
}
.wapper .output-data-box .output-data-show .out-item .b {
  text-align: center;
}
.wapper .output-data-box .output-data-show .out-item.result .b {
  margin: 0 auto;
}
.wapper .output-data-box .output-data-show .out-item.result .b th,
.wapper .output-data-box .output-data-show .out-item.result .b td {
  text-align: right;
}
.fixed-box {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 16px;
  text-align: center;
  color: #fff;
  display: none;
}
.fixed-box.alert {
  height: 140px;
  padding-top: 10px;
  background-color: rgba(255, 0, 0, 0.8);
}
.fixed-box.loading {
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.fixed-box.loading .loading-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.question {
  position: relative;
}
.mark {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  left: -25px;
  top: 0px;
  text-align: center;
  font-size: 16px;
  color: red;
  background-color: white;
  border: 1px solid red;
  border-radius: 10px;
  cursor: pointer;
}
.introduce {
  position: fixed;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: gray;
  display: none;
}
.introduce .back {
  position: absolute;
  z-index: 9;
  top: 20px;
  right: 70px;
  font-size: 20px;
  color: red;
  border: 1px solid black;
  background-color: white;
  border-radius: 15px;
  width: 30px;
  text-align: center;
  cursor: pointer;
}
.introduce img {
  display: block;
  margin: 0 auto;
  margin-top: 50px;
}
.downloadBM1 {
  color: skyblue;
  cursor: pointer;
}
.header {
  height: 60px;
  display: flex;
  padding: 5px 10px;
  background-color: #103241;
  justify-content: space-between;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.1), -1px -1px 3px 0px rgba(0, 0, 0, 0.1);
}
.header .header-right {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: white;
  cursor: pointer;
}
.header .header-right .back-zzw {
  height: 30px;
  line-height: 29px;
  padding: 0 10px;
  margin: 0 10px;
  border: 1px solid white;
  border-radius: 8px;
}
.header .header-right .user-info {
  position: relative;
}
.header .header-right .user-info .user-name {
  max-width: 100px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.header .header-right .user-info .drop-down {
  display: none;
  width: 80px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  background: white;
  color: black;
  padding: 5px;
  text-align: center;
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 2;
}
.dat-input {
  display: inline-block;
  text-align: left;
  position: relative;
}
.dat-prompt {
  color: gray;
  position: absolute;
  top: 0;
  left: 130px;
  width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 25px;
  line-height: 25px;
  background-color: white;
}
.input-btn {
  display: inline-block;
  width: 60px;
  background-color: #E5E5E5;
  color: black;
  height: 21px;
  line-height: 19px;
  border: 1px solid gray;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
}
